diff --git a/.github/workflows/deploy_pages.yml b/.github/workflows/deploy_pages.yml new file mode 100644 index 000000000..5bd7fd99d --- /dev/null +++ b/.github/workflows/deploy_pages.yml @@ -0,0 +1,45 @@ +name: Deploy github pages +on: + push: + branches: [main] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: 20 + + - name: Sleep + run: sleep 20s + + - name: Build + run: | + npm install + npm run build + mkdir -p _site + cp -r open-works _site/ + cp -r dist/* _site/ + cp -r test-report _site/ + touch _site/.nojekyll + + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + + deploy: + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + pages: write + id-token: write + environment: + name: github-pages + url: ${{steps.deployment.outputs.page_url}} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..a547bf36d --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..7991760f7 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +strict-peer-dependencies=false +legacy-peer-deps=true \ No newline at end of file diff --git a/.prettierrc.cjs b/.prettierrc.cjs new file mode 100644 index 000000000..1f0259359 --- /dev/null +++ b/.prettierrc.cjs @@ -0,0 +1,18 @@ +module.exports = { + semi: false, // 句末不使用分号 + trailingComma: 'all', // 多行时尽可能打印尾随逗号 + singleQuote: true, // 单引号 + printWidth: 140, // 单行最大长度 + tabWidth: 2, + arrowParens: 'always', // 单参数箭头函数参数周围使用圆括号-eg: (x) => x + bracketSpacing: true, // 在对象前后添加空格-eg: { foo: bar } + embeddedLanguageFormatting: 'auto', // 对引用代码进行格式化 + endOfLine: 'lf', // 结束行形式 + htmlWhitespaceSensitivity: 'css', // 对 HTML 标签空白敏感 + insertPragma: false, // 在已被 prettier 格式化的文件顶部加上标注 + jsxBracketSameLine: false, // 多属性html标签的 '>' 不折行放置 + jsxSingleQuote: false, // jsx中使用单引号 + proseWrap: 'preserve', + quoteProps: 'as-needed', // 仅在必需时为对象的 key 添加引号 + useTabs: false, // 使用空格代替tab缩进 +} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..dd6fc55ba --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,2036 @@ +# CHANGELOG + +## 3.60.1 + +- fix(PanoTagPlugin): 修复 dom 渲染的虚拟屏幕有黑边的问题。 +- fix(ObjectHelper): 修复和 css3DObject 的配合使用问题。 +- fix(Util.LightTag): wrapper 不再设置兜底值,无 wrapper 时不加载。 + +## 3.60.0 + +- chore(\*): 打包优化 + +## 3.59.13 + +- fix(PanoTagPlugin): 修复 enable 在某些特殊情况下没有立即生效的问题。 + +## 3.59.12 + +- chore(PanoTagPlugin): 修复一个报错。 + +## 3.59.11 + +- fix(PanoTagPlugin): 修复虚拟屏幕 创建、修改、销毁过程中的 bug。 + +## 3.59.10 + +- fix(PanoFloorplanRadarPlugin): 还原 hoverEnable 默认值 false。 +- fix(Sculpt): 修复某些特殊情况下,tip 没有展示的问题。 + +## 3.59.9 + +- fix(GuideLinePlugin): 兼容低版本 webgl,修复 ios14 上 fragmentShader 渲染异常的问题。 + +## 3.59.8 + +- fix(PanoTagPlugin): 重构 css3DRender, 修复 five react 切换 work 后,模型广告牌内容可能会消失的问题。 +- fix(PanoTagPlugin): 修复 five react 切换 work 后,模型点击事件不会触发的问题。 +- fix(PanoTagPlugin): 修复 setDataById, setTagById 等方式切换 tag 数据后没有立即更新的问题。 + +## 3.59.7 + +- fix(PanoMeasurePlugin): 修复测面积撤销完所有点后会报错的问题。 + +## 3.59.6 + +- fix(GuideLinePlugin): 修复路线为空时报错的问题。 + +## 3.59.5 + +- fix(\*): zFightting 统一调大至 1mm。 + +## 3.59.4 + +- fix(Util.lookObject): 保证每次转动角度最小。 + +## 3.59.3 + +- fix(ObjectHelper): 修复正交视角下操作不平行于水平面的拖动轴时,结果可能会错误的问题。 + +## 3.59.2 + +- fix(ObjectHelper): 正交视角下,与正交方向一致的移动轴不显示。 +- fix(PointSelector): select 事件现在只有精准点击(500ms 内鼠标按下并在同一个位置抬起)会触发。 +- fix(\*): 修复一个底层错误,该错误可能会导致 拖动、绘制 等操作不正常。 + +## 3.59.1 + +- chore(ModelMakerPlugin): fix type。 + +## 3.59.0 + +- feat(Sculpt): load 时可以指定 defaultAction,选择是否启用默认行为(点击选中等)。默认为 true。 + +## 3.58.7 + +- chore(Sculpt): 缩放操作时,隐藏其他缩放块。 + +## 3.58.6 + +- chore(FloorplanPlugin): 点击事件现在可以获取到点击的房间信息。 + +## 3.58.5 + +- fix(Sculpt): 修复部分 item.setData 结果不正确的问题。 + +## 3.58.4 + +- fix(ModelMakerPlugin): 2D 标注只在指定 panoIndex 上展示。 +- chore(PanoDoorLabelPlugin): 重构,修复 bug。 + +## 3.58.3 + +- change(Sculpt): 当通过 `stopCreate()` 或 `clear()` 主动中断绘制时,createXXX promise 现在会返回 reject。 + +## 3.58.2 + +- fix(Sculpt): 修复绘制矩形时,预览线会显示长度的问题。 + +## 3.58.1 + +- fix(Sculpt): 修复使用 editor 移动物体后,setData 设置数据后物体位置不正确的问题。 +- fix(Sculpt): 修复使用 setData 设置物体位置后 editor 方向不正确的问题。 +- fix(Util.FiveDomEvent): 修复一个代码报错。 + +## 3.58.0 + +- change(PanoTagPlugin): 走点时默认不隐藏标签。 +- fix(PanoTagPlugin): 修复标签闪烁(tag.blink())可能会卡顿的问题。 + +## 3.57.1 + +- fix(FiveDomEvent): 当射线上靠前的物体因为一些配置原因不触发事件时,顺延至后面的物体。 + +## 3.57.0 + +- feat(ModelMakerPlugin): 优化区域标注的标签效果。 +- fix(Sculpt): 移除 item 时,如果在绘制中,停止绘制。 + +## 3.56.1 + +- fix(\*): 修复面的颜色有色差的问题。 + +## 3.56.0 + +- feat(PanoTagPlugin):变更标签的优化策略,以支持低版本浏览器以及 safari。 +- fix(ModelMakerPlugin): 修复部分标注点击后名称没有显示的问题。 + +## 3.55.0 + +- feat(Sculpt): 支持设置边框线的透明度 `lineOpacity`, 默认为 1。 +- fix(Sculpt): 修复 editor 启用时,通过 `setData` 更新物体位置后,editor 位置没有更新的问题。 +- fix(ModelMakerPlugin): 支持多楼层场景,仅在当前楼层展示。 + +## 3.54.2 + +- chore(Sculpt): 优化绘制 `Sculpt` 线的方式。 + +## 3.54.1 + +- fix(Sculpt): 修复凹多边形的绘制问题 + +## 3.54.0 + +- fix(Util.FivePuppet): 兼容 vapor。 +- feat(Sculpt): 添加 `item.setData` 方法,参数为 [SculptData](https://open-platform.realsee.com/developer/docs/dnalogel/Sculpt/#data)。 +- feat(Sculpt): 添加 `item.editor.hooks.on('objectUpdate')`,当 editor 开启时,物体被移动/缩放/旋转时触发。 +- chore(Sculpt): 取消编辑 scale 距离限制;体的绘制高度限制由 10m 改为 100m。 + +## 3.53.4 + +- fix(Sculpt): 关闭 depthWrite,修复不显示被透明面遮挡的线的问题,修复部分面看起来颜色要淡的问题。 +- fix(Sculpt): 物体的 opacity 不再修改边框线的透明度。 + +## 3.53.3 + +- fix(GuideLinePlugin): 修复 `GuideLinePlugin` 在 `hide` 后切换至 `Mapview` 视角时,偶现显示出起点终点标签的问题。 + +## 3.53.2 + +- fix(GuildLinePlugin): 修复 load 后立即获取 item.modelItem 或 item.panoramaItem 的 visible 不正确的问题。 + +## 3.53.1 + +- fix(Util.FivePuppet): 修复 `FivePuppet` 的 `destory` 清除不完全的问题。 + +## 3.53.0 + +- feat(Util): 新增 `Util.FivePuppet` + +## 3.52.3 + +- fix(tag): 没有点的情况下不做碰撞检测。 + +## 3.52.2 + +- fix(ModelMakerPlugin): 修复字号会跟随字符长度变化的问题。 + +## 3.52.1 + +- fix(Sculpt): 修复导出数据不准确的问题。 + +## 3.52.0 + +- fix(ModelMakerPlugin): 修复 hide 后标签没有隐藏的问题(使用 display 代替 visibility)。 +- fix(Object3DHelper): 修复正交相机视角下拉近摄像机时,helper 没有缩放的问题;修复位移操作结束时,helper 没有缩放的问题。 +- feat(Sculpt): + 1. 优化 boxMesh 的 geometry; + 2. 长方体绘制支持锁定平面,支持选择绘制方式,api 同 矩形绘制; + 3. 长方体支持六个面的缩放; + 4. 矩形支持四边的缩放; + 5. 优化缩放块的透视视觉效果; + 6. 撤销快捷键兼容 mac; + 7. 修复先拖动再缩放时,结果不正确的问题; + +## 3.51.0 + +- feat(modelMakerPlugin): 模型标注的标签增加元素间的遮挡检测。 + +## 3.50.16 + +- fix(Util.PointSelector): 支持屏幕支持触摸的 pc 设备。 + +## 3.50.15 + +- chore(Util): 导出工具函数。 + +## 3.50.14 + +- fix(ModelMakerPlugin): 修复碰撞检测计算错误的问题。 + +## 3.50.13 + +- fix(PanoTagPlugin): 修复 load 完后立即 clearTags 时,虚拟屏幕没有被清除的问题。 + +## 3.50.12 + +- chore(Sculpt): fix typo `createline` + +## 3.50.11 + +- fix(PanoTagPlugin): 修复 3.42.0 导致的 hide 后没有隐藏 css3D 渲染的 Dom 的问题。 + +## 3.50.10 + +- chore(floorplan): 修改户型图标尺透明度。 + +## 3.50.9 + +- fix(PointSelector): 修复 disable 时,坐标点外围圆环没有隐藏的问题。 +- fix(CrusePlugin): 进一步修复点位自动漫游中,非常频繁的切换速度时,偶现漫游暂停的问题。 + +## 3.50.8 + +- fix(CrusePlugin): 修复点位自动漫游中,非常频繁的切换速度时,偶现漫游暂停的问题。 + +## 3.50.7 + +- chore(Sculpt): 3.50.6 中的 feature 添加默认参数。 + +## 3.50.6 + +- change(Sculpt): 距离和 tip 颜色默认和 mesh 颜色一致。 + +## 3.50.5 + +- fix(measure): 兼容 five react。 + +## 3.50.4 + +- change(floorplan): 户型图展示/隐藏时,除之前设置 five canvas 透明度的逻辑外,同步设置 five 相关 dom 的透明度(使用 dataset-infive 标识) + +## 3.50.3 + +- fix(ObjectHelper): 修复 helper 起始位置可能错误的问题。 + +## 3.50.2 + +- fix(Sculpt): 修复 `Sculpt` 连续绘制多个平面矩形时,边框长度错误的问题。 +- fix(Sculpt): 修改 `PointMesh` 和 `LineMesh` 的 `visible` 时,tip 或者 长度也会被修改。 + +## 3.50.1 + +- fix(Sculpt): 3.49.11 的 tip 在 ios 设备上支持中文。 + +## 3.50.0 + +- feat(PointSelector): 取消 Hammer 依赖,Hammer 在安卓设备上与 vapor 不兼容。 + +## 3.49.13 + +- fix(Sculpt): 修复 3.49.11 中 point 的 tip 没有在 point 被 remove 时销毁的问题。 + +## 3.49.12 + +- fix(Sculpt): 3.49.11 的 tip 支持中文。 + +## 3.49.11 + +- fix(Sculpt): 绘制点时,实时预览点的位置;点和线 支持设置 tip。 + +## 3.49.10 + +- fix(Sculpt): 优化触摸屏绘制。 + +## 3.49.9 + +- fix(ModelMakerPlugin): 修复页面 resize 后,标签没有更新位置的问题。 + +## 3.49.8 + +- chore(sculpt): 导出工具函数。 + +## 3.49.7 + +- fix(PanoTagPlugin): 修复 360 浏览器 69 版本下标签插件不显示的问题。 +- fix(ModelMakerPlugin): 修复区域标注标签被缩小的问题。 + +## 3.49.6 + +- feat(Sculpt): 支持点击出现删除按钮。 + +## 3.49.5 + +- chore(Sculpt): 优化 `Theme` 类型。 + +## 3.49.4 + +- chore(Sculpt): 修改 `theme` 属性访问权限。 + +## 3.49.3 + +- fix(PanoTagPlugin): 修复插件 hide 的情况下,在页面 resize 后可见状态错误的问题。 + +## 3.49.2 + +- fix(Sculpt): 修复页面 resize 后 距离的 dom 层级问题。 + +## 3.49.1 + +- fix(Sculpt): 修复触摸屏手势操作结束时,有可能触发 five 事件的问题。 +- fix(Sculpt): 修复触摸屏绘制折线时,折线的第一个点没有显示的问题。 +- fix(PanoTagPlugin): 优化 `tag.destroy()` 逻辑。 + +## 3.49.0 + +- feat(ObjectHelper): 支持触摸屏手势操作。 +- feat(Sculpt): 支持触摸屏手势操作。 + +## 3.48.7 + +- fix(PanoMeasurePlugin):修复 `enable({mode: 'View'})` 时 可能会显示不应展示的标尺的问题。 + +## 3.48.6 + +- fix(PanoMeasurePLugin):修复在未来家墙面上测量面积时,偶现无法正常绘制的问题。 +- feat(Sculpt):优化绘制多边形时的实时预览效果。 + +## 3.48.5 + +- fix(PanoTagPlugin): 修复部分场景下,标签无法闪烁的问题。 + +## 3.48.4 + +- fix(PanoTagPlugin): 修复部分标签禁用后再闪烁,闪烁完成后没有消失的问题。 + +## 3.48.3 + +- fix(PanoTagPlugin): 修复 `3.48.0` 导致的图文标签 UI 错误的问题。 + +## 3.48.2 + +- feat(Sculpt): 折线(Polyline)多边形(Polygon)支持撤销/重做。 + +## 3.48.1 + +- feat(Sculpt): 线段(Line)支持撤销/重做。 + +## 3.48.0 + +- feat:(PanoTagPlugin): 带视频的标签,支持 `play` / `pause` + +## 3.47.16 + +- chore(\*): 优化代码。 + +## 3.47.15 + +- fix(\*): 修复一个循环引用问题。 +- fix(PanoTagPlugin): 修复 `requestIdleCallbackId` polyfill 问题。 + +## 3.47.14 + +- fix(Sculpt): 修复移动多边形时,距离/面积 dom 没有跟随移动的问题。 +- fix(Sculpt): 修复清空时,面积没有被删除的问题。 + +## 3.47.13 + +- fix(Sculpt): 修复多次绘制对角线矩形时,距离显示的问题。 + +## 3.47.12 + +- feat(Sculpt): 支持展示面积。 + +## 3.47.11 + +- fix(Sculpt): 修复矩形绘制时的距离不显示的问题。 + +## 3.47.10 + +- fix(Sculpt): 修复 box 绘制;修复距离显示问题。 + +## 3.47.9 + +- fix(Sculpt): 优化矩形绘制代码。 + +## 3.47.8 + +- fix(PanoTagPlugin): 修复 `tag.destroy()` 和 `plugin.clearTags()`。 + +## 3.47.7 + +- fix(Sculpt): 优化点云中的长度标签的碰撞检测。 + +## 3.47.6 + +- fix(Sculpt): 修复长度标签的倾斜角度没有更新的问题。 + +## 3.47.5 + +- fix(Sculpt): 优化点云中的长度标签的碰撞检测;UI 优化。 + +## 3.47.4 + +- chore(\*): 优化放大镜性能。 + +## 3.47.3 + +- fix(Sculpt): 优化垂直绘制方式。 + +## 3.47.2 + +- chore(PanoSelector): 类型优化。 + +## 3.47.1 + +- change(PanoTagPlugin): 移除默认最大距离配置 + +## 3.47.0 + +- feat(PanoMeasurePlugin): 支持通过 `config.pointSelectorConfig.actionIfNoModelUnderMouse` 来配置当鼠标处无模型时的行为。 +- feat(Sculpt): 绘制中遇到鼠标处无模型时的情况时更加智能。 + +## 3.46.1 + +- fix(Sculpt): 修复删除 item 时,距离 dom 没有被删除的问题。 + +## 3.46.0 + +- feat(Sculpt): 支持设置 item 的 `lengthEnable` 来开启距离显示。 + +## 3.45.0 + +- feat(Sculpt): 支持创建线段;支持创建 线段、折线、多边形时,锁定垂直/水平面 + +## 3.44.5 + +- chore(PanoTagPlugin): 开启 `debug` 时,控制台输出函数调用日志。 + +## 3.44.4 + +- fix(PointSelector): 修复缩放 fov 时,放大镜没有更新位置的问题。 +- fix(PointSelector): 修复 `disable` 时,坐标点外围圆环没有隐藏的问题。 + +## 3.44.3 + +- fix(currentPanoImagePlugin): 支持多 work 场景。 + +## 3.44.2 + +- fix(PanoTagPlugin): 修复偶先走点后没有立即显示标签的问题。 + +## 3.44.1 + +- fix(PanoTagPlugin): 标签的模型态入口开启时,在模型态下禁止自动展开。 + +## 3.44.0 + +- feat(PanoMeasurePlugin): 新增一种坐标选择器样式,初始化插件时,可以使用 `config.pointSelectorConfig.helper.pointHelper` 配置来设置坐标选择器的样式。 +- feat(PanoMeasurePlugin): 支持通过 `config.pointSelectorConfig.virtualPoint` 来配置当鼠标处无模型时,是否生成虚拟点。 + +## 3.43.0 + +- feat(PanoTagPlugin): 可通过 `globalConfig.entryFromModel` 启用标签在模型态上的入口,点击后可进入全景态查看标签。 + +## 3.42.0 + +- feat(PanoTagPlugin) + 1. 优化 fov 变化时标签位置的计算。 + 2. 可通过 `globalConfig.simulate3D` 启用模拟 3d 的近大远小的效果,默认关闭。 + 3. 添加 `tag.find()` 方法,移动至适当位置找到此标签。 + 4. 添加 `loaded` 事件,load 完成后触发。 + 5. 添加 `tagsLengthChange` 事件,调用`addTag()`, `clearTags()`, `tag.destroy()` 等方法 使标签数量发生变化时触发。 + 6. 移除方法中的 `withAnimation` 参数,现在默认 `show`, `hide`, `enable` 全部带 fade 动画。 + 7. 展示性能优化,加载速度优化。 +- feat(Util): + 1. `Util.lookObject`,模型态下以最佳视角查看一个物体。 + 2. `Util.lookPoint`: 模型态下以最佳视角查看一个坐标点。 + 3. `Util.reblink`: 修复将 dom 的 opacity 主动设置为 0 时,反向闪烁动画不生效的问题。 +- chore(Object3DHelperPlugin): 优化一些代码。 + +## 3.41.7 + +- chore(\*): update `BasePlugin` + +## 3.41.6 + +- fix(PanoTagPlugin): 修复模型未加载完成时,手动调用 `changeConfig` 会报错的问题。 + +## 3.41.5 + +- fix(GuideLinePlugin): dom 闪烁动画修复 + +## 3.41.4 + +- fix(PanoMeasurePlugin): 修复走点后没有更新放大镜位置的问题。 + +## 3.41.3 + +- fix(\*): 修复众多插件在沙盘 vr 中的碰撞检测的目标错误的问题。 + +## 3.41.2 + +- fix(GuideLinePlugin): dom 闪烁动画修复 + +## 3.41.1 + +- fix(GuideLinePlugin): 闪烁动画修复 +- feat(blink): 支持闪烁 `ShaderMaterial` + +## 3.41.0 + +- feat(GuideLinePlugin): 优化路线转弯处的显示效果 + +## 3.40.4 + +- fix(ModelMakerPlugin): 修复 plugin `disable()` 后,依旧可以点击到物体的偶现问题。 + +## 3.40.3 + +- fix(GuideLinePlugin): 修复一个报错问题 + +## 3.40.2 + +- fix(GuideLinePlugin): 修复初始态为模型态时,路线引导标签不显示的问题。 +- feat(GuideLinePlugin): 没有标签数据时,不生成多余的 PanoTagPlugin 实例。 + +## 3.40.1 + +- 忽略此版本,等同于 3.40.0 + +## 3.40.0 + +- change(blink): 现在返回值为 `animeInstance`,可以通过 `animeInstance.preComplete()` 来提前结束动画。 + +## 3.39.0 + +- feat(GuideLinePlugin): 支持设置 `useAutoDepthTest` 来选择是否动态开启深度测试 + +## 3.38.0 + +- feat(ModelMakerPlugin): 支持通过 `Plugin(five, { occlusionMode?: 'depthTest' | 'translucence' })` 设置当 occlusionVisibility 开启时的显示效果 + +## 3.37.2 + +- fix(ModelMakerPlugin): 修复区域标注 `load` 后 `occlusionVisibility` 可能不立即生效的问题。 + +## 3.37.1 + +- fix(PanoTagPlugin): 修复贴片标签 `disable` 后执行闪烁动画时不生效的问题。 + +## 3.37.0 + +- feat(ModelMakerPlugin): 支持通过 `Plugin(five, { occlusionVisibility?: boolean | Mode[] })` 设置是否展示标注被 five 模型遮挡的部分。 +- fix(ModelMakerPlugin): 修复 区域标注(prism) 少了画一个面的问题。 + +## 3.36.11 + +- fix(PanoTagPlugin): 优化标签 `tag.enable` 性能。 + +## 3.36.10 + +- fix(PanoMeasurePlugin): 修复测量插件在特定条件下 `visibleFiveMode` 不生效的问题。 + +## 3.36.9 + +- fix(PanoMeasurePlugin): 修复沙盘场景下,标尺插件的 dom 部分 第一次加载时的初始位置不正确的问题。 + +## 3.36.8 + +- fix(PanoRulerPlugin): 修复标尺插件在沙盘 vr 中报错的问题。 + +## 3.36.7 + +- fix(PanoMeasurePlugin): 测量插件 view 模式 支持沙盘 VR。 + +## 3.36.6 + +- fix(ModelMakerPlugin): 标注 dom 部分 支持沙盘 VR。 + +## 3.36.5 + +- chore(\*): 一些导出修改 + +## 3.36.4 + +- fix(ModelMakerPlugin): 标注支持沙盘 VR。 + +## 3.36.3 + +- fix(PanoTagPlugin): 模型广告牌(MediaModel)支持沙盘 VR。 + +## 3.36.2 + +- feat(PanoVideoPlugin): 全景视频新增 `click` 事件,使用 `e.preventDefault()` 可以阻止默认点击行为 + +## 3.36.1 + +- fix(PanoTagPlugin) : 修复标签 disable 时,修改标签坐标后再 enable 不会更新标签 visible 的问题。 + +## 3.36.0 + +- feat(PanoTagPlugin): 优化标签性能。 + +## 3.35.2 + +- fix(PanoTagPlugin): 修复 dom 贴片在 disable 后调用 `blink` 不生效的问题。 + +## 3.35.1 + +- fix(PanoVideoPlugin): 修复在视频结束的瞬间调用 `disable` 时有一定概率不生效的问题。 + +## 3.35.0 + +- feat(PanoMeasurePlugin): 每条线可以通过数据中的 `visibleFiveMode: FiveMode[]` 来限制此条线在哪些 FiveMode 下可见 +- feat(PanoVideoPlugin): 新增 `dataLoaded` 事件 + +## 3.34.6 + +- chore(PanoVideoPlugin): 修改 controllerMap 访问权限 + +## 3.34.5 + +- fix(ModelMakerPlugin): 修复插件 disable 后,item 执行 enable 依然生效的问题。 + +## 3.34.4 + +- fix(ModelMakerPlugin): 修复区域标注(prism)高度计算错误的问题。 + +## 3.34.3 + +- fix(PanoTagPlugin): `whyHide` 支持所有场景 +- change(PanoTagPlugin): `__PANOTAGPLUGIN_DEBUG__` 现在会返回标签数最多的插件实例 + +## 3.34.2 + +- fix(ModelMakerPlugin): plugin config 问题修复 + +## 3.34.1 + +- fix(ModelMakerPlugin): 支持设置标签容器的 `zIndex` 属性;修复标签显隐问题。 + +## 3.34.0 + +- feat(PanoTagPlugin): + - 支持设置标签容器的 `zIndex` 属性。 + - 兼容 five react,并回滚 3.29.5 和 3.27.10 中的 five react 兼容方式。此方式可能会引发一些其他问题。 + - 如果遇到浏览器 resize 时标签不可见的问题时,请在插件初始化时设置 zIndex 为大于 0 的值,例: `PanoTagPlugin(five, { containerZIndex: 1 })`,或者使用 `plugin.appendTo(element)` 将插件放入稳定的容器中。 + +## 3.33.0 + +- feat(CSS3DRenderPlugin): 支持设置 wrapper 容器。 + +## 3.32.1 + +- style(PanoTagPlugin): 优化 `Panorama` 标签 UI 效果。 + +## 3.32.0 + +- feat(PanoTagPlugin): 新增 `plugin.appendTo` 方法,支持将标签容器放入到指定的 dom 中,默认与 five canvas dom 同级。 +- fix(PanoTagPlugin): 优化 `clearTags` 方法,现在会一起清除标签容器。 + +## 3.31.1 + +- fix(PanoTagPlugin): 回滚 3.24.0 中引入的标签 filter 缓存 + +## 3.31.0 + +- change(PanoTagPlugin): five 模型更新时,重新计算所有标签状态 + +## 3.30.6 + +- fix(Object3DHelper): 修复 正交相机 下无法正确移动物体的问题 +- fix(FiveDomEvent): 修复 `removeEventListener` 不传事件名时,无法移除所有事件监听的问题 + +## 3.30.5 + +- fix(PanoTagPlugin): 支持闪烁禁用的标签 +- fix(PanoTagPlugin): 优化标签不可见时闪烁的效果 + +## 3.30.4 + +- fix(blink): 修复标签闪烁问题 + +## 3.30.3 + +- doc(blink): 添加 example + +## 3.30.2 + +- doc(blink): 添加注释 + +## 3.30.1 + +- fix(ModelMakerPlugin): typing 优化 + +## 3.30.0 + +- feat(\*): 兼容 five@6.0.0-alpha.74 及大于 74 的版本 + +## 3.29.9 + +- fix(ModelMakerPlugin): 修复 3.28.9 更新导致的 3D 标注(box)的标签位置有可能不准确的问题 + +## 3.29.7 + +- fix(blink): 支持闪烁不可见的物体 + +## 3.29.6 + +- fix(\*): 导出 animejs 类型 + +## 3.29.5 + +- fix(CSS3DRender): 兼容 five/react + +## 3.29.4 + +- fix(PanoTagPlugin): 导出 `tag.blink` 类型 + +## 3.29.3 + +- fix(blink): 修复闪烁函数 blink 在处理一些有透明度的复杂模型时,第二次闪烁异常的问题 + +## 3.29.2 + +- fix(ModelMakerPlugin): 修复 item 的各种事件没有触发的 bug + +## 3.29.1 + +- chore(ModelMakerPlugin): 修改属性访问权限。 + +## 3.29.0 + +- feat(PanoTagPlugin): 支持标签闪烁:`plugin.blinkTagById(id, animeParams)` 和 `tag.blink(animeParams)` + +## 3.28.11 + +- fix(PanoTagPlugin): 修复部分标签无法加载的 bug(我是啥比 + +## 3.28.10 + +- fix(ModelMakerPlugin): 修复区域标注(prism)的 z-fighting 问题 + +## 3.28.9 + +- fix(ModelMakerPlugin): 修复包含旋转数据的 3D 标注(box)加载位置不准确的问题 + +## 3.28.8 + +- fix(PointSelector): 优化点击逻辑 + +## 3.28.7 + +- fix(PanoTagPlugin): 兼容 tag.stickType 没有时标签 config 的计算逻辑。 + +## 3.28.6 + +- fix(PointSelector): 修复 enable 时,一些状态没有重置的问题。 + +## 3.28.5 + +- fix(Object3DHelper): 修复一个 `Cannot read properties of undefined` 的报错 + +## 3.28.4 + +- fix(PanoTagPlugin): 修复 tag 的一些 events 没有触发的问题。 + +## 3.28.3 + +- fix(PanoTagPlugin): 修复 tag.id 改变后,tag 上的方法无法执行的问题 + +## 3.28.2 + +- chore: 发布 CHANGELOG + +## 3.28.1 + +- change(PointSelector): 修改射线碰撞半径 0.01 => 0.02 + +## 3.28.0 + +- feat(PanoTagPlugin): 新增 `plugin.changePositionById(id, position)` 和 `tag.changePosition(position)` + +## 3.27.10 + +- fix(PanoTagPlugin): 兼容 five/react + +## 3.27.9 + +- fix(Sculpt): 修复 `item.off()` 不生效的问题 +- fix(Sculpt): 修复 `plugin.clear()` 清除不干净的问题 +- feat(FiveDomEvents): 支持设置不在场景中的物体不触发事件 + +## 3.27.8 + +- change(PanoMeasurePlugin): 右键不退出测量 + +## 3.27.7 + +- fix(PointSelector): 兼容点云场景 + +## 3.27.6 + +- fix(PanoTagPlugin): 优化&修复标签自动展开时,其他标签被动收起的逻辑。 + +## 3.27.5 + +- fix(PanoTagPlugin): 修复 `destroyTagById` 执行后,视图没有更新的 bug + +## 3.27.4 + +- fix(PanoTagPlugin): 修复 `destroyTagById` 执行后,标签数组缓存没有更新的 bug + +## 3.27.3 + +- fix(PanoTagPlugin): 修复 contentTypeConfig 中,`ModelLike` 和 `Mapview` 等模型态 mode 配置同时存在时,会出现配置相互覆盖而不合并的问题。 + +## 3.27.2 + +- fix(PanoTagPlugin): 回滚 3.27.0 中的第二个 feature + +## 3.27.1 + +- fix(PanoTagPlugin): 修复 3.27.0 中 `initialState` 的 bug + +## 3.27.0 + +- feat(PanoTagPlugin): 支持移动屏幕时自动收起标签 +- feat(PanoTagPlugin): `initialState`支持不同 five mode + +## 3.26.0 + +- change(PanoTagPlugin): contentTypeConfig 移除对自定义标签类型的 Mixin-[type] 支持,直接使用 type 作为 key 即可 + +## 3.25.10 + +- fix(PanoTagPlugin): contentTypeConfig 支持任意自定义标签。 + +## 3.25.9 + +- fix(PanoTagPlugin): 修复 `changeConfig`, `changeContentTypeConfig` 修改影响标签展示的配置时,可能不会立即生效的问题。 +- fix(ObjectHelper): `ScaleController` 添加 `setScale` 方法。 + +## 3.25.8 + +- fix(PanoTagPlugin): 兼容 tailwind + +## 3.25.7 + +- fix(PanoVideoPlugin): shader 修复 +- chore(PanoTagPlugin): `Tag` 类型优化 + +## 3.25.6 + +- chore(PanoTagPlugin): 导出 `ContentTypeMapInterface` 类型 + +## 3.25.5 + +- chore(Sculpt): 优化 `Sculpt` ts 类型 + +## 3.25.4 + +- fix(Object3DHelper): 修复模型位移组件在特殊边界条件下位移不准确的问题。 + +## 3.25.3 + +- fix(\*): 修复插件 `load()` 时,数据校验检测不准确的问题。 + +## 3.25.2 + +- chore(Sculpt): 导出 type `SculptData` + +## 3.25.1 + +- chore(Sculpt): 导出 SculptPlugin + +## 3.25.0 + +- feat(MovePlugin): 模型漫游插件支持 `show()` `hide()` 路线 +- fix(ModelMakerPlugin): `load()`后立即应用当前`state` +- fix(ModelMakerPlugin): 修复`clear()`没有清除干净的 bug + +## 3.24.3 + +- fix(ModelMakerPlugin): 修复区域标注 prism 在特殊情况下走点后 标签会隐藏的问题 + +## 3.24.2 + +- fix(ModelMakerPlugin): 修复模型隐藏时,仍然可以点击的问题 + +## 3.24.1 + +- fix(ModelMakerPlugin): 修复 Box 名称无法显示的问题 以及 没有 name 字段时会显示 undefined 的问题 + +## 3.24.0 + +- feat(PanoTagPlugin): 滑动屏幕时的性能优化,当前点位不可能看到的标签不会有任何多余的计算。 +- fix(PanoTagPlugin): 修复 3.23.3 中手贱引入的 bug。 +- fix(ModelMakerPlugin): 修复 disable 函数报错问题。 + +## 3.23.3 + +- fix(ModelMakerPlugin): 修复循环引用的问题。 +- feat(ModelMakerPlugin): 添加函数`getItemById()`用来获取模型 Item。 + +## 3.23.2 + +- fix(ModelMakerPlugin): 多边形支持 hover 态。 +- fix(FiveDomEvent): 修复 unHover 不会触发的问题。 + +## 3.23.1 + +- fix(ModelMakerPlugin): 模型态标注标签支持碰撞检测。 + +## 3.23.0 + +- feat(ModelMakerPlugin): 新增默认 UI, 使用 `plugin.registerTagRenderer` 可自定义 UI。 + +## 3.22.0 + +- feat: add `ModelMakerPlugin` + +## 3.21.2 + +- fix(PanoMeasurePlugin): 修复`disable()`后仍能点击的问题。 + +## 3.21.1 + +- fix(\*): audio.js 支持 SSR + +## 3.21.0 + +- feat: 新增 `Sculpt`, [文档](../plugins/src/Sculpt/README.md) + +## 3.20.7 + +- fix(PanoMeasurePlugin): 彻底修复插件在序列化时会报错的问题 [相关 issue](https://github.com/mrdoob/three.js/issues/26598)。 + +## 3.20.6 + +- fix(PanoMeasurePlugin): 修复插件`disable`后,再次`enable`时,新手引导不展示的问题。 +- fix(PanoMeasurePlugin): 修复插件在序列化时会报错的问题 [相关 issue](https://github.com/mrdoob/three.js/issues/26598)。 +- chore(PanoMeasurePlugin): 移除废弃的类型声明。 + +## 3.20.5 + +- fix(GuideLinePlugin): 修复数据中没有 id 时,无法生成多条路线的 bug +- change(GuideLinePlugin): dispose 后可以正常调用 load 函数 +- feat(GuideLinePlugin): 内置默认箭头图片 + +## 3.20.4 + +- feat(MovePlugin): load 参数 data.path 支持传入坐标点数组。 + +## 3.20.3 + +- fix(PanoTagPlugin): 修复部分手机(oppo reno 9)的火狐浏览器中,视频贴片黑屏的问题 + +## 3.20.2 + +- fix(PanoTagPlugin): 修复一些特殊情况下,走点后标签点可见性判断错误的问题 + +## 3.20.1 + +- fix(PanoTagPlugin): 之前由于性能问题,去除了标签的 zIndex 策略。现在使展开后的标签的 zIndex 生效,以解决展开后的标签被其他标签遮挡的问题。 + +## 3.20.0 + +- feat(floorplan): 添加 `roomDimensionEnable` 参数, 控制是否展示分间长宽。用`getRoomDimensionText`自定义分间尺寸文案 + +## 3.19.1 + +- fix(PanoTagPlugin): 移除视频贴片不可见时的多余逻辑 + +## 3.19.0 + +- feat(PanoVideoPlugin): 添加 `unmuteByRenderID(id: string)` 方法来取消静音。 + +## 3.18.0 + +- feat(ObjectHelperPLugin): `moveController.moveByMouse()`参数`useFaceNormal`开启时,新增 `fixedFaceNormal` 参数用来设置修正后的用来做重合的 face 法向量 + +## 3.17.1 + +- feat(ObjectHelperPLugin): `moveController.moveByMouse()`参数`useFaceNormal`开启时,新增 `alignmentVector` 参数用来设置需要和面片法向重合的物体本地向量,默认使用 Y 轴重合。 + +## 3.17.0 + +- feat(ObjectHelperPLugin): `moveController.moveByMouse()` 新增 `{ useFaceNormal?: boolean }` 参数用来控制物体放置时,是否考虑面片的法线方向,默认为 `false` +- update(ObjectHelperPLugin): BoundingBox 边框线关闭 `depthTest` +- fix(ObjectHelperPLugin): 修复 controller 是否启用的判断逻辑错误的问题 + +## 3.16.2 + +- fix(ObjectHelperPLugin): 修复关闭 rotateHelper 时,放置物体会触发走点的问题 + +## 3.16.1 + +- fix(GuildLinePlugin): `skip_group` 配置移动到 `panorama_style` 中 + +## 3.16.0 + +- feat(GuildLinePlugin): 支持设置 `skip_group: boolean` 来选择是否跳过全景点位,默认为 `true` + +## 3.15.0 + +- feat(ObjectHelperPLugin): 支持设置 `moveHelper` x/y/z 轴是否开启 + +## 3.14.2 + +- chore(ObjectHelperPLugin): 优化`addObject3DHelper`方法的返回类型 + +## 3.14.1 + +- fix(GuildLinePlugin): 修复路线箭头颜色混合不正确的问题 + +## 3.14.0 + +- feat(GuildLinePlugin): 支持修改 `backgroundClip`,默认为 `border-box` + +## 3.13.0 + +- feat(GuildLinePlugin): 支持修改边框宽度 +- fix(GuildLinePlugin): 修复箭头黑边问题 + +## 3.12.7 + +- fix(PanoTagPlugin): 修复低版本浏览器非透明图片的黑屏问题 + +## 3.12.6 + +- revert: 回滚 svelte 版本 + +## 3.12.5 + +- fix(PanoTagPlugin): 修复商品标签性能问题 + +## 3.12.4 + +- fix(PanoTagPlugin): 修复一个内存泄漏的问题 + +## 3.12.3 + +- fix(AreaMaker): 优化 `tagShow` / `tagHide` 触发时机 + +## 3.12.2 + +- fix(ModalFloorplanPlugin): 修复模型户型图插件实例化时可能会错过设置 wrapper 时机的问题 + +## 3.12.1 + +- fix(FloorplanRanderPlugin): 修复户型雷达图多次调用 `appendTo` 时不生效的 bug + +## 3.12.0 + +- feat(CruisePlugin): 支持 `five@6.0` 多 work 数据 +- feat(GuildPlugin): 支持 `five@6.0` 多 work 数据 +- feat(GuildPlugin): 路线默认图片支持低版本浏览器 +- feat(PanoTagPlugin): 提供 debug 方法来关闭碰撞检测: `plugin.debugUtil.closeIntersectRaycaster()` +- fix(PanoTagPlugin): 修复 `changeGlobalConfig` 后 config 计算错误的 bug + +## 3.11.0 + +- feat(AreaMakerPlugin): item 新增事件 `tagShow` / `tagHide`,在标注标签被模型遮挡/不遮挡时触发 + +## 3.10.3 + +- fix(CruisePlugin): 修复续播问题 + +## 3.10.2 + +- chore(AreaMakerPlugin): resize 使用 `resizeObserver` 的实现方案替代 `iframe` 的实现方案 + +## 3.10.1 + +- chore: 兼容 five@6.0.0-alpha.56 + +## 3.10.0 + +- feat(AreaMakerPlugin): object_data 新增 `{ visible?: boolean }` 属性,用于控制模型的可见性,默认为 true + +## 3.9.0 + +- feat(PanoVideoPlugin): 添加渐现效果 + +## 3.8.11 + +- fix(PanoTagPlugin): 提升在点云场景下的性能 + +## 3.8.10 + +- fix(PanoTagPlugin): 兼容 Five 5.x 版本 + +## 3.8.9 + +- fix(AreaMakerPlugin): load 时之前的数据没有销毁干净的问题 + +## 3.8.8 + +- chore(PanoTagPlugin): 修改默认配置 + +## 3.8.7 + +- fix(AreaMakerPlugin): 修复 load 可能不生效的问题 + +## 3.8.6 + +- fix(MovePlugin): 修复不能重复播放的问题 + +## 3.8.5 + +- fix(PanoTagPlugin): 修复 usePoint 影响到了非自定义标签的问题 + +## 3.8.4 + +- fix(PanoTagPlugin): 修复标签在初始化过程中就妄图拿到初始化结果的问题,会导致一些设置了 visibleFiveMode 的标签无法按照预期显示 + +## 3.8.3 + +- fix(MovePlugin): 修复一些 hook 没有正常触发的问题;修复 开始播放/续播 时有延迟的的问题 + +## 3.8.2 + +- fix(CruisePlugin): 修复 CruisePlugin 和 MovePlugin 初始化参数无法设置的问题 + +## 3.8.1 + +- fix(Object3DHelperPlugin): 修复 MoveHelper 没有销毁的问题,更改 boundingBox 计算的逻辑 + +## 3.8.0 + +- feat(PanoTagPlugin): registerRenderer 新增 usePoint 参数,用于设置自定义标签是否使用标签点 + +## 3.7.0 + +- feat(MovePlugin): 新增 MovePlugin,支持按照指定的路径移动相机 + +## 3.6.0 + +- feat(AreaMakerPlugin): 支持通过设置`itemRenderer`属性来自定义标签渲染器 + +## 3.5.1 + +- fix(PanoTagPlugin): 修复修改标签 position 后没有重新计算标签可见性的问题 + +## 3.5.0 + +- feat(PanoTagPlugin): 添加 `bindRenderer(currentCententType: string, targetContentType: TagContentType)` 方法,当标签的 ContentType 为 currentCententType 时,会使用 targetContentType 的渲染器来渲染标签 +- fix(PanoTagPlugin): 修复 tag.config 在处理多种 five mode 时 config 会被覆盖的问题 + +## 3.4.1 + +- style(PanoTagPlugin): 标签样式修复 + +## 3.4.0 + +- feat(PanoTagPlugin): 添加全景标签 + +## 3.3.6 + +- fix(PanoTagPlugin): 修复走点时可能报错的问题 + +## 3.3.5 + +- feat(PanoTagPlugin): 2d 标签按需加载 dom,优化性能问题 + +## 3.3.4 + +- fix(Floorplan): 复户型图在少数情况下,第一次从模型态展示户型图时展示失败。 + +## 3.3.3 + +- fix(PanoTagPlugin): 修复 3.3.2 中可能会出现报错的问题 + +## 3.3.2 + +- fix(PanoTagPlugin): 如果 config keep 值存在,强制修改 initialState + +## 3.3.1 + +- fix(PanoTagPlugin): 修复报错 + +## 3.3.0 + +- feat(PanoTagPlugin): 标签在`Mapview`态时,支持按距离显示。 +- feat(PanoTagPlugin): 标签位置计算支持多 Work 场景下的标签位置偏移量。 +- fix(PanoTagPlugin): 修复了标签在消失动画过程中时不会更新位置的问题。 +- fix(PanoTagPlugin): 图片贴片兼容低版本 Chrome。 + +## 3.2.4 + +- fix(CurrentPanoImage): texture.minFilter 改为 THREE.LinearFilter,用于修复在部分设备下渲染图片异常。 + +## 3.2.3 + +- fix(GuideLinePlugin): 修复设置 tag 为空时再修改别的属性报错。 + +## 3.2.2 + +- fix(GuideLinePlugin): 修复 tag.data 为 null 时报错。 + +## 3.2.1 + +- fix(GuideLinePlugin): 修复配置路线引导位移时标签没有变化。 + +## 3.2.0 + +- feat(GuideLinePlugin): 路线引导支持配置位移。 + +## 3.1.3 + +- fix(PanoTagPlugin): 修复带帧动画的标签在低版本浏览器中显示异常的问题。 + +## 3.1.2 + +- fix(PanoTagPlugin): 视频贴片 autoplay 为 true 时,在微信场景下允许一直尝试自动播放。 + +## 3.1.1 + +- fix(floorplan-radar): 修复雷达图参数为空时报错的问题。 + +## 3.1.0 + +- feat(floorplan): 户型图支持缺失楼层配置。可以配置一张占位图片和文字。 +- feat(floorplan): 雷达图图支持缺失楼层配置占位图。 + +## 3.0.1 + +- fix(PanoTagPlugin): 修复 safari 中模型态标签 hide 时,opacity 不会立即生效的问题 + +## 3.0.0 + +- feat(\*): 插件支持 Five 6.x 版本 +- fix(CSS3DRenderPlugin): 嵌套 object 的 show/hide 修复 +- fix(PanoTagPlugin): 修复 renderType 为 Mesh 时,MediaPlane 标签 无法正常显示 gif 的问题 +- fix(PanoTagPlugin): 修复 changeConfig 性能问题;其他 bug 修复 +- fix(PanoMeasurePlugin): 设置放大镜容器为传入的 container 而不是 body +- fix(PanoMeasurePlugin): 修复 Five 不为全屏时,测量时的辅助坐标点计算错误的问题 +- chore(floorplan): 兼容 five changeMode 时, 传入 0, 得到的可能是 Math.PI \* 2 的问题 +- 优化 FiveDomEvents 性能 + +## 2.31.0 + +- PanoTagPlugin: + - feat: 更好的支持`2D标签`在模型态下的展示,内置模型态标签的相关配置 + - feat: visibleMode 支持 `Mode | Mode[] | 'PanoramaLike' | 'ModelLike' | 'all' | function`; 默认值为 `tag.fiveState?.mode ?? 'Panorama'` + - feat: `plugin.config.contentTypeConfig` 支持设置标签在不同 FiveMode 下的展示行为。 具体值参照 `type ContentTypeConfigKey` + - feat: 使用 2.27.3 相似方式 优化 `tag.contentType` 的类型推断 + - fix: 修复部分情况下标签的渐显动画失效的问题 + - fix: 修复`2D标签`远近距离判断错误的问题 + - fix: 使用 `five.model.uuid` 代替 `five.work.workCode` 作为标签点位缓存的 key, 修复加载其他 five 后,缓存依然生效的问题 + - chore: `FiveDomEvents` 代码优化 + +## 2.30.3 + +- fix(MapviewFloorplanPlugin): 修复移动端缩放失效。 + +## 2.30.2 + +- fix(AreaMakerPlugin): 修复 initialState 不生效。 + +## 2.30.1 + +- fix(CurrentPanoImagePlugin): 修复 five initialState.mode 不为 Panorama 且 Plugin initialState.enabled 为 false 时,先 changeMode 到 Panorama 再调用 Plugin.enable() 在首点位模型没有正常展示的问题。 +- feat(CurrentPanoImagePlugin): 提供 \_\_whyCantSeeMesh 方法,用于 debug 时查找为什么无法看到模型。 + +## 2.30.0 + +- feat(CurrentPanoImagePlugin): 新增 CurrentPanoImagePlugin。 + +## 2.29.0 + +- feat(PanoTagPlugin): 添加函数 `tag.whyHide(tagId)`,会告诉你为什么看不到标签 +- fix(PanoTagPlugin): 重构物体点击判断逻辑,修复 bug;减少射线检测次数,提升性能 + +## 2.28.6 + +- fix(CruisePlugin): 后置 load 函数中的 `clearPauseData()` 调用时机,修复 play 过程中执行 load 导致暂停的情况下,记录了暂停数据的问题 + +## 2.28.5 + +- fix(PanoCompassPlugin): 支持配置 logoURL + +## 2.28.4 + +- fix(PipelinePLugin): typo +- update github action + +## 2.28.3 + +- fix(AreaMakerPlugin): 修复屏幕 Resize 时,标签位置错误。 + +## 2.28.2 + +- fix(AreaMakerPlugin): 修复调用 plugin.hide 时,标注标签没有隐藏。 +- fix(AreaMakerPlugin): 修复 Five 初始状态不是全景时,没有正确加载。 +- fix(AreaMakerPlugin): 修复插件参数没有正确传入。 + +## 2.28.1 + +- fix(PanoTagPlugin): 修复透明图片贴片的黑边问题 + +## 2.28.0 + +- feat(AreaMakerPlugin): 添加 AreaMakerPlugin。 + +## 2.27.4 + +- fix(PanoTagPlugin): 修复安卓小程序中,视频贴片无法自动播放的问题 + +## 2.27.3 + +- feat(PanoTagPlugin): 优化 tag.data 的类型 + 1. 对于未知类型的 tag 如 `tag: Tag`,现在可以使用 tag.data.my_any_property 而不报 ts 错误, 而之前版本需要使用`tag: Tag` + 2. 对于已知类型的 tag 如 `tag: Tag<'Text'>`, 现在可以使用 tag.data.my_any_other_property 而不报 ts 错误 + +## 2.27.2 + +- fix(PanoTagPlugin): 修复 tag 没有处理模型标签的 clickable。 + +## 2.27.1 + +- fix(PanoTagPlugin): 修复在部分 IOS 微信场景中,虚拟视频自动播放时播放按钮没有消失的 bug + +## 2.27.0 + +- feat(PanoTagPlugin): 碰撞检测支持更精细的检测配置,默认检测所有 tag.position,默认任意一点检测通过则视为碰撞检测通过 +- fix(PanoTagPlugin): 修复 MediaPlane 标签的 `tag.disable()` / `tag.enable()` 方法不生效的 bug +- fix(PanoTagPlugin): MediaPlane visible 状态变化为 false 时,立即销毁图片资源 +- fix(PanoTagPlugin): TextTag 支持换行符 + +## 2.26.2 + +- fix(PanoTagPlugin): 修复模型 loaded 判断。 + +## 2.26.1 + +- fix(MeasurePlugin): 修复测量撤销时线段删除有问题 & 修复报错。 + +## 2.26.0 + +- fix(Floorplan): 修复户型图插件连续调用两次 show() 展示失败。 +- feat(Pipeline): 添加 Pipeline 插件。 + +## 2.25.0 + +- feat(MapviewFloorplanPlugin): Mapview Floorplan 支持惯性滚动。 + +## 2.24.2 + +- fix(PanoTagPlugin): fix ImagePlane z-fighting + +## 2.24.1 + +- fix(PanoMeasurePlugin): 测面积支持自定义单位转换,使用方法 `changeConfigs(getAreaText: (area: number) => string` + +## 2.24.0 + +- feat(PanoTagPlugin): MediaPlane visible 状态变化为 false 时,立即销毁视频资源 + +## 2.23.1 + +- fix(PanoCompassPlugin): 支持 i18n 函数 + +## 2.23.0 + +- feat(PanoTagPlugin): textTag 的 plane 样式下新增 data.titleMaxRows 和 data.descriptionMaxRows,用于控制最大显示行数,默认显示全部 +- fix(PanoTagPlugin): 修复 textTag.data.edit 的 placeholder 为空字符串时不显示插入符的问题 + +## 2.22.0 + +- feat(PanoMeasurePlugin): 新增测面积功能,使用 editParams.allowMeasureType: ['line', 'area'] 开启 + +## 2.21.1 + +- fix(PanoCompassPlugin): 修复 config.staticPrefix 不生效的问题 + +## 2.21.0 + +- fix(MeasurePlugin): 为了优化性能,测量插件去除「吸附」功能,将不会在模型初始化时计算模型边界。 +- fix(ModelChassisCompassPlugin): 修复模型底盘在模型改变时,没有更新位置。 + +## 2.20.9 + +- chore(\*): 插件图片转为 base64 或支持 staticPrefix 参数 + +## 2.20.8 + +- fix(GuideLinePlugin): 路线标签距离使用 Math.round。 + +## 2.20.7 + +- fix(GuideLinePlugin): 更改路线标签线条宽度。 + +## 2.20.6 + +- fix(GuideLinePlugin): 修复路线标签样式。 + +## 2.20.5 + +- feat(GuideLinePlugin): 标签展示路线长度。 + +## 2.20.4 + +- fix(PanoTagPlugin): 修复图片贴片没有根据 config.clickable 来设置点击事件的问题 + +## 2.20.3 + +- fix(\*): fix Lint。 +- fix(FloorplanRadarPlugin): 修复鼠标 hover 报错。 +- feat(GuideLinePlugin): 支持距离计算。 + +## 2.20.2 + +- fix(GuideLinePlugin): 修复旧版本数据无法展示。 + +## 2.20.0 + +- feat(PanoTagPlugin): + + - Typescript 类型优化 + - 新增方法 `tag.changeData(data: PartialObjectDeep): void`,用于修改标签的 `data` + - 新增方法 `registerRenderer(contentType: string, renderer: ElementRenderer): void`,插件会按照传入的 `renderer` 来渲染相应的 `ContentType` + +- fix(PanoTagPlugin): 使用 `PartialObjectDeep` 代替 `PartialDeep`, 修复复杂场景下的类型推断问题 +- fix(\*): 修复 eslint 失效问题 + +- chore(\*): 修改 load 日志级别为 `Verbose` + +## 2.19.3 + +- fix(PanoTagPlugin): 使用 z-index 代替 dom 排序,解决标签数量较多时的卡顿问题 + +## 2.19.2 + +- fix(PanoTagPlugin): 修复多媒体标签没有自动轮播的问题。 + +## 2.19.1 + +- fix(PanoMeasure): 修复移动端测量工具没有触发 editedPolylineChange。 + +## 2.19.0 + +- feat(PanoTagPlugin): 添加 Model 类型。 +- feat(PanoTagPlugin): 允许自动转向。 +- feat(PanoTagPlugin): 添加 MediaModel 和 Model 的点击行为。 +- fix(PanoTagPlugin): 修复标签插件初始化时合并 config 没有深度合并。 +- fix(PanoTagPlugin): 修复 MediaModel renderType 不为 Mesh 时,非 Panorama 态展示异常。 +- fix(PanoMeasure): 修复移动端删除测量线段报错。 + +## 2.18.5 + +- fix(PanoTagPlugin): 修复标签 style.point 报错。 + +## 2.18.4 + +- fix(GuideLinePlugin): 修复历史数据默认展示逻辑。 + +## 2.18.3 + +- fix(GuideLinePlugin): 修复标签控制判断。 + +## 2.18.2 + +- feat(GuideLinePlugin): 允许通过传入空值动态删除标签。 + +## 2.18.1 + +- fix(GuideLinePlugin): 加载标签插件时,不使用 followModelVisibility。修复自定义标签楼层显示错误。 + +## 2.18.0 + +- feat(GuideLinePlugin): 路线引导插件支持自定义路径。 + - 支持添加模型 & 全景两种不同的路线。 + - 支持配置路径背景、贴图颜色、边框、缩放。 + - 支持模型态时添加起点、终点标签。 + - 支持路径闪烁动画。 + - 支持路径流动动画。 +- refactor(\*): 优化打包: + - 支持 CJS 库的引用。 + - 优化 ESLint,在引用 TS 声明时,需要显示表明 import type。 + +## 2.17.1 + +- fix(PanoTagPlugin): 修复微信场景中的视频贴片不能自动播放的问题 +- change(PanoTagPlugin): 修复一个拼写错误, autoUnfoldWhenHide -> autoFoldWhenHide + +## 2.17.0 + +- feat(PanoTagPlugin): tag config 新增 initialData 字段,可以设置标签中的 data 的初始值。tag.mergeConfig.initialData 会深度合并入 tag.data 中 +- feat(PanoTagPlugin): tag config 新增 followModelVisibility 字段,用于控制当标签在 Floorplan、MapView 可见时,是否仅在当前高亮的楼层显示。默认值为 false +- feat(PanoTagPlugin): 视频贴片支持通过 `tag.config.initialData.autoplayConfig.autoplayVideo` 或 `tag.data.autoplayConfig.autoplayVideo` 设置默认是否播放,默认值为 false +- fix(PanoTagPlugin): 修复以 Mesh 形式渲染的图片贴片没有 emit 点击事件的 bug +- fix(PanoTagPlugin): 修复以 Mesh 形式渲染的贴片的 ObjectFit 没有生效的 bug +- fix(PanoTagPlugin): 将 five.panoIndex 改为 five.getCurrentState().panoIndex,保证 panoIndex 不为 undefined + +## 2.16.1 + +- fix(PanoTagPlugin): 视频贴片隐藏/禁用时,不再监听播放按钮 Mesh 的点击事件 +- fix(PanoTagPlugin): 修复视频被动播放时封面图的展示逻辑 + +## 2.16.0 + +- feat(PanoTagPlugin): 视频贴片支持以 Mesh 方式渲染 +- feat(PanoTagPlugin): 优化 Five 焦点环在不透明图片贴片上的效果 +- fix(PanoTagPlugin): 修复 getRenderType 有可能返回 undefined 的 bug,这个 bug 会导致部分含有 mediadata 的 3DPoint 标签无法显示 +- fix(PanoTagPlugin): 修复广告牌中的图片以 css3d behind 模式渲染时, 调用 disable 时没有删除 css3dObject.opacityMesh 的问题 +- fix(PanoTagPlugin): 修复广告牌中的图片以 css3d behind 模式渲染时, 调用 enable 时没有同步 css3dObject 的 matrix 的问题 + +## 2.15.0 + +- change(PanoTagPlugin): 单张的视频贴片不再支持以 behindDom 模式渲染,因为目前会有黑边问题;后续会直接使用 Mesh 实现 +- change(threex): 监听到 touch 相关事件后不再执行 preventDefault() +- feat(PanoTagPlugin): 自定义标签(customTag)取消了展开/收起时的默认样式 +- feat(PanoTagPlugin): 标签添加 className 属性,可以在标签的父元素上添加自定义的 className +- fix(PanoTagPlugin): 修复视频贴片播放时没有声音的问题 +- fix(PanoTagPlugin): 修复视频贴片以 Dom 形式渲染时无法播放的问题 + +## 2.14.3 + +- fix(PanoTagPlugin): 虚拟屏幕标签存在多张图片的时候不以 behind 模式渲染 +- fix(PanoTagPlugin): 单张的视频贴片支持以 behind 模式渲染 +- fix(CruisePlugin): 修复 CruisePlugin 解析数据时可能计算出错误 longitude/latitude 的问题 + +## 2.14.2 + +- fix(PanoFloorplanRadarPlugin): 修复 PanoFloorplanRadarPlugin 配置 hoverEnable 为 true 报错的问题 + +## 2.14.1 + +- fix(ModelChassisCompassPlugin): 替换模型底盘文件使用的贴图宽高为 2 的整数次幂 + +## 2.14.0 + +- feat(PanoTagPlugin): MediaModel(虚拟广告牌)新增 `config.renderType: 'Mesh' | 'Dom'` 配置,默认值为`Dom` +- chore(\*): 通过 loadTexture 函数加载的 texture 的 wrapS/wrapT 默认值设置为 ClampToEdgeWrapping + +## 2.13.2 + +- refactor(floor & tag & roomLabel): 更改 dom resize 监听。从 iframe 改成了 resizeObserver。 + +## 2.13.1 + +- fix(\*): 修复 ios16.4 上 texture 使用默认 mipmap 的方式插值时导致 texture 变黑的问题 + +## 2.13.0 + +- feat(PanoTagPlugin): 三维图片标签(贴片标签)新增 `config.renderType: 'Mesh' | 'Dom'` 配置,默认值为`Dom`,当数据中只有一张图片时,可以选择 Mesh 或 CSS3DRender 形式渲染。 + +## 2.12.0 + +- feat(PanoMeasurePlugin): 支持国际化配置。 + +## 2.11.2 + +- feat(TopviewFloorplanPlugin ModelFloorplanPlugin MapviewFloorplanPlugin): 支持 highlight 高亮 支持 去掉 Camera + +## 2.11.1 + +- feat(ModelRoomLabelPlugin): 支持 Mapview 模式。 + +## 2.11.0 + +- fix(PanoTagPlugin): 修复无法被展开/收起的标签可以通过 changeUnfoldedById 方法强制展开/收起的 bug +- feat(\*): BasePlugin 添加 `readonly VERSION: string` 属性,默认值取自 package.json 中的 version 字段 +- feat(PanoTagPlugin): + - 优化帧动画组件,减少不必要的 Dom 和计算 + - 标签点支持帧动画 + - 不再建议通过 size 设置标签点大小,而是通过 ratio 指定输入图片为几倍图,默认为三倍图 + +## 2.10.8 + +- fix(panoTagPlugin): 修复当`音频标签A`播放结束后,播放其他`音频标签B`时,`音频标签A`的播放动画会触发的问题。 +- fix(PanoTagPlugin): 修复音频标签无法在部分 iPhone `(>= ios 15)` 中播放第二次的问题。 +- 相关文档: + - [github issus](https://github.com/aws/amazon-chime-sdk-js/issues/2394) + - [webkit bugs](https://bugs.webkit.org/show_bug.cgi?id=241152) + - [Auto-Play Policy Changes for macOS](https://webkit.org/blog/7734/auto-play-policy-changes-for-macos/) + +## 2.10.7 + +- fix(PanoTagPlugin): 修复 hide 未隐藏 MR 标签。 + +## 2.10.6 + +- fix(PanoVideoPlugin): 修复 video 事件监听丢失。 + +## 2.10.5 + +- fix(PanoVideoPlugin): 修复看向模型时视角错误。 +- perf(PanoVideoPlugin): 优化视频添加时机。 + +## 2.10.4 + +- fix(PanoVideoPlugin): 修复 load 导致的 enable 失效。 + +## 2.10.3 + +- fix(PanoTagPlugin): 修复音频标签在部分 iPhone `(<= ios 15)`上续播失败的问题。原因是浏览器中的 HTMLAudioElement 在设置 currentTime 时,会根据 metadata 信息做校验,所以在 onloadeddata 事件触发前无法成功设置 currentTime。 +- 相关文档: + - [MDN]('https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/currentTime') + +## 2.10.2 + +- fix(PanoVideoPlugin): 点位视频支持点击播放时,判断视频 Mesh 是否在场景中。 + +## 2.10.1 + +- feat(PanoVideoPlugin): 点位视频支持点击播放。 +- feat(PanoVideoPlugin): 点位视频支持点击看向某个视频元素。 + +## 2.10.0 + +- feat(PanoVideoPlugin): 添加点位视频融合插件。 + +## 2.9.2 + +- fix(PanoTagPlugin): 修复音频标签第二次播放时,点击播放按钮无反应的问题。 + +## 2.9.1 + +- feat(PanoMeasurePlugin): 测量工具 DistanceDOM 不再判断端点是否超出屏幕。 + +## 2.9.0 + +- feat(PanoTagPlugin): MarketingTag 新增黑色主题: `theme: 'light' | 'dark'`, 默认为 `light`。 +- feat(PanoTagPlugin): Media 组件优化,一张图片/视频时不放入轮播组件中。 +- fix(PanoTagPlugin): 修复 disable() 无法完全禁用 MediaModelTag 的问题 + +## 2.8.6 + +- feat(PanoTagPlugin): 添加 ContentType 为 Sticker 的 Tag +- fix(PanoTagPlugin): 修复 LinkTag 动画帧数为 1 时不显示文字的问题 + +## 2.8.4 + +- fix(Object3DHelper): 修复初始化时的一个报错 + +## 2.8.3 + +- fix(Object3DHelper): 重构优化部分旋转逻辑,修复绕旋转 z 中心旋转时的 bug + +## 2.8.2 + +- fix(PanoTagPlugin): 修复 MediaModelTag loading 计算错误。 + +## 2.8.1 + +- fix(PanoTagPlugin): 修复 MediaModelTag 射线检测。 + +## 2.8.0 + +- feat(floorplan): 户型图插件添加配置 + - 分间面积是否展示:roomAreaEnable + - 分间名称是否展示:roomNameEnable + +## 2.7.3 + +- fix(PanoTagPlugin): 修复部分标签 content 无法点击的问题 + +## 2.7.2 + +- fix(Object3DHelperPlugin): 修复 Object3DHelperPlugin 的 CSS3DScaleHelper 的操作框位置错误的问题 + +## 2.7.1 + +- fix(PanoTagPlugin): 修复 disable -> load -> enable 路径 MediaModelTag media content 不展示。 + +## 2.7.0 + +- feat(PanoTagPlugin): 添加 ContentType 为 MediaModel 的 Tag。 + + - 允许加载外部 GLTF 模型。 + - 允许通过 4 个点和多媒体信息,配置模型上应该展示的多媒体。 + - TagConfig 添加 visibleFiveMode,允许配置在哪个模态下展示标签。 + - 允许动态更改 Tag css3D mode。 + +- feat(Object3DHelper): + + - 新增 BoundingBoxHelper,默认关闭 + - 新增配置可以控制三条旋转轴的显示/隐藏 + - 修复一些 bug + +- change(PanoTagPlugin): + - 使用 svelte-carousel 代替 swiper + - 标签的 tag.data.objectFit 默认值改为 fill + +## 2.6.6 + +- fix(TagPanoPlugin): 修复 config `clickable` 未生效的情况 +- change(TagPanoPlugin): 移除文字 word-break: break-all 的 css 属性 + +## 2.6.5 + +- fix(TagPanoPlugin): videoTag disable picture-in-picture + +## 2.6.4 + +- feat(GuidePlugin): fix dispose function + +## 2.6.3 + +- feat(PanoTagPlugin): [changelog: 2.0.8](https://github.com/realsee-developer/dnalogel/blob/main/plugins/src/PanoTagPlugin/Archive/CHANGELOG.md) + +## 2.6.2 + +- fix(CruisePlugin): 漫游插件(CruisePlugin)支持设置路线插件(GuideLinePlugin)的贴图等参数。 + +## 2.6.1 + +- fix(PanoMeasurePlugin): 修复先 load 数据再 changeMode:View 时,没有应用 panoIndexes 的问题。 + +## 2.5.4 + +- fix(PanoTagPlugin): 修复一个比较严重的报错 + +## 2.5.3 + +- fix(PanoTagPlugin): 修复模型状态下仍然可以点击标签点的问题 + +## 2.5.2 + +- fix(PanoMeasurePlugin): 修复 View 模式 load 数据时没有应用 visiblePanoIndexes。 + +## 2.5.1 + +- fix(PanoTagPlugin): tag-container 添加 `transform: translate3d(0,0,0)`,解决 iPhone13 上标签闪烁的问题,以及可能会影响其他 Dom 元素正常渲染的问题。 + +## 2.5.0 + +- feat(PanoTagPlugin): 标签插件升级。 [changelog: 1.2.7 -> 2.0.5](https://github.com/realsee-developer/dnalogel/blob/main/plugins/src/PanoTagPlugin/Archive/CHANGELOG.md) + +## 2.4.0 + +- 1. feat(MeasurePlugin): 测量工具支持标尺功能。 + +## 2.3.8 + +- 1. feat(PanoTagPlugin): tag dom 添加 `data-content-type={tag.contentType}` 用来标识标签的 contentType + +## 2.3.6 + +- 1. feat(CruisePlugin): load 添加参数 moveToFirstPanoDuration,可指定移动到漫游初始点时的速度。 + +## 2.3.5 + +- 1. feat(model-view-plugin): 支持动态 enable 和 disable。 + +## 2.3.4 + +- 1. fix(pano-tag-plugin): 修复空格不展示。 + +## 2.3.2 + +- 1. feat(pano-measure-plugin): 支持传入自定义 UI 文案 + +## 2.2.7 + +- 1. fix(build:libs): 修复 libs 构建产物异常的问题。 + +## 2.2.6 + +- 1. feat(entry-door): 入户门插件支持配置 name。 + +## 2.2.1 + +- 1. fix(floorplan-radar): 修复在 panoArrived 之后 loadData 时初始展示楼层只会是一层的问题。 + +## 2.2.0 + +- 1. refactor: 开发/构建流程优化 + +## 2.1.1 + +- 1. feat: PointHelper 和 PointDomHelper 直径改成 0.4m。 + +## 2.1.0 + +- 1. feat: CSS3DRenderPlugin API 支持插件 3.0 标准 +- 2. refactor: CSS3DRenderPlugin 重构,提供不依赖 Five 的内部类 +- 3. fix: CSS3DRenderPlugin 修复在部分情况下,CSS3DDom 最终渲染结果与传入的四个点的朝向可能不一致的情况 +- 4. feat: ModelTVVideoPlugin 视频点击行为由 「静音播放/不静音播放」 改为 「播放/暂停」,且在暂停时显示播放按钮 +- 5. feat: 导出 Util + +## 2.0.4 + +- 1. 构建工具优化 + +## 2.0.3 + +- 1. fix: ModelRoomLabelPlugin 修复在 Five 模型切换动画过程中改变楼层,没有触发刷新的问题。 +- 2. fix: ModelRoomLabelPlugin 修复切换楼层时,没有触发立即刷新的问题。 +- 3. refactor: ModelViewPlugin 支持配置锁定视角和点位。 + +## 2.0.2 + +- 1. feat: FloorplanPlugin 支持动态修改房间面积展示和房间标尺展示 +- 2. feat: PanoRulerPlugin 支持动态修改距离展示 +- 3. feat: PanoMeasurePlugin 支持动态修改距离展示 +- 4. refactor: FloorplanPlugin 允许 `setState` 传入 `Partial` 而不是 `Config` + +## 2.0.0 + +- 1. fix: `ModelViewPlugin` 修复模型部分材质不展示的问题 +- 2. feat: CruisePlugin 漫游插件 +- 3. feat: GuideLinePlugin 地面路线引导插件 + +## 2.0.0-alpha.57 + +- 1.fix: PanoRulerPlugin 部分数据情况下 element 未 display: none 问题。 + +## 2.0.0-alpha.56 + +- 1.fix: PanoRulerPlugin off 全量事件监听。 + +## 2.0.0-alpha.55 + +- 1.fix: PanoRulerPlugin 异常 Dom。 +- 2.51 ~ 54 版本为测试阶段,主版本无异常变更。 + +## 2.0.0-alpha.50 + +- 1.feat: MapviewFloorplanPlugin: 添加大空间户型图插件 + +## 2.0.0-alpha.49 + +- 1.fix: ModelTVVideoPlugin 多点位视频播放。 + +## 2.0.0-alpha.43 + +- 1.fix: PanoCompassPluginData 导出 + +## 2.0.0-alpha.42 + +- 1.fix: PanoCompassPlugin 未完全 dispose 导致切换 VR 重新加载数据出现异常。 +- 2.fix: PanoCompassPlugin 在 five 切换全景与模型,入户门与分间指向错位的问题。 + +## 2.0.0-alpha.41 + +- 1.feat: 40 版本漏发。 + +## 2.0.0-alpha.40 + +- 1.refactor: PanoMeasurePlugin: 添加 View Mode,支持用户仅预览和点击高亮。 + +## 2.0.0-alpha.39 + +- 1.feat: 更新 ItemLabelPlugin 策略,仅在全景模态下展示。 + +## 2.0.0-alpha.38 + +- 1.feat: 新增 PanoRulerProPlugin。 + +## 2.0.0-alpha.37 + +- 1.feat: 参考 plugins/src/floorplan/CHANGELOG.md v1.0.1 + +## 2.0.0-alpha.36 + +- 1.style: PanoMeasurePlugin pc 端 UI 优化 +- 2.style: PanoMeasurePlugin 准心优化,支持是否展示法向量和小球颜色可配置 +- 3.fix: 修复 ResizeObserver 使用。 +- 4.refactor: 参考 plugins/src/floorplan/CHANGELOG.md v1.0.0 + +## 2.0.0-beta.36 + +- 1.refactor: 户型图相关插件改造,详情参考 floorplan/CHANGELOGE.md。 + +## 2.0.0-alpha.35 + +- 1.style: PanoSpatialTagPlugin 标签样式兼容, 标签阴影背景自适应; +- 2.feat: PanoSpatialTagPlugin 开放可见距离配置参数,此功能不保证最佳 UI 效果); +- 3.refactor: PanoSpatialTagPlugin 更新中心点位置及事件监听。 + +## 2.0.0-alpha.34 + +- 1.feat: 新增 PaintBrush 组件,此版本为实验版,请谨慎使用。 + +## 2.0.0-alpha.33 + +- 1.fix: Floorplan Plugins Compass & ModelChassisCompassPlugin 修复对 north_rad 为 0 的处理 +- 2.fix: panospatialtagplugin 兼容 nextjs 出现的 text 样式问题 + +## 2.0.0-alpha.32 + +- 1.feat: PanoRulerPlugin 修改标尺隐藏策略,线长小于 0.3m 隐藏; +- 2.fix: TopViewFloorplanPlugin & ModelFloorplanPlugin wrapper pointer-events: none。 + +## 2.0.0-alpha.31 + +- 1.fix: 修复 ?? 语法在 svelte 中不编译的问题。 + +## 2.0.0-alpha.30 + +- 1.feat: PanoMeasurePlugin 新增移动端 UI 交互模式 +- 2.feat: PanoMeasurePlugin 点线、标签气泡、删除按钮、三维坐标系 UI 交互优化 +- 3.feat: PanoMeasurePlugin 优化放大镜功能,支持可拖拽,新增放大镜开放参数 +- 4.fix: TopviewFloorplanPlugin 兼容全局 text-align 使用 +- 5.fix: 新增 ItemLabelPlugin 内测版 + +## 2.0.0-alpha.29 + +- 1.chore: 删除 react 依赖. + +## 2.0.0-alpha.28 + +- 1.chore: 优化打包输出路径. + +## 2.0.0-alpha.27 + +- 1.feat: PanoSpatialTagPlugin 兼容 bvh 为 false 模式. + +## 2.0.0-alpha.26 + +- 1.fix: ModelRoomLabelPlugin - 修复渲染区域大小改变时,标签位置没有更新 +- 2.pref: ModelRoomLabelPlugin - 优化渲染逻辑 + +## 2.0.0-alpha.25 + +- 1.refactor: 恢复发版 + +## 2.0.0-alpha.24 + +- 1.feat: PanoRulerPlugin 支持数据 reload。 + +## 2.0.0-alpha.23 + +- 1.fix: 修复 PanoFloorplanRadarPlugin reload 数据时报错 +- 2.fix: 修复 PanoFloorplanRadarPlugin reload 户型图数据后雷达图标位置没有适配 + +## 2.0.0-alpha.22 + +- 1.fix: 修复 PanoMeasurePlugin disable 状态下仍有背景色占位问题。 + +## 2.0.0-alpha.21 + +- 1.fix: 修复 PanoMeasurePlugin 仅初始化 UI 面板仍占位为题。 + +## 2.0.0-alpha.20 + +- 1.fix: 修复 PanoMeasurePlugin hide 时 UI 面板仍占位为题。 + +## 2.0.0-alpha.19 + +- 1.fix: 修复在模型中切换全部楼层,切换回户型图,展示的是上一次展示时的楼层; +- 2.fix: 修复户型图界面切换楼层时,图片与 SVG 渲染有时间差导致闪烁的问题; +- 3.feat: TopviewFloorplanPlugin 插件支持放大缩小; +- 4.feat: ModelFloorplanPlugin 插件,autoShowEnable 和 hoverEnable 能同时支持; +- 5.chore: 设置 tsconfig.json importsNotUsedAsValues 为 error,在引用类型时,必须显示写为 import type。 + +## 2.0.0-alpha.18 + +- 1.fix: 修复 PanoMeasurePlugin 使用时 hammerjs 报错问题。 + +## 2.0.0-alpha.17 + +- 1.fix: 修复构建输出 px2rem 失效问题。 + +## 2.0.0-alpha.16 + +- 1.fix: 修复 z-index 问题; +- 2.fix: 修复 ModelItemLabelPlugin 事件监听问题。 + +## 2.0.0-alpha.15 + +- 1.refactor: 优化 ModelItemLabelPlugin 在调用 five.setState() 时的动画显示。 + +## 2.0.0-alpha.14 + +- 1.feat: 新增 ModelTVVideoPlugin 插件; +- 2.fix: 修复 ModelItemLabelPlugin disable & enable 方法逻辑; +- 3.refactor: 增加 ModelItemLabelPlugin 类型导出。 + +## 2.0.0-alpha.13 + +- 1.chore: 修改 tsconfig.json target 配置项为 es6。 + +## 2.0.0-alpha.12 + +- 1.feat: 新增 ModelItemLabelPlugin + +## 2.0.0-alpha.11 + +- 1.fix: 修复 ModelRoomLabelPlugin 未监听多楼层切换 rerender 问题。 +- 2.feat: ModelFloorplanPlugin & TopviewFloorplanPlugin 新增 `northDesc?: string` 配置项,支持用户修改指北针名称。 + +## 2.0.0-alpha.10 + +- 1.feat: 新增空间三维标签插件 PanoSpatialTagPlugin +- 2.feat: 新增轻量 ejs 渲染模板函数 shared-utils/tinyEJSrender.js + +## 2.0.0-alpha.9 + +- 1.refactor: 增加插件独立 js 输出及对 svelte 的编译。 + +## 2.0.0-alpha.8 + +- 1.fix: 修复 ModelViewPlugin 实景 VR 模型不居中问题; +- 2.fix: 修复 ModelRoomLabelPlugin fov 更新未 rerender 问题; +- 2.fix: 修复 ModelRoomLabelPlugin enable 判断问题; +- 4.fix: 修改 ModelFloorplanPlugin 在全景态满足户型图的俯仰角时会自动切换户型图问题。 + +## 2.0.0-alpha.7 + +- 1.fix: PanoCompassPlugin 向下兼容; +- 2.feat: 新增 PC 全景测量插件:PanoMeasurePlugin; +- 3.docs: 修改 README.md; + +## 2.0.0-alpha.6 + +- 1.fix: 标尺插件 PanoRulerPlugin 所有标尺仅展示一次问题; +- 2.fix: TopviewFloorplanPlugin && ModelFloorplanPlugin 插件小雷达位置显示不正确问题; +- 3.feat: 为 TopviewFloorplanPlugin && ModelFloorplanPlugin 插件新增线框图吸附位置配置选项。 + - 可选地板、天花板、模型中心,默认吸附选项为模型中心。 + +## 2.0.0-alpha.5 + +1.修复全景指南针插件 PanoCompassPlugin 默认导出 name + +## 2.0.0-alpha.4 + +1.新增全景标尺插件 PanoRulerPlugin + +## 2.0.0-alpha.3 + +1.新增全景指南针插件 PanoCompassPlugin diff --git a/README.md b/README.md new file mode 100644 index 000000000..41329545f --- /dev/null +++ b/README.md @@ -0,0 +1,116 @@ +

+ +

+ + +

+ + npm version + + + install size + + + license + +

+ +

@realsee/dnalogel

+ +# 👀 Overview + +@realsee/dnalogel 将 [如视(realsee.com)](https://realsee.com) **VR 空间交互** 常用能力沉淀,并以 `Five Plugins` 形式进行抽象。 +结合[如视三维空间重建渲染引擎 Five](https://open-platform.realsee.com/developer/docs/five/intro/) +与 [如视开放 API](https://open-platform.realsee.com/developer/openapi/?id=1001) ,可以制作出丰富多彩的三维空间应用。不论是经过线上环境千锤百炼的刚需功能,还是灵感一现的炫酷尝试,所有已经落地的功能我们均毫无保留的开源至github [realsee-developer/dnalogel](https://github.com/realsee-developer/dnalogel) 。 + +# 🔨 Usage + +**1、安装** + +```bash +npm install @realsee/dnalogel +``` + +```bash +yarn add @realsee/dnalogel +``` + +**2、插件注册** + +```js +import { Five } from '@realsee/five' +import { Plugin } from '@realsee/dnalogel' +const five = new Five({ + plugins: [[Plugin, 'PluginName', initOptions]], +}) +``` + +**3、插件方法使用** + +```js +// 不同插件提供的方法可能存在差异,请参考各插件 API 文档 +five.plugins.PluginName.load(data) +five.plugins.PluginName.enable() +five.plugins.PluginName.disable() +five.plugins.PluginName.dispose() +``` + +**4、插件依赖数据获取** + +您可以通过 [open API](https://open-platform.realsee.com/developer/open/api#/) 查看数据获取方式及相关 open API 。 + +# 📖 Documents + +- [说明文档](https://open-platform.realsee.com/developer/docs/dnalogel/intro/) +- [API 文档](https://open-platform.realsee.com/developer/openapi/?id=1001) +- [demo 源码](https://github.com/realsee-developer/dnalogel) +- [数据依赖来源:open API](https://open-platform.realsee.com/developer/openapi/?id=1001) + +# 💡 Preview + +我们为每个插件书写了简单的效果示例,您可点击预览: +[@realsee/dnalogel showcase](https://realsee-developer.github.io/dnalogel/) + +# 🧾 Lists + +- 🔌 ModelViewPlugin:模型小窗插件 +- 🔌 PanoFloorplanRadarPlugin:全景户型雷达图插件 +- 🔌 ModelRoomLabelPlugin:模型态房屋标签插件 +- 🔌 TopviewFloorplanPlugin:俯视模型户型图插件 +- 🔌 ModelChassisCompassPlugin:模型底盘指南针插件 +- 🔌 ModelEntryDoorGuidePlugin:模型入户门引导插件 +- 🔌 CSS3DRenderPlugin:CSS3D渲染插件 +- 🔌 CameraMovementPlugin:相机运镜插件 +- 🔌 ModelFloorplanPlugin:模型户型图插件 +- 🔌 PanoRulerPlugin:全景标尺插件 +- 🔌 PanoCompassPlugin:全景指南针插件 +- 其他插件持续更新中... + +# 可能遇到的问题 + +1. webpack打包出现以下错误 + +```bash +Module not found: Error: Can't resolve '@realsee/five/line' in 'xxx/node_modules/@realsee/dnalogel/libs' +Did you mean 'index.js'? +BREAKING CHANGE: The request '@realsee/five/line' failed to resolve only because it was resolved as fully specified +(probably because the origin is strict EcmaScript Module, e. g. a module with javascript mimetype, a '*.mjs' file, or a '*.js' file where the package.json contains '"type": "module"'). +The extension in the request is mandatory for it to be fully specified. +Add the extension to the request. +``` + +解决方案:在webpack配置里加以下rule +参考:[resolvefullyspecified](https://webpack.js.org/configuration/module/#resolvefullyspecified) + +```js +{ + test: /\.m?js$/, + resolve: { + fullySpecified: false, // disable the behaviour + }, +}, +``` + +# License + +[TERMS](https://github.com/realsee-developer/dnalogel/blob/main/TERMS.txt) diff --git a/TERMS.txt b/TERMS.txt new file mode 100644 index 000000000..3ff44af46 --- /dev/null +++ b/TERMS.txt @@ -0,0 +1,56 @@ +Realsee SDK License Agreement + +Update: July 28, 2021 + +THIS LICENSE AGREEMENT BETWEEN YOU AND 【BEIKE REALSEE TECHNOLOGY (HK) LIMITED】(“Realsee”) FORMS A LEGALLY BINDING CONTRACT BETWEEN YOU AND REALSEE IN RELATION TO YOUR USE OF THE SDK. This License Agreement accompanies the Realsee Software Development Kit(s) for the software and related explanatory materials (the "SDK") and includes any upgrades, modified versions, updates, additions, and copies of the SDK licensed to You by Realsee. +BY DOWNLOADING, INSTALLING, OR OTHERWISE ACCESSING OR USING THE SDK, YOU AGREE THAT YOU HAVE READ, UNDERSTOOD, AND AGREE TO BE BOUND BY THIS AGREEMENT. YOU ARE AGREEING ON YOUR OWN BEHALF AND/OR ON BEHALF OF YOUR COMPANY OR ORGANIZATION TO THE TERMS AND CONDITIONS STATED BELOW. +This Agreement applies to Your use of the SDK in the country in which You legally install it (“Territory”) and is subject to the laws of such Territory and further subject to Section 12 below. Different terms, conditions, and limitations may apply to the use of the SDK in any additional countries. +1. DEFINITIONS. +“Agreement” means this Realsee SDK License Agreement. +“Developer”, “You” and “Your” means the person(s) or entity acquiring or using the SDK or otherwise exercising rights under the terms of this Agreement. +“Documentation” means the technical or other specifications or documentation that Realsee may provide to You for use in connection with the SDK. +“Integrated Product” means any software, website, or on-line service developed by You based on or using the SDK (collectively, the “Integrated Product”). +“Intellectual Property” means any patents, patent rights, trademarks, service marks, registered and unregistered designs, applications for any of the foregoing, copyright, and any other similar protected rights in any country and to the extent recognised by any relevant jurisdiction as intellectual property, trade secrets, know-how and confidential information. Realsee reserves all rights not expressly granted to You. +“Realsee” means [Beike Realsee Technology (HK) Limited, a company incorporated and validly existing under the laws of Hong Kong]. +“SDK” means the Realsee-proprietary Software Development Kits (SDK) provided hereunder, includes all development tools (including any compiler and debugger), application programming interfaces (“APIs”), libraries, binary utilities, header files, Documentation, content, data, code samples, and other materials provided to You in connection with this Agreement, whether delivered through a download, or any other media or form, and is licensed, not sold, to You by Realsee for use only under the terms of this Agreement. The terms of this Agreement will govern any updates provided by Realsee that replace and/or supplement the original SDK delivered to You, unless such update is accompanied by a separate license, in which case the terms of such license will govern. +2. LICENSED USES AND RESTRICTIONS. +2.1 Subject to the restrictions contained in this Section 2, Realsee grants to You during the term, a limited, non-exclusive, revocable, non-sublicensable, non-transferable license to install and use the SDK within the Territory only for the purpose of internal development. +2.2 Restrictions. You acknowledge and agree that, You shall not, and shall ensure that Your affiliates, employees, agents, representatives, officers, representatives, and subcontractors do not (directly or indirectly): +2.2.1 decompile, reverse engineer, disassemble or attempt to derive the source code of, those components of the SDK provided in object code form, or any part thereof; +2.2.2 remove, alter, or obscure any copyright notice or other proprietary rights notice on any part of the SDK; +2.2.3 sell, assign, pledge, rent, lease, lend, upload to or host on any website or server for use by any third party except You, redistribute, or sublicense the SDK (or any part thereof), or operate the SDK (or any part thereof) in the capacity of a service bureau or other hosted services provider, in whole or in part, nor may You enable others to do so; +2.2.4 or alter, modify, customize or improve the SDK, or any part thereof; +2.2.5 use the SDK (or any part thereof) for any illegal purpose, in any manner that is inconsistent with the terms of this Agreement, or to engage in any illegal activity; +2.2.6 use the SDK (or any part thereof) in any manner that may damage the operation of Realsee’s products or services; or +2.2.7 use the SDK or any information contained therein or otherwise provided by Realsee for the purpose of developing, or having developed, any product competitive with any Realsee product or service, as determined by Realsee in its sole discretion; +2.2.8 include any portion of the SDK in Your Developer products. +2.3 Realsee has the right to impose reasonable conditions such as a reasonable fee for use of the SDK in Integrated Product in the future. +2.4 You may make a limited number of copies of the SDK to be used by Your employees or consultants as provided herein, and not for general business purposes, and such employees or consultants shall be subject to the obligations and restrictions in this Agreement. +2.5 All licenses not expressly granted in this Agreement are reserved and no other licenses, immunity, or rights, express or implied, are granted by Realsee, by implication, estoppel, or otherwise. +3. CONFIDENTIALITY. +The SDK and all source code, Documentation, specifications, engineering details, and related information pertaining to the SDK, whether in oral, written, graphic, or electronic form, are and shall remain the confidential and proprietary information of Realsee or its licensors (collectively, the “Confidential Information”). You shall (i) disclose Confidential Information to only those directors and employees (collectively, “Affiliates”) whose duties justify their need to know such information and who have been clearly informed of their obligation to maintain the confidential, proprietary, and/or trade secret status of such Confidential Information; and (ii) use Confidential Information solely in accordance with the license granted hereunder. In any event, You and Your Affiliates shall treat Confidential Information as strictly confidential and shall use the same care to prevent disclosure of such information as You use with respect to Your own similar confidential and/or proprietary information, which shall not be less than the care a reasonable person would use under similar circumstances. All Confidential Information, and any copies thereof, shall be returned promptly to Realsee upon request. You shall ensure that Your Affiliates comply with the provisions of this Section 3, and You shall be liable for any breach of this Section 3 resulting from the act or omission of any of Your Affiliates. You shall not disclose Confidential Information to any third party, including, without limitation, any of Your subcontractors. +4. PROPRIETARY RIGHTS. +4.1 As between You and Realsee, Realsee and/or its licensors retain ownership of all right, title, and interest in, to, and under the SDK, including, without limitation, all patents, copyrights, trade secrets, trademarks and other intellectual property and other proprietary rights therein, and reserve all rights not expressly granted to You. +4.2 The items contained in the SDK are the intellectual property of Realsee and its licensors and are protected by PRC copyright and patent law, international treaty provisions and applicable laws of the country in which it is being used. You agree to protect all copyright and other ownership interests of Realsee and/or its licensors in all items in the SDK supplied under this License Agreement. You agree that all copies of the items in the SDK, reproduced for any reason by You, contain the same copyright notices, and other proprietary notices as appropriate, as appear on or in the original items delivered by Realsee in the SDK. Realsee and/or its licensors retain title and ownership of the items in the SDK, the media on which it is loaded, and all subsequent copies, regardless of the form or media in or on which the original and other copies may exist. Except as stated above, this Agreement does not grant You any rights to patents, copyrights, trade secrets, trademarks or any other rights in respect to the items in the SDK. +5. TERM AND TERMINATION. +5.1 This Agreement is effective until terminated. Realsee has the right to terminate this Agreement immediately, without judicial intervention, if You fail to comply with any term herein. Upon any such termination You must remove all full and partial copies of the items in the SDK from Your computer and discontinue the use of the items in the SDK. +5.2 Realsee may at any time, terminate the Agreement with You if: (A) You have breached any provision of the Agreement; or (B) Realsee is required to do so by law; or (C) Realsee decides to no longer provide the SDK or certain parts of the SDK to users in the country in which You are resident or from which You use the service, or the provision of the SDK or certain SDK services to You by Realsee is, in Realsee's sole discretion, no longer legally or commercially viable. +5.3 When the Agreement comes to an end, all of the legal rights, obligations and liabilities that You and Realsee have benefited from, been subject to (or which have accrued over time whilst the Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of Section 3, 4, 6, 7 and 8 shall continue to apply to such rights, obligations and liabilities indefinitely. +6. DISCLAIMER OF WARRANTY. +YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT, TO THE EXTENT PERMITTED BY APPLICABLE LAW, USE OF THE SDK (OR ANY PART THEREOF) IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH YOU. REALSEE LICENSES THE SDK TO YOU ONLY ON AN "AS-IS" BASIS. REALSEE MAKES NO REPRESENTATION WITH RESPECT TO THE ADEQUACY OF ANY ITEMS IN THE SDK, WHETHER OR NOT USED BY YOU IN THE DEVELOPMENT OF INTEGRATED PRODUCT, FOR ANY PARTICULAR PURPOSE OR WITH RESPECT TO THEIR ADEQUACY TO PRODUCE ANY PARTICULAR RESULT. REALSEE AND ITS LICENSORS SHALL NOT BE LIABLE FOR LOSS OR DAMAGE ARISING OUT OF THIS AGREEMENT OR FROM THE DISTRIBUTION OR USE OF INTEGRATED PRODUCT CONTAINING PORTIONS OF THE SDK. REALSEE AND ITS LICENSORS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED CONDITIONS OR WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF ANY THIRD PARTY RIGHT IN RESPECT OF THE ITEMS IN THE SDK OR ANY SERVICES RELATED TO THE SDK. +REALSEE IS UNDER NO OBLIGATION TO PROVIDE ANY SUPPORT UNDER THIS LICENSE AGREEMENT, INCLUDING UPGRADES OR FUTURE VERSIONS OF THE SDK OR ANY PORTIONS THEREOF, TO YOU, END USER OR TO ANY OTHER PARTY. +7. LIMITATION OF LIABILITY. +TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT WILL REALSEE OR ITS LICENSORS BE LIABLE FOR ANY DIRECT, INCIDENTAL, SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, LOSS OF BUSINESS, REVENUE, OR PROFITS, LOSS OF OPPORTUNITY (WHETHER DIRECT OR INDIRECT), CORRUPTION OR LOSS OF DATA, LOSS OF REPUTATION OR SAVINGS, DOWNTIME, OR DAMAGE TO, LOSS OF OR REPLACEMENT OF DATA OR TRANSACTIONS, COST OF PROCUREMENT OF SUBSTITUTE SERVICES, BUSINESS INTERRUPTION, OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE SDK (OR ANY PART THEREOF), ANY INTEGRATED PRODUCT, OR ANY THIRD PARTY SOFTWARE, APPLICATIONS, OR SERVICES IN CONJUNCTION WITH THE SDK (OR ANY PART THEREOF), HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT, OR OTHERWISE) AND EVEN IF REALSEE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL REALSEE’S TOTAL LIABILITY TO YOU FOR ALL DAMAGES EXCEED ONE HUNDRED DOLLARS ($100.00). THE FOREGOING LIMITATIONS WILL APPLY EVEN IF THE ABOVE STATED REMEDY FAILS OF ITS ESSENTIAL PURPOSE. THE LIMITATIONS CONTAINED IN SECTIONS 6 AND THIS SECTION 7 ARE A FUNDAMENTAL PART OF THE BASIS OF REALSEE’S BARGAIN HEREUNDER, AND REALSEE WOULD NOT ENTER INTO THIS AGREEMENT OR PROVIDE YOU WITH ACCESS TO THE SDK ABSENT SUCH LIMITATIONS. +8. INDEMNIFICATION. +To the extent permitted by applicable law, You agree to indemnify, defend and hold harmless Realsee, its affiliates and each of their directors, officers, employees, independent contractors, and agents (each a “Realsee Indemnified Party”) from any and all claims, losses, liabilities, damages, expenses, and costs (including without limitation attorneys’ fees and court costs) incurred by a Realsee Indemnified Party as a result of: (i) Your non-compliance with any terms of this Agreement; (ii) Your use of the SDK (or any part thereof); or (iii) Your use of any Integrated Product, including any claim that Integrated Product infringes the copyright, trademark, trade secret or other intellectual property right of a third party. +9. ACKNOWLEDGEMENTS. +Portions of the SDK may utilize or include third party software and other copyrighted material. Acknowledgments, licensing terms, and disclaimers for such material are contained in Documentation for the SDK or may otherwise accompany such material, and Your use of such materials governed by their respective terms. In the event of conflict between the terms of this Agreement and an applicable open source or third party agreement, the open source or third party agreement will control solely with respect to the open source software or third party software. Moreover, You shall not subject any items (including not limited to source code, object code, and any software) included in the SDK to any open source license. +10. NON-BLOCKING OF REALSEE DEVELOPMENT. +You acknowledge that Realsee is currently developing or may develop technologies and products in the future that have or may have design and/or functionality similar to Integrated Product that You may develop based on Your license herein. Nothing in this Agreement shall impair, limit or curtail Realsee's right to continue with its development, maintenance and/or distribution of Realsee's technology or products. +11. GENERAL. +11.1 Export Control. You may not use or otherwise export or re-export the SDK (or any part thereof) except as authorized by United States law and the laws of the jurisdiction(s) in which the SDK (or any part thereof) was obtained. In particular, but without limitation, the SDK may not be exported or re-exported (i) into any U.S. embargoed countries or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person's List or Entity List. By using the SDK (or any part thereof), You represent and warrant that You are not located in any such country or on any such list. +11.2 Governing Law. This Agreement and the rights of the parties hereunder shall be governed by and construed in accordance with the laws of People’s Republic of China (for purpose of this Agreement, excluding Hong Kong, Taiwan, and Macau), without reference to its conflict of laws principles. Any dispute, controversy or claim arising from or in connection with this Agreement, or the breach, termination or invalidity thereof, shall be submitted to China International Economic and Trade Arbitration Commission (“CIETAC”) for arbitration in Beijing which shall be conducted in accordance with the CIETAC's arbitration rules in effect at the time of applying for arbitration. The arbitral award is final and binding upon both parties. +11.3 Severability. If any provision of this Agreement is held by a court of competent jurisdiction to be unenforceable for any reason, the remaining provisions hereof will be unaffected and remain in full force and effect. +11.4. Modifications. Realsee reserves the right, from time to time, with or without notice to You, to make revisions to this Agreement in our sole and absolute discretion. The most current version of this Agreement will supersede all previous versions and shall be made available on the website where the SDK is made available, or by such other means as Realsee may determine in its discretion. Any modified versions of this Agreement hereto shall take effect from the time that it is made available. You shall be responsible for regularly checking for notice of any such modifications. You agree that Your continued use of the SDK constitutes Your agreement to the modified Agreement. +11.5 Relationship of the Parties. This Agreement will not be construed as creating an agency, partnership, joint venture, fiduciary duty, or any other form of legal association between You and Realsee, and You will not represent to the contrary, whether expressly, by implication, appearance, or otherwise. +11.6 Entire Agreement; Governing Language. This Agreement constitutes the entire agreement between You and Realsee with respect to the use of the SDK licensed hereunder and supersedes all prior understandings regarding such subject matter. No amendment to or modification of this Agreement will be binding unless in writing and signed by Realsee. You and Realsee hereto confirm that this Agreement and all related documents shall be drafted in English. diff --git a/index.html b/index.html new file mode 100644 index 000000000..18a0e349a --- /dev/null +++ b/index.html @@ -0,0 +1,71 @@ + + + + + + + Realsee Dnalogel Showcase + + + +
+
+

常用插件

+ PanoTagPlugin:全景标签
+ ModelMakerPlugin: 模型标注插件
+ Sculpt
+
+ +
+

户型图

+ PanoFloorplanRadarPlugin:全景户型雷达图插件
+ TopviewFloorplanPlugin:俯视模型户型图插件
+ MapviewFloorplanPlugin:大空间户型图插件
+ ModelFloorplanPlugin:模型户型图插件
+ ModelViewPlugin:模型小窗插件
+ +

模型

+ ModelRoomLabelPlugin:模型态房屋标签插件
+ ModelChassisCompassPlugin:模型底盘指南针插件
+ ModelEntryDoorGuidePlugin:模型入户门引导插件
+ ModelMakerPlugin: 模型标注插件
+ +

全景

+ PanoRulerPlugin:全景标尺插件
+ PanoRulerProPlugin:全景标尺升级版插件
+ PanoCompassPlugin:全景指南针插件
+ PanoMeasurePlugin:全景测量工具插件
+ PanoDoorLabelPlugin: 分间指引组件
+ CurrentPanoImagePlugin: 当前点位贴图插件
+ PanoVideoPlugin: 全景视频插件 + +

路线

+ GuideLinePlugin:路径插件
+ CruisePlugin:路径漫游组件
+ MovePlugin: 模型态漫游插件
+ +

其他

+ Sculpt
+ Object3DHelperPlugin:模型操作插件
+ PaintBrush:画笔组件
+ CSS3DRenderPlugin:CSS3D渲染插件
+ PipelinePlugin:管道模型组件
+ +

停止维护

+ CameraMovementPlugin:相机运镜插件
+ AreaMakerPlugin: 区域标注插件
+ ModelTVVideoPlugin:模型电视插件
+ PanoSpatialTagPlugin:全景空间标签插件
+
+
+ + + + + + + diff --git a/open-works/README.md b/open-works/README.md new file mode 100644 index 000000000..0819ccfb0 --- /dev/null +++ b/open-works/README.md @@ -0,0 +1,40 @@ +## 如视公开 Work 数据集。 + +**Work** 是通过如视硬件设备([如视扫描仪](https://realsee.com/website/product/hardware) 、[如视 Lite 全景相机](https://realsee.com/website/product/lite) 、[如视 VR App](https://realsee.com/website/mobile) )扫描并算法加工之后生成的用于描述三维空间展示的数据。 + +为便于开发、调试和研究,我们面向开源社区公开部分 **Work** 数据集。 + +## Usage + +### 获取 Work 数据 + +```ts +// JSON +import workJson from '@realsee/open-works/virtual/81RojBlJQdVTglNNMr/work.json' + +// ES Modules +import { work } from 'https://cdn.skypack.dev/@realsee/open-works/virtual/81RojBlJQdVTglNNMr/work' +``` + +### 获取户型图、房间标签等附加数据 + +```ts +// JSON +import workJson from '@realsee/open-works/virtual/81gmMq5a7zbF9leWMk/work.json' // work +import floorplanServerDataJson from '@realsee/open-works/virtual/81gmMq5a7zbF9leWMk/floorplanServerData.json' // floorplanServerData +import modelRoomLabelsJson from '@realsee/open-works/virtual/81gmMq5a7zbF9leWMk/modelRoomLabels.json' // modelRoomLabels + +// ES Modules +import { work, floorplanServerData, modelRoomLabels } from 'https://cdn.skypack.dev/@realsee/open-works/virtual/81gmMq5a7zbF9leWMk/index' +``` + +## 数据 code 对应数据类型 + +| code | work | 户型图数据 | 模型房屋标签数据 | 入户门数据 | 标尺数据 | +| ------------------ | ---- | ---------- | ---------------- | ---------- | -------- | +| 81980RNawnbCVaLz0a | 有 | 无 | 无 | 无 | 无 | +| 81gmMq5a7zbF9leWMk | 有 | 有 | 有 | 有 | 无 | +| 81RojBlJQdVTglNNMr | 有 | 无 | 无 | 无 | 无 | +| 81w1MyAQybVcNa97ME | 有 | 无 | 无 | 无 | 无 | +| 816lPVZQkQDF5XOpPo | 有 | 无 | 无 | 无 | 无 | +| pWLy9ndnVL73Xqja | 有 | 无 | 无 | 无 | 无 | diff --git a/open-works/index.d.ts b/open-works/index.d.ts new file mode 100644 index 000000000..710ff4800 --- /dev/null +++ b/open-works/index.d.ts @@ -0,0 +1,3 @@ +declare interface OpenWorks { + [key: string]: Record +} diff --git a/open-works/index.js b/open-works/index.js new file mode 100644 index 000000000..894722973 --- /dev/null +++ b/open-works/index.js @@ -0,0 +1,19 @@ +import _81gmMq5a7zbF9leWMk from './virtual/81gmMq5a7zbF9leWMk' +import _81gmMq5eXl5I9y7JMk from './virtual/81gmMq5eXl5I9y7JMk' +import _816V08l4Q4Eie1qX08 from './virtual/816V08l4Q4Eie1qX08' +import _81RojBlJQdVTglNNMr from './virtual/81RojBlJQdVTglNNMr' +import _81w1MyAQybVcNa97ME from './virtual/81w1MyAQybVcNa97ME' +import _816lPVZQkQDF5XOpPo from './virtual/816lPVZQkQDF5XOpPo' +import _81980RNawnbCVaLz0a from './virtual/81980RNawnbCVaLz0a' +import _pWLy9ndnVL73Xqja from './real/pWLy9ndnVL73Xqja' + +export const openWorks = { + _81gmMq5a7zbF9leWMk, + _81gmMq5eXl5I9y7JMk, + _816V08l4Q4Eie1qX08, + _81RojBlJQdVTglNNMr, + _81w1MyAQybVcNa97ME, + _816lPVZQkQDF5XOpPo, + _81980RNawnbCVaLz0a, + _pWLy9ndnVL73Xqja, +} diff --git a/open-works/package.json b/open-works/package.json new file mode 100644 index 000000000..31e642a44 --- /dev/null +++ b/open-works/package.json @@ -0,0 +1,22 @@ +{ + "name": "@realsee/open-works", + "version": "0.1.0-alpha.5", + "description": "如视开放 Work 数据集.", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/realsee-developer/open-works.git" + }, + "type": "module", + "keywords": [ + "realsee", + "work", + "floorplanServerData" + ], + "author": "BEIKE REALSEE TECHNOLOGY (HK)", + "license": "MIT", + "bugs": { + "url": "https://github.com/realsee-developer/open-works/issues" + }, + "homepage": "https://github.com/realsee-developer/open-works#readme" +} diff --git a/open-works/real/1bBBGlXk/work.json b/open-works/real/1bBBGlXk/work.json new file mode 100644 index 000000000..a0dd91c02 --- /dev/null +++ b/open-works/real/1bBBGlXk/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"tWNbvUdbeUoIrupQl5BXFmuyvbEZ4ej7YC0jAmwywb+tDaiLEhD2oIWiW6WVhUZ5f7UQcRiHegPgjzii9DD8K1zaSL+fRM6wYlNZ4UuWBREqyLf70sbyVYPRCc0Fv7r1V1DJV2udL33AAQ9wCx6dQpAP/oQvsld8NjThLYkpgYg=\",\"allow_hosts\":[\"share.3dvr.pro\",\"rsvr.cn\",\"realsee.com\",\"realsee.cn\",\"rushivr.cn\",\"rushivr.com\"],\"base_url\":\"//vr-public.realsee-cdn.cn\",\"basic_code\":\"80yOJrMW2JWKq3lvV1\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-07-24 10:31:28\",\"expire_at\":\"1721893253800\",\"from_type\":\"poincare\",\"initial\":{\"distance\":14.98749016786762,\"fov\":60,\"heading\":0,\"latitude\":0.7188080371058301,\"longitude\":0.40220728020656515,\"mode\":\"Mapview\",\"offset\":{\"x\":-2.830033546575647,\"y\":1.4974939866630184,\"z\":4.574918665396},\"panoIndex\":0,\"pano_index\":0,\"workCode\":\"5DyMWwWGZyC1E63F9D\"},\"is_active\":true,\"model\":{\"layers\":[{\"name\":\"poincare\",\"tileset_url\":\"https://vrlab-public.ljcdn.com/release/poincare/9ddf443b6121bf11679d4a185b50626a/point_cloud/f9a5d57ba55e5d030cb90e684318b258/tileset.json\",\"tileset_url_checksum\":\"cb20c2995ca66b5cfaa5e5a2ba1786ea\",\"type\":\"point_cloud\",\"up_axis\":\"Z\"}]},\"name\":\"成都会议厅3\",\"picture_url\":\"https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/LIANGFANG/5DyMWwWGZyC1E63F9D/2024-07-24_16-54-52.image/png\",\"project_id\":\"mix-poincare-p14P2G8Rmq3MEkXo\",\"resource_code\":\"5DyMWwWGZyC1E63F9D\",\"title_picture_url\":\"https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/LIANGFANG/5DyMWwWGZyC1E63F9D/2024-07-24_16-54-52.image/png\"}" \ No newline at end of file diff --git a/open-works/real/80o024DE2xyva3j5BE/index.js b/open-works/real/80o024DE2xyva3j5BE/index.js new file mode 100644 index 000000000..b05307145 --- /dev/null +++ b/open-works/real/80o024DE2xyva3j5BE/index.js @@ -0,0 +1,4 @@ +import { work } from './work' +import { panoRulerProPluginServerData } from './panoRulerProPluginServerData' + +export default { work, panoRulerProPluginServerData } diff --git a/open-works/real/80o024DE2xyva3j5BE/panoRulerProPluginServerData.js b/open-works/real/80o024DE2xyva3j5BE/panoRulerProPluginServerData.js new file mode 100644 index 000000000..ef24ec5eb --- /dev/null +++ b/open-works/real/80o024DE2xyva3j5BE/panoRulerProPluginServerData.js @@ -0,0 +1,2108 @@ +const panoRulerProPluginServerData = [ + { + panoIndex: 0, + roomName: '客厅', + lines: [ + { + start: [3.316, 1.2, 2.818], + end: [3.316, 1.2, 1.108], + state: false, + children: [ + { + start: [3.316, 1.2, 2.818], + end: [3.316, 1.2, 2.585], + state: false, + }, + { + start: [3.316, 1.2, 2.585], + end: [3.316, 1.2, 1.108], + state: true, + }, + ], + }, + { + start: [3.316, 1.2, 2.818], + end: [3.316, -1.395, 2.818], + state: false, + children: [], + }, + { + start: [3.316, 1.2, 1.108], + end: [0.761, 1.2, 1.108], + state: false, + children: [ + { + start: [3.316, 1.2, 1.108], + end: [0.972, 1.2, 1.108], + state: true, + }, + { + start: [0.972, 1.2, 1.108], + end: [0.761, 1.2, 1.108], + state: false, + }, + ], + }, + { + start: [3.316, 1.2, 1.108], + end: [3.316, -1.395, 1.108], + state: true, + children: [], + }, + { + start: [0.761, 1.2, 1.108], + end: [0.761, 1.2, 0.918], + state: false, + children: [], + }, + { + start: [0.761, 1.2, 1.108], + end: [0.761, -1.395, 1.108], + state: false, + children: [ + { + start: [0.761, 1.2, 1.108], + end: [0.761, 0.582, 1.108], + state: false, + }, + { + start: [0.761, 0.582, 1.108], + end: [0.761, -1.395, 1.108], + state: true, + }, + ], + }, + { + start: [0.761, 1.2, 0.918], + end: [0.761, -1.395, 0.918], + state: false, + children: [ + { + start: [0.761, 1.2, 0.918], + end: [0.761, 0.267, 0.918], + state: false, + }, + { + start: [0.761, 0.267, 0.918], + end: [0.761, -1.395, 0.918], + state: true, + }, + ], + }, + { + start: [1.171, 1.2, 0.918], + end: [1.171, 1.2, -2.132], + state: false, + children: [], + }, + { + start: [1.171, 1.2, -2.132], + end: [-2.049, 1.2, -2.132], + state: false, + children: [ + { + start: [1.171, 1.2, -2.132], + end: [-1.069, 1.2, -2.132], + state: false, + }, + { + start: [-1.069, 1.2, -2.132], + end: [-2.049, 1.2, -2.132], + state: true, + }, + ], + }, + { + start: [1.171, 1.2, -2.132], + end: [1.171, -1.395, -2.132], + state: false, + children: [ + { + start: [1.171, 1.2, -2.132], + end: [1.171, 0.412, -2.132], + state: false, + }, + { + start: [1.171, 0.412, -2.132], + end: [1.171, -1.395, -2.132], + state: true, + }, + ], + }, + { + start: [-2.049, 1.2, -2.132], + end: [-2.049, 1.2, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.2, -2.132], + end: [-2.049, 1.2, -1.899], + state: true, + }, + { + start: [-2.049, 1.2, -1.899], + end: [-2.049, 1.2, 0.939], + state: false, + }, + { + start: [-2.049, 1.2, 0.939], + end: [-2.049, 1.2, 2.818], + state: true, + }, + ], + }, + { + start: [-2.049, 1.2, -2.132], + end: [-2.049, -1.395, -2.132], + state: true, + children: [], + }, + { + start: [-2.049, 1.2, 2.818], + end: [3.316, 1.2, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.2, 2.818], + end: [-0.344, 1.2, 2.818], + state: true, + }, + { + start: [-0.344, 1.2, 2.818], + end: [3.316, 1.2, 2.818], + state: false, + }, + ], + }, + { + start: [-2.049, 1.2, 2.818], + end: [-2.049, -1.395, 2.818], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 1, + roomName: '客厅', + lines: [ + { + start: [3.316, 1.211, 2.818], + end: [3.316, 1.211, 1.108], + state: false, + children: [ + { + start: [3.316, 1.211, 2.818], + end: [3.316, 1.211, 2.145], + state: false, + }, + { + start: [3.316, 1.211, 2.145], + end: [3.316, 1.211, 1.108], + state: true, + }, + ], + }, + { + start: [3.316, 1.211, 2.818], + end: [3.316, -1.384, 2.818], + state: false, + children: [], + }, + { + start: [3.316, 1.211, 1.108], + end: [0.761, 1.211, 1.108], + state: true, + children: [], + }, + { + start: [3.316, 1.211, 1.108], + end: [3.316, -1.384, 1.108], + state: true, + children: [], + }, + { + start: [0.761, 1.211, 1.108], + end: [0.761, 1.211, 0.918], + state: false, + children: [], + }, + { + start: [0.761, 1.211, 1.108], + end: [0.761, -1.384, 1.108], + state: false, + children: [ + { + start: [0.761, 1.211, 1.108], + end: [0.761, 0.778, 1.108], + state: false, + }, + { + start: [0.761, 0.778, 1.108], + end: [0.761, 0.481, 1.108], + state: true, + }, + { + start: [0.761, 0.481, 1.108], + end: [0.761, 0.202, 1.108], + state: false, + }, + { + start: [0.761, 0.202, 1.108], + end: [0.761, -1.084, 1.108], + state: true, + }, + { + start: [0.761, -1.084, 1.108], + end: [0.761, -1.384, 1.108], + state: false, + }, + ], + }, + { + start: [0.761, 1.211, 0.918], + end: [0.761, -1.384, 0.918], + state: false, + children: [ + { + start: [0.761, 1.211, 0.918], + end: [0.761, 0.194, 0.918], + state: false, + }, + { + start: [0.761, 0.194, 0.918], + end: [0.761, -1.384, 0.918], + state: true, + }, + ], + }, + { + start: [1.171, 1.211, -2.132], + end: [-2.049, 1.211, -2.132], + state: false, + children: [], + }, + { + start: [1.171, 1.211, -2.132], + end: [1.171, -1.384, -2.132], + state: true, + children: [], + }, + { + start: [-2.049, 1.211, -2.132], + end: [-2.049, 1.211, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.211, -2.132], + end: [-2.049, 1.211, -0.459], + state: false, + }, + { + start: [-2.049, 1.211, -0.459], + end: [-2.049, 1.211, -0.231], + state: true, + }, + { + start: [-2.049, 1.211, -0.231], + end: [-2.049, 1.211, 0.114], + state: false, + }, + { + start: [-2.049, 1.211, 0.114], + end: [-2.049, 1.211, 2.818], + state: true, + }, + ], + }, + { + start: [-2.049, 1.211, -2.132], + end: [-2.049, -1.384, -2.132], + state: false, + children: [ + { + start: [-2.049, 1.211, -2.132], + end: [-2.049, 0.214, -2.132], + state: false, + }, + { + start: [-2.049, 0.214, -2.132], + end: [-2.049, -0.055, -2.132], + state: true, + }, + { + start: [-2.049, -0.055, -2.132], + end: [-2.049, -0.5, -2.132], + state: false, + }, + { + start: [-2.049, -0.5, -2.132], + end: [-2.049, -1.384, -2.132], + state: true, + }, + ], + }, + { + start: [-2.049, 1.211, 2.818], + end: [3.316, 1.211, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.211, 2.818], + end: [-0.551, 1.211, 2.818], + state: true, + }, + { + start: [-0.551, 1.211, 2.818], + end: [3.316, 1.211, 2.818], + state: false, + }, + ], + }, + { + start: [-2.049, 1.211, 2.818], + end: [-2.049, -1.384, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.211, 2.818], + end: [-2.049, 0.39, 2.818], + state: true, + }, + { + start: [-2.049, 0.39, 2.818], + end: [-2.049, 0.062, 2.818], + state: false, + }, + { + start: [-2.049, 0.062, 2.818], + end: [-2.049, -1.384, 2.818], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 2, + roomName: '客厅', + lines: [ + { + start: [3.316, 1.202, 2.818], + end: [3.316, 1.202, 1.108], + state: false, + children: [ + { + start: [3.316, 1.202, 2.818], + end: [3.316, 1.202, 2.122], + state: false, + }, + { + start: [3.316, 1.202, 2.122], + end: [3.316, 1.202, 1.108], + state: true, + }, + ], + }, + { + start: [3.316, 1.202, 2.818], + end: [3.316, -1.393, 2.818], + state: false, + children: [ + { + start: [3.316, 1.202, 2.818], + end: [3.316, 0.391, 2.818], + state: false, + }, + { + start: [3.316, 0.391, 2.818], + end: [3.316, 0.046, 2.818], + state: true, + }, + { + start: [3.316, 0.046, 2.818], + end: [3.316, -1.393, 2.818], + state: false, + }, + ], + }, + { + start: [3.316, 1.202, 1.108], + end: [0.761, 1.202, 1.108], + state: false, + children: [ + { + start: [3.316, 1.202, 1.108], + end: [3.029, 1.202, 1.108], + state: true, + }, + { + start: [3.029, 1.202, 1.108], + end: [2.305, 1.202, 1.108], + state: false, + }, + { + start: [2.305, 1.202, 1.108], + end: [0.761, 1.202, 1.108], + state: true, + }, + ], + }, + { + start: [3.316, 1.202, 1.108], + end: [3.316, -1.393, 1.108], + state: true, + children: [], + }, + { + start: [0.761, 1.202, 1.108], + end: [0.761, -1.393, 1.108], + state: false, + children: [ + { + start: [0.761, 1.202, 1.108], + end: [0.761, 0.119, 1.108], + state: true, + }, + { + start: [0.761, 0.119, 1.108], + end: [0.761, -0.16, 1.108], + state: false, + }, + { + start: [0.761, -0.16, 1.108], + end: [0.761, -1.393, 1.108], + state: true, + }, + ], + }, + { + start: [-2.049, 1.202, -2.132], + end: [-2.049, 1.202, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.202, -2.132], + end: [-2.049, 1.202, 0.408], + state: false, + }, + { + start: [-2.049, 1.202, 0.408], + end: [-2.049, 1.202, 2.527], + state: true, + }, + { + start: [-2.049, 1.202, 2.527], + end: [-2.049, 1.202, 2.818], + state: false, + }, + ], + }, + { + start: [-2.049, 1.202, 2.818], + end: [3.316, 1.202, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.202, 2.818], + end: [-1.213, 1.202, 2.818], + state: false, + }, + { + start: [-1.213, 1.202, 2.818], + end: [0.109, 1.202, 2.818], + state: true, + }, + { + start: [0.109, 1.202, 2.818], + end: [3.316, 1.202, 2.818], + state: false, + }, + ], + }, + { + start: [-2.049, 1.202, 2.818], + end: [-2.049, -1.393, 2.818], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 3, + roomName: '卫生间', + lines: [ + { + start: [6.261, 1.206, 1.068], + end: [3.436, 1.206, 1.068], + state: false, + children: [ + { + start: [6.261, 1.206, 1.068], + end: [3.903, 1.206, 1.068], + state: true, + }, + { + start: [3.903, 1.206, 1.068], + end: [3.436, 1.206, 1.068], + state: false, + }, + ], + }, + { + start: [6.261, 1.206, 1.068], + end: [6.261, -1.223, 1.068], + state: false, + children: [ + { + start: [6.261, 1.206, 1.068], + end: [6.261, 0.97, 1.068], + state: true, + }, + { + start: [6.261, 0.97, 1.068], + end: [6.261, 0.482, 1.068], + state: false, + }, + { + start: [6.261, 0.482, 1.068], + end: [6.261, -1.223, 1.068], + state: true, + }, + ], + }, + { + start: [3.436, 1.206, 1.068], + end: [3.436, 1.206, 2.788], + state: false, + children: [ + { + start: [3.436, 1.206, 1.068], + end: [3.436, 1.206, 2.128], + state: false, + }, + { + start: [3.436, 1.206, 2.128], + end: [3.436, 1.206, 2.788], + state: true, + }, + ], + }, + { + start: [3.436, 1.206, 1.068], + end: [3.436, -1.223, 1.068], + state: false, + children: [ + { + start: [3.436, 1.206, 1.068], + end: [3.436, 0.942, 1.068], + state: false, + }, + { + start: [3.436, 0.942, 1.068], + end: [3.436, -1.02, 1.068], + state: true, + }, + { + start: [3.436, -1.02, 1.068], + end: [3.436, -1.223, 1.068], + state: false, + }, + ], + }, + { + start: [3.436, 1.206, 2.788], + end: [6.261, 1.206, 2.788], + state: false, + children: [ + { + start: [3.436, 1.206, 2.788], + end: [3.711, 1.206, 2.788], + state: true, + }, + { + start: [3.711, 1.206, 2.788], + end: [6.261, 1.206, 2.788], + state: false, + }, + ], + }, + { + start: [3.436, 1.206, 2.788], + end: [3.436, -1.223, 2.788], + state: true, + children: [], + }, + { + start: [6.261, 1.206, 2.788], + end: [6.261, 1.206, 1.068], + state: false, + children: [], + }, + { + start: [6.261, 1.206, 2.788], + end: [6.261, -1.223, 2.788], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 4, + roomName: '卫生间', + lines: [ + { + start: [6.261, 1.201, 1.068], + end: [3.436, 1.201, 1.068], + state: false, + children: [ + { + start: [6.261, 1.201, 1.068], + end: [5.07, 1.201, 1.068], + state: true, + }, + { + start: [5.07, 1.201, 1.068], + end: [4.218, 1.201, 1.068], + state: false, + }, + { + start: [4.218, 1.201, 1.068], + end: [3.436, 1.201, 1.068], + state: true, + }, + ], + }, + { + start: [6.261, 1.201, 1.068], + end: [6.261, -1.227, 1.068], + state: false, + children: [ + { + start: [6.261, 1.201, 1.068], + end: [6.261, 0.494, 1.068], + state: false, + }, + { + start: [6.261, 0.494, 1.068], + end: [6.261, -1.227, 1.068], + state: true, + }, + ], + }, + { + start: [3.436, 1.201, 1.068], + end: [3.436, 1.201, 2.788], + state: false, + children: [ + { + start: [3.436, 1.201, 1.068], + end: [3.436, 1.201, 2.233], + state: true, + }, + { + start: [3.436, 1.201, 2.233], + end: [3.436, 1.201, 2.788], + state: false, + }, + ], + }, + { + start: [3.436, 1.201, 1.068], + end: [3.436, -1.227, 1.068], + state: true, + children: [], + }, + { + start: [3.436, 1.201, 2.788], + end: [6.261, 1.201, 2.788], + state: false, + children: [ + { + start: [3.436, 1.201, 2.788], + end: [4.23, 1.201, 2.788], + state: false, + }, + { + start: [4.23, 1.201, 2.788], + end: [5.22, 1.201, 2.788], + state: true, + }, + { + start: [5.22, 1.201, 2.788], + end: [6.261, 1.201, 2.788], + state: false, + }, + ], + }, + { + start: [3.436, 1.201, 2.788], + end: [3.436, -1.227, 2.788], + state: false, + children: [ + { + start: [3.436, 1.201, 2.788], + end: [3.436, -0.296, 2.788], + state: true, + }, + { + start: [3.436, -0.296, 2.788], + end: [3.436, -0.972, 2.788], + state: false, + }, + { + start: [3.436, -0.972, 2.788], + end: [3.436, -1.227, 2.788], + state: true, + }, + ], + }, + { + start: [6.261, 1.201, 2.788], + end: [6.261, 1.201, 1.068], + state: false, + children: [], + }, + { + start: [6.261, 1.201, 2.788], + end: [6.261, -1.227, 2.788], + state: false, + children: [ + { + start: [6.261, 1.201, 2.788], + end: [6.261, -0.314, 2.788], + state: true, + }, + { + start: [6.261, -0.314, 2.788], + end: [6.261, -1.227, 2.788], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 5, + roomName: '卫生间', + lines: [ + { + start: [6.261, 1.197, 1.068], + end: [3.436, 1.197, 1.068], + state: false, + children: [ + { + start: [6.261, 1.197, 1.068], + end: [5.258, 1.197, 1.068], + state: false, + }, + { + start: [5.258, 1.197, 1.068], + end: [3.436, 1.197, 1.068], + state: true, + }, + ], + }, + { + start: [6.261, 1.197, 1.068], + end: [6.261, -1.232, 1.068], + state: false, + children: [ + { + start: [6.261, 1.197, 1.068], + end: [6.261, 0.503, 1.068], + state: false, + }, + { + start: [6.261, 0.503, 1.068], + end: [6.261, -1.232, 1.068], + state: true, + }, + ], + }, + { + start: [3.436, 1.197, 1.068], + end: [3.436, 1.197, 2.788], + state: false, + children: [ + { + start: [3.436, 1.197, 1.068], + end: [3.436, 1.197, 2.13], + state: true, + }, + { + start: [3.436, 1.197, 2.13], + end: [3.436, 1.197, 2.788], + state: false, + }, + ], + }, + { + start: [3.436, 1.197, 1.068], + end: [3.436, -1.232, 1.068], + state: true, + children: [], + }, + { + start: [3.436, 1.197, 2.788], + end: [6.261, 1.197, 2.788], + state: false, + children: [ + { + start: [3.436, 1.197, 2.788], + end: [4.022, 1.197, 2.788], + state: false, + }, + { + start: [4.022, 1.197, 2.788], + end: [4.486, 1.197, 2.788], + state: true, + }, + { + start: [4.486, 1.197, 2.788], + end: [5.838, 1.197, 2.788], + state: false, + }, + { + start: [5.838, 1.197, 2.788], + end: [6.261, 1.197, 2.788], + state: true, + }, + ], + }, + { + start: [3.436, 1.197, 2.788], + end: [3.436, -1.232, 2.788], + state: false, + children: [], + }, + { + start: [6.261, 1.197, 2.788], + end: [6.261, 1.197, 1.068], + state: false, + children: [], + }, + { + start: [6.261, 1.197, 2.788], + end: [6.261, -1.232, 2.788], + state: false, + children: [ + { + start: [6.261, 1.197, 2.788], + end: [6.261, 0.884, 2.788], + state: false, + }, + { + start: [6.261, 0.884, 2.788], + end: [6.261, 0.029, 2.788], + state: true, + }, + { + start: [6.261, 0.029, 2.788], + end: [6.261, -1.232, 2.788], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 6, + roomName: '卧室01', + lines: [ + { + start: [6.861, 1.175, -2.132], + end: [6.061, 1.175, -2.132], + state: false, + children: [], + }, + { + start: [6.861, 1.175, -2.132], + end: [6.861, -1.321, -2.132], + state: false, + children: [], + }, + { + start: [6.061, 1.175, -1.532], + end: [5.941, 1.175, -1.532], + state: true, + children: [], + }, + { + start: [6.061, 1.175, -1.532], + end: [6.061, -1.321, -1.532], + state: false, + children: [], + }, + { + start: [5.941, 1.175, -1.532], + end: [5.941, 1.175, -2.212], + state: true, + children: [], + }, + { + start: [5.941, 1.175, -1.532], + end: [5.941, -1.321, -1.532], + state: false, + children: [], + }, + { + start: [5.941, 1.175, -2.212], + end: [1.281, 1.175, -2.212], + state: false, + children: [ + { + start: [5.941, 1.175, -2.212], + end: [5.446, 1.175, -2.212], + state: true, + }, + { + start: [5.446, 1.175, -2.212], + end: [1.281, 1.175, -2.212], + state: false, + }, + ], + }, + { + start: [5.941, 1.175, -2.212], + end: [5.941, -1.321, -2.212], + state: true, + children: [], + }, + { + start: [1.281, 1.175, -2.212], + end: [1.281, 1.175, 0.948], + state: false, + children: [], + }, + { + start: [1.281, 1.175, -2.212], + end: [1.281, -1.321, -2.212], + state: false, + children: [], + }, + { + start: [1.281, 1.175, 0.948], + end: [5.931, 1.175, 0.948], + state: false, + children: [ + { + start: [1.281, 1.175, 0.948], + end: [1.532, 1.175, 0.948], + state: false, + }, + { + start: [1.532, 1.175, 0.948], + end: [5.931, 1.175, 0.948], + state: true, + }, + ], + }, + { + start: [1.281, 1.175, 0.948], + end: [1.281, -1.321, 0.948], + state: false, + children: [], + }, + { + start: [5.931, 1.175, 0.948], + end: [5.931, 1.175, 0.328], + state: false, + children: [ + { + start: [5.931, 1.175, 0.948], + end: [5.931, 1.175, 0.563], + state: true, + }, + { + start: [5.931, 1.175, 0.563], + end: [5.931, 1.175, 0.328], + state: false, + }, + ], + }, + { + start: [5.931, 1.175, 0.948], + end: [5.931, -1.321, 0.948], + state: true, + children: [], + }, + { + start: [5.931, 1.175, 0.328], + end: [6.071, 1.175, 0.328], + state: false, + children: [], + }, + { + start: [5.931, 1.175, 0.328], + end: [5.931, -1.321, 0.328], + state: false, + children: [], + }, + { + start: [6.071, 1.175, 0.328], + end: [6.071, -1.321, 0.328], + state: false, + children: [ + { + start: [6.071, 1.175, 0.328], + end: [6.071, 0.576, 0.328], + state: true, + }, + { + start: [6.071, 0.576, 0.328], + end: [6.071, -0.689, 0.328], + state: false, + }, + { + start: [6.071, -0.689, 0.328], + end: [6.071, -1.321, 0.328], + state: true, + }, + ], + }, + { + start: [6.861, 1.175, 0.908], + end: [6.861, 1.175, -2.132], + state: false, + children: [ + { + start: [6.861, 1.175, 0.908], + end: [6.861, 1.175, -0.42], + state: false, + }, + { + start: [6.861, 1.175, -0.42], + end: [6.861, 1.175, -1.43], + state: true, + }, + { + start: [6.861, 1.175, -1.43], + end: [6.861, 1.175, -2.132], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 7, + roomName: '卧室01', + lines: [ + { + start: [6.861, 1.16, -2.132], + end: [6.061, 1.16, -2.132], + state: false, + children: [], + }, + { + start: [6.861, 1.16, -2.132], + end: [6.861, -1.336, -2.132], + state: false, + children: [], + }, + { + start: [6.061, 1.16, -2.132], + end: [6.061, 1.16, -1.532], + state: false, + children: [], + }, + { + start: [6.061, 1.16, -2.132], + end: [6.061, -1.336, -2.132], + state: false, + children: [], + }, + { + start: [6.061, 1.16, -1.532], + end: [5.941, 1.16, -1.532], + state: true, + children: [], + }, + { + start: [6.061, 1.16, -1.532], + end: [6.061, -1.336, -1.532], + state: false, + children: [ + { + start: [6.061, 1.16, -1.532], + end: [6.061, -1.133, -1.532], + state: false, + }, + { + start: [6.061, -1.133, -1.532], + end: [6.061, -1.336, -1.532], + state: true, + }, + ], + }, + { + start: [5.941, 1.16, -1.532], + end: [5.941, -1.336, -1.532], + state: false, + children: [ + { + start: [5.941, 1.16, -1.532], + end: [5.941, 0.625, -1.532], + state: true, + }, + { + start: [5.941, 0.625, -1.532], + end: [5.941, 0.314, -1.532], + state: false, + }, + { + start: [5.941, 0.314, -1.532], + end: [5.941, -0.011, -1.532], + state: true, + }, + { + start: [5.941, -0.011, -1.532], + end: [5.941, -1.336, -1.532], + state: false, + }, + ], + }, + { + start: [5.941, 1.16, -2.212], + end: [1.281, 1.16, -2.212], + state: false, + children: [ + { + start: [5.941, 1.16, -2.212], + end: [5.421, 1.16, -2.212], + state: false, + }, + { + start: [5.421, 1.16, -2.212], + end: [1.281, 1.16, -2.212], + state: false, + }, + ], + }, + { + start: [1.281, 1.16, -2.212], + end: [1.281, 1.16, 0.948], + state: false, + children: [], + }, + { + start: [1.281, 1.16, -2.212], + end: [1.281, -1.336, -2.212], + state: false, + children: [], + }, + { + start: [1.281, 1.16, 0.948], + end: [5.931, 1.16, 0.948], + state: false, + children: [ + { + start: [1.281, 1.16, 0.948], + end: [5.651, 1.16, 0.948], + state: true, + }, + { + start: [5.651, 1.16, 0.948], + end: [5.931, 1.16, 0.948], + state: false, + }, + ], + }, + { + start: [1.281, 1.16, 0.948], + end: [1.281, -1.336, 0.948], + state: false, + children: [], + }, + { + start: [5.931, 1.16, 0.328], + end: [6.071, 1.16, 0.328], + state: false, + children: [], + }, + { + start: [5.931, 1.16, 0.328], + end: [5.931, -1.336, 0.328], + state: true, + children: [], + }, + { + start: [6.071, 1.16, 0.328], + end: [6.071, 1.16, 0.908], + state: false, + children: [], + }, + { + start: [6.071, 1.16, 0.328], + end: [6.071, -1.336, 0.328], + state: false, + children: [ + { + start: [6.071, 1.16, 0.328], + end: [6.071, -1.12, 0.328], + state: false, + }, + { + start: [6.071, -1.12, 0.328], + end: [6.071, -1.336, 0.328], + state: true, + }, + ], + }, + { + start: [6.071, 1.16, 0.908], + end: [6.861, 1.16, 0.908], + state: false, + children: [], + }, + { + start: [6.071, 1.16, 0.908], + end: [6.071, -1.336, 0.908], + state: false, + children: [], + }, + { + start: [6.861, 1.16, 0.908], + end: [6.861, 1.16, -2.132], + state: false, + children: [], + }, + { + start: [6.861, 1.16, 0.908], + end: [6.861, -1.336, 0.908], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 8, + roomName: '卧室01', + lines: [ + { + start: [6.061, 1.202, -1.532], + end: [5.941, 1.202, -1.532], + state: false, + children: [], + }, + { + start: [6.061, 1.202, -1.532], + end: [6.061, -1.295, -1.532], + state: false, + children: [ + { + start: [6.061, 1.202, -1.532], + end: [6.061, 0.826, -1.532], + state: false, + }, + { + start: [6.061, 0.826, -1.532], + end: [6.061, -0.77, -1.532], + state: true, + }, + { + start: [6.061, -0.77, -1.532], + end: [6.061, -0.982, -1.532], + state: false, + }, + { + start: [6.061, -0.982, -1.532], + end: [6.061, -1.295, -1.532], + state: true, + }, + ], + }, + { + start: [5.941, 1.202, -1.532], + end: [5.941, 1.202, -2.212], + state: false, + children: [], + }, + { + start: [5.941, 1.202, -1.532], + end: [5.941, -1.295, -1.532], + state: false, + children: [ + { + start: [5.941, 1.202, -1.532], + end: [5.941, 0.805, -1.532], + state: false, + }, + { + start: [5.941, 0.805, -1.532], + end: [5.941, -1.295, -1.532], + state: true, + }, + ], + }, + { + start: [5.941, 1.202, -2.212], + end: [1.281, 1.202, -2.212], + state: false, + children: [ + { + start: [5.941, 1.202, -2.212], + end: [2.301, 1.202, -2.212], + state: false, + }, + { + start: [2.301, 1.202, -2.212], + end: [1.281, 1.202, -2.212], + state: true, + }, + ], + }, + { + start: [5.941, 1.202, -2.212], + end: [5.941, -1.295, -2.212], + state: false, + children: [ + { + start: [5.941, 1.202, -2.212], + end: [5.941, 0.794, -2.212], + state: false, + }, + { + start: [5.941, 0.794, -2.212], + end: [5.941, -1.295, -2.212], + state: true, + }, + ], + }, + { + start: [1.281, 1.202, -2.212], + end: [1.281, 1.202, 0.948], + state: false, + children: [], + }, + { + start: [1.281, 1.202, -2.212], + end: [1.281, -1.295, -2.212], + state: false, + children: [], + }, + { + start: [1.281, 1.202, 0.948], + end: [5.931, 1.202, 0.948], + state: false, + children: [ + { + start: [1.281, 1.202, 0.948], + end: [1.802, 1.202, 0.948], + state: false, + }, + { + start: [1.802, 1.202, 0.948], + end: [2.094, 1.202, 0.948], + state: true, + }, + { + start: [2.094, 1.202, 0.948], + end: [2.812, 1.202, 0.948], + state: false, + }, + { + start: [2.812, 1.202, 0.948], + end: [5.931, 1.202, 0.948], + state: true, + }, + ], + }, + { + start: [1.281, 1.202, 0.948], + end: [1.281, -1.295, 0.948], + state: false, + children: [], + }, + { + start: [5.931, 1.202, 0.948], + end: [5.931, 1.202, 0.328], + state: true, + children: [], + }, + { + start: [5.931, 1.202, 0.948], + end: [5.931, -1.295, 0.948], + state: true, + children: [], + }, + { + start: [5.931, 1.202, 0.328], + end: [5.931, -1.295, 0.328], + state: false, + children: [ + { + start: [5.931, 1.202, 0.328], + end: [5.931, -0.881, 0.328], + state: false, + }, + { + start: [5.931, -0.881, 0.328], + end: [5.931, -1.295, 0.328], + state: true, + }, + ], + }, + { + start: [6.861, 1.202, 0.908], + end: [6.861, 1.202, -2.132], + state: false, + children: [ + { + start: [6.861, 1.202, 0.908], + end: [6.861, 1.202, 0.138], + state: false, + }, + { + start: [6.861, 1.202, 0.138], + end: [6.861, 1.202, -1.024], + state: true, + }, + { + start: [6.861, 1.202, -1.024], + end: [6.861, 1.202, -2.132], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 9, + roomName: '卧室01', + lines: [ + { + start: [6.061, 1.21, -1.532], + end: [5.941, 1.21, -1.532], + state: false, + children: [], + }, + { + start: [6.061, 1.21, -1.532], + end: [6.061, -1.287, -1.532], + state: false, + children: [ + { + start: [6.061, 1.21, -1.532], + end: [6.061, 0.779, -1.532], + state: false, + }, + { + start: [6.061, 0.779, -1.532], + end: [6.061, -1.287, -1.532], + state: true, + }, + ], + }, + { + start: [5.941, 1.21, -1.532], + end: [5.941, 1.21, -2.212], + state: false, + children: [], + }, + { + start: [5.941, 1.21, -1.532], + end: [5.941, -1.287, -1.532], + state: false, + children: [ + { + start: [5.941, 1.21, -1.532], + end: [5.941, 0.755, -1.532], + state: false, + }, + { + start: [5.941, 0.755, -1.532], + end: [5.941, -1.287, -1.532], + state: true, + }, + ], + }, + { + start: [5.941, 1.21, -2.212], + end: [1.281, 1.21, -2.212], + state: false, + children: [ + { + start: [5.941, 1.21, -2.212], + end: [2.27, 1.21, -2.212], + state: false, + }, + { + start: [2.27, 1.21, -2.212], + end: [1.837, 1.21, -2.212], + state: true, + }, + { + start: [1.837, 1.21, -2.212], + end: [1.281, 1.21, -2.212], + state: false, + }, + ], + }, + { + start: [5.941, 1.21, -2.212], + end: [5.941, -1.287, -2.212], + state: false, + children: [ + { + start: [5.941, 1.21, -2.212], + end: [5.941, 0.697, -2.212], + state: false, + }, + { + start: [5.941, 0.697, -2.212], + end: [5.941, -1.287, -2.212], + state: true, + }, + ], + }, + { + start: [1.281, 1.21, -2.212], + end: [1.281, 1.21, 0.948], + state: false, + children: [], + }, + { + start: [1.281, 1.21, -2.212], + end: [1.281, -1.287, -2.212], + state: false, + children: [], + }, + { + start: [1.281, 1.21, 0.948], + end: [5.931, 1.21, 0.948], + state: false, + children: [ + { + start: [1.281, 1.21, 0.948], + end: [1.814, 1.21, 0.948], + state: false, + }, + { + start: [1.814, 1.21, 0.948], + end: [5.931, 1.21, 0.948], + state: true, + }, + ], + }, + { + start: [1.281, 1.21, 0.948], + end: [1.281, -1.287, 0.948], + state: false, + children: [], + }, + { + start: [5.931, 1.21, 0.948], + end: [5.931, 1.21, 0.328], + state: true, + children: [], + }, + { + start: [5.931, 1.21, 0.948], + end: [5.931, -1.287, 0.948], + state: true, + children: [], + }, + { + start: [5.931, 1.21, 0.328], + end: [6.071, 1.21, 0.328], + state: true, + children: [], + }, + { + start: [5.931, 1.21, 0.328], + end: [5.931, -1.287, 0.328], + state: true, + children: [], + }, + { + start: [6.071, 1.21, 0.328], + end: [6.071, -1.287, 0.328], + state: false, + children: [ + { + start: [6.071, 1.21, 0.328], + end: [6.071, 0.685, 0.328], + state: true, + }, + { + start: [6.071, 0.685, 0.328], + end: [6.071, -0.932, 0.328], + state: false, + }, + { + start: [6.071, -0.932, 0.328], + end: [6.071, -1.287, 0.328], + state: true, + }, + ], + }, + { + start: [6.861, 1.21, 0.908], + end: [6.861, 1.21, -2.132], + state: false, + children: [ + { + start: [6.861, 1.21, 0.908], + end: [6.861, 1.21, 0.407], + state: false, + }, + { + start: [6.861, 1.21, 0.407], + end: [6.861, 1.21, -0.193], + state: false, + }, + { + start: [6.861, 1.21, -0.193], + end: [6.861, 1.21, -0.499], + state: true, + }, + { + start: [6.861, 1.21, -0.499], + end: [6.861, 1.21, -1.722], + state: false, + }, + { + start: [6.861, 1.21, -1.722], + end: [6.861, 1.21, -2.132], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 11, + roomName: '厨房', + lines: [ + { + start: [-2.139, 1.179, 2.768], + end: [-2.139, 1.179, 0.978], + state: false, + children: [ + { + start: [-2.139, 1.179, 2.768], + end: [-2.139, 1.179, 2.155], + state: false, + }, + { + start: [-2.139, 1.179, 2.155], + end: [-2.139, 1.179, 0.978], + state: true, + }, + ], + }, + { + start: [-2.139, 1.179, 2.768], + end: [-2.139, -1.244, 2.768], + state: false, + children: [], + }, + { + start: [-2.139, 1.179, 0.978], + end: [-4.914, 1.179, 0.978], + state: false, + children: [ + { + start: [-2.139, 1.179, 0.978], + end: [-4.388, 1.179, 0.978], + state: true, + }, + { + start: [-4.388, 1.179, 0.978], + end: [-4.914, 1.179, 0.978], + state: false, + }, + ], + }, + { + start: [-2.139, 1.179, 0.978], + end: [-2.139, -1.244, 0.978], + state: true, + children: [], + }, + { + start: [-4.914, 1.179, 0.978], + end: [-4.914, 1.179, 2.768], + state: false, + children: [], + }, + { + start: [-4.914, 1.179, 0.978], + end: [-4.914, -1.244, 0.978], + state: false, + children: [ + { + start: [-4.914, 1.179, 0.978], + end: [-4.914, 0.184, 0.978], + state: false, + }, + { + start: [-4.914, 0.184, 0.978], + end: [-4.914, -0.345, 0.978], + state: true, + }, + { + start: [-4.914, -0.345, 0.978], + end: [-4.914, -1.244, 0.978], + state: false, + }, + ], + }, + { + start: [-4.914, 1.179, 2.768], + end: [-2.139, 1.179, 2.768], + state: false, + children: [], + }, + { + start: [-4.914, 1.179, 2.768], + end: [-4.914, -1.244, 2.768], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 12, + roomName: '客厅', + lines: [ + { + start: [0.761, 1.19, 1.108], + end: [0.761, 1.19, 0.918], + state: false, + children: [], + }, + { + start: [0.761, 1.19, 1.108], + end: [0.761, -1.406, 1.108], + state: false, + children: [ + { + start: [0.761, 1.19, 1.108], + end: [0.761, 0.512, 1.108], + state: false, + }, + { + start: [0.761, 0.512, 1.108], + end: [0.761, -1.406, 1.108], + state: true, + }, + ], + }, + { + start: [0.761, 1.19, 0.918], + end: [1.171, 1.19, 0.918], + state: false, + children: [], + }, + { + start: [0.761, 1.19, 0.918], + end: [0.761, -1.406, 0.918], + state: false, + children: [ + { + start: [0.761, 1.19, 0.918], + end: [0.761, 0.256, 0.918], + state: false, + }, + { + start: [0.761, 0.256, 0.918], + end: [0.761, -1.406, 0.918], + state: true, + }, + ], + }, + { + start: [1.171, 1.19, 0.918], + end: [1.171, 1.19, -2.132], + state: false, + children: [ + { + start: [1.171, 1.19, 0.918], + end: [1.171, 1.19, -1.308], + state: false, + }, + { + start: [1.171, 1.19, -1.308], + end: [1.171, 1.19, -1.565], + state: true, + }, + { + start: [1.171, 1.19, -1.565], + end: [1.171, 1.19, -2.132], + state: false, + }, + ], + }, + { + start: [1.171, 1.19, 0.918], + end: [1.171, -1.406, 0.918], + state: false, + children: [ + { + start: [1.171, 1.19, 0.918], + end: [1.171, 0.286, 0.918], + state: false, + }, + { + start: [1.171, 0.286, 0.918], + end: [1.171, -1.406, 0.918], + state: true, + }, + ], + }, + { + start: [1.171, 1.19, -2.132], + end: [-2.049, 1.19, -2.132], + state: false, + children: [], + }, + { + start: [1.171, 1.19, -2.132], + end: [1.171, -1.406, -2.132], + state: false, + children: [], + }, + { + start: [-2.049, 1.19, -2.132], + end: [-2.049, 1.19, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.19, -2.132], + end: [-2.049, 1.19, -0.735], + state: false, + }, + { + start: [-2.049, 1.19, -0.735], + end: [-2.049, 1.19, -0.402], + state: true, + }, + { + start: [-2.049, 1.19, -0.402], + end: [-2.049, 1.19, 2.572], + state: false, + }, + { + start: [-2.049, 1.19, 2.572], + end: [-2.049, 1.19, 2.818], + state: true, + }, + ], + }, + { + start: [-2.049, 1.19, -2.132], + end: [-2.049, -1.406, -2.132], + state: false, + children: [], + }, + { + start: [-2.049, 1.19, 2.818], + end: [3.316, 1.19, 2.818], + state: false, + children: [ + { + start: [-2.049, 1.19, 2.818], + end: [-0.778, 1.19, 2.818], + state: true, + }, + { + start: [-0.778, 1.19, 2.818], + end: [1.497, 1.19, 2.818], + state: false, + }, + { + start: [1.497, 1.19, 2.818], + end: [1.996, 1.19, 2.818], + state: true, + }, + { + start: [1.996, 1.19, 2.818], + end: [2.561, 1.19, 2.818], + state: false, + }, + { + start: [2.561, 1.19, 2.818], + end: [3.316, 1.19, 2.818], + state: false, + }, + ], + }, + { + start: [-2.049, 1.19, 2.818], + end: [-2.049, -1.406, 2.818], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 13, + roomName: '卧室02', + lines: [ + { + start: [-4.934, 1.192, 0.898], + end: [-2.169, 1.192, 0.898], + state: false, + children: [], + }, + { + start: [-4.934, 1.192, 0.898], + end: [-4.934, -1.433, 0.898], + state: false, + children: [ + { + start: [-4.934, 1.192, 0.898], + end: [-4.934, 0.392, 0.898], + state: false, + }, + { + start: [-4.934, 0.392, 0.898], + end: [-4.934, -0.009, 0.898], + state: true, + }, + { + start: [-4.934, -0.009, 0.898], + end: [-4.934, -1.433, 0.898], + state: false, + }, + ], + }, + { + start: [-2.169, 1.192, 0.898], + end: [-2.169, 1.192, -2.202], + state: false, + children: [ + { + start: [-2.169, 1.192, 0.898], + end: [-2.169, 1.192, 0.397], + state: false, + }, + { + start: [-2.169, 1.192, 0.397], + end: [-2.169, 1.192, -0.508], + state: true, + }, + { + start: [-2.169, 1.192, -0.508], + end: [-2.169, 1.192, -2.202], + state: false, + }, + ], + }, + { + start: [-2.169, 1.192, 0.898], + end: [-2.169, -1.433, 0.898], + state: false, + children: [ + { + start: [-2.169, 1.192, 0.898], + end: [-2.169, 0.73, 0.898], + state: false, + }, + { + start: [-2.169, 0.73, 0.898], + end: [-2.169, -1.433, 0.898], + state: true, + }, + ], + }, + { + start: [-2.169, 1.192, -2.202], + end: [-4.934, 1.192, -2.202], + state: false, + children: [], + }, + { + start: [-2.169, 1.192, -2.202], + end: [-2.169, -1.433, -2.202], + state: false, + children: [], + }, + { + start: [-4.934, 1.192, -2.202], + end: [-4.934, 1.192, 0.898], + state: false, + children: [], + }, + { + start: [-4.934, 1.192, -2.202], + end: [-4.934, -1.433, -2.202], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 14, + roomName: '卧室02', + lines: [ + { + start: [-4.934, 1.18, 0.898], + end: [-2.169, 1.18, 0.898], + state: false, + children: [], + }, + { + start: [-4.934, 1.18, 0.898], + end: [-4.934, -1.445, 0.898], + state: false, + children: [], + }, + { + start: [-2.169, 1.18, 0.898], + end: [-2.169, 1.18, -2.202], + state: false, + children: [ + { + start: [-2.169, 1.18, 0.898], + end: [-2.169, 1.18, -0.164], + state: false, + }, + { + start: [-2.169, 1.18, -0.164], + end: [-2.169, 1.18, -1.508], + state: true, + }, + { + start: [-2.169, 1.18, -1.508], + end: [-2.169, 1.18, -2.202], + state: false, + }, + ], + }, + { + start: [-2.169, 1.18, 0.898], + end: [-2.169, -1.445, 0.898], + state: false, + children: [], + }, + { + start: [-2.169, 1.18, -2.202], + end: [-4.934, 1.18, -2.202], + state: false, + children: [], + }, + { + start: [-2.169, 1.18, -2.202], + end: [-2.169, -1.445, -2.202], + state: false, + children: [], + }, + { + start: [-4.934, 1.18, -2.202], + end: [-4.934, 1.18, 0.898], + state: false, + children: [], + }, + { + start: [-4.934, 1.18, -2.202], + end: [-4.934, -1.445, -2.202], + state: false, + children: [], + }, + ], + }, +] diff --git a/open-works/real/80o024DE2xyva3j5BE/panoRulerProPluginServerData.json b/open-works/real/80o024DE2xyva3j5BE/panoRulerProPluginServerData.json new file mode 100644 index 000000000..aa8730096 --- /dev/null +++ b/open-works/real/80o024DE2xyva3j5BE/panoRulerProPluginServerData.json @@ -0,0 +1,2108 @@ +[ + { + "panoIndex": 0, + "roomName": "客厅", + "lines": [ + { + "start": [3.316, 1.2, 2.818], + "end": [3.316, 1.2, 1.108], + "state": false, + "children": [ + { + "start": [3.316, 1.2, 2.818], + "end": [3.316, 1.2, 2.585], + "state": false + }, + { + "start": [3.316, 1.2, 2.585], + "end": [3.316, 1.2, 1.108], + "state": true + } + ] + }, + { + "start": [3.316, 1.2, 2.818], + "end": [3.316, -1.395, 2.818], + "state": false, + "children": [] + }, + { + "start": [3.316, 1.2, 1.108], + "end": [0.761, 1.2, 1.108], + "state": false, + "children": [ + { + "start": [3.316, 1.2, 1.108], + "end": [0.972, 1.2, 1.108], + "state": true + }, + { + "start": [0.972, 1.2, 1.108], + "end": [0.761, 1.2, 1.108], + "state": false + } + ] + }, + { + "start": [3.316, 1.2, 1.108], + "end": [3.316, -1.395, 1.108], + "state": true, + "children": [] + }, + { + "start": [0.761, 1.2, 1.108], + "end": [0.761, 1.2, 0.918], + "state": false, + "children": [] + }, + { + "start": [0.761, 1.2, 1.108], + "end": [0.761, -1.395, 1.108], + "state": false, + "children": [ + { + "start": [0.761, 1.2, 1.108], + "end": [0.761, 0.582, 1.108], + "state": false + }, + { + "start": [0.761, 0.582, 1.108], + "end": [0.761, -1.395, 1.108], + "state": true + } + ] + }, + { + "start": [0.761, 1.2, 0.918], + "end": [0.761, -1.395, 0.918], + "state": false, + "children": [ + { + "start": [0.761, 1.2, 0.918], + "end": [0.761, 0.267, 0.918], + "state": false + }, + { + "start": [0.761, 0.267, 0.918], + "end": [0.761, -1.395, 0.918], + "state": true + } + ] + }, + { + "start": [1.171, 1.2, 0.918], + "end": [1.171, 1.2, -2.132], + "state": false, + "children": [] + }, + { + "start": [1.171, 1.2, -2.132], + "end": [-2.049, 1.2, -2.132], + "state": false, + "children": [ + { + "start": [1.171, 1.2, -2.132], + "end": [-1.069, 1.2, -2.132], + "state": false + }, + { + "start": [-1.069, 1.2, -2.132], + "end": [-2.049, 1.2, -2.132], + "state": true + } + ] + }, + { + "start": [1.171, 1.2, -2.132], + "end": [1.171, -1.395, -2.132], + "state": false, + "children": [ + { + "start": [1.171, 1.2, -2.132], + "end": [1.171, 0.412, -2.132], + "state": false + }, + { + "start": [1.171, 0.412, -2.132], + "end": [1.171, -1.395, -2.132], + "state": true + } + ] + }, + { + "start": [-2.049, 1.2, -2.132], + "end": [-2.049, 1.2, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.2, -2.132], + "end": [-2.049, 1.2, -1.899], + "state": true + }, + { + "start": [-2.049, 1.2, -1.899], + "end": [-2.049, 1.2, 0.939], + "state": false + }, + { + "start": [-2.049, 1.2, 0.939], + "end": [-2.049, 1.2, 2.818], + "state": true + } + ] + }, + { + "start": [-2.049, 1.2, -2.132], + "end": [-2.049, -1.395, -2.132], + "state": true, + "children": [] + }, + { + "start": [-2.049, 1.2, 2.818], + "end": [3.316, 1.2, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.2, 2.818], + "end": [-0.344, 1.2, 2.818], + "state": true + }, + { + "start": [-0.344, 1.2, 2.818], + "end": [3.316, 1.2, 2.818], + "state": false + } + ] + }, + { + "start": [-2.049, 1.2, 2.818], + "end": [-2.049, -1.395, 2.818], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 1, + "roomName": "客厅", + "lines": [ + { + "start": [3.316, 1.211, 2.818], + "end": [3.316, 1.211, 1.108], + "state": false, + "children": [ + { + "start": [3.316, 1.211, 2.818], + "end": [3.316, 1.211, 2.145], + "state": false + }, + { + "start": [3.316, 1.211, 2.145], + "end": [3.316, 1.211, 1.108], + "state": true + } + ] + }, + { + "start": [3.316, 1.211, 2.818], + "end": [3.316, -1.384, 2.818], + "state": false, + "children": [] + }, + { + "start": [3.316, 1.211, 1.108], + "end": [0.761, 1.211, 1.108], + "state": true, + "children": [] + }, + { + "start": [3.316, 1.211, 1.108], + "end": [3.316, -1.384, 1.108], + "state": true, + "children": [] + }, + { + "start": [0.761, 1.211, 1.108], + "end": [0.761, 1.211, 0.918], + "state": false, + "children": [] + }, + { + "start": [0.761, 1.211, 1.108], + "end": [0.761, -1.384, 1.108], + "state": false, + "children": [ + { + "start": [0.761, 1.211, 1.108], + "end": [0.761, 0.778, 1.108], + "state": false + }, + { + "start": [0.761, 0.778, 1.108], + "end": [0.761, 0.481, 1.108], + "state": true + }, + { + "start": [0.761, 0.481, 1.108], + "end": [0.761, 0.202, 1.108], + "state": false + }, + { + "start": [0.761, 0.202, 1.108], + "end": [0.761, -1.084, 1.108], + "state": true + }, + { + "start": [0.761, -1.084, 1.108], + "end": [0.761, -1.384, 1.108], + "state": false + } + ] + }, + { + "start": [0.761, 1.211, 0.918], + "end": [0.761, -1.384, 0.918], + "state": false, + "children": [ + { + "start": [0.761, 1.211, 0.918], + "end": [0.761, 0.194, 0.918], + "state": false + }, + { + "start": [0.761, 0.194, 0.918], + "end": [0.761, -1.384, 0.918], + "state": true + } + ] + }, + { + "start": [1.171, 1.211, -2.132], + "end": [-2.049, 1.211, -2.132], + "state": false, + "children": [] + }, + { + "start": [1.171, 1.211, -2.132], + "end": [1.171, -1.384, -2.132], + "state": true, + "children": [] + }, + { + "start": [-2.049, 1.211, -2.132], + "end": [-2.049, 1.211, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.211, -2.132], + "end": [-2.049, 1.211, -0.459], + "state": false + }, + { + "start": [-2.049, 1.211, -0.459], + "end": [-2.049, 1.211, -0.231], + "state": true + }, + { + "start": [-2.049, 1.211, -0.231], + "end": [-2.049, 1.211, 0.114], + "state": false + }, + { + "start": [-2.049, 1.211, 0.114], + "end": [-2.049, 1.211, 2.818], + "state": true + } + ] + }, + { + "start": [-2.049, 1.211, -2.132], + "end": [-2.049, -1.384, -2.132], + "state": false, + "children": [ + { + "start": [-2.049, 1.211, -2.132], + "end": [-2.049, 0.214, -2.132], + "state": false + }, + { + "start": [-2.049, 0.214, -2.132], + "end": [-2.049, -0.055, -2.132], + "state": true + }, + { + "start": [-2.049, -0.055, -2.132], + "end": [-2.049, -0.5, -2.132], + "state": false + }, + { + "start": [-2.049, -0.5, -2.132], + "end": [-2.049, -1.384, -2.132], + "state": true + } + ] + }, + { + "start": [-2.049, 1.211, 2.818], + "end": [3.316, 1.211, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.211, 2.818], + "end": [-0.551, 1.211, 2.818], + "state": true + }, + { + "start": [-0.551, 1.211, 2.818], + "end": [3.316, 1.211, 2.818], + "state": false + } + ] + }, + { + "start": [-2.049, 1.211, 2.818], + "end": [-2.049, -1.384, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.211, 2.818], + "end": [-2.049, 0.39, 2.818], + "state": true + }, + { + "start": [-2.049, 0.39, 2.818], + "end": [-2.049, 0.062, 2.818], + "state": false + }, + { + "start": [-2.049, 0.062, 2.818], + "end": [-2.049, -1.384, 2.818], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 2, + "roomName": "客厅", + "lines": [ + { + "start": [3.316, 1.202, 2.818], + "end": [3.316, 1.202, 1.108], + "state": false, + "children": [ + { + "start": [3.316, 1.202, 2.818], + "end": [3.316, 1.202, 2.122], + "state": false + }, + { + "start": [3.316, 1.202, 2.122], + "end": [3.316, 1.202, 1.108], + "state": true + } + ] + }, + { + "start": [3.316, 1.202, 2.818], + "end": [3.316, -1.393, 2.818], + "state": false, + "children": [ + { + "start": [3.316, 1.202, 2.818], + "end": [3.316, 0.391, 2.818], + "state": false + }, + { + "start": [3.316, 0.391, 2.818], + "end": [3.316, 0.046, 2.818], + "state": true + }, + { + "start": [3.316, 0.046, 2.818], + "end": [3.316, -1.393, 2.818], + "state": false + } + ] + }, + { + "start": [3.316, 1.202, 1.108], + "end": [0.761, 1.202, 1.108], + "state": false, + "children": [ + { + "start": [3.316, 1.202, 1.108], + "end": [3.029, 1.202, 1.108], + "state": true + }, + { + "start": [3.029, 1.202, 1.108], + "end": [2.305, 1.202, 1.108], + "state": false + }, + { + "start": [2.305, 1.202, 1.108], + "end": [0.761, 1.202, 1.108], + "state": true + } + ] + }, + { + "start": [3.316, 1.202, 1.108], + "end": [3.316, -1.393, 1.108], + "state": true, + "children": [] + }, + { + "start": [0.761, 1.202, 1.108], + "end": [0.761, -1.393, 1.108], + "state": false, + "children": [ + { + "start": [0.761, 1.202, 1.108], + "end": [0.761, 0.119, 1.108], + "state": true + }, + { + "start": [0.761, 0.119, 1.108], + "end": [0.761, -0.16, 1.108], + "state": false + }, + { + "start": [0.761, -0.16, 1.108], + "end": [0.761, -1.393, 1.108], + "state": true + } + ] + }, + { + "start": [-2.049, 1.202, -2.132], + "end": [-2.049, 1.202, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.202, -2.132], + "end": [-2.049, 1.202, 0.408], + "state": false + }, + { + "start": [-2.049, 1.202, 0.408], + "end": [-2.049, 1.202, 2.527], + "state": true + }, + { + "start": [-2.049, 1.202, 2.527], + "end": [-2.049, 1.202, 2.818], + "state": false + } + ] + }, + { + "start": [-2.049, 1.202, 2.818], + "end": [3.316, 1.202, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.202, 2.818], + "end": [-1.213, 1.202, 2.818], + "state": false + }, + { + "start": [-1.213, 1.202, 2.818], + "end": [0.109, 1.202, 2.818], + "state": true + }, + { + "start": [0.109, 1.202, 2.818], + "end": [3.316, 1.202, 2.818], + "state": false + } + ] + }, + { + "start": [-2.049, 1.202, 2.818], + "end": [-2.049, -1.393, 2.818], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 3, + "roomName": "卫生间", + "lines": [ + { + "start": [6.261, 1.206, 1.068], + "end": [3.436, 1.206, 1.068], + "state": false, + "children": [ + { + "start": [6.261, 1.206, 1.068], + "end": [3.903, 1.206, 1.068], + "state": true + }, + { + "start": [3.903, 1.206, 1.068], + "end": [3.436, 1.206, 1.068], + "state": false + } + ] + }, + { + "start": [6.261, 1.206, 1.068], + "end": [6.261, -1.223, 1.068], + "state": false, + "children": [ + { + "start": [6.261, 1.206, 1.068], + "end": [6.261, 0.97, 1.068], + "state": true + }, + { + "start": [6.261, 0.97, 1.068], + "end": [6.261, 0.482, 1.068], + "state": false + }, + { + "start": [6.261, 0.482, 1.068], + "end": [6.261, -1.223, 1.068], + "state": true + } + ] + }, + { + "start": [3.436, 1.206, 1.068], + "end": [3.436, 1.206, 2.788], + "state": false, + "children": [ + { + "start": [3.436, 1.206, 1.068], + "end": [3.436, 1.206, 2.128], + "state": false + }, + { + "start": [3.436, 1.206, 2.128], + "end": [3.436, 1.206, 2.788], + "state": true + } + ] + }, + { + "start": [3.436, 1.206, 1.068], + "end": [3.436, -1.223, 1.068], + "state": false, + "children": [ + { + "start": [3.436, 1.206, 1.068], + "end": [3.436, 0.942, 1.068], + "state": false + }, + { + "start": [3.436, 0.942, 1.068], + "end": [3.436, -1.02, 1.068], + "state": true + }, + { + "start": [3.436, -1.02, 1.068], + "end": [3.436, -1.223, 1.068], + "state": false + } + ] + }, + { + "start": [3.436, 1.206, 2.788], + "end": [6.261, 1.206, 2.788], + "state": false, + "children": [ + { + "start": [3.436, 1.206, 2.788], + "end": [3.711, 1.206, 2.788], + "state": true + }, + { + "start": [3.711, 1.206, 2.788], + "end": [6.261, 1.206, 2.788], + "state": false + } + ] + }, + { + "start": [3.436, 1.206, 2.788], + "end": [3.436, -1.223, 2.788], + "state": true, + "children": [] + }, + { + "start": [6.261, 1.206, 2.788], + "end": [6.261, 1.206, 1.068], + "state": false, + "children": [] + }, + { + "start": [6.261, 1.206, 2.788], + "end": [6.261, -1.223, 2.788], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 4, + "roomName": "卫生间", + "lines": [ + { + "start": [6.261, 1.201, 1.068], + "end": [3.436, 1.201, 1.068], + "state": false, + "children": [ + { + "start": [6.261, 1.201, 1.068], + "end": [5.07, 1.201, 1.068], + "state": true + }, + { + "start": [5.07, 1.201, 1.068], + "end": [4.218, 1.201, 1.068], + "state": false + }, + { + "start": [4.218, 1.201, 1.068], + "end": [3.436, 1.201, 1.068], + "state": true + } + ] + }, + { + "start": [6.261, 1.201, 1.068], + "end": [6.261, -1.227, 1.068], + "state": false, + "children": [ + { + "start": [6.261, 1.201, 1.068], + "end": [6.261, 0.494, 1.068], + "state": false + }, + { + "start": [6.261, 0.494, 1.068], + "end": [6.261, -1.227, 1.068], + "state": true + } + ] + }, + { + "start": [3.436, 1.201, 1.068], + "end": [3.436, 1.201, 2.788], + "state": false, + "children": [ + { + "start": [3.436, 1.201, 1.068], + "end": [3.436, 1.201, 2.233], + "state": true + }, + { + "start": [3.436, 1.201, 2.233], + "end": [3.436, 1.201, 2.788], + "state": false + } + ] + }, + { + "start": [3.436, 1.201, 1.068], + "end": [3.436, -1.227, 1.068], + "state": true, + "children": [] + }, + { + "start": [3.436, 1.201, 2.788], + "end": [6.261, 1.201, 2.788], + "state": false, + "children": [ + { + "start": [3.436, 1.201, 2.788], + "end": [4.23, 1.201, 2.788], + "state": false + }, + { + "start": [4.23, 1.201, 2.788], + "end": [5.22, 1.201, 2.788], + "state": true + }, + { + "start": [5.22, 1.201, 2.788], + "end": [6.261, 1.201, 2.788], + "state": false + } + ] + }, + { + "start": [3.436, 1.201, 2.788], + "end": [3.436, -1.227, 2.788], + "state": false, + "children": [ + { + "start": [3.436, 1.201, 2.788], + "end": [3.436, -0.296, 2.788], + "state": true + }, + { + "start": [3.436, -0.296, 2.788], + "end": [3.436, -0.972, 2.788], + "state": false + }, + { + "start": [3.436, -0.972, 2.788], + "end": [3.436, -1.227, 2.788], + "state": true + } + ] + }, + { + "start": [6.261, 1.201, 2.788], + "end": [6.261, 1.201, 1.068], + "state": false, + "children": [] + }, + { + "start": [6.261, 1.201, 2.788], + "end": [6.261, -1.227, 2.788], + "state": false, + "children": [ + { + "start": [6.261, 1.201, 2.788], + "end": [6.261, -0.314, 2.788], + "state": true + }, + { + "start": [6.261, -0.314, 2.788], + "end": [6.261, -1.227, 2.788], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 5, + "roomName": "卫生间", + "lines": [ + { + "start": [6.261, 1.197, 1.068], + "end": [3.436, 1.197, 1.068], + "state": false, + "children": [ + { + "start": [6.261, 1.197, 1.068], + "end": [5.258, 1.197, 1.068], + "state": false + }, + { + "start": [5.258, 1.197, 1.068], + "end": [3.436, 1.197, 1.068], + "state": true + } + ] + }, + { + "start": [6.261, 1.197, 1.068], + "end": [6.261, -1.232, 1.068], + "state": false, + "children": [ + { + "start": [6.261, 1.197, 1.068], + "end": [6.261, 0.503, 1.068], + "state": false + }, + { + "start": [6.261, 0.503, 1.068], + "end": [6.261, -1.232, 1.068], + "state": true + } + ] + }, + { + "start": [3.436, 1.197, 1.068], + "end": [3.436, 1.197, 2.788], + "state": false, + "children": [ + { + "start": [3.436, 1.197, 1.068], + "end": [3.436, 1.197, 2.13], + "state": true + }, + { + "start": [3.436, 1.197, 2.13], + "end": [3.436, 1.197, 2.788], + "state": false + } + ] + }, + { + "start": [3.436, 1.197, 1.068], + "end": [3.436, -1.232, 1.068], + "state": true, + "children": [] + }, + { + "start": [3.436, 1.197, 2.788], + "end": [6.261, 1.197, 2.788], + "state": false, + "children": [ + { + "start": [3.436, 1.197, 2.788], + "end": [4.022, 1.197, 2.788], + "state": false + }, + { + "start": [4.022, 1.197, 2.788], + "end": [4.486, 1.197, 2.788], + "state": true + }, + { + "start": [4.486, 1.197, 2.788], + "end": [5.838, 1.197, 2.788], + "state": false + }, + { + "start": [5.838, 1.197, 2.788], + "end": [6.261, 1.197, 2.788], + "state": true + } + ] + }, + { + "start": [3.436, 1.197, 2.788], + "end": [3.436, -1.232, 2.788], + "state": false, + "children": [] + }, + { + "start": [6.261, 1.197, 2.788], + "end": [6.261, 1.197, 1.068], + "state": false, + "children": [] + }, + { + "start": [6.261, 1.197, 2.788], + "end": [6.261, -1.232, 2.788], + "state": false, + "children": [ + { + "start": [6.261, 1.197, 2.788], + "end": [6.261, 0.884, 2.788], + "state": false + }, + { + "start": [6.261, 0.884, 2.788], + "end": [6.261, 0.029, 2.788], + "state": true + }, + { + "start": [6.261, 0.029, 2.788], + "end": [6.261, -1.232, 2.788], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 6, + "roomName": "卧室01", + "lines": [ + { + "start": [6.861, 1.175, -2.132], + "end": [6.061, 1.175, -2.132], + "state": false, + "children": [] + }, + { + "start": [6.861, 1.175, -2.132], + "end": [6.861, -1.321, -2.132], + "state": false, + "children": [] + }, + { + "start": [6.061, 1.175, -1.532], + "end": [5.941, 1.175, -1.532], + "state": true, + "children": [] + }, + { + "start": [6.061, 1.175, -1.532], + "end": [6.061, -1.321, -1.532], + "state": false, + "children": [] + }, + { + "start": [5.941, 1.175, -1.532], + "end": [5.941, 1.175, -2.212], + "state": true, + "children": [] + }, + { + "start": [5.941, 1.175, -1.532], + "end": [5.941, -1.321, -1.532], + "state": false, + "children": [] + }, + { + "start": [5.941, 1.175, -2.212], + "end": [1.281, 1.175, -2.212], + "state": false, + "children": [ + { + "start": [5.941, 1.175, -2.212], + "end": [5.446, 1.175, -2.212], + "state": true + }, + { + "start": [5.446, 1.175, -2.212], + "end": [1.281, 1.175, -2.212], + "state": false + } + ] + }, + { + "start": [5.941, 1.175, -2.212], + "end": [5.941, -1.321, -2.212], + "state": true, + "children": [] + }, + { + "start": [1.281, 1.175, -2.212], + "end": [1.281, 1.175, 0.948], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.175, -2.212], + "end": [1.281, -1.321, -2.212], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.175, 0.948], + "end": [5.931, 1.175, 0.948], + "state": false, + "children": [ + { + "start": [1.281, 1.175, 0.948], + "end": [1.532, 1.175, 0.948], + "state": false + }, + { + "start": [1.532, 1.175, 0.948], + "end": [5.931, 1.175, 0.948], + "state": true + } + ] + }, + { + "start": [1.281, 1.175, 0.948], + "end": [1.281, -1.321, 0.948], + "state": false, + "children": [] + }, + { + "start": [5.931, 1.175, 0.948], + "end": [5.931, 1.175, 0.328], + "state": false, + "children": [ + { + "start": [5.931, 1.175, 0.948], + "end": [5.931, 1.175, 0.563], + "state": true + }, + { + "start": [5.931, 1.175, 0.563], + "end": [5.931, 1.175, 0.328], + "state": false + } + ] + }, + { + "start": [5.931, 1.175, 0.948], + "end": [5.931, -1.321, 0.948], + "state": true, + "children": [] + }, + { + "start": [5.931, 1.175, 0.328], + "end": [6.071, 1.175, 0.328], + "state": false, + "children": [] + }, + { + "start": [5.931, 1.175, 0.328], + "end": [5.931, -1.321, 0.328], + "state": false, + "children": [] + }, + { + "start": [6.071, 1.175, 0.328], + "end": [6.071, -1.321, 0.328], + "state": false, + "children": [ + { + "start": [6.071, 1.175, 0.328], + "end": [6.071, 0.576, 0.328], + "state": true + }, + { + "start": [6.071, 0.576, 0.328], + "end": [6.071, -0.689, 0.328], + "state": false + }, + { + "start": [6.071, -0.689, 0.328], + "end": [6.071, -1.321, 0.328], + "state": true + } + ] + }, + { + "start": [6.861, 1.175, 0.908], + "end": [6.861, 1.175, -2.132], + "state": false, + "children": [ + { + "start": [6.861, 1.175, 0.908], + "end": [6.861, 1.175, -0.42], + "state": false + }, + { + "start": [6.861, 1.175, -0.42], + "end": [6.861, 1.175, -1.43], + "state": true + }, + { + "start": [6.861, 1.175, -1.43], + "end": [6.861, 1.175, -2.132], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 7, + "roomName": "卧室01", + "lines": [ + { + "start": [6.861, 1.16, -2.132], + "end": [6.061, 1.16, -2.132], + "state": false, + "children": [] + }, + { + "start": [6.861, 1.16, -2.132], + "end": [6.861, -1.336, -2.132], + "state": false, + "children": [] + }, + { + "start": [6.061, 1.16, -2.132], + "end": [6.061, 1.16, -1.532], + "state": false, + "children": [] + }, + { + "start": [6.061, 1.16, -2.132], + "end": [6.061, -1.336, -2.132], + "state": false, + "children": [] + }, + { + "start": [6.061, 1.16, -1.532], + "end": [5.941, 1.16, -1.532], + "state": true, + "children": [] + }, + { + "start": [6.061, 1.16, -1.532], + "end": [6.061, -1.336, -1.532], + "state": false, + "children": [ + { + "start": [6.061, 1.16, -1.532], + "end": [6.061, -1.133, -1.532], + "state": false + }, + { + "start": [6.061, -1.133, -1.532], + "end": [6.061, -1.336, -1.532], + "state": true + } + ] + }, + { + "start": [5.941, 1.16, -1.532], + "end": [5.941, -1.336, -1.532], + "state": false, + "children": [ + { + "start": [5.941, 1.16, -1.532], + "end": [5.941, 0.625, -1.532], + "state": true + }, + { + "start": [5.941, 0.625, -1.532], + "end": [5.941, 0.314, -1.532], + "state": false + }, + { + "start": [5.941, 0.314, -1.532], + "end": [5.941, -0.011, -1.532], + "state": true + }, + { + "start": [5.941, -0.011, -1.532], + "end": [5.941, -1.336, -1.532], + "state": false + } + ] + }, + { + "start": [5.941, 1.16, -2.212], + "end": [1.281, 1.16, -2.212], + "state": false, + "children": [ + { + "start": [5.941, 1.16, -2.212], + "end": [5.421, 1.16, -2.212], + "state": false + }, + { + "start": [5.421, 1.16, -2.212], + "end": [1.281, 1.16, -2.212], + "state": false + } + ] + }, + { + "start": [1.281, 1.16, -2.212], + "end": [1.281, 1.16, 0.948], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.16, -2.212], + "end": [1.281, -1.336, -2.212], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.16, 0.948], + "end": [5.931, 1.16, 0.948], + "state": false, + "children": [ + { + "start": [1.281, 1.16, 0.948], + "end": [5.651, 1.16, 0.948], + "state": true + }, + { + "start": [5.651, 1.16, 0.948], + "end": [5.931, 1.16, 0.948], + "state": false + } + ] + }, + { + "start": [1.281, 1.16, 0.948], + "end": [1.281, -1.336, 0.948], + "state": false, + "children": [] + }, + { + "start": [5.931, 1.16, 0.328], + "end": [6.071, 1.16, 0.328], + "state": false, + "children": [] + }, + { + "start": [5.931, 1.16, 0.328], + "end": [5.931, -1.336, 0.328], + "state": true, + "children": [] + }, + { + "start": [6.071, 1.16, 0.328], + "end": [6.071, 1.16, 0.908], + "state": false, + "children": [] + }, + { + "start": [6.071, 1.16, 0.328], + "end": [6.071, -1.336, 0.328], + "state": false, + "children": [ + { + "start": [6.071, 1.16, 0.328], + "end": [6.071, -1.12, 0.328], + "state": false + }, + { + "start": [6.071, -1.12, 0.328], + "end": [6.071, -1.336, 0.328], + "state": true + } + ] + }, + { + "start": [6.071, 1.16, 0.908], + "end": [6.861, 1.16, 0.908], + "state": false, + "children": [] + }, + { + "start": [6.071, 1.16, 0.908], + "end": [6.071, -1.336, 0.908], + "state": false, + "children": [] + }, + { + "start": [6.861, 1.16, 0.908], + "end": [6.861, 1.16, -2.132], + "state": false, + "children": [] + }, + { + "start": [6.861, 1.16, 0.908], + "end": [6.861, -1.336, 0.908], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 8, + "roomName": "卧室01", + "lines": [ + { + "start": [6.061, 1.202, -1.532], + "end": [5.941, 1.202, -1.532], + "state": false, + "children": [] + }, + { + "start": [6.061, 1.202, -1.532], + "end": [6.061, -1.295, -1.532], + "state": false, + "children": [ + { + "start": [6.061, 1.202, -1.532], + "end": [6.061, 0.826, -1.532], + "state": false + }, + { + "start": [6.061, 0.826, -1.532], + "end": [6.061, -0.77, -1.532], + "state": true + }, + { + "start": [6.061, -0.77, -1.532], + "end": [6.061, -0.982, -1.532], + "state": false + }, + { + "start": [6.061, -0.982, -1.532], + "end": [6.061, -1.295, -1.532], + "state": true + } + ] + }, + { + "start": [5.941, 1.202, -1.532], + "end": [5.941, 1.202, -2.212], + "state": false, + "children": [] + }, + { + "start": [5.941, 1.202, -1.532], + "end": [5.941, -1.295, -1.532], + "state": false, + "children": [ + { + "start": [5.941, 1.202, -1.532], + "end": [5.941, 0.805, -1.532], + "state": false + }, + { + "start": [5.941, 0.805, -1.532], + "end": [5.941, -1.295, -1.532], + "state": true + } + ] + }, + { + "start": [5.941, 1.202, -2.212], + "end": [1.281, 1.202, -2.212], + "state": false, + "children": [ + { + "start": [5.941, 1.202, -2.212], + "end": [2.301, 1.202, -2.212], + "state": false + }, + { + "start": [2.301, 1.202, -2.212], + "end": [1.281, 1.202, -2.212], + "state": true + } + ] + }, + { + "start": [5.941, 1.202, -2.212], + "end": [5.941, -1.295, -2.212], + "state": false, + "children": [ + { + "start": [5.941, 1.202, -2.212], + "end": [5.941, 0.794, -2.212], + "state": false + }, + { + "start": [5.941, 0.794, -2.212], + "end": [5.941, -1.295, -2.212], + "state": true + } + ] + }, + { + "start": [1.281, 1.202, -2.212], + "end": [1.281, 1.202, 0.948], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.202, -2.212], + "end": [1.281, -1.295, -2.212], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.202, 0.948], + "end": [5.931, 1.202, 0.948], + "state": false, + "children": [ + { + "start": [1.281, 1.202, 0.948], + "end": [1.802, 1.202, 0.948], + "state": false + }, + { + "start": [1.802, 1.202, 0.948], + "end": [2.094, 1.202, 0.948], + "state": true + }, + { + "start": [2.094, 1.202, 0.948], + "end": [2.812, 1.202, 0.948], + "state": false + }, + { + "start": [2.812, 1.202, 0.948], + "end": [5.931, 1.202, 0.948], + "state": true + } + ] + }, + { + "start": [1.281, 1.202, 0.948], + "end": [1.281, -1.295, 0.948], + "state": false, + "children": [] + }, + { + "start": [5.931, 1.202, 0.948], + "end": [5.931, 1.202, 0.328], + "state": true, + "children": [] + }, + { + "start": [5.931, 1.202, 0.948], + "end": [5.931, -1.295, 0.948], + "state": true, + "children": [] + }, + { + "start": [5.931, 1.202, 0.328], + "end": [5.931, -1.295, 0.328], + "state": false, + "children": [ + { + "start": [5.931, 1.202, 0.328], + "end": [5.931, -0.881, 0.328], + "state": false + }, + { + "start": [5.931, -0.881, 0.328], + "end": [5.931, -1.295, 0.328], + "state": true + } + ] + }, + { + "start": [6.861, 1.202, 0.908], + "end": [6.861, 1.202, -2.132], + "state": false, + "children": [ + { + "start": [6.861, 1.202, 0.908], + "end": [6.861, 1.202, 0.138], + "state": false + }, + { + "start": [6.861, 1.202, 0.138], + "end": [6.861, 1.202, -1.024], + "state": true + }, + { + "start": [6.861, 1.202, -1.024], + "end": [6.861, 1.202, -2.132], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 9, + "roomName": "卧室01", + "lines": [ + { + "start": [6.061, 1.21, -1.532], + "end": [5.941, 1.21, -1.532], + "state": false, + "children": [] + }, + { + "start": [6.061, 1.21, -1.532], + "end": [6.061, -1.287, -1.532], + "state": false, + "children": [ + { + "start": [6.061, 1.21, -1.532], + "end": [6.061, 0.779, -1.532], + "state": false + }, + { + "start": [6.061, 0.779, -1.532], + "end": [6.061, -1.287, -1.532], + "state": true + } + ] + }, + { + "start": [5.941, 1.21, -1.532], + "end": [5.941, 1.21, -2.212], + "state": false, + "children": [] + }, + { + "start": [5.941, 1.21, -1.532], + "end": [5.941, -1.287, -1.532], + "state": false, + "children": [ + { + "start": [5.941, 1.21, -1.532], + "end": [5.941, 0.755, -1.532], + "state": false + }, + { + "start": [5.941, 0.755, -1.532], + "end": [5.941, -1.287, -1.532], + "state": true + } + ] + }, + { + "start": [5.941, 1.21, -2.212], + "end": [1.281, 1.21, -2.212], + "state": false, + "children": [ + { + "start": [5.941, 1.21, -2.212], + "end": [2.27, 1.21, -2.212], + "state": false + }, + { + "start": [2.27, 1.21, -2.212], + "end": [1.837, 1.21, -2.212], + "state": true + }, + { + "start": [1.837, 1.21, -2.212], + "end": [1.281, 1.21, -2.212], + "state": false + } + ] + }, + { + "start": [5.941, 1.21, -2.212], + "end": [5.941, -1.287, -2.212], + "state": false, + "children": [ + { + "start": [5.941, 1.21, -2.212], + "end": [5.941, 0.697, -2.212], + "state": false + }, + { + "start": [5.941, 0.697, -2.212], + "end": [5.941, -1.287, -2.212], + "state": true + } + ] + }, + { + "start": [1.281, 1.21, -2.212], + "end": [1.281, 1.21, 0.948], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.21, -2.212], + "end": [1.281, -1.287, -2.212], + "state": false, + "children": [] + }, + { + "start": [1.281, 1.21, 0.948], + "end": [5.931, 1.21, 0.948], + "state": false, + "children": [ + { + "start": [1.281, 1.21, 0.948], + "end": [1.814, 1.21, 0.948], + "state": false + }, + { + "start": [1.814, 1.21, 0.948], + "end": [5.931, 1.21, 0.948], + "state": true + } + ] + }, + { + "start": [1.281, 1.21, 0.948], + "end": [1.281, -1.287, 0.948], + "state": false, + "children": [] + }, + { + "start": [5.931, 1.21, 0.948], + "end": [5.931, 1.21, 0.328], + "state": true, + "children": [] + }, + { + "start": [5.931, 1.21, 0.948], + "end": [5.931, -1.287, 0.948], + "state": true, + "children": [] + }, + { + "start": [5.931, 1.21, 0.328], + "end": [6.071, 1.21, 0.328], + "state": true, + "children": [] + }, + { + "start": [5.931, 1.21, 0.328], + "end": [5.931, -1.287, 0.328], + "state": true, + "children": [] + }, + { + "start": [6.071, 1.21, 0.328], + "end": [6.071, -1.287, 0.328], + "state": false, + "children": [ + { + "start": [6.071, 1.21, 0.328], + "end": [6.071, 0.685, 0.328], + "state": true + }, + { + "start": [6.071, 0.685, 0.328], + "end": [6.071, -0.932, 0.328], + "state": false + }, + { + "start": [6.071, -0.932, 0.328], + "end": [6.071, -1.287, 0.328], + "state": true + } + ] + }, + { + "start": [6.861, 1.21, 0.908], + "end": [6.861, 1.21, -2.132], + "state": false, + "children": [ + { + "start": [6.861, 1.21, 0.908], + "end": [6.861, 1.21, 0.407], + "state": false + }, + { + "start": [6.861, 1.21, 0.407], + "end": [6.861, 1.21, -0.193], + "state": false + }, + { + "start": [6.861, 1.21, -0.193], + "end": [6.861, 1.21, -0.499], + "state": true + }, + { + "start": [6.861, 1.21, -0.499], + "end": [6.861, 1.21, -1.722], + "state": false + }, + { + "start": [6.861, 1.21, -1.722], + "end": [6.861, 1.21, -2.132], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 11, + "roomName": "厨房", + "lines": [ + { + "start": [-2.139, 1.179, 2.768], + "end": [-2.139, 1.179, 0.978], + "state": false, + "children": [ + { + "start": [-2.139, 1.179, 2.768], + "end": [-2.139, 1.179, 2.155], + "state": false + }, + { + "start": [-2.139, 1.179, 2.155], + "end": [-2.139, 1.179, 0.978], + "state": true + } + ] + }, + { + "start": [-2.139, 1.179, 2.768], + "end": [-2.139, -1.244, 2.768], + "state": false, + "children": [] + }, + { + "start": [-2.139, 1.179, 0.978], + "end": [-4.914, 1.179, 0.978], + "state": false, + "children": [ + { + "start": [-2.139, 1.179, 0.978], + "end": [-4.388, 1.179, 0.978], + "state": true + }, + { + "start": [-4.388, 1.179, 0.978], + "end": [-4.914, 1.179, 0.978], + "state": false + } + ] + }, + { + "start": [-2.139, 1.179, 0.978], + "end": [-2.139, -1.244, 0.978], + "state": true, + "children": [] + }, + { + "start": [-4.914, 1.179, 0.978], + "end": [-4.914, 1.179, 2.768], + "state": false, + "children": [] + }, + { + "start": [-4.914, 1.179, 0.978], + "end": [-4.914, -1.244, 0.978], + "state": false, + "children": [ + { + "start": [-4.914, 1.179, 0.978], + "end": [-4.914, 0.184, 0.978], + "state": false + }, + { + "start": [-4.914, 0.184, 0.978], + "end": [-4.914, -0.345, 0.978], + "state": true + }, + { + "start": [-4.914, -0.345, 0.978], + "end": [-4.914, -1.244, 0.978], + "state": false + } + ] + }, + { + "start": [-4.914, 1.179, 2.768], + "end": [-2.139, 1.179, 2.768], + "state": false, + "children": [] + }, + { + "start": [-4.914, 1.179, 2.768], + "end": [-4.914, -1.244, 2.768], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 12, + "roomName": "客厅", + "lines": [ + { + "start": [0.761, 1.19, 1.108], + "end": [0.761, 1.19, 0.918], + "state": false, + "children": [] + }, + { + "start": [0.761, 1.19, 1.108], + "end": [0.761, -1.406, 1.108], + "state": false, + "children": [ + { + "start": [0.761, 1.19, 1.108], + "end": [0.761, 0.512, 1.108], + "state": false + }, + { + "start": [0.761, 0.512, 1.108], + "end": [0.761, -1.406, 1.108], + "state": true + } + ] + }, + { + "start": [0.761, 1.19, 0.918], + "end": [1.171, 1.19, 0.918], + "state": false, + "children": [] + }, + { + "start": [0.761, 1.19, 0.918], + "end": [0.761, -1.406, 0.918], + "state": false, + "children": [ + { + "start": [0.761, 1.19, 0.918], + "end": [0.761, 0.256, 0.918], + "state": false + }, + { + "start": [0.761, 0.256, 0.918], + "end": [0.761, -1.406, 0.918], + "state": true + } + ] + }, + { + "start": [1.171, 1.19, 0.918], + "end": [1.171, 1.19, -2.132], + "state": false, + "children": [ + { + "start": [1.171, 1.19, 0.918], + "end": [1.171, 1.19, -1.308], + "state": false + }, + { + "start": [1.171, 1.19, -1.308], + "end": [1.171, 1.19, -1.565], + "state": true + }, + { + "start": [1.171, 1.19, -1.565], + "end": [1.171, 1.19, -2.132], + "state": false + } + ] + }, + { + "start": [1.171, 1.19, 0.918], + "end": [1.171, -1.406, 0.918], + "state": false, + "children": [ + { + "start": [1.171, 1.19, 0.918], + "end": [1.171, 0.286, 0.918], + "state": false + }, + { + "start": [1.171, 0.286, 0.918], + "end": [1.171, -1.406, 0.918], + "state": true + } + ] + }, + { + "start": [1.171, 1.19, -2.132], + "end": [-2.049, 1.19, -2.132], + "state": false, + "children": [] + }, + { + "start": [1.171, 1.19, -2.132], + "end": [1.171, -1.406, -2.132], + "state": false, + "children": [] + }, + { + "start": [-2.049, 1.19, -2.132], + "end": [-2.049, 1.19, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.19, -2.132], + "end": [-2.049, 1.19, -0.735], + "state": false + }, + { + "start": [-2.049, 1.19, -0.735], + "end": [-2.049, 1.19, -0.402], + "state": true + }, + { + "start": [-2.049, 1.19, -0.402], + "end": [-2.049, 1.19, 2.572], + "state": false + }, + { + "start": [-2.049, 1.19, 2.572], + "end": [-2.049, 1.19, 2.818], + "state": true + } + ] + }, + { + "start": [-2.049, 1.19, -2.132], + "end": [-2.049, -1.406, -2.132], + "state": false, + "children": [] + }, + { + "start": [-2.049, 1.19, 2.818], + "end": [3.316, 1.19, 2.818], + "state": false, + "children": [ + { + "start": [-2.049, 1.19, 2.818], + "end": [-0.778, 1.19, 2.818], + "state": true + }, + { + "start": [-0.778, 1.19, 2.818], + "end": [1.497, 1.19, 2.818], + "state": false + }, + { + "start": [1.497, 1.19, 2.818], + "end": [1.996, 1.19, 2.818], + "state": true + }, + { + "start": [1.996, 1.19, 2.818], + "end": [2.561, 1.19, 2.818], + "state": false + }, + { + "start": [2.561, 1.19, 2.818], + "end": [3.316, 1.19, 2.818], + "state": false + } + ] + }, + { + "start": [-2.049, 1.19, 2.818], + "end": [-2.049, -1.406, 2.818], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 13, + "roomName": "卧室02", + "lines": [ + { + "start": [-4.934, 1.192, 0.898], + "end": [-2.169, 1.192, 0.898], + "state": false, + "children": [] + }, + { + "start": [-4.934, 1.192, 0.898], + "end": [-4.934, -1.433, 0.898], + "state": false, + "children": [ + { + "start": [-4.934, 1.192, 0.898], + "end": [-4.934, 0.392, 0.898], + "state": false + }, + { + "start": [-4.934, 0.392, 0.898], + "end": [-4.934, -0.009, 0.898], + "state": true + }, + { + "start": [-4.934, -0.009, 0.898], + "end": [-4.934, -1.433, 0.898], + "state": false + } + ] + }, + { + "start": [-2.169, 1.192, 0.898], + "end": [-2.169, 1.192, -2.202], + "state": false, + "children": [ + { + "start": [-2.169, 1.192, 0.898], + "end": [-2.169, 1.192, 0.397], + "state": false + }, + { + "start": [-2.169, 1.192, 0.397], + "end": [-2.169, 1.192, -0.508], + "state": true + }, + { + "start": [-2.169, 1.192, -0.508], + "end": [-2.169, 1.192, -2.202], + "state": false + } + ] + }, + { + "start": [-2.169, 1.192, 0.898], + "end": [-2.169, -1.433, 0.898], + "state": false, + "children": [ + { + "start": [-2.169, 1.192, 0.898], + "end": [-2.169, 0.73, 0.898], + "state": false + }, + { + "start": [-2.169, 0.73, 0.898], + "end": [-2.169, -1.433, 0.898], + "state": true + } + ] + }, + { + "start": [-2.169, 1.192, -2.202], + "end": [-4.934, 1.192, -2.202], + "state": false, + "children": [] + }, + { + "start": [-2.169, 1.192, -2.202], + "end": [-2.169, -1.433, -2.202], + "state": false, + "children": [] + }, + { + "start": [-4.934, 1.192, -2.202], + "end": [-4.934, 1.192, 0.898], + "state": false, + "children": [] + }, + { + "start": [-4.934, 1.192, -2.202], + "end": [-4.934, -1.433, -2.202], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 14, + "roomName": "卧室02", + "lines": [ + { + "start": [-4.934, 1.18, 0.898], + "end": [-2.169, 1.18, 0.898], + "state": false, + "children": [] + }, + { + "start": [-4.934, 1.18, 0.898], + "end": [-4.934, -1.445, 0.898], + "state": false, + "children": [] + }, + { + "start": [-2.169, 1.18, 0.898], + "end": [-2.169, 1.18, -2.202], + "state": false, + "children": [ + { + "start": [-2.169, 1.18, 0.898], + "end": [-2.169, 1.18, -0.164], + "state": false + }, + { + "start": [-2.169, 1.18, -0.164], + "end": [-2.169, 1.18, -1.508], + "state": true + }, + { + "start": [-2.169, 1.18, -1.508], + "end": [-2.169, 1.18, -2.202], + "state": false + } + ] + }, + { + "start": [-2.169, 1.18, 0.898], + "end": [-2.169, -1.445, 0.898], + "state": false, + "children": [] + }, + { + "start": [-2.169, 1.18, -2.202], + "end": [-4.934, 1.18, -2.202], + "state": false, + "children": [] + }, + { + "start": [-2.169, 1.18, -2.202], + "end": [-2.169, -1.445, -2.202], + "state": false, + "children": [] + }, + { + "start": [-4.934, 1.18, -2.202], + "end": [-4.934, 1.18, 0.898], + "state": false, + "children": [] + }, + { + "start": [-4.934, 1.18, -2.202], + "end": [-4.934, -1.445, -2.202], + "state": false, + "children": [] + } + ] + } +] diff --git a/open-works/real/80o024DE2xyva3j5BE/work.js b/open-works/real/80o024DE2xyva3j5BE/work.js new file mode 100644 index 000000000..6b1f44e39 --- /dev/null +++ b/open-works/real/80o024DE2xyva3j5BE/work.js @@ -0,0 +1,427 @@ +export const work = { + _signature: + 'IWN+mXKeAiWEBqvNio4rjicnTeSIjRR04TjCvKcz+Xu1aRWNb1jmgqnpKDEsRSyeyBiNL/WVd4JkCYZRLue7rVgzkdzzFnXkEISg3fhzGqcTgjgnJK4Mwmb9GKaAa8SiiqcOsVB77SE0O7sgXwrvqXNmkgBt6vrPyw4iR68qc48=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/23c2ca240bd785890eb1f4229490c18c/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: '2020-12-02T13:25:11+08:00', + expire_at: '1974186995771', + initial: { + flag_position: [], + fov: 95, + heading: 0, + latitude: 0, + longitude: 3.4129835264515265, + pano: 0, + pano_index: 0, + }, + model: { + file_url: 'model/auto3d-oeogDhZmDj-cSt1framW_O.at3d', + material_base_url: 'materials/', + material_textures: [ + 'texture_0.jpg', + 'texture_1.jpg', + 'texture_2.jpg', + 'texture_3.jpg', + 'texture_4.jpg', + 'texture_5.jpg', + 'texture_6.jpg', + 'texture_7.jpg', + 'texture_8.jpg', + 'texture_9.jpg', + 'texture_10.jpg', + 'texture_11.jpg', + 'texture_12.jpg', + ], + modify_time: '2020-12-02T18:22:17+08:00', + type: 0, + }, + observers: [ + { + accessible_nodes: [1, 2, 3, 4, 5, 10, 11, 12], + floor_index: 0, + index: 0, + offset_point_count: 0, + position: [-1.179419994354248, 0.018282899633049965, -1.7211300134658813], + quaternion: { + w: -0.9943331174224144, + x: -0.007540610265304423, + y: 0.10601878520114638, + z: -0.002189533487079603, + }, + standing_position: [-1.179419994354248, -1.177204070304709, -1.7211300134658813], + visible_nodes: [1, 2, 3, 4, 5, 10, 11, 12], + }, + { + accessible_nodes: [0, 2, 3, 4, 5, 6, 7, 10, 11, 13], + floor_index: 0, + index: 1, + offset_point_count: 0, + position: [0.65590500831604, 0.005382460076361895, -1.6332000494003296], + quaternion: { + w: -0.6450408620856163, + x: -0.011274313212006032, + y: -0.7640240240258137, + z: 0.007904121566221976, + }, + standing_position: [0.65590500831604, -1.1641617178017922, -1.6332000494003296], + visible_nodes: [0, 2, 3, 4, 5, 6, 7, 10, 11, 13], + }, + { + accessible_nodes: [0, 1, 3, 4, 5, 8, 9, 10, 11], + floor_index: 0, + index: 2, + offset_point_count: 0, + position: [2.6815900802612305, 0.013774000108242035, -1.5723999738693237], + quaternion: { + w: -0.655540920867688, + x: -0.007343936830587845, + y: -0.7551227499163148, + z: -0.0013414114425832821, + }, + standing_position: [2.6815900802612305, -1.1753049598514955, -1.5723999738693237], + visible_nodes: [0, 1, 3, 4, 5, 8, 9, 10, 11], + }, + { + accessible_nodes: [0, 1, 2, 4, 5, 10, 11], + floor_index: 0, + index: 3, + offset_point_count: 0, + position: [3.5549299716949463, 0.009848089888691902, -1.5347299575805664], + quaternion: { + w: -0.5188909399365842, + x: -0.00983822763967539, + y: -0.8547510724946574, + z: 0.007484372712988207, + }, + standing_position: [3.5549299716949463, -1.1817438405345524, -1.5347299575805664], + visible_nodes: [0, 1, 2, 4, 5, 10, 11], + }, + { + accessible_nodes: [0, 1, 2, 3, 5, 10, 11], + floor_index: 0, + index: 4, + offset_point_count: 0, + position: [4.663849830627441, 0.015692299231886864, -1.5068299770355225], + quaternion: { + w: -0.6958953339908774, + x: -0.001884318215618011, + y: -0.7181041494125965, + z: 0.007249377538391532, + }, + standing_position: [4.663849830627441, -1.1776966859872142, -1.5068299770355225], + visible_nodes: [0, 1, 2, 3, 5, 10, 11], + }, + { + accessible_nodes: [0, 1, 2, 3, 4, 6, 10, 11], + floor_index: 0, + index: 5, + offset_point_count: 0, + position: [5.658689975738525, 0.020145099610090256, -1.5090500116348267], + quaternion: { + w: -0.9313485349459212, + x: -0.005839032988750584, + y: -0.3640821393222993, + z: 0.000057313902392636274, + }, + standing_position: [5.658689975738525, -1.1643128565121508, -1.5090500116348267], + visible_nodes: [0, 1, 2, 3, 4, 6, 10, 11], + }, + { + accessible_nodes: [1, 5, 7, 8, 9], + floor_index: 0, + index: 6, + offset_point_count: 0, + position: [5.581709861755371, 0.042014699429273605, -0.023649899289011955], + quaternion: { + w: -0.9997224869706687, + x: -0.013158801034663591, + y: 0.01926153665555484, + z: -0.0032832504569165273, + }, + standing_position: [5.581709861755371, -1.1495739622464274, -0.023649899289011955], + visible_nodes: [1, 5, 7, 8, 9], + }, + { + accessible_nodes: [1, 6, 8, 9], + floor_index: 0, + index: 7, + offset_point_count: 0, + position: [6.455560207366943, 0.05844619870185852, 0.8514019846916199], + quaternion: { + w: -0.9035794438023315, + x: -0.002862386710384649, + y: -0.4283092882037223, + z: -0.009334600541038721, + }, + standing_position: [6.455560207366943, -1.0901101724416273, 0.8514019846916199], + visible_nodes: [1, 6, 8, 9], + }, + { + accessible_nodes: [2, 6, 7, 9], + floor_index: 0, + index: 8, + offset_point_count: 0, + position: [2.439610004425049, 0.016945000737905502, -0.48201701045036316], + quaternion: { + w: 0.5905393795512882, + x: -0.00037284417267845893, + y: -0.8069704642211708, + z: 0.007859459773905769, + }, + standing_position: [2.439610004425049, -1.179017420822189, -0.48201701045036316], + visible_nodes: [2, 6, 7, 9], + }, + { + accessible_nodes: [2, 6, 7, 8], + floor_index: 0, + index: 9, + offset_point_count: 0, + position: [2.33092999458313, 0.00905998982489109, 0.6838769912719727], + quaternion: { + w: 0.7030255937465757, + x: 0.004636310722216956, + y: -0.7110619761872418, + z: 0.011153118396519255, + }, + standing_position: [2.33092999458313, -1.1664427126096757, 0.6838769912719727], + visible_nodes: [2, 6, 7, 8], + }, + { + accessible_nodes: [0, 1, 2, 3, 4, 5, 11], + floor_index: 0, + index: 10, + offset_point_count: 0, + position: [-2.106489896774292, 0.02289390005171299, -1.649880051612854], + quaternion: { + w: -0.2280273322409348, + x: -0.010861248829697214, + y: -0.9735740483187977, + z: 0.0062563176699116235, + }, + standing_position: [-2.106489896774292, -1.1722843430610888, -1.649880051612854], + visible_nodes: [0, 1, 2, 3, 4, 5, 11], + }, + { + accessible_nodes: [0, 1, 2, 3, 4, 5, 10], + floor_index: 0, + index: 11, + offset_point_count: 0, + position: [-3.718280076980591, 0.03885219991207123, -1.6055200099945068], + quaternion: { + w: -0.26040747688402116, + x: -0.009423884689170416, + y: -0.9654084996841283, + z: 0.009250694365537741, + }, + standing_position: [-3.718280076980591, -1.1469473447854415, -1.6055200099945068], + visible_nodes: [0, 1, 2, 3, 4, 5, 10], + }, + { + accessible_nodes: [0, 13, 14], + floor_index: 0, + index: 12, + offset_point_count: 0, + position: [-1.6045500040054321, 0.02844730019569397, 1.1486799716949463], + quaternion: { + w: -0.9423549825877761, + x: -0.006982722958095327, + y: 0.3345370403180222, + z: -0.0018146842332945215, + }, + standing_position: [-1.6045500040054321, -1.1697838524399007, 1.1486799716949463], + visible_nodes: [0, 13, 14], + }, + { + accessible_nodes: [1, 12, 14], + floor_index: 0, + index: 13, + offset_point_count: 0, + position: [-2.3534700870513916, 0.02524220012128353, 1.0736199617385864], + quaternion: { + w: 0.8292950914589221, + x: 0.00011632893408010522, + y: -0.5587426233978122, + z: 0.008735258520906602, + }, + standing_position: [-2.3534700870513916, -1.1666804152109018, 1.0736199617385864], + visible_nodes: [1, 12, 14], + }, + { + accessible_nodes: [12, 13], + floor_index: 0, + index: 14, + offset_point_count: 0, + position: [-3.5789499282836914, 0.03756279870867729, 0.8693190217018127], + quaternion: { + w: 0.48314473075954106, + x: -0.00423065059187646, + y: -0.8754637630197378, + z: 0.010791679744487742, + }, + standing_position: [-3.5789499282836914, -1.1524877677170904, 0.8693190217018127], + visible_nodes: [12, 13], + }, + ], + panorama: { + count: 15, + list: [ + { + back: 'images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_b.jpg', + down: 'images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_d.jpg', + front: 'images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_f.jpg', + index: 0, + left: 'images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_l.jpg', + right: 'images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_u.jpg', + }, + { + back: 'images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_b.jpg', + down: 'images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_d.jpg', + front: 'images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_f.jpg', + index: 1, + left: 'images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_l.jpg', + right: 'images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_u.jpg', + }, + { + back: 'images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_b.jpg', + down: 'images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_d.jpg', + front: 'images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_f.jpg', + index: 2, + left: 'images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_l.jpg', + right: 'images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_u.jpg', + }, + { + back: 'images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_b.jpg', + down: 'images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_d.jpg', + front: 'images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_f.jpg', + index: 3, + left: 'images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_l.jpg', + right: 'images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_u.jpg', + }, + { + back: 'images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_b.jpg', + down: 'images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_d.jpg', + front: 'images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_f.jpg', + index: 4, + left: 'images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_l.jpg', + right: 'images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_u.jpg', + }, + { + back: 'images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_b.jpg', + down: 'images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_d.jpg', + front: 'images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_f.jpg', + index: 5, + left: 'images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_l.jpg', + right: 'images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_u.jpg', + }, + { + back: 'images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_b.jpg', + down: 'images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_d.jpg', + front: 'images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_f.jpg', + index: 6, + left: 'images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_l.jpg', + right: 'images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_u.jpg', + }, + { + back: 'images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_b.jpg', + down: 'images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_d.jpg', + front: 'images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_f.jpg', + index: 7, + left: 'images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_l.jpg', + right: 'images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_u.jpg', + }, + { + back: 'images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_b.jpg', + down: 'images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_d.jpg', + front: 'images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_f.jpg', + index: 8, + left: 'images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_l.jpg', + right: 'images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_u.jpg', + }, + { + back: 'images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_b.jpg', + down: 'images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_d.jpg', + front: 'images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_f.jpg', + index: 9, + left: 'images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_l.jpg', + right: 'images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_u.jpg', + }, + { + back: 'images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_b.jpg', + down: 'images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_d.jpg', + front: 'images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_f.jpg', + index: 10, + left: 'images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_l.jpg', + right: 'images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_u.jpg', + }, + { + back: 'images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_b.jpg', + down: 'images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_d.jpg', + front: 'images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_f.jpg', + index: 11, + left: 'images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_l.jpg', + right: 'images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_u.jpg', + }, + { + back: 'images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_b.jpg', + down: 'images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_d.jpg', + front: 'images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_f.jpg', + index: 12, + left: 'images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_l.jpg', + right: 'images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_u.jpg', + }, + { + back: 'images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_b.jpg', + down: 'images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_d.jpg', + front: 'images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_f.jpg', + index: 13, + left: 'images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_l.jpg', + right: 'images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_u.jpg', + }, + { + back: 'images/cube_2048/14/a1437457247df575352750083a446194/14_b.jpg', + down: 'images/cube_2048/14/a1437457247df575352750083a446194/14_d.jpg', + front: 'images/cube_2048/14/a1437457247df575352750083a446194/14_f.jpg', + index: 14, + left: 'images/cube_2048/14/a1437457247df575352750083a446194/14_l.jpg', + right: 'images/cube_2048/14/a1437457247df575352750083a446194/14_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/14/a1437457247df575352750083a446194/14_u.jpg', + }, + ], + }, + picture_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/23c2ca240bd785890eb1f4229490c18c/screenshot/1606794982_0/pc0_azUueeLKa.jpg', + title_picture_url: + 'https://vrlab-public.ljcdn.com/release/auto3dhd/23c2ca240bd785890eb1f4229490c18c/screenshot/1606794982_0/pc1_as1HZ8JNL_1.jpg', + vr_code: '80o024DE2xyva3j5BE', + vr_type: 'reality', +} diff --git a/open-works/real/80o024DE2xyva3j5BE/work.json b/open-works/real/80o024DE2xyva3j5BE/work.json new file mode 100644 index 000000000..86e3738fd --- /dev/null +++ b/open-works/real/80o024DE2xyva3j5BE/work.json @@ -0,0 +1,424 @@ +{ + "_signature": "IWN+mXKeAiWEBqvNio4rjicnTeSIjRR04TjCvKcz+Xu1aRWNb1jmgqnpKDEsRSyeyBiNL/WVd4JkCYZRLue7rVgzkdzzFnXkEISg3fhzGqcTgjgnJK4Mwmb9GKaAa8SiiqcOsVB77SE0O7sgXwrvqXNmkgBt6vrPyw4iR68qc48=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/23c2ca240bd785890eb1f4229490c18c/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2020-12-02T13:25:11+08:00", + "expire_at": "1974186995771", + "initial": { + "flag_position": [], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 3.4129835264515265, + "pano": 0, + "pano_index": 0 + }, + "model": { + "file_url": "model/auto3d-oeogDhZmDj-cSt1framW_O.at3d", + "material_base_url": "materials/", + "material_textures": [ + "texture_0.jpg", + "texture_1.jpg", + "texture_2.jpg", + "texture_3.jpg", + "texture_4.jpg", + "texture_5.jpg", + "texture_6.jpg", + "texture_7.jpg", + "texture_8.jpg", + "texture_9.jpg", + "texture_10.jpg", + "texture_11.jpg", + "texture_12.jpg" + ], + "modify_time": "2020-12-02T18:22:17+08:00", + "type": 0 + }, + "observers": [ + { + "accessible_nodes": [1, 2, 3, 4, 5, 10, 11, 12], + "floor_index": 0, + "index": 0, + "offset_point_count": 0, + "position": [-1.179419994354248, 0.018282899633049965, -1.7211300134658813], + "quaternion": { + "w": -0.9943331174224144, + "x": -0.007540610265304423, + "y": 0.10601878520114638, + "z": -0.002189533487079603 + }, + "standing_position": [-1.179419994354248, -1.177204070304709, -1.7211300134658813], + "visible_nodes": [1, 2, 3, 4, 5, 10, 11, 12] + }, + { + "accessible_nodes": [0, 2, 3, 4, 5, 6, 7, 10, 11, 13], + "floor_index": 0, + "index": 1, + "offset_point_count": 0, + "position": [0.65590500831604, 0.005382460076361895, -1.6332000494003296], + "quaternion": { + "w": -0.6450408620856163, + "x": -0.011274313212006032, + "y": -0.7640240240258137, + "z": 0.007904121566221976 + }, + "standing_position": [0.65590500831604, -1.1641617178017922, -1.6332000494003296], + "visible_nodes": [0, 2, 3, 4, 5, 6, 7, 10, 11, 13] + }, + { + "accessible_nodes": [0, 1, 3, 4, 5, 8, 9, 10, 11], + "floor_index": 0, + "index": 2, + "offset_point_count": 0, + "position": [2.6815900802612305, 0.013774000108242035, -1.5723999738693237], + "quaternion": { + "w": -0.655540920867688, + "x": -0.007343936830587845, + "y": -0.7551227499163148, + "z": -0.0013414114425832821 + }, + "standing_position": [2.6815900802612305, -1.1753049598514955, -1.5723999738693237], + "visible_nodes": [0, 1, 3, 4, 5, 8, 9, 10, 11] + }, + { + "accessible_nodes": [0, 1, 2, 4, 5, 10, 11], + "floor_index": 0, + "index": 3, + "offset_point_count": 0, + "position": [3.5549299716949463, 0.009848089888691902, -1.5347299575805664], + "quaternion": { + "w": -0.5188909399365842, + "x": -0.00983822763967539, + "y": -0.8547510724946574, + "z": 0.007484372712988207 + }, + "standing_position": [3.5549299716949463, -1.1817438405345524, -1.5347299575805664], + "visible_nodes": [0, 1, 2, 4, 5, 10, 11] + }, + { + "accessible_nodes": [0, 1, 2, 3, 5, 10, 11], + "floor_index": 0, + "index": 4, + "offset_point_count": 0, + "position": [4.663849830627441, 0.015692299231886864, -1.5068299770355225], + "quaternion": { + "w": -0.6958953339908774, + "x": -0.001884318215618011, + "y": -0.7181041494125965, + "z": 0.007249377538391532 + }, + "standing_position": [4.663849830627441, -1.1776966859872142, -1.5068299770355225], + "visible_nodes": [0, 1, 2, 3, 5, 10, 11] + }, + { + "accessible_nodes": [0, 1, 2, 3, 4, 6, 10, 11], + "floor_index": 0, + "index": 5, + "offset_point_count": 0, + "position": [5.658689975738525, 0.020145099610090256, -1.5090500116348267], + "quaternion": { + "w": -0.9313485349459212, + "x": -0.005839032988750584, + "y": -0.3640821393222993, + "z": 0.000057313902392636274 + }, + "standing_position": [5.658689975738525, -1.1643128565121508, -1.5090500116348267], + "visible_nodes": [0, 1, 2, 3, 4, 6, 10, 11] + }, + { + "accessible_nodes": [1, 5, 7, 8, 9], + "floor_index": 0, + "index": 6, + "offset_point_count": 0, + "position": [5.581709861755371, 0.042014699429273605, -0.023649899289011955], + "quaternion": { + "w": -0.9997224869706687, + "x": -0.013158801034663591, + "y": 0.01926153665555484, + "z": -0.0032832504569165273 + }, + "standing_position": [5.581709861755371, -1.1495739622464274, -0.023649899289011955], + "visible_nodes": [1, 5, 7, 8, 9] + }, + { + "accessible_nodes": [1, 6, 8, 9], + "floor_index": 0, + "index": 7, + "offset_point_count": 0, + "position": [6.455560207366943, 0.05844619870185852, 0.8514019846916199], + "quaternion": { + "w": -0.9035794438023315, + "x": -0.002862386710384649, + "y": -0.4283092882037223, + "z": -0.009334600541038721 + }, + "standing_position": [6.455560207366943, -1.0901101724416273, 0.8514019846916199], + "visible_nodes": [1, 6, 8, 9] + }, + { + "accessible_nodes": [2, 6, 7, 9], + "floor_index": 0, + "index": 8, + "offset_point_count": 0, + "position": [2.439610004425049, 0.016945000737905502, -0.48201701045036316], + "quaternion": { + "w": 0.5905393795512882, + "x": -0.00037284417267845893, + "y": -0.8069704642211708, + "z": 0.007859459773905769 + }, + "standing_position": [2.439610004425049, -1.179017420822189, -0.48201701045036316], + "visible_nodes": [2, 6, 7, 9] + }, + { + "accessible_nodes": [2, 6, 7, 8], + "floor_index": 0, + "index": 9, + "offset_point_count": 0, + "position": [2.33092999458313, 0.00905998982489109, 0.6838769912719727], + "quaternion": { + "w": 0.7030255937465757, + "x": 0.004636310722216956, + "y": -0.7110619761872418, + "z": 0.011153118396519255 + }, + "standing_position": [2.33092999458313, -1.1664427126096757, 0.6838769912719727], + "visible_nodes": [2, 6, 7, 8] + }, + { + "accessible_nodes": [0, 1, 2, 3, 4, 5, 11], + "floor_index": 0, + "index": 10, + "offset_point_count": 0, + "position": [-2.106489896774292, 0.02289390005171299, -1.649880051612854], + "quaternion": { + "w": -0.2280273322409348, + "x": -0.010861248829697214, + "y": -0.9735740483187977, + "z": 0.0062563176699116235 + }, + "standing_position": [-2.106489896774292, -1.1722843430610888, -1.649880051612854], + "visible_nodes": [0, 1, 2, 3, 4, 5, 11] + }, + { + "accessible_nodes": [0, 1, 2, 3, 4, 5, 10], + "floor_index": 0, + "index": 11, + "offset_point_count": 0, + "position": [-3.718280076980591, 0.03885219991207123, -1.6055200099945068], + "quaternion": { + "w": -0.26040747688402116, + "x": -0.009423884689170416, + "y": -0.9654084996841283, + "z": 0.009250694365537741 + }, + "standing_position": [-3.718280076980591, -1.1469473447854415, -1.6055200099945068], + "visible_nodes": [0, 1, 2, 3, 4, 5, 10] + }, + { + "accessible_nodes": [0, 13, 14], + "floor_index": 0, + "index": 12, + "offset_point_count": 0, + "position": [-1.6045500040054321, 0.02844730019569397, 1.1486799716949463], + "quaternion": { + "w": -0.9423549825877761, + "x": -0.006982722958095327, + "y": 0.3345370403180222, + "z": -0.0018146842332945215 + }, + "standing_position": [-1.6045500040054321, -1.1697838524399007, 1.1486799716949463], + "visible_nodes": [0, 13, 14] + }, + { + "accessible_nodes": [1, 12, 14], + "floor_index": 0, + "index": 13, + "offset_point_count": 0, + "position": [-2.3534700870513916, 0.02524220012128353, 1.0736199617385864], + "quaternion": { + "w": 0.8292950914589221, + "x": 0.00011632893408010522, + "y": -0.5587426233978122, + "z": 0.008735258520906602 + }, + "standing_position": [-2.3534700870513916, -1.1666804152109018, 1.0736199617385864], + "visible_nodes": [1, 12, 14] + }, + { + "accessible_nodes": [12, 13], + "floor_index": 0, + "index": 14, + "offset_point_count": 0, + "position": [-3.5789499282836914, 0.03756279870867729, 0.8693190217018127], + "quaternion": { + "w": 0.48314473075954106, + "x": -0.00423065059187646, + "y": -0.8754637630197378, + "z": 0.010791679744487742 + }, + "standing_position": [-3.5789499282836914, -1.1524877677170904, 0.8693190217018127], + "visible_nodes": [12, 13] + } + ], + "panorama": { + "count": 15, + "list": [ + { + "back": "images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_b.jpg", + "down": "images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_d.jpg", + "front": "images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_f.jpg", + "index": 0, + "left": "images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_l.jpg", + "right": "images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/0/9d7a520b85438faa8dfe242cdacb29f2/0_u.jpg" + }, + { + "back": "images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_b.jpg", + "down": "images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_d.jpg", + "front": "images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_f.jpg", + "index": 1, + "left": "images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_l.jpg", + "right": "images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/1/85dee4257318f3cc1bc1a08f59508884/1_u.jpg" + }, + { + "back": "images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_b.jpg", + "down": "images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_d.jpg", + "front": "images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_f.jpg", + "index": 2, + "left": "images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_l.jpg", + "right": "images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/2/212c4037e9e89ad2f2aa8873c792fc0f/2_u.jpg" + }, + { + "back": "images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_b.jpg", + "down": "images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_d.jpg", + "front": "images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_f.jpg", + "index": 3, + "left": "images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_l.jpg", + "right": "images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/3/7d3e8e9fee8e707f3294161b320c73fe/3_u.jpg" + }, + { + "back": "images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_b.jpg", + "down": "images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_d.jpg", + "front": "images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_f.jpg", + "index": 4, + "left": "images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_l.jpg", + "right": "images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/4/fb0c9562d07c23e8803d1d4ce90a621e/4_u.jpg" + }, + { + "back": "images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_b.jpg", + "down": "images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_d.jpg", + "front": "images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_f.jpg", + "index": 5, + "left": "images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_l.jpg", + "right": "images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/5/eef91a34ba3a96281072bcd4804e7620/5_u.jpg" + }, + { + "back": "images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_b.jpg", + "down": "images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_d.jpg", + "front": "images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_f.jpg", + "index": 6, + "left": "images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_l.jpg", + "right": "images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/6/ec8810d7d63ede80a8b2671bc4fbc676/6_u.jpg" + }, + { + "back": "images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_b.jpg", + "down": "images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_d.jpg", + "front": "images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_f.jpg", + "index": 7, + "left": "images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_l.jpg", + "right": "images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/7/65d8a3513d0dd4bd908d33af85f407fc/7_u.jpg" + }, + { + "back": "images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_b.jpg", + "down": "images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_d.jpg", + "front": "images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_f.jpg", + "index": 8, + "left": "images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_l.jpg", + "right": "images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/8/871a32e64c6b9c39b5e3b092770a6c53/8_u.jpg" + }, + { + "back": "images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_b.jpg", + "down": "images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_d.jpg", + "front": "images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_f.jpg", + "index": 9, + "left": "images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_l.jpg", + "right": "images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/9/00b662866318d1146556013c2d5d93e5/9_u.jpg" + }, + { + "back": "images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_b.jpg", + "down": "images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_d.jpg", + "front": "images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_f.jpg", + "index": 10, + "left": "images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_l.jpg", + "right": "images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/10/2c4d69546fbe8894b41c53f841434c98/10_u.jpg" + }, + { + "back": "images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_b.jpg", + "down": "images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_d.jpg", + "front": "images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_f.jpg", + "index": 11, + "left": "images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_l.jpg", + "right": "images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/11/4d04f6843e2fbf26fc1478e8789f96f9/11_u.jpg" + }, + { + "back": "images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_b.jpg", + "down": "images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_d.jpg", + "front": "images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_f.jpg", + "index": 12, + "left": "images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_l.jpg", + "right": "images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/12/2a66face50c17bf180de6e2cc8ab2a96/12_u.jpg" + }, + { + "back": "images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_b.jpg", + "down": "images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_d.jpg", + "front": "images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_f.jpg", + "index": 13, + "left": "images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_l.jpg", + "right": "images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/13/60b058e951edbeaf60d17244fd7544be/13_u.jpg" + }, + { + "back": "images/cube_2048/14/a1437457247df575352750083a446194/14_b.jpg", + "down": "images/cube_2048/14/a1437457247df575352750083a446194/14_d.jpg", + "front": "images/cube_2048/14/a1437457247df575352750083a446194/14_f.jpg", + "index": 14, + "left": "images/cube_2048/14/a1437457247df575352750083a446194/14_l.jpg", + "right": "images/cube_2048/14/a1437457247df575352750083a446194/14_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/14/a1437457247df575352750083a446194/14_u.jpg" + } + ] + }, + "picture_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/23c2ca240bd785890eb1f4229490c18c/screenshot/1606794982_0/pc0_azUueeLKa.jpg", + "title_picture_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/23c2ca240bd785890eb1f4229490c18c/screenshot/1606794982_0/pc1_as1HZ8JNL_1.jpg", + "vr_code": "80o024DE2xyva3j5BE", + "vr_type": "reality" +} diff --git a/open-works/real/80o2183onbPJ4DwKvy/index.js b/open-works/real/80o2183onbPJ4DwKvy/index.js new file mode 100644 index 000000000..b05307145 --- /dev/null +++ b/open-works/real/80o2183onbPJ4DwKvy/index.js @@ -0,0 +1,4 @@ +import { work } from './work' +import { panoRulerProPluginServerData } from './panoRulerProPluginServerData' + +export default { work, panoRulerProPluginServerData } diff --git a/open-works/real/80o2183onbPJ4DwKvy/panoRulerProPluginServerData.js b/open-works/real/80o2183onbPJ4DwKvy/panoRulerProPluginServerData.js new file mode 100644 index 000000000..39861c4d0 --- /dev/null +++ b/open-works/real/80o2183onbPJ4DwKvy/panoRulerProPluginServerData.js @@ -0,0 +1,4064 @@ +const panoRulerProPluginServerData = [ + { + panoIndex: 0, + roomName: '阳台', + lines: [ + { + start: [-0.194, 1.005, -0.974], + end: [-6.031, 1.005, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.005, -0.974], + end: [-0.398, 1.005, -0.974], + state: false, + }, + { + start: [-0.398, 1.005, -0.974], + end: [-1.087, 1.005, -0.974], + state: true, + }, + { + start: [-1.087, 1.005, -0.974], + end: [-2.904, 1.005, -0.974], + state: false, + }, + { + start: [-2.904, 1.005, -0.974], + end: [-4.398, 1.005, -0.974], + state: true, + }, + { + start: [-4.398, 1.005, -0.974], + end: [-6.031, 1.005, -0.974], + state: false, + }, + ], + }, + { + start: [-0.194, 1.005, -0.974], + end: [-0.194, -1.489, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.005, -0.974], + end: [-0.194, 0.757, -0.974], + state: false, + }, + { + start: [-0.194, 0.757, -0.974], + end: [-0.194, 0.522, -0.974], + state: true, + }, + { + start: [-0.194, 0.522, -0.974], + end: [-0.194, -1.163, -0.974], + state: false, + }, + { + start: [-0.194, -1.163, -0.974], + end: [-0.194, -1.489, -0.974], + state: true, + }, + ], + }, + { + start: [-6.031, 1.005, -0.974], + end: [-6.031, 1.005, 0.669], + state: false, + children: [ + { + start: [-6.031, 1.005, -0.974], + end: [-6.031, 1.005, -0.504], + state: false, + }, + { + start: [-6.031, 1.005, -0.504], + end: [-6.031, 1.005, 0.669], + state: true, + }, + ], + }, + { + start: [-6.031, 1.005, -0.974], + end: [-6.031, -1.489, -0.974], + state: false, + children: [ + { + start: [-6.031, 1.005, -0.974], + end: [-6.031, 0.794, -0.974], + state: false, + }, + { + start: [-6.031, 0.794, -0.974], + end: [-6.031, 0.492, -0.974], + state: true, + }, + { + start: [-6.031, 0.492, -0.974], + end: [-6.031, -0.035, -0.974], + state: false, + }, + { + start: [-6.031, -0.035, -0.974], + end: [-6.031, -0.33, -0.974], + state: true, + }, + { + start: [-6.031, -0.33, -0.974], + end: [-6.031, -0.759, -0.974], + state: false, + }, + { + start: [-6.031, -0.759, -0.974], + end: [-6.031, -1.489, -0.974], + state: true, + }, + ], + }, + { + start: [-6.031, 1.005, 0.669], + end: [0.612, 1.005, 0.669], + state: false, + children: [ + { + start: [-6.031, 1.005, 0.669], + end: [-0.945, 1.005, 0.669], + state: true, + }, + { + start: [-0.945, 1.005, 0.669], + end: [-0.631, 1.005, 0.669], + state: false, + }, + { + start: [-0.631, 1.005, 0.669], + end: [0.131, 1.005, 0.669], + state: true, + }, + { + start: [0.131, 1.005, 0.669], + end: [0.612, 1.005, 0.669], + state: false, + }, + ], + }, + { + start: [-6.031, 1.005, 0.669], + end: [-6.031, -1.489, 0.669], + state: true, + children: [], + }, + { + start: [0.612, 1.005, 0.669], + end: [0.612, 1.005, -0.185], + state: false, + children: [], + }, + { + start: [0.612, 1.005, 0.669], + end: [0.612, -1.489, 0.669], + state: false, + children: [ + { + start: [0.612, 1.005, 0.669], + end: [0.612, -0.112, 0.669], + state: false, + }, + { + start: [0.612, -0.112, 0.669], + end: [0.612, -0.346, 0.669], + state: true, + }, + { + start: [0.612, -0.346, 0.669], + end: [0.612, -1.489, 0.669], + state: false, + }, + ], + }, + { + start: [0.612, 1.005, -0.185], + end: [-0.194, 1.005, -0.185], + state: false, + children: [], + }, + { + start: [0.612, 1.005, -0.185], + end: [0.612, -1.489, -0.185], + state: false, + children: [], + }, + { + start: [-0.194, 1.005, -0.185], + end: [-0.194, 1.005, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.005, -0.185], + end: [-0.194, 1.005, -0.626], + state: false, + }, + { + start: [-0.194, 1.005, -0.626], + end: [-0.194, 1.005, -0.974], + state: true, + }, + ], + }, + { + start: [-0.194, 1.005, -0.185], + end: [-0.194, -1.489, -0.185], + state: false, + children: [ + { + start: [-0.194, 1.005, -0.185], + end: [-0.194, 0.265, -0.185], + state: false, + }, + { + start: [-0.194, 0.265, -0.185], + end: [-0.194, -1.489, -0.185], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 1, + roomName: '阳台', + lines: [ + { + start: [-0.194, 1.007, -0.974], + end: [-6.031, 1.007, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.007, -0.974], + end: [-2.142, 1.007, -0.974], + state: false, + }, + { + start: [-2.142, 1.007, -0.974], + end: [-4.537, 1.007, -0.974], + state: true, + }, + { + start: [-4.537, 1.007, -0.974], + end: [-6.031, 1.007, -0.974], + state: false, + }, + ], + }, + { + start: [-0.194, 1.007, -0.974], + end: [-0.194, -1.488, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.007, -0.974], + end: [-0.194, 0.156, -0.974], + state: false, + }, + { + start: [-0.194, 0.156, -0.974], + end: [-0.194, -1.488, -0.974], + state: true, + }, + ], + }, + { + start: [-6.031, 1.007, -0.974], + end: [-6.031, 1.007, 0.669], + state: false, + children: [ + { + start: [-6.031, 1.007, -0.974], + end: [-6.031, 1.007, -0.548], + state: false, + }, + { + start: [-6.031, 1.007, -0.548], + end: [-6.031, 1.007, 0.162], + state: true, + }, + { + start: [-6.031, 1.007, 0.162], + end: [-6.031, 1.007, 0.669], + state: false, + }, + ], + }, + { + start: [-6.031, 1.007, -0.974], + end: [-6.031, -1.488, -0.974], + state: false, + children: [ + { + start: [-6.031, 1.007, -0.974], + end: [-6.031, 0.721, -0.974], + state: false, + }, + { + start: [-6.031, 0.721, -0.974], + end: [-6.031, 0.495, -0.974], + state: true, + }, + { + start: [-6.031, 0.495, -0.974], + end: [-6.031, -0.046, -0.974], + state: false, + }, + { + start: [-6.031, -0.046, -0.974], + end: [-6.031, -0.46, -0.974], + state: true, + }, + { + start: [-6.031, -0.46, -0.974], + end: [-6.031, -0.782, -0.974], + state: false, + }, + { + start: [-6.031, -0.782, -0.974], + end: [-6.031, -1.488, -0.974], + state: true, + }, + ], + }, + { + start: [-6.031, 1.007, 0.669], + end: [0.612, 1.007, 0.669], + state: true, + children: [], + }, + { + start: [-6.031, 1.007, 0.669], + end: [-6.031, -1.488, 0.669], + state: true, + children: [], + }, + { + start: [0.612, 1.007, 0.669], + end: [0.612, 1.007, -0.185], + state: false, + children: [], + }, + { + start: [0.612, 1.007, 0.669], + end: [0.612, -1.488, 0.669], + state: false, + children: [ + { + start: [0.612, 1.007, 0.669], + end: [0.612, 0.335, 0.669], + state: true, + }, + { + start: [0.612, 0.335, 0.669], + end: [0.612, -0.092, 0.669], + state: false, + }, + { + start: [0.612, -0.092, 0.669], + end: [0.612, -0.7, 0.669], + state: true, + }, + { + start: [0.612, -0.7, 0.669], + end: [0.612, -1.488, 0.669], + state: false, + }, + ], + }, + { + start: [0.612, 1.007, -0.185], + end: [-0.194, 1.007, -0.185], + state: false, + children: [ + { + start: [0.612, 1.007, -0.185], + end: [0.333, 1.007, -0.185], + state: true, + }, + { + start: [0.333, 1.007, -0.185], + end: [-0.194, 1.007, -0.185], + state: false, + }, + ], + }, + { + start: [0.612, 1.007, -0.185], + end: [0.612, -1.488, -0.185], + state: false, + children: [ + { + start: [0.612, 1.007, -0.185], + end: [0.612, 0.683, -0.185], + state: true, + }, + { + start: [0.612, 0.683, -0.185], + end: [0.612, -1.488, -0.185], + state: false, + }, + ], + }, + { + start: [-0.194, 1.007, -0.185], + end: [-0.194, 1.007, -0.974], + state: false, + children: [], + }, + { + start: [-0.194, 1.007, -0.185], + end: [-0.194, -1.488, -0.185], + state: false, + children: [ + { + start: [-0.194, 1.007, -0.185], + end: [-0.194, 0.77, -0.185], + state: false, + }, + { + start: [-0.194, 0.77, -0.185], + end: [-0.194, -1.488, -0.185], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 2, + roomName: '主卧室', + lines: [ + { + start: [-6.311, 1.013, 0.799], + end: [-9.444, 1.013, 0.739], + state: false, + children: [ + { + start: [-6.311, 1.013, 0.799], + end: [-6.565, 1.013, 0.794], + state: false, + }, + { + start: [-6.565, 1.013, 0.794], + end: [-7.598, 1.013, 0.774], + state: true, + }, + { + start: [-7.598, 1.013, 0.774], + end: [-9.444, 1.013, 0.739], + state: false, + }, + ], + }, + { + start: [-6.311, 1.013, 0.799], + end: [-6.311, -1.714, 0.799], + state: false, + children: [ + { + start: [-6.311, 1.013, 0.799], + end: [-6.311, -0.594, 0.799], + state: true, + }, + { + start: [-6.311, -0.594, 0.799], + end: [-6.311, -1.405, 0.799], + state: false, + }, + { + start: [-6.311, -1.405, 0.799], + end: [-6.311, -1.714, 0.799], + state: true, + }, + ], + }, + { + start: [-9.444, 1.013, 0.739], + end: [-9.444, 1.013, 4.627], + state: false, + children: [ + { + start: [-9.444, 1.013, 0.739], + end: [-9.444, 1.013, 3.445], + state: false, + }, + { + start: [-9.444, 1.013, 3.445], + end: [-9.444, 1.013, 4.031], + state: true, + }, + { + start: [-9.444, 1.013, 4.031], + end: [-9.444, 1.013, 4.627], + state: false, + }, + ], + }, + { + start: [-9.444, 1.013, 0.739], + end: [-9.444, -1.714, 0.739], + state: false, + children: [ + { + start: [-9.444, 1.013, 0.739], + end: [-9.444, -1.376, 0.739], + state: false, + }, + { + start: [-9.444, -1.376, 0.739], + end: [-9.444, -1.714, 0.739], + state: true, + }, + ], + }, + { + start: [-9.444, 1.013, 4.627], + end: [-9.444, -1.714, 4.627], + state: false, + children: [], + }, + { + start: [-7.436, 1.013, 4.064], + end: [-6.311, 1.013, 4.064], + state: false, + children: [ + { + start: [-7.436, 1.013, 4.064], + end: [-7.155, 1.013, 4.064], + state: true, + }, + { + start: [-7.155, 1.013, 4.064], + end: [-6.311, 1.013, 4.064], + state: false, + }, + ], + }, + { + start: [-7.436, 1.013, 4.064], + end: [-7.436, -1.714, 4.064], + state: false, + children: [ + { + start: [-7.436, 1.013, 4.064], + end: [-7.436, -0.002, 4.064], + state: true, + }, + { + start: [-7.436, -0.002, 4.064], + end: [-7.436, -1.301, 4.064], + state: false, + }, + { + start: [-7.436, -1.301, 4.064], + end: [-7.436, -1.714, 4.064], + state: true, + }, + ], + }, + { + start: [-6.311, 1.013, 4.064], + end: [-6.311, 1.013, 0.799], + state: false, + children: [ + { + start: [-6.311, 1.013, 4.064], + end: [-6.311, 1.013, 3.326], + state: false, + }, + { + start: [-6.311, 1.013, 3.326], + end: [-6.311, 1.013, 0.799], + state: true, + }, + ], + }, + { + start: [-6.311, 1.013, 4.064], + end: [-6.311, -1.714, 4.064], + state: false, + children: [ + { + start: [-6.311, 1.013, 4.064], + end: [-6.311, -1.261, 4.064], + state: true, + }, + { + start: [-6.311, -1.261, 4.064], + end: [-6.311, -1.714, 4.064], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 3, + roomName: '主卧室', + lines: [ + { + start: [-6.311, 1.009, 0.799], + end: [-9.444, 1.009, 0.739], + state: false, + children: [ + { + start: [-6.311, 1.009, 0.799], + end: [-6.558, 1.009, 0.794], + state: false, + }, + { + start: [-6.558, 1.009, 0.794], + end: [-7.158, 1.009, 0.783], + state: true, + }, + { + start: [-7.158, 1.009, 0.783], + end: [-9.444, 1.009, 0.739], + state: false, + }, + ], + }, + { + start: [-6.311, 1.009, 0.799], + end: [-6.311, -1.718, 0.799], + state: false, + children: [ + { + start: [-6.311, 1.009, 0.799], + end: [-6.311, -1.407, 0.799], + state: false, + }, + { + start: [-6.311, -1.407, 0.799], + end: [-6.311, -1.718, 0.799], + state: true, + }, + ], + }, + { + start: [-9.444, 1.009, 0.739], + end: [-9.444, 1.009, 4.627], + state: false, + children: [], + }, + { + start: [-9.444, 1.009, 0.739], + end: [-9.444, -1.718, 0.739], + state: false, + children: [ + { + start: [-9.444, 1.009, 0.739], + end: [-9.444, -1.386, 0.739], + state: false, + }, + { + start: [-9.444, -1.386, 0.739], + end: [-9.444, -1.718, 0.739], + state: true, + }, + ], + }, + { + start: [-9.444, 1.009, 4.627], + end: [-7.436, 1.009, 4.627], + state: false, + children: [], + }, + { + start: [-9.444, 1.009, 4.627], + end: [-9.444, -1.718, 4.627], + state: false, + children: [], + }, + { + start: [-7.436, 1.009, 4.627], + end: [-7.436, 1.009, 4.064], + state: false, + children: [], + }, + { + start: [-7.436, 1.009, 4.627], + end: [-7.436, -1.718, 4.627], + state: false, + children: [], + }, + { + start: [-7.436, 1.009, 4.064], + end: [-6.311, 1.009, 4.064], + state: false, + children: [ + { + start: [-7.436, 1.009, 4.064], + end: [-7.231, 1.009, 4.064], + state: false, + }, + { + start: [-7.231, 1.009, 4.064], + end: [-6.311, 1.009, 4.064], + state: true, + }, + ], + }, + { + start: [-7.436, 1.009, 4.064], + end: [-7.436, -1.718, 4.064], + state: false, + children: [ + { + start: [-7.436, 1.009, 4.064], + end: [-7.436, 0.768, 4.064], + state: false, + }, + { + start: [-7.436, 0.768, 4.064], + end: [-7.436, -0.919, 4.064], + state: true, + }, + { + start: [-7.436, -0.919, 4.064], + end: [-7.436, -1.718, 4.064], + state: false, + }, + ], + }, + { + start: [-6.311, 1.009, 4.064], + end: [-6.311, 1.009, 0.799], + state: true, + children: [], + }, + { + start: [-6.311, 1.009, 4.064], + end: [-6.311, -1.718, 4.064], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 4, + roomName: '主卧室', + lines: [ + { + start: [-6.311, 1.007, 0.799], + end: [-9.444, 1.007, 0.739], + state: false, + children: [ + { + start: [-6.311, 1.007, 0.799], + end: [-7.365, 1.007, 0.779], + state: false, + }, + { + start: [-7.365, 1.007, 0.779], + end: [-8.097, 1.007, 0.765], + state: true, + }, + { + start: [-8.097, 1.007, 0.765], + end: [-9.444, 1.007, 0.739], + state: false, + }, + ], + }, + { + start: [-6.311, 1.007, 0.799], + end: [-6.311, -1.72, 0.799], + state: false, + children: [], + }, + { + start: [-9.444, 1.007, 0.739], + end: [-9.444, 1.007, 4.627], + state: false, + children: [], + }, + { + start: [-9.444, 1.007, 0.739], + end: [-9.444, -1.72, 0.739], + state: false, + children: [], + }, + { + start: [-9.444, 1.007, 4.627], + end: [-7.436, 1.007, 4.627], + state: false, + children: [], + }, + { + start: [-9.444, 1.007, 4.627], + end: [-9.444, -1.72, 4.627], + state: false, + children: [], + }, + { + start: [-7.436, 1.007, 4.064], + end: [-6.311, 1.007, 4.064], + state: true, + children: [], + }, + { + start: [-7.436, 1.007, 4.064], + end: [-7.436, -1.72, 4.064], + state: true, + children: [], + }, + { + start: [-6.311, 1.007, 4.064], + end: [-6.311, 1.007, 0.799], + state: false, + children: [ + { + start: [-6.311, 1.007, 4.064], + end: [-6.311, 1.007, 1.343], + state: true, + }, + { + start: [-6.311, 1.007, 1.343], + end: [-6.311, 1.007, 0.799], + state: false, + }, + ], + }, + { + start: [-6.311, 1.007, 4.064], + end: [-6.311, -1.72, 4.064], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 5, + roomName: '主卧室', + lines: [ + { + start: [-6.311, 1.008, 0.799], + end: [-9.444, 1.008, 0.739], + state: false, + children: [ + { + start: [-6.311, 1.008, 0.799], + end: [-6.919, 1.008, 0.787], + state: true, + }, + { + start: [-6.919, 1.008, 0.787], + end: [-9.444, 1.008, 0.739], + state: false, + }, + ], + }, + { + start: [-6.311, 1.008, 0.799], + end: [-6.311, -1.719, 0.799], + state: false, + children: [ + { + start: [-6.311, 1.008, 0.799], + end: [-6.311, -0.147, 0.799], + state: true, + }, + { + start: [-6.311, -0.147, 0.799], + end: [-6.311, -1.719, 0.799], + state: false, + }, + ], + }, + { + start: [-9.444, 1.008, 0.739], + end: [-9.444, 1.008, 4.627], + state: false, + children: [], + }, + { + start: [-9.444, 1.008, 0.739], + end: [-9.444, -1.719, 0.739], + state: false, + children: [ + { + start: [-9.444, 1.008, 0.739], + end: [-9.444, 0.205, 0.739], + state: false, + }, + { + start: [-9.444, 0.205, 0.739], + end: [-9.444, -0.061, 0.739], + state: true, + }, + { + start: [-9.444, -0.061, 0.739], + end: [-9.444, -1.719, 0.739], + state: false, + }, + ], + }, + { + start: [-9.444, 1.008, 4.627], + end: [-7.436, 1.008, 4.627], + state: false, + children: [], + }, + { + start: [-9.444, 1.008, 4.627], + end: [-9.444, -1.719, 4.627], + state: false, + children: [ + { + start: [-9.444, 1.008, 4.627], + end: [-9.444, -1.274, 4.627], + state: false, + }, + { + start: [-9.444, -1.274, 4.627], + end: [-9.444, -1.719, 4.627], + state: true, + }, + ], + }, + { + start: [-7.436, 1.008, 4.627], + end: [-7.436, 1.008, 4.064], + state: false, + children: [], + }, + { + start: [-7.436, 1.008, 4.627], + end: [-7.436, -1.719, 4.627], + state: false, + children: [], + }, + { + start: [-7.436, 1.008, 4.064], + end: [-6.311, 1.008, 4.064], + state: false, + children: [ + { + start: [-7.436, 1.008, 4.064], + end: [-6.676, 1.008, 4.064], + state: false, + }, + { + start: [-6.676, 1.008, 4.064], + end: [-6.311, 1.008, 4.064], + state: true, + }, + ], + }, + { + start: [-7.436, 1.008, 4.064], + end: [-7.436, -1.719, 4.064], + state: false, + children: [ + { + start: [-7.436, 1.008, 4.064], + end: [-7.436, 0.649, 4.064], + state: false, + }, + { + start: [-7.436, 0.649, 4.064], + end: [-7.436, -1.719, 4.064], + state: true, + }, + ], + }, + { + start: [-6.311, 1.008, 4.064], + end: [-6.311, 1.008, 0.799], + state: false, + children: [ + { + start: [-6.311, 1.008, 4.064], + end: [-6.311, 1.008, 1.038], + state: true, + }, + { + start: [-6.311, 1.008, 1.038], + end: [-6.311, 1.008, 0.799], + state: false, + }, + ], + }, + { + start: [-6.311, 1.008, 4.064], + end: [-6.311, -1.719, 4.064], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 6, + roomName: '儿童房', + lines: [ + { + start: [-6.211, 1.007, 7.903], + end: [-6.211, 1.007, 5.41], + state: false, + children: [ + { + start: [-6.211, 1.007, 7.903], + end: [-6.211, 1.007, 6.526], + state: false, + }, + { + start: [-6.211, 1.007, 6.526], + end: [-6.211, 1.007, 5.41], + state: true, + }, + ], + }, + { + start: [-6.211, 1.007, 7.903], + end: [-6.211, -1.676, 7.903], + state: false, + children: [ + { + start: [-6.211, 1.007, 7.903], + end: [-6.211, 0.124, 7.903], + state: false, + }, + { + start: [-6.211, 0.124, 7.903], + end: [-6.211, -1.676, 7.903], + state: true, + }, + ], + }, + { + start: [-6.211, 1.007, 5.41], + end: [-7.436, 1.007, 5.41], + state: false, + children: [], + }, + { + start: [-6.211, 1.007, 5.41], + end: [-6.211, -1.676, 5.41], + state: false, + children: [ + { + start: [-6.211, 1.007, 5.41], + end: [-6.211, -1.418, 5.41], + state: true, + }, + { + start: [-6.211, -1.418, 5.41], + end: [-6.211, -1.676, 5.41], + state: false, + }, + ], + }, + { + start: [-7.436, 1.007, 5.41], + end: [-7.436, -1.676, 5.41], + state: false, + children: [], + }, + { + start: [-9.484, 1.007, 4.797], + end: [-9.484, 1.007, 7.903], + state: false, + children: [ + { + start: [-9.484, 1.007, 4.797], + end: [-9.484, 1.007, 5.377], + state: false, + }, + { + start: [-9.484, 1.007, 5.377], + end: [-9.484, 1.007, 5.827], + state: true, + }, + { + start: [-9.484, 1.007, 5.827], + end: [-9.484, 1.007, 7.903], + state: false, + }, + ], + }, + { + start: [-9.484, 1.007, 4.797], + end: [-9.484, -1.676, 4.797], + state: false, + children: [], + }, + { + start: [-9.484, 1.007, 7.903], + end: [-6.211, 1.007, 7.903], + state: false, + children: [], + }, + { + start: [-9.484, 1.007, 7.903], + end: [-9.484, -1.676, 7.903], + state: false, + children: [ + { + start: [-9.484, 1.007, 7.903], + end: [-9.484, 0.075, 7.903], + state: false, + }, + { + start: [-9.484, 0.075, 7.903], + end: [-9.484, -1.676, 7.903], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 7, + roomName: '儿童房', + lines: [ + { + start: [-6.211, 1.015, 7.903], + end: [-6.211, 1.015, 5.41], + state: false, + children: [ + { + start: [-6.211, 1.015, 7.903], + end: [-6.211, 1.015, 6.049], + state: false, + }, + { + start: [-6.211, 1.015, 6.049], + end: [-6.211, 1.015, 5.41], + state: true, + }, + ], + }, + { + start: [-6.211, 1.015, 7.903], + end: [-6.211, -1.669, 7.903], + state: false, + children: [ + { + start: [-6.211, 1.015, 7.903], + end: [-6.211, 0.12, 7.903], + state: false, + }, + { + start: [-6.211, 0.12, 7.903], + end: [-6.211, -1.669, 7.903], + state: true, + }, + ], + }, + { + start: [-6.211, 1.015, 5.41], + end: [-7.436, 1.015, 5.41], + state: true, + children: [], + }, + { + start: [-6.211, 1.015, 5.41], + end: [-6.211, -1.669, 5.41], + state: true, + children: [], + }, + { + start: [-7.436, 1.015, 5.41], + end: [-7.436, -1.669, 5.41], + state: false, + children: [ + { + start: [-7.436, 1.015, 5.41], + end: [-7.436, -1.361, 5.41], + state: false, + }, + { + start: [-7.436, -1.361, 5.41], + end: [-7.436, -1.669, 5.41], + state: true, + }, + ], + }, + { + start: [-7.436, 1.015, 4.797], + end: [-9.484, 1.015, 4.797], + state: false, + children: [], + }, + { + start: [-9.484, 1.015, 4.797], + end: [-9.484, 1.015, 7.903], + state: false, + children: [], + }, + { + start: [-9.484, 1.015, 4.797], + end: [-9.484, -1.669, 4.797], + state: false, + children: [], + }, + { + start: [-9.484, 1.015, 7.903], + end: [-6.211, 1.015, 7.903], + state: false, + children: [], + }, + { + start: [-9.484, 1.015, 7.903], + end: [-9.484, -1.669, 7.903], + state: false, + children: [ + { + start: [-9.484, 1.015, 7.903], + end: [-9.484, 0.051, 7.903], + state: false, + }, + { + start: [-9.484, 0.051, 7.903], + end: [-9.484, -1.669, 7.903], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 8, + roomName: '儿童房', + lines: [ + { + start: [-6.211, 1.012, 7.903], + end: [-6.211, 1.012, 5.41], + state: false, + children: [ + { + start: [-6.211, 1.012, 7.903], + end: [-6.211, 1.012, 6.533], + state: false, + }, + { + start: [-6.211, 1.012, 6.533], + end: [-6.211, 1.012, 5.41], + state: true, + }, + ], + }, + { + start: [-6.211, 1.012, 7.903], + end: [-6.211, -1.671, 7.903], + state: false, + children: [ + { + start: [-6.211, 1.012, 7.903], + end: [-6.211, 0.325, 7.903], + state: false, + }, + { + start: [-6.211, 0.325, 7.903], + end: [-6.211, -1.671, 7.903], + state: true, + }, + ], + }, + { + start: [-6.211, 1.012, 5.41], + end: [-7.436, 1.012, 5.41], + state: true, + children: [], + }, + { + start: [-6.211, 1.012, 5.41], + end: [-6.211, -1.671, 5.41], + state: true, + children: [], + }, + { + start: [-7.436, 1.012, 5.41], + end: [-7.436, 1.012, 4.797], + state: false, + children: [], + }, + { + start: [-7.436, 1.012, 5.41], + end: [-7.436, -1.671, 5.41], + state: false, + children: [], + }, + { + start: [-7.436, 1.012, 4.797], + end: [-9.484, 1.012, 4.797], + state: false, + children: [], + }, + { + start: [-7.436, 1.012, 4.797], + end: [-7.436, -1.671, 4.797], + state: false, + children: [], + }, + { + start: [-9.484, 1.012, 4.797], + end: [-9.484, 1.012, 7.903], + state: false, + children: [ + { + start: [-9.484, 1.012, 4.797], + end: [-9.484, 1.012, 5.387], + state: false, + }, + { + start: [-9.484, 1.012, 5.387], + end: [-9.484, 1.012, 5.837], + state: true, + }, + { + start: [-9.484, 1.012, 5.837], + end: [-9.484, 1.012, 7.903], + state: false, + }, + ], + }, + { + start: [-9.484, 1.012, 4.797], + end: [-9.484, -1.671, 4.797], + state: false, + children: [], + }, + { + start: [-9.484, 1.012, 7.903], + end: [-6.211, 1.012, 7.903], + state: false, + children: [ + { + start: [-9.484, 1.012, 7.903], + end: [-8.136, 1.012, 7.903], + state: false, + }, + { + start: [-8.136, 1.012, 7.903], + end: [-7.867, 1.012, 7.903], + state: true, + }, + { + start: [-7.867, 1.012, 7.903], + end: [-6.211, 1.012, 7.903], + state: false, + }, + ], + }, + { + start: [-9.484, 1.012, 7.903], + end: [-9.484, -1.671, 7.903], + state: false, + children: [ + { + start: [-9.484, 1.012, 7.903], + end: [-9.484, 0.041, 7.903], + state: false, + }, + { + start: [-9.484, 0.041, 7.903], + end: [-9.484, -1.671, 7.903], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 9, + roomName: '卫生间', + lines: [ + { + start: [-3.656, 1.02, 7.873], + end: [-3.656, 1.02, 5.41], + state: false, + children: [ + { + start: [-3.656, 1.02, 7.873], + end: [-3.656, 1.02, 7.493], + state: false, + }, + { + start: [-3.656, 1.02, 7.493], + end: [-3.656, 1.02, 6.811], + state: true, + }, + { + start: [-3.656, 1.02, 6.811], + end: [-3.656, 1.02, 6.184], + state: false, + }, + { + start: [-3.656, 1.02, 6.184], + end: [-3.656, 1.02, 5.41], + state: true, + }, + ], + }, + { + start: [-3.656, 1.02, 7.873], + end: [-3.656, -1.346, 7.873], + state: false, + children: [ + { + start: [-3.656, 1.02, 7.873], + end: [-3.656, 0.726, 7.873], + state: false, + }, + { + start: [-3.656, 0.726, 7.873], + end: [-3.656, -1.346, 7.873], + state: true, + }, + ], + }, + { + start: [-3.656, 1.02, 5.41], + end: [-6.071, 1.02, 5.41], + state: false, + children: [ + { + start: [-3.656, 1.02, 5.41], + end: [-4.677, 1.02, 5.41], + state: true, + }, + { + start: [-4.677, 1.02, 5.41], + end: [-6.071, 1.02, 5.41], + state: false, + }, + ], + }, + { + start: [-3.656, 1.02, 5.41], + end: [-3.656, -1.346, 5.41], + state: true, + children: [], + }, + { + start: [-6.071, 1.02, 5.41], + end: [-6.071, 1.02, 7.873], + state: false, + children: [], + }, + { + start: [-6.071, 1.02, 5.41], + end: [-6.071, -1.346, 5.41], + state: false, + children: [ + { + start: [-6.071, 1.02, 5.41], + end: [-6.071, 0.16, 5.41], + state: false, + }, + { + start: [-6.071, 0.16, 5.41], + end: [-6.071, -0.145, 5.41], + state: true, + }, + { + start: [-6.071, -0.145, 5.41], + end: [-6.071, -1.346, 5.41], + state: false, + }, + ], + }, + { + start: [-6.071, 1.02, 7.873], + end: [-3.656, 1.02, 7.873], + state: false, + children: [ + { + start: [-6.071, 1.02, 7.873], + end: [-5.655, 1.02, 7.873], + state: false, + }, + { + start: [-5.655, 1.02, 7.873], + end: [-4.541, 1.02, 7.873], + state: true, + }, + { + start: [-4.541, 1.02, 7.873], + end: [-3.656, 1.02, 7.873], + state: false, + }, + ], + }, + { + start: [-6.071, 1.02, 7.873], + end: [-6.071, -1.346, 7.873], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 10, + roomName: '卫生间', + lines: [ + { + start: [-3.656, 1.01, 7.873], + end: [-3.656, 1.01, 5.41], + state: false, + children: [], + }, + { + start: [-3.656, 1.01, 7.873], + end: [-3.656, -1.356, 7.873], + state: false, + children: [], + }, + { + start: [-3.656, 1.01, 5.41], + end: [-6.071, 1.01, 5.41], + state: false, + children: [ + { + start: [-3.656, 1.01, 5.41], + end: [-4.187, 1.01, 5.41], + state: false, + }, + { + start: [-4.187, 1.01, 5.41], + end: [-5.531, 1.01, 5.41], + state: true, + }, + { + start: [-5.531, 1.01, 5.41], + end: [-6.071, 1.01, 5.41], + state: false, + }, + ], + }, + { + start: [-3.656, 1.01, 5.41], + end: [-3.656, -1.356, 5.41], + state: false, + children: [], + }, + { + start: [-6.071, 1.01, 5.41], + end: [-6.071, 1.01, 7.873], + state: false, + children: [ + { + start: [-6.071, 1.01, 5.41], + end: [-6.071, 1.01, 6.944], + state: false, + }, + { + start: [-6.071, 1.01, 6.944], + end: [-6.071, 1.01, 7.873], + state: true, + }, + ], + }, + { + start: [-6.071, 1.01, 5.41], + end: [-6.071, -1.356, 5.41], + state: false, + children: [], + }, + { + start: [-6.071, 1.01, 7.873], + end: [-3.656, 1.01, 7.873], + state: false, + children: [ + { + start: [-6.071, 1.01, 7.873], + end: [-5.385, 1.01, 7.873], + state: true, + }, + { + start: [-5.385, 1.01, 7.873], + end: [-4.763, 1.01, 7.873], + state: false, + }, + { + start: [-4.763, 1.01, 7.873], + end: [-4.208, 1.01, 7.873], + state: true, + }, + { + start: [-4.208, 1.01, 7.873], + end: [-3.656, 1.01, 7.873], + state: false, + }, + ], + }, + { + start: [-6.071, 1.01, 7.873], + end: [-6.071, -1.356, 7.873], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 11, + roomName: '次卧室', + lines: [ + { + start: [-3.286, 1.011, 4.074], + end: [-3.286, 1.011, 0.789], + state: false, + children: [ + { + start: [-3.286, 1.011, 4.074], + end: [-3.286, 1.011, 3.421], + state: false, + }, + { + start: [-3.286, 1.011, 3.421], + end: [-3.286, 1.011, 1.18], + state: true, + }, + { + start: [-3.286, 1.011, 1.18], + end: [-3.286, 1.011, 0.789], + state: false, + }, + ], + }, + { + start: [-3.286, 1.011, 4.074], + end: [-3.286, -1.665, 4.074], + state: false, + children: [ + { + start: [-3.286, 1.011, 4.074], + end: [-3.286, -1.277, 4.074], + state: true, + }, + { + start: [-3.286, -1.277, 4.074], + end: [-3.286, -1.665, 4.074], + state: false, + }, + ], + }, + { + start: [-3.286, 1.011, 0.789], + end: [-6.071, 1.011, 0.789], + state: false, + children: [ + { + start: [-3.286, 1.011, 0.789], + end: [-3.517, 1.011, 0.789], + state: false, + }, + { + start: [-3.517, 1.011, 0.789], + end: [-3.938, 1.011, 0.789], + state: true, + }, + { + start: [-3.938, 1.011, 0.789], + end: [-6.071, 1.011, 0.789], + state: false, + }, + ], + }, + { + start: [-3.286, 1.011, 0.789], + end: [-3.286, -1.665, 0.789], + state: false, + children: [ + { + start: [-3.286, 1.011, 0.789], + end: [-3.286, -1.422, 0.789], + state: false, + }, + { + start: [-3.286, -1.422, 0.789], + end: [-3.286, -1.665, 0.789], + state: true, + }, + ], + }, + { + start: [-6.071, 1.011, 0.789], + end: [-6.071, 1.011, 4.074], + state: false, + children: [], + }, + { + start: [-6.071, 1.011, 0.789], + end: [-6.071, -1.665, 0.789], + state: false, + children: [ + { + start: [-6.071, 1.011, 0.789], + end: [-6.071, 0.117, 0.789], + state: false, + }, + { + start: [-6.071, 0.117, 0.789], + end: [-6.071, -1.665, 0.789], + state: true, + }, + ], + }, + { + start: [-6.071, 1.011, 4.074], + end: [-3.286, 1.011, 4.074], + state: false, + children: [ + { + start: [-6.071, 1.011, 4.074], + end: [-4.472, 1.011, 4.074], + state: false, + }, + { + start: [-4.472, 1.011, 4.074], + end: [-4.195, 1.011, 4.074], + state: true, + }, + { + start: [-4.195, 1.011, 4.074], + end: [-3.286, 1.011, 4.074], + state: false, + }, + ], + }, + { + start: [-6.071, 1.011, 4.074], + end: [-6.071, -1.665, 4.074], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 12, + roomName: '次卧室', + lines: [ + { + start: [-3.286, 1.008, 4.074], + end: [-3.286, 1.008, 0.789], + state: false, + children: [ + { + start: [-3.286, 1.008, 4.074], + end: [-3.286, 1.008, 1.49], + state: true, + }, + { + start: [-3.286, 1.008, 1.49], + end: [-3.286, 1.008, 0.789], + state: false, + }, + ], + }, + { + start: [-3.286, 1.008, 4.074], + end: [-3.286, -1.669, 4.074], + state: true, + children: [], + }, + { + start: [-3.286, 1.008, 0.789], + end: [-6.071, 1.008, 0.789], + state: false, + children: [ + { + start: [-3.286, 1.008, 0.789], + end: [-4.158, 1.008, 0.789], + state: false, + }, + { + start: [-4.158, 1.008, 0.789], + end: [-5.719, 1.008, 0.789], + state: true, + }, + { + start: [-5.719, 1.008, 0.789], + end: [-6.071, 1.008, 0.789], + state: false, + }, + ], + }, + { + start: [-3.286, 1.008, 0.789], + end: [-3.286, -1.669, 0.789], + state: false, + children: [], + }, + { + start: [-6.071, 1.008, 0.789], + end: [-6.071, 1.008, 4.074], + state: false, + children: [], + }, + { + start: [-6.071, 1.008, 0.789], + end: [-6.071, -1.669, 0.789], + state: false, + children: [], + }, + { + start: [-6.071, 1.008, 4.074], + end: [-3.286, 1.008, 4.074], + state: false, + children: [ + { + start: [-6.071, 1.008, 4.074], + end: [-4.141, 1.008, 4.074], + state: false, + }, + { + start: [-4.141, 1.008, 4.074], + end: [-3.286, 1.008, 4.074], + state: true, + }, + ], + }, + { + start: [-6.071, 1.008, 4.074], + end: [-6.071, -1.669, 4.074], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 13, + roomName: '阳台', + lines: [ + { + start: [-0.194, 1.003, -0.974], + end: [-6.031, 1.003, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.003, -0.974], + end: [-2.319, 1.003, -0.974], + state: false, + }, + { + start: [-2.319, 1.003, -0.974], + end: [-2.525, 1.003, -0.974], + state: true, + }, + { + start: [-2.525, 1.003, -0.974], + end: [-3.377, 1.003, -0.974], + state: false, + }, + { + start: [-3.377, 1.003, -0.974], + end: [-3.671, 1.003, -0.974], + state: true, + }, + { + start: [-3.671, 1.003, -0.974], + end: [-4.71, 1.003, -0.974], + state: false, + }, + { + start: [-4.71, 1.003, -0.974], + end: [-5.337, 1.003, -0.974], + state: true, + }, + { + start: [-5.337, 1.003, -0.974], + end: [-6.031, 1.003, -0.974], + state: false, + }, + ], + }, + { + start: [-0.194, 1.003, -0.974], + end: [-0.194, -1.492, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.003, -0.974], + end: [-0.194, -0.197, -0.974], + state: false, + }, + { + start: [-0.194, -0.197, -0.974], + end: [-0.194, -1.492, -0.974], + state: true, + }, + ], + }, + { + start: [-6.031, 1.003, -0.974], + end: [-6.031, 1.003, 0.669], + state: false, + children: [ + { + start: [-6.031, 1.003, -0.974], + end: [-6.031, 1.003, 0.204], + state: true, + }, + { + start: [-6.031, 1.003, 0.204], + end: [-6.031, 1.003, 0.669], + state: false, + }, + ], + }, + { + start: [-6.031, 1.003, -0.974], + end: [-6.031, -1.492, -0.974], + state: false, + children: [ + { + start: [-6.031, 1.003, -0.974], + end: [-6.031, 0.553, -0.974], + state: true, + }, + { + start: [-6.031, 0.553, -0.974], + end: [-6.031, -0.096, -0.974], + state: false, + }, + { + start: [-6.031, -0.096, -0.974], + end: [-6.031, -0.332, -0.974], + state: true, + }, + { + start: [-6.031, -0.332, -0.974], + end: [-6.031, -1.492, -0.974], + state: false, + }, + ], + }, + { + start: [-6.031, 1.003, 0.669], + end: [0.612, 1.003, 0.669], + state: false, + children: [ + { + start: [-6.031, 1.003, 0.669], + end: [0.381, 1.003, 0.669], + state: true, + }, + { + start: [0.381, 1.003, 0.669], + end: [0.612, 1.003, 0.669], + state: false, + }, + ], + }, + { + start: [-6.031, 1.003, 0.669], + end: [-6.031, -1.492, 0.669], + state: true, + children: [], + }, + { + start: [0.612, 1.003, 0.669], + end: [0.612, 1.003, -0.185], + state: false, + children: [], + }, + { + start: [0.612, 1.003, 0.669], + end: [0.612, -1.492, 0.669], + state: false, + children: [], + }, + { + start: [0.612, 1.003, -0.185], + end: [-0.194, 1.003, -0.185], + state: false, + children: [ + { + start: [0.612, 1.003, -0.185], + end: [0.207, 1.003, -0.185], + state: false, + }, + { + start: [0.207, 1.003, -0.185], + end: [-0.194, 1.003, -0.185], + state: true, + }, + ], + }, + { + start: [0.612, 1.003, -0.185], + end: [0.612, -1.492, -0.185], + state: false, + children: [ + { + start: [0.612, 1.003, -0.185], + end: [0.612, 0.18, -0.185], + state: false, + }, + { + start: [0.612, 0.18, -0.185], + end: [0.612, -1.492, -0.185], + state: true, + }, + ], + }, + { + start: [-0.194, 1.003, -0.185], + end: [-0.194, 1.003, -0.974], + state: false, + children: [], + }, + { + start: [-0.194, 1.003, -0.185], + end: [-0.194, -1.492, -0.185], + state: false, + children: [ + { + start: [-0.194, 1.003, -0.185], + end: [-0.194, 0.076, -0.185], + state: false, + }, + { + start: [-0.194, 0.076, -0.185], + end: [-0.194, -1.492, -0.185], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 14, + roomName: '阳台', + lines: [ + { + start: [-0.194, 1.004, -0.974], + end: [-6.031, 1.004, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.004, -0.974], + end: [-2.066, 1.004, -0.974], + state: false, + }, + { + start: [-2.066, 1.004, -0.974], + end: [-3.701, 1.004, -0.974], + state: true, + }, + { + start: [-3.701, 1.004, -0.974], + end: [-5.221, 1.004, -0.974], + state: false, + }, + { + start: [-5.221, 1.004, -0.974], + end: [-5.671, 1.004, -0.974], + state: true, + }, + { + start: [-5.671, 1.004, -0.974], + end: [-6.031, 1.004, -0.974], + state: false, + }, + ], + }, + { + start: [-0.194, 1.004, -0.974], + end: [-0.194, -1.49, -0.974], + state: false, + children: [ + { + start: [-0.194, 1.004, -0.974], + end: [-0.194, -0.257, -0.974], + state: false, + }, + { + start: [-0.194, -0.257, -0.974], + end: [-0.194, -1.49, -0.974], + state: true, + }, + ], + }, + { + start: [-6.031, 1.004, -0.974], + end: [-6.031, 1.004, 0.669], + state: false, + children: [ + { + start: [-6.031, 1.004, -0.974], + end: [-6.031, 1.004, -0.6], + state: false, + }, + { + start: [-6.031, 1.004, -0.6], + end: [-6.031, 1.004, 0.167], + state: true, + }, + { + start: [-6.031, 1.004, 0.167], + end: [-6.031, 1.004, 0.669], + state: false, + }, + ], + }, + { + start: [-6.031, 1.004, -0.974], + end: [-6.031, -1.49, -0.974], + state: false, + children: [ + { + start: [-6.031, 1.004, -0.974], + end: [-6.031, -0.062, -0.974], + state: false, + }, + { + start: [-6.031, -0.062, -0.974], + end: [-6.031, -0.358, -0.974], + state: true, + }, + { + start: [-6.031, -0.358, -0.974], + end: [-6.031, -0.859, -0.974], + state: false, + }, + { + start: [-6.031, -0.859, -0.974], + end: [-6.031, -1.49, -0.974], + state: true, + }, + ], + }, + { + start: [-6.031, 1.004, 0.669], + end: [0.612, 1.004, 0.669], + state: false, + children: [ + { + start: [-6.031, 1.004, 0.669], + end: [0.199, 1.004, 0.669], + state: true, + }, + { + start: [0.199, 1.004, 0.669], + end: [0.612, 1.004, 0.669], + state: false, + }, + ], + }, + { + start: [-6.031, 1.004, 0.669], + end: [-6.031, -1.49, 0.669], + state: true, + children: [], + }, + { + start: [0.612, 1.004, 0.669], + end: [0.612, 1.004, -0.185], + state: false, + children: [], + }, + { + start: [0.612, 1.004, 0.669], + end: [0.612, -1.49, 0.669], + state: false, + children: [], + }, + { + start: [0.612, 1.004, -0.185], + end: [-0.194, 1.004, -0.185], + state: false, + children: [ + { + start: [0.612, 1.004, -0.185], + end: [0.049, 1.004, -0.185], + state: false, + }, + { + start: [0.049, 1.004, -0.185], + end: [-0.194, 1.004, -0.185], + state: true, + }, + ], + }, + { + start: [0.612, 1.004, -0.185], + end: [0.612, -1.49, -0.185], + state: false, + children: [], + }, + { + start: [-0.194, 1.004, -0.185], + end: [-0.194, 1.004, -0.974], + state: false, + children: [], + }, + { + start: [-0.194, 1.004, -0.185], + end: [-0.194, -1.49, -0.185], + state: false, + children: [ + { + start: [-0.194, 1.004, -0.185], + end: [-0.194, -0.001, -0.185], + state: false, + }, + { + start: [-0.194, -0.001, -0.185], + end: [-0.194, -1.49, -0.185], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 15, + roomName: '起居室', + lines: [ + { + start: [-7.286, 0.998, 5.29], + end: [0.552, 0.998, 5.29], + state: false, + children: [ + { + start: [-7.286, 0.998, 5.29], + end: [-3.465, 0.998, 5.29], + state: false, + }, + { + start: [-3.465, 0.998, 5.29], + end: [-2.425, 0.998, 5.29], + state: false, + }, + { + start: [-2.425, 0.998, 5.29], + end: [0.155, 0.998, 5.29], + state: true, + }, + { + start: [0.155, 0.998, 5.29], + end: [0.552, 0.998, 5.29], + state: false, + }, + ], + }, + { + start: [0.552, 0.998, 5.29], + end: [0.552, 0.998, 0.789], + state: false, + children: [ + { + start: [0.552, 0.998, 5.29], + end: [0.552, 0.998, 4.405], + state: false, + }, + { + start: [0.552, 0.998, 4.405], + end: [0.552, 0.998, 4.061], + state: true, + }, + { + start: [0.552, 0.998, 4.061], + end: [0.552, 0.998, 1.71], + state: false, + }, + { + start: [0.552, 0.998, 1.71], + end: [0.552, 0.998, 1.465], + state: true, + }, + { + start: [0.552, 0.998, 1.465], + end: [0.552, 0.998, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 0.998, 5.29], + end: [0.552, -1.672, 5.29], + state: false, + children: [ + { + start: [0.552, 0.998, 5.29], + end: [0.552, -0.018, 5.29], + state: false, + }, + { + start: [0.552, -0.018, 5.29], + end: [0.552, -1.672, 5.29], + state: true, + }, + ], + }, + { + start: [0.552, 0.998, 0.789], + end: [-3.046, 0.998, 0.789], + state: false, + children: [ + { + start: [0.552, 0.998, 0.789], + end: [-1.319, 0.998, 0.789], + state: false, + }, + { + start: [-1.319, 0.998, 0.789], + end: [-2.684, 0.998, 0.789], + state: true, + }, + { + start: [-2.684, 0.998, 0.789], + end: [-3.046, 0.998, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 0.998, 0.789], + end: [0.552, -1.672, 0.789], + state: false, + children: [ + { + start: [0.552, 0.998, 0.789], + end: [0.552, 0.707, 0.789], + state: false, + }, + { + start: [0.552, 0.707, 0.789], + end: [0.552, -1.672, 0.789], + state: true, + }, + ], + }, + { + start: [-3.046, 0.998, 0.789], + end: [-3.046, 0.998, 4.224], + state: false, + children: [ + { + start: [-3.046, 0.998, 0.789], + end: [-3.046, 0.998, 1.043], + state: false, + }, + { + start: [-3.046, 0.998, 1.043], + end: [-3.046, 0.998, 1.459], + state: true, + }, + { + start: [-3.046, 0.998, 1.459], + end: [-3.046, 0.998, 4.224], + state: false, + }, + ], + }, + { + start: [-3.046, 0.998, 0.789], + end: [-3.046, -1.672, 0.789], + state: false, + children: [], + }, + { + start: [-3.046, 0.998, 4.224], + end: [-3.046, -1.672, 4.224], + state: false, + children: [ + { + start: [-3.046, 0.998, 4.224], + end: [-3.046, 0.322, 4.224], + state: false, + }, + { + start: [-3.046, 0.322, 4.224], + end: [-3.046, -1.672, 4.224], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 16, + roomName: '起居室', + lines: [ + { + start: [-7.286, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: false, + children: [ + { + start: [-7.286, 1.004, 5.29], + end: [-4.035, 1.004, 5.29], + state: false, + }, + { + start: [-4.035, 1.004, 5.29], + end: [-2.814, 1.004, 5.29], + state: false, + }, + { + start: [-2.814, 1.004, 5.29], + end: [0.074, 1.004, 5.29], + state: true, + }, + { + start: [0.074, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: false, + }, + ], + }, + { + start: [0.552, 1.004, 5.29], + end: [0.552, 1.004, 0.789], + state: false, + children: [], + }, + { + start: [0.552, 1.004, 5.29], + end: [0.552, -1.666, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 1.004, 0.789], + end: [-3.046, 1.004, 0.789], + state: false, + children: [ + { + start: [0.552, 1.004, 0.789], + end: [0.007, 1.004, 0.789], + state: true, + }, + { + start: [0.007, 1.004, 0.789], + end: [-0.59, 1.004, 0.789], + state: false, + }, + { + start: [-0.59, 1.004, 0.789], + end: [-1.545, 1.004, 0.789], + state: true, + }, + { + start: [-1.545, 1.004, 0.789], + end: [-3.046, 1.004, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 1.004, 0.789], + end: [0.552, -1.666, 0.789], + state: false, + children: [], + }, + { + start: [-3.046, 1.004, 0.789], + end: [-3.046, 1.004, 4.224], + state: false, + children: [ + { + start: [-3.046, 1.004, 0.789], + end: [-3.046, 1.004, 1.262], + state: false, + }, + { + start: [-3.046, 1.004, 1.262], + end: [-3.046, 1.004, 1.774], + state: true, + }, + { + start: [-3.046, 1.004, 1.774], + end: [-3.046, 1.004, 4.224], + state: false, + }, + ], + }, + { + start: [-3.046, 1.004, 0.789], + end: [-3.046, -1.666, 0.789], + state: false, + children: [], + }, + { + start: [-3.046, 1.004, 4.224], + end: [-3.046, -1.666, 4.224], + state: false, + children: [ + { + start: [-3.046, 1.004, 4.224], + end: [-3.046, 0.281, 4.224], + state: false, + }, + { + start: [-3.046, 0.281, 4.224], + end: [-3.046, -1.666, 4.224], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 17, + roomName: '起居室', + lines: [ + { + start: [-7.286, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: false, + children: [ + { + start: [-7.286, 1.004, 5.29], + end: [-0.827, 1.004, 5.29], + state: true, + }, + { + start: [-0.827, 1.004, 5.29], + end: [-0.394, 1.004, 5.29], + state: false, + }, + { + start: [-0.394, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: true, + }, + ], + }, + { + start: [-7.286, 1.004, 5.29], + end: [-7.286, -1.666, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 1.004, 5.29], + end: [0.552, 1.004, 0.789], + state: false, + children: [ + { + start: [0.552, 1.004, 5.29], + end: [0.552, 1.004, 5.012], + state: true, + }, + { + start: [0.552, 1.004, 5.012], + end: [0.552, 1.004, 4.63], + state: false, + }, + { + start: [0.552, 1.004, 4.63], + end: [0.552, 1.004, 3.601], + state: true, + }, + { + start: [0.552, 1.004, 3.601], + end: [0.552, 1.004, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 1.004, 5.29], + end: [0.552, -1.666, 5.29], + state: false, + children: [ + { + start: [0.552, 1.004, 5.29], + end: [0.552, 0.698, 5.29], + state: false, + }, + { + start: [0.552, 0.698, 5.29], + end: [0.552, -1.666, 5.29], + state: true, + }, + ], + }, + { + start: [0.552, 1.004, 0.789], + end: [-3.046, 1.004, 0.789], + state: false, + children: [ + { + start: [0.552, 1.004, 0.789], + end: [0.144, 1.004, 0.789], + state: false, + }, + { + start: [0.144, 1.004, 0.789], + end: [-0.866, 1.004, 0.789], + state: true, + }, + { + start: [-0.866, 1.004, 0.789], + end: [-2.075, 1.004, 0.789], + state: false, + }, + { + start: [-2.075, 1.004, 0.789], + end: [-2.477, 1.004, 0.789], + state: true, + }, + { + start: [-2.477, 1.004, 0.789], + end: [-3.046, 1.004, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 1.004, 0.789], + end: [0.552, -1.666, 0.789], + state: false, + children: [ + { + start: [0.552, 1.004, 0.789], + end: [0.552, -1.369, 0.789], + state: false, + }, + { + start: [0.552, -1.369, 0.789], + end: [0.552, -1.666, 0.789], + state: true, + }, + ], + }, + { + start: [-3.046, 1.004, 0.789], + end: [-3.046, 1.004, 4.224], + state: false, + children: [ + { + start: [-3.046, 1.004, 0.789], + end: [-3.046, 1.004, 3.99], + state: false, + }, + { + start: [-3.046, 1.004, 3.99], + end: [-3.046, 1.004, 4.224], + state: true, + }, + ], + }, + { + start: [-3.046, 1.004, 0.789], + end: [-3.046, -1.666, 0.789], + state: false, + children: [ + { + start: [-3.046, 1.004, 0.789], + end: [-3.046, 0.278, 0.789], + state: false, + }, + { + start: [-3.046, 0.278, 0.789], + end: [-3.046, -1.11, 0.789], + state: true, + }, + { + start: [-3.046, -1.11, 0.789], + end: [-3.046, -1.351, 0.789], + state: false, + }, + { + start: [-3.046, -1.351, 0.789], + end: [-3.046, -1.666, 0.789], + state: true, + }, + ], + }, + { + start: [-3.046, 1.004, 4.224], + end: [-7.286, 1.004, 4.224], + state: true, + children: [], + }, + { + start: [-3.046, 1.004, 4.224], + end: [-3.046, -1.666, 4.224], + state: true, + children: [], + }, + { + start: [-7.286, 1.004, 4.224], + end: [-7.286, 1.004, 5.29], + state: true, + children: [], + }, + { + start: [-7.286, 1.004, 4.224], + end: [-7.286, -1.666, 4.224], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 18, + roomName: '起居室', + lines: [ + { + start: [-7.286, 0.997, 5.29], + end: [0.552, 0.997, 5.29], + state: false, + children: [ + { + start: [-7.286, 0.997, 5.29], + end: [-4.816, 0.997, 5.29], + state: false, + }, + { + start: [-4.816, 0.997, 5.29], + end: [0.283, 0.997, 5.29], + state: true, + }, + { + start: [0.283, 0.997, 5.29], + end: [0.552, 0.997, 5.29], + state: false, + }, + ], + }, + { + start: [0.552, 0.997, 5.29], + end: [0.552, 0.997, 0.789], + state: false, + children: [ + { + start: [0.552, 0.997, 5.29], + end: [0.552, 0.997, 4.798], + state: false, + }, + { + start: [0.552, 0.997, 4.798], + end: [0.552, 0.997, 3.687], + state: true, + }, + { + start: [0.552, 0.997, 3.687], + end: [0.552, 0.997, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 0.997, 5.29], + end: [0.552, -1.673, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 0.997, 0.789], + end: [-3.046, 0.997, 0.789], + state: false, + children: [ + { + start: [0.552, 0.997, 0.789], + end: [-1.561, 0.997, 0.789], + state: false, + }, + { + start: [-1.561, 0.997, 0.789], + end: [-2.199, 0.997, 0.789], + state: true, + }, + { + start: [-2.199, 0.997, 0.789], + end: [-3.046, 0.997, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 0.997, 0.789], + end: [0.552, -1.673, 0.789], + state: false, + children: [ + { + start: [0.552, 0.997, 0.789], + end: [0.552, -1.455, 0.789], + state: false, + }, + { + start: [0.552, -1.455, 0.789], + end: [0.552, -1.673, 0.789], + state: true, + }, + ], + }, + { + start: [-3.046, 0.997, 0.789], + end: [-3.046, 0.997, 4.224], + state: false, + children: [], + }, + { + start: [-3.046, 0.997, 0.789], + end: [-3.046, -1.673, 0.789], + state: false, + children: [ + { + start: [-3.046, 0.997, 0.789], + end: [-3.046, 0.367, 0.789], + state: false, + }, + { + start: [-3.046, 0.367, 0.789], + end: [-3.046, -1.133, 0.789], + state: true, + }, + { + start: [-3.046, -1.133, 0.789], + end: [-3.046, -1.383, 0.789], + state: false, + }, + { + start: [-3.046, -1.383, 0.789], + end: [-3.046, -1.673, 0.789], + state: true, + }, + ], + }, + { + start: [-3.046, 0.997, 4.224], + end: [-3.046, -1.673, 4.224], + state: false, + children: [ + { + start: [-3.046, 0.997, 4.224], + end: [-3.046, 0.55, 4.224], + state: false, + }, + { + start: [-3.046, 0.55, 4.224], + end: [-3.046, 0.195, 4.224], + state: true, + }, + { + start: [-3.046, 0.195, 4.224], + end: [-3.046, -0.556, 4.224], + state: false, + }, + { + start: [-3.046, -0.556, 4.224], + end: [-3.046, -1.673, 4.224], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 19, + roomName: '起居室', + lines: [ + { + start: [-7.286, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: false, + children: [ + { + start: [-7.286, 1.004, 5.29], + end: [-3.98, 1.004, 5.29], + state: true, + }, + { + start: [-3.98, 1.004, 5.29], + end: [-3.494, 1.004, 5.29], + state: false, + }, + { + start: [-3.494, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: true, + }, + ], + }, + { + start: [-7.286, 1.004, 5.29], + end: [-7.286, -1.667, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 1.004, 5.29], + end: [0.552, 1.004, 0.789], + state: false, + children: [ + { + start: [0.552, 1.004, 5.29], + end: [0.552, 1.004, 4.609], + state: false, + }, + { + start: [0.552, 1.004, 4.609], + end: [0.552, 1.004, 3.636], + state: true, + }, + { + start: [0.552, 1.004, 3.636], + end: [0.552, 1.004, 1.29], + state: false, + }, + { + start: [0.552, 1.004, 1.29], + end: [0.552, 1.004, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 1.004, 5.29], + end: [0.552, -1.667, 5.29], + state: false, + children: [ + { + start: [0.552, 1.004, 5.29], + end: [0.552, 0.698, 5.29], + state: true, + }, + { + start: [0.552, 0.698, 5.29], + end: [0.552, 0.481, 5.29], + state: false, + }, + { + start: [0.552, 0.481, 5.29], + end: [0.552, -1.667, 5.29], + state: true, + }, + ], + }, + { + start: [-3.046, 1.004, 4.224], + end: [-7.286, 1.004, 4.224], + state: true, + children: [], + }, + { + start: [-3.046, 1.004, 4.224], + end: [-3.046, -1.667, 4.224], + state: true, + children: [], + }, + { + start: [-7.286, 1.004, 4.224], + end: [-7.286, 1.004, 5.29], + state: true, + children: [], + }, + { + start: [-7.286, 1.004, 4.224], + end: [-7.286, -1.667, 4.224], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 20, + roomName: '起居室', + lines: [ + { + start: [-7.286, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: false, + children: [ + { + start: [-7.286, 1.004, 5.29], + end: [-5.35, 1.004, 5.29], + state: true, + }, + { + start: [-5.35, 1.004, 5.29], + end: [-4.79, 1.004, 5.29], + state: false, + }, + { + start: [-4.79, 1.004, 5.29], + end: [0.552, 1.004, 5.29], + state: true, + }, + ], + }, + { + start: [-7.286, 1.004, 5.29], + end: [-7.286, -1.667, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 1.004, 5.29], + end: [0.552, -1.667, 5.29], + state: true, + children: [], + }, + { + start: [-3.046, 1.004, 4.224], + end: [-7.286, 1.004, 4.224], + state: true, + children: [], + }, + { + start: [-3.046, 1.004, 4.224], + end: [-3.046, -1.667, 4.224], + state: true, + children: [], + }, + { + start: [-7.286, 1.004, 4.224], + end: [-7.286, 1.004, 5.29], + state: true, + children: [], + }, + { + start: [-7.286, 1.004, 4.224], + end: [-7.286, -1.667, 4.224], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 21, + roomName: '起居室', + lines: [ + { + start: [-7.286, 1.007, 5.29], + end: [0.552, 1.007, 5.29], + state: false, + children: [ + { + start: [-7.286, 1.007, 5.29], + end: [-6.831, 1.007, 5.29], + state: true, + }, + { + start: [-6.831, 1.007, 5.29], + end: [-6.547, 1.007, 5.29], + state: false, + }, + { + start: [-6.547, 1.007, 5.29], + end: [0.552, 1.007, 5.29], + state: true, + }, + ], + }, + { + start: [-7.286, 1.007, 5.29], + end: [-7.286, -1.663, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 1.007, 5.29], + end: [0.552, -1.663, 5.29], + state: true, + children: [], + }, + { + start: [-3.046, 1.007, 4.224], + end: [-7.286, 1.007, 4.224], + state: false, + children: [ + { + start: [-3.046, 1.007, 4.224], + end: [-6.486, 1.007, 4.224], + state: true, + }, + { + start: [-6.486, 1.007, 4.224], + end: [-6.894, 1.007, 4.224], + state: false, + }, + { + start: [-6.894, 1.007, 4.224], + end: [-7.286, 1.007, 4.224], + state: true, + }, + ], + }, + { + start: [-3.046, 1.007, 4.224], + end: [-3.046, -1.663, 4.224], + state: true, + children: [], + }, + { + start: [-7.286, 1.007, 4.224], + end: [-7.286, 1.007, 5.29], + state: true, + children: [], + }, + { + start: [-7.286, 1.007, 4.224], + end: [-7.286, -1.663, 4.224], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 22, + roomName: '餐厅', + lines: [ + { + start: [-3.416, 1.003, 8.383], + end: [0.582, 1.003, 8.443], + state: false, + children: [ + { + start: [-3.416, 1.003, 8.383], + end: [-1.302, 1.003, 8.414], + state: false, + }, + { + start: [-1.302, 1.003, 8.414], + end: [0.017, 1.003, 8.434], + state: true, + }, + { + start: [0.017, 1.003, 8.434], + end: [0.582, 1.003, 8.443], + state: false, + }, + ], + }, + { + start: [-3.416, 1.003, 8.383], + end: [-3.416, -1.67, 8.383], + state: false, + children: [ + { + start: [-3.416, 1.003, 8.383], + end: [-3.416, -0.241, 8.383], + state: false, + }, + { + start: [-3.416, -0.241, 8.383], + end: [-3.416, -1.67, 8.383], + state: true, + }, + ], + }, + { + start: [0.582, 1.003, 8.443], + end: [0.582, 1.003, 7.903], + state: false, + children: [], + }, + { + start: [0.582, 1.003, 8.443], + end: [0.582, -1.67, 8.443], + state: false, + children: [], + }, + { + start: [0.582, 1.003, 7.903], + end: [0.984, 1.003, 7.903], + state: false, + children: [], + }, + { + start: [0.582, 1.003, 7.903], + end: [0.582, -1.67, 7.903], + state: false, + children: [], + }, + { + start: [0.984, 1.003, 7.903], + end: [0.984, 1.003, 6.595], + state: false, + children: [], + }, + { + start: [0.984, 1.003, 7.903], + end: [0.984, -1.67, 7.903], + state: false, + children: [], + }, + { + start: [0.984, 1.003, 6.595], + end: [0.073, 1.003, 6.595], + state: false, + children: [], + }, + { + start: [0.984, 1.003, 6.595], + end: [0.984, -1.67, 6.595], + state: false, + children: [], + }, + { + start: [0.073, 1.003, 6.595], + end: [0.073, 1.003, 5.29], + state: true, + children: [], + }, + { + start: [0.073, 1.003, 6.595], + end: [0.073, -1.67, 6.595], + state: false, + children: [ + { + start: [0.073, 1.003, 6.595], + end: [0.073, -1.316, 6.595], + state: false, + }, + { + start: [0.073, -1.316, 6.595], + end: [0.073, -1.67, 6.595], + state: true, + }, + ], + }, + { + start: [0.073, 1.003, 5.29], + end: [-3.416, 1.003, 5.41], + state: false, + children: [ + { + start: [0.073, 1.003, 5.29], + end: [-1.738, 1.003, 5.352], + state: true, + }, + { + start: [-1.738, 1.003, 5.352], + end: [-3.416, 1.003, 5.41], + state: false, + }, + ], + }, + { + start: [0.073, 1.003, 5.29], + end: [0.073, -1.67, 5.29], + state: false, + children: [ + { + start: [0.073, 1.003, 5.29], + end: [0.073, -0.039, 5.29], + state: false, + }, + { + start: [0.073, -0.039, 5.29], + end: [0.073, -1.67, 5.29], + state: true, + }, + ], + }, + { + start: [-3.416, 1.003, 5.41], + end: [-3.416, 1.003, 8.383], + state: false, + children: [], + }, + { + start: [-3.416, 1.003, 5.41], + end: [-3.416, -1.67, 5.41], + state: false, + children: [ + { + start: [-3.416, 1.003, 5.41], + end: [-3.416, -1.443, 5.41], + state: false, + }, + { + start: [-3.416, -1.443, 5.41], + end: [-3.416, -1.67, 5.41], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 23, + roomName: '餐厅', + lines: [ + { + start: [-3.416, 1.002, 8.383], + end: [0.582, 1.002, 8.443], + state: false, + children: [ + { + start: [-3.416, 1.002, 8.383], + end: [-1.289, 1.002, 8.414], + state: false, + }, + { + start: [-1.289, 1.002, 8.414], + end: [0.015, 1.002, 8.434], + state: true, + }, + { + start: [0.015, 1.002, 8.434], + end: [0.582, 1.002, 8.443], + state: false, + }, + ], + }, + { + start: [-3.416, 1.002, 8.383], + end: [-3.416, -1.671, 8.383], + state: false, + children: [ + { + start: [-3.416, 1.002, 8.383], + end: [-3.416, -0.302, 8.383], + state: false, + }, + { + start: [-3.416, -0.302, 8.383], + end: [-3.416, -1.671, 8.383], + state: true, + }, + ], + }, + { + start: [0.582, 1.002, 8.443], + end: [0.582, 1.002, 7.903], + state: false, + children: [], + }, + { + start: [0.582, 1.002, 8.443], + end: [0.582, -1.671, 8.443], + state: false, + children: [], + }, + { + start: [0.582, 1.002, 7.903], + end: [0.984, 1.002, 7.903], + state: false, + children: [], + }, + { + start: [0.582, 1.002, 7.903], + end: [0.582, -1.671, 7.903], + state: false, + children: [], + }, + { + start: [0.984, 1.002, 7.903], + end: [0.984, 1.002, 6.595], + state: false, + children: [], + }, + { + start: [0.984, 1.002, 7.903], + end: [0.984, -1.671, 7.903], + state: false, + children: [], + }, + { + start: [0.984, 1.002, 6.595], + end: [0.073, 1.002, 6.595], + state: false, + children: [], + }, + { + start: [0.984, 1.002, 6.595], + end: [0.984, -1.671, 6.595], + state: false, + children: [], + }, + { + start: [0.073, 1.002, 6.595], + end: [0.073, 1.002, 5.29], + state: false, + children: [ + { + start: [0.073, 1.002, 6.595], + end: [0.073, 1.002, 5.534], + state: false, + }, + { + start: [0.073, 1.002, 5.534], + end: [0.073, 1.002, 5.29], + state: true, + }, + ], + }, + { + start: [0.073, 1.002, 6.595], + end: [0.073, -1.671, 6.595], + state: false, + children: [ + { + start: [0.073, 1.002, 6.595], + end: [0.073, -1.303, 6.595], + state: false, + }, + { + start: [0.073, -1.303, 6.595], + end: [0.073, -1.671, 6.595], + state: true, + }, + ], + }, + { + start: [0.073, 1.002, 5.29], + end: [-3.416, 1.002, 5.41], + state: false, + children: [ + { + start: [0.073, 1.002, 5.29], + end: [-1.414, 1.002, 5.341], + state: true, + }, + { + start: [-1.414, 1.002, 5.341], + end: [-3.416, 1.002, 5.41], + state: false, + }, + ], + }, + { + start: [0.073, 1.002, 5.29], + end: [0.073, -1.671, 5.29], + state: false, + children: [ + { + start: [0.073, 1.002, 5.29], + end: [0.073, -0.012, 5.29], + state: false, + }, + { + start: [0.073, -0.012, 5.29], + end: [0.073, -1.671, 5.29], + state: true, + }, + ], + }, + { + start: [-3.416, 1.002, 5.41], + end: [-3.416, 1.002, 8.383], + state: false, + children: [], + }, + { + start: [-3.416, 1.002, 5.41], + end: [-3.416, -1.671, 5.41], + state: false, + children: [ + { + start: [-3.416, 1.002, 5.41], + end: [-3.416, -1.452, 5.41], + state: false, + }, + { + start: [-3.416, -1.452, 5.41], + end: [-3.416, -1.671, 5.41], + state: true, + }, + ], + }, + ], + }, + { + panoIndex: 24, + roomName: '玄关', + lines: [ + { + start: [0.582, 1.002, 9.944], + end: [0.582, 1.002, 8.443], + state: false, + children: [], + }, + { + start: [0.582, 1.002, 9.944], + end: [0.582, -1.351, 9.944], + state: false, + children: [], + }, + { + start: [0.582, 1.002, 8.443], + end: [-1.204, 1.002, 8.383], + state: false, + children: [ + { + start: [0.582, 1.002, 8.443], + end: [0.063, 1.002, 8.425], + state: false, + }, + { + start: [0.063, 1.002, 8.425], + end: [-1.204, 1.002, 8.383], + state: true, + }, + ], + }, + { + start: [0.582, 1.002, 8.443], + end: [0.582, -1.351, 8.443], + state: false, + children: [], + }, + { + start: [-1.204, 1.002, 8.383], + end: [-1.159, 1.002, 9.944], + state: true, + children: [], + }, + { + start: [-1.204, 1.002, 8.383], + end: [-1.204, -1.351, 8.383], + state: false, + children: [ + { + start: [-1.204, 1.002, 8.383], + end: [-1.204, -0.037, 8.383], + state: false, + }, + { + start: [-1.204, -0.037, 8.383], + end: [-1.204, -1.351, 8.383], + state: true, + }, + ], + }, + { + start: [-1.159, 1.002, 9.944], + end: [0.582, 1.002, 9.944], + state: false, + children: [ + { + start: [-1.159, 1.002, 9.944], + end: [-0.643, 1.002, 9.944], + state: true, + }, + { + start: [-0.643, 1.002, 9.944], + end: [-0.418, 1.002, 9.944], + state: false, + }, + { + start: [-0.418, 1.002, 9.944], + end: [0.139, 1.002, 9.944], + state: true, + }, + { + start: [0.139, 1.002, 9.944], + end: [0.582, 1.002, 9.944], + state: false, + }, + ], + }, + { + start: [-1.159, 1.002, 9.944], + end: [-1.159, -1.351, 9.944], + state: true, + children: [], + }, + ], + }, + { + panoIndex: 25, + roomName: '厨房', + lines: [ + { + start: [-1.277, 1.001, 10.42], + end: [-1.321, 1.001, 8.503], + state: false, + children: [ + { + start: [-1.277, 1.001, 10.42], + end: [-1.29, 1.001, 9.87], + state: false, + }, + { + start: [-1.29, 1.001, 9.87], + end: [-1.312, 1.001, 8.868], + state: true, + }, + { + start: [-1.312, 1.001, 8.868], + end: [-1.321, 1.001, 8.503], + state: false, + }, + ], + }, + { + start: [-1.277, 1.001, 10.42], + end: [-1.277, -1.346, 10.42], + state: false, + children: [ + { + start: [-1.277, 1.001, 10.42], + end: [-1.277, 0.339, 10.42], + state: false, + }, + { + start: [-1.277, 0.339, 10.42], + end: [-1.277, -0.9, 10.42], + state: true, + }, + { + start: [-1.277, -0.9, 10.42], + end: [-1.277, -1.111, 10.42], + state: false, + }, + { + start: [-1.277, -1.111, 10.42], + end: [-1.277, -1.346, 10.42], + state: true, + }, + ], + }, + { + start: [-1.321, 1.001, 8.503], + end: [-3.436, 1.001, 8.503], + state: false, + children: [], + }, + { + start: [-1.321, 1.001, 8.503], + end: [-1.321, -1.346, 8.503], + state: false, + children: [ + { + start: [-1.321, 1.001, 8.503], + end: [-1.321, 0.179, 8.503], + state: false, + }, + { + start: [-1.321, 0.179, 8.503], + end: [-1.321, -1.346, 8.503], + state: true, + }, + ], + }, + { + start: [-3.436, 1.001, 8.503], + end: [-3.436, 1.001, 10.42], + state: false, + children: [], + }, + { + start: [-3.436, 1.001, 8.503], + end: [-3.436, -1.346, 8.503], + state: false, + children: [ + { + start: [-3.436, 1.001, 8.503], + end: [-3.436, 0.165, 8.503], + state: false, + }, + { + start: [-3.436, 0.165, 8.503], + end: [-3.436, -1.346, 8.503], + state: true, + }, + ], + }, + { + start: [-3.436, 1.001, 10.42], + end: [-1.277, 1.001, 10.42], + state: false, + children: [], + }, + { + start: [-3.436, 1.001, 10.42], + end: [-3.436, -1.346, 10.42], + state: false, + children: [ + { + start: [-3.436, 1.001, 10.42], + end: [-3.436, 0.14, 10.42], + state: false, + }, + { + start: [-3.436, 0.14, 10.42], + end: [-3.436, -0.655, 10.42], + state: true, + }, + { + start: [-3.436, -0.655, 10.42], + end: [-3.436, -1.346, 10.42], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 26, + roomName: '厨房', + lines: [ + { + start: [-1.277, 1.001, 10.42], + end: [-1.321, 1.001, 8.503], + state: false, + children: [], + }, + { + start: [-1.277, 1.001, 10.42], + end: [-1.277, -1.345, 10.42], + state: false, + children: [ + { + start: [-1.277, 1.001, 10.42], + end: [-1.277, 0.32, 10.42], + state: false, + }, + { + start: [-1.277, 0.32, 10.42], + end: [-1.277, -1.345, 10.42], + state: true, + }, + ], + }, + { + start: [-1.321, 1.001, 8.503], + end: [-3.436, 1.001, 8.503], + state: false, + children: [], + }, + { + start: [-1.321, 1.001, 8.503], + end: [-1.321, -1.345, 8.503], + state: false, + children: [ + { + start: [-1.321, 1.001, 8.503], + end: [-1.321, -0.168, 8.503], + state: false, + }, + { + start: [-1.321, -0.168, 8.503], + end: [-1.321, -1.345, 8.503], + state: true, + }, + ], + }, + { + start: [-3.436, 1.001, 8.503], + end: [-3.436, 1.001, 10.42], + state: false, + children: [], + }, + { + start: [-3.436, 1.001, 8.503], + end: [-3.436, -1.345, 8.503], + state: false, + children: [ + { + start: [-3.436, 1.001, 8.503], + end: [-3.436, 0.169, 8.503], + state: false, + }, + { + start: [-3.436, 0.169, 8.503], + end: [-3.436, -1.345, 8.503], + state: true, + }, + ], + }, + { + start: [-3.436, 1.001, 10.42], + end: [-1.277, 1.001, 10.42], + state: false, + children: [], + }, + { + start: [-3.436, 1.001, 10.42], + end: [-3.436, -1.345, 10.42], + state: false, + children: [ + { + start: [-3.436, 1.001, 10.42], + end: [-3.436, -0.201, 10.42], + state: false, + }, + { + start: [-3.436, -0.201, 10.42], + end: [-3.436, -0.596, 10.42], + state: true, + }, + { + start: [-3.436, -0.596, 10.42], + end: [-3.436, -1.345, 10.42], + state: false, + }, + ], + }, + ], + }, + { + panoIndex: 27, + roomName: '次卧室', + lines: [ + { + start: [-3.286, 1.007, 4.074], + end: [-3.286, 1.007, 0.789], + state: false, + children: [ + { + start: [-3.286, 1.007, 4.074], + end: [-3.286, 1.007, 1.116], + state: true, + }, + { + start: [-3.286, 1.007, 1.116], + end: [-3.286, 1.007, 0.789], + state: false, + }, + ], + }, + { + start: [-3.286, 1.007, 4.074], + end: [-3.286, -1.669, 4.074], + state: true, + children: [], + }, + { + start: [-3.286, 1.007, 0.789], + end: [-6.071, 1.007, 0.789], + state: false, + children: [ + { + start: [-3.286, 1.007, 0.789], + end: [-3.744, 1.007, 0.789], + state: true, + }, + { + start: [-3.744, 1.007, 0.789], + end: [-6.071, 1.007, 0.789], + state: false, + }, + ], + }, + { + start: [-3.286, 1.007, 0.789], + end: [-3.286, -1.669, 0.789], + state: false, + children: [], + }, + { + start: [-6.071, 1.007, 0.789], + end: [-6.071, 1.007, 4.074], + state: false, + children: [ + { + start: [-6.071, 1.007, 0.789], + end: [-6.071, 1.007, 3.132], + state: false, + }, + { + start: [-6.071, 1.007, 3.132], + end: [-6.071, 1.007, 3.483], + state: true, + }, + { + start: [-6.071, 1.007, 3.483], + end: [-6.071, 1.007, 4.074], + state: false, + }, + ], + }, + { + start: [-6.071, 1.007, 0.789], + end: [-6.071, -1.669, 0.789], + state: false, + children: [ + { + start: [-6.071, 1.007, 0.789], + end: [-6.071, 0.101, 0.789], + state: false, + }, + { + start: [-6.071, 0.101, 0.789], + end: [-6.071, -1.669, 0.789], + state: true, + }, + ], + }, + { + start: [-6.071, 1.007, 4.074], + end: [-3.286, 1.007, 4.074], + state: false, + children: [ + { + start: [-6.071, 1.007, 4.074], + end: [-4.497, 1.007, 4.074], + state: false, + }, + { + start: [-4.497, 1.007, 4.074], + end: [-3.286, 1.007, 4.074], + state: true, + }, + ], + }, + { + start: [-6.071, 1.007, 4.074], + end: [-6.071, -1.669, 4.074], + state: false, + children: [], + }, + ], + }, + { + panoIndex: 28, + roomName: '起居室', + lines: [ + { + start: [-7.286, 1.005, 5.29], + end: [0.552, 1.005, 5.29], + state: false, + children: [ + { + start: [-7.286, 1.005, 5.29], + end: [-3.222, 1.005, 5.29], + state: true, + }, + { + start: [-3.222, 1.005, 5.29], + end: [-2.109, 1.005, 5.29], + state: false, + }, + { + start: [-2.109, 1.005, 5.29], + end: [0.552, 1.005, 5.29], + state: true, + }, + ], + }, + { + start: [-7.286, 1.005, 5.29], + end: [-7.286, -1.665, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 1.005, 5.29], + end: [0.552, 1.005, 0.789], + state: false, + children: [ + { + start: [0.552, 1.005, 5.29], + end: [0.552, 1.005, 4.59], + state: false, + }, + { + start: [0.552, 1.005, 4.59], + end: [0.552, 1.005, 3.589], + state: true, + }, + { + start: [0.552, 1.005, 3.589], + end: [0.552, 1.005, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 1.005, 5.29], + end: [0.552, -1.665, 5.29], + state: true, + children: [], + }, + { + start: [0.552, 1.005, 0.789], + end: [-3.046, 1.005, 0.789], + state: false, + children: [ + { + start: [0.552, 1.005, 0.789], + end: [-1.472, 1.005, 0.789], + state: false, + }, + { + start: [-1.472, 1.005, 0.789], + end: [-1.899, 1.005, 0.789], + state: true, + }, + { + start: [-1.899, 1.005, 0.789], + end: [-3.046, 1.005, 0.789], + state: false, + }, + ], + }, + { + start: [0.552, 1.005, 0.789], + end: [0.552, -1.665, 0.789], + state: false, + children: [ + { + start: [0.552, 1.005, 0.789], + end: [0.552, -1.405, 0.789], + state: false, + }, + { + start: [0.552, -1.405, 0.789], + end: [0.552, -1.665, 0.789], + state: true, + }, + ], + }, + { + start: [-3.046, 1.005, 0.789], + end: [-3.046, 1.005, 4.224], + state: false, + children: [ + { + start: [-3.046, 1.005, 0.789], + end: [-3.046, 1.005, 3.397], + state: false, + }, + { + start: [-3.046, 1.005, 3.397], + end: [-3.046, 1.005, 4.224], + state: true, + }, + ], + }, + { + start: [-3.046, 1.005, 0.789], + end: [-3.046, -1.665, 0.789], + state: false, + children: [ + { + start: [-3.046, 1.005, 0.789], + end: [-3.046, 0.435, 0.789], + state: false, + }, + { + start: [-3.046, 0.435, 0.789], + end: [-3.046, -1.665, 0.789], + state: true, + }, + ], + }, + { + start: [-3.046, 1.005, 4.224], + end: [-7.286, 1.005, 4.224], + state: true, + children: [], + }, + { + start: [-3.046, 1.005, 4.224], + end: [-3.046, -1.665, 4.224], + state: true, + children: [], + }, + { + start: [-7.286, 1.005, 4.224], + end: [-7.286, 1.005, 5.29], + state: true, + children: [], + }, + { + start: [-7.286, 1.005, 4.224], + end: [-7.286, -1.665, 4.224], + state: true, + children: [], + }, + ], + }, +] diff --git a/open-works/real/80o2183onbPJ4DwKvy/panoRulerProPluginServerData.json b/open-works/real/80o2183onbPJ4DwKvy/panoRulerProPluginServerData.json new file mode 100644 index 000000000..1acb1ba2b --- /dev/null +++ b/open-works/real/80o2183onbPJ4DwKvy/panoRulerProPluginServerData.json @@ -0,0 +1,4064 @@ +[ + { + "panoIndex": 0, + "roomName": "阳台", + "lines": [ + { + "start": [-0.194, 1.005, -0.974], + "end": [-6.031, 1.005, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.005, -0.974], + "end": [-0.398, 1.005, -0.974], + "state": false + }, + { + "start": [-0.398, 1.005, -0.974], + "end": [-1.087, 1.005, -0.974], + "state": true + }, + { + "start": [-1.087, 1.005, -0.974], + "end": [-2.904, 1.005, -0.974], + "state": false + }, + { + "start": [-2.904, 1.005, -0.974], + "end": [-4.398, 1.005, -0.974], + "state": true + }, + { + "start": [-4.398, 1.005, -0.974], + "end": [-6.031, 1.005, -0.974], + "state": false + } + ] + }, + { + "start": [-0.194, 1.005, -0.974], + "end": [-0.194, -1.489, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.005, -0.974], + "end": [-0.194, 0.757, -0.974], + "state": false + }, + { + "start": [-0.194, 0.757, -0.974], + "end": [-0.194, 0.522, -0.974], + "state": true + }, + { + "start": [-0.194, 0.522, -0.974], + "end": [-0.194, -1.163, -0.974], + "state": false + }, + { + "start": [-0.194, -1.163, -0.974], + "end": [-0.194, -1.489, -0.974], + "state": true + } + ] + }, + { + "start": [-6.031, 1.005, -0.974], + "end": [-6.031, 1.005, 0.669], + "state": false, + "children": [ + { + "start": [-6.031, 1.005, -0.974], + "end": [-6.031, 1.005, -0.504], + "state": false + }, + { + "start": [-6.031, 1.005, -0.504], + "end": [-6.031, 1.005, 0.669], + "state": true + } + ] + }, + { + "start": [-6.031, 1.005, -0.974], + "end": [-6.031, -1.489, -0.974], + "state": false, + "children": [ + { + "start": [-6.031, 1.005, -0.974], + "end": [-6.031, 0.794, -0.974], + "state": false + }, + { + "start": [-6.031, 0.794, -0.974], + "end": [-6.031, 0.492, -0.974], + "state": true + }, + { + "start": [-6.031, 0.492, -0.974], + "end": [-6.031, -0.035, -0.974], + "state": false + }, + { + "start": [-6.031, -0.035, -0.974], + "end": [-6.031, -0.33, -0.974], + "state": true + }, + { + "start": [-6.031, -0.33, -0.974], + "end": [-6.031, -0.759, -0.974], + "state": false + }, + { + "start": [-6.031, -0.759, -0.974], + "end": [-6.031, -1.489, -0.974], + "state": true + } + ] + }, + { + "start": [-6.031, 1.005, 0.669], + "end": [0.612, 1.005, 0.669], + "state": false, + "children": [ + { + "start": [-6.031, 1.005, 0.669], + "end": [-0.945, 1.005, 0.669], + "state": true + }, + { + "start": [-0.945, 1.005, 0.669], + "end": [-0.631, 1.005, 0.669], + "state": false + }, + { + "start": [-0.631, 1.005, 0.669], + "end": [0.131, 1.005, 0.669], + "state": true + }, + { + "start": [0.131, 1.005, 0.669], + "end": [0.612, 1.005, 0.669], + "state": false + } + ] + }, + { + "start": [-6.031, 1.005, 0.669], + "end": [-6.031, -1.489, 0.669], + "state": true, + "children": [] + }, + { + "start": [0.612, 1.005, 0.669], + "end": [0.612, 1.005, -0.185], + "state": false, + "children": [] + }, + { + "start": [0.612, 1.005, 0.669], + "end": [0.612, -1.489, 0.669], + "state": false, + "children": [ + { + "start": [0.612, 1.005, 0.669], + "end": [0.612, -0.112, 0.669], + "state": false + }, + { + "start": [0.612, -0.112, 0.669], + "end": [0.612, -0.346, 0.669], + "state": true + }, + { + "start": [0.612, -0.346, 0.669], + "end": [0.612, -1.489, 0.669], + "state": false + } + ] + }, + { + "start": [0.612, 1.005, -0.185], + "end": [-0.194, 1.005, -0.185], + "state": false, + "children": [] + }, + { + "start": [0.612, 1.005, -0.185], + "end": [0.612, -1.489, -0.185], + "state": false, + "children": [] + }, + { + "start": [-0.194, 1.005, -0.185], + "end": [-0.194, 1.005, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.005, -0.185], + "end": [-0.194, 1.005, -0.626], + "state": false + }, + { + "start": [-0.194, 1.005, -0.626], + "end": [-0.194, 1.005, -0.974], + "state": true + } + ] + }, + { + "start": [-0.194, 1.005, -0.185], + "end": [-0.194, -1.489, -0.185], + "state": false, + "children": [ + { + "start": [-0.194, 1.005, -0.185], + "end": [-0.194, 0.265, -0.185], + "state": false + }, + { + "start": [-0.194, 0.265, -0.185], + "end": [-0.194, -1.489, -0.185], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 1, + "roomName": "阳台", + "lines": [ + { + "start": [-0.194, 1.007, -0.974], + "end": [-6.031, 1.007, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.007, -0.974], + "end": [-2.142, 1.007, -0.974], + "state": false + }, + { + "start": [-2.142, 1.007, -0.974], + "end": [-4.537, 1.007, -0.974], + "state": true + }, + { + "start": [-4.537, 1.007, -0.974], + "end": [-6.031, 1.007, -0.974], + "state": false + } + ] + }, + { + "start": [-0.194, 1.007, -0.974], + "end": [-0.194, -1.488, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.007, -0.974], + "end": [-0.194, 0.156, -0.974], + "state": false + }, + { + "start": [-0.194, 0.156, -0.974], + "end": [-0.194, -1.488, -0.974], + "state": true + } + ] + }, + { + "start": [-6.031, 1.007, -0.974], + "end": [-6.031, 1.007, 0.669], + "state": false, + "children": [ + { + "start": [-6.031, 1.007, -0.974], + "end": [-6.031, 1.007, -0.548], + "state": false + }, + { + "start": [-6.031, 1.007, -0.548], + "end": [-6.031, 1.007, 0.162], + "state": true + }, + { + "start": [-6.031, 1.007, 0.162], + "end": [-6.031, 1.007, 0.669], + "state": false + } + ] + }, + { + "start": [-6.031, 1.007, -0.974], + "end": [-6.031, -1.488, -0.974], + "state": false, + "children": [ + { + "start": [-6.031, 1.007, -0.974], + "end": [-6.031, 0.721, -0.974], + "state": false + }, + { + "start": [-6.031, 0.721, -0.974], + "end": [-6.031, 0.495, -0.974], + "state": true + }, + { + "start": [-6.031, 0.495, -0.974], + "end": [-6.031, -0.046, -0.974], + "state": false + }, + { + "start": [-6.031, -0.046, -0.974], + "end": [-6.031, -0.46, -0.974], + "state": true + }, + { + "start": [-6.031, -0.46, -0.974], + "end": [-6.031, -0.782, -0.974], + "state": false + }, + { + "start": [-6.031, -0.782, -0.974], + "end": [-6.031, -1.488, -0.974], + "state": true + } + ] + }, + { + "start": [-6.031, 1.007, 0.669], + "end": [0.612, 1.007, 0.669], + "state": true, + "children": [] + }, + { + "start": [-6.031, 1.007, 0.669], + "end": [-6.031, -1.488, 0.669], + "state": true, + "children": [] + }, + { + "start": [0.612, 1.007, 0.669], + "end": [0.612, 1.007, -0.185], + "state": false, + "children": [] + }, + { + "start": [0.612, 1.007, 0.669], + "end": [0.612, -1.488, 0.669], + "state": false, + "children": [ + { + "start": [0.612, 1.007, 0.669], + "end": [0.612, 0.335, 0.669], + "state": true + }, + { + "start": [0.612, 0.335, 0.669], + "end": [0.612, -0.092, 0.669], + "state": false + }, + { + "start": [0.612, -0.092, 0.669], + "end": [0.612, -0.7, 0.669], + "state": true + }, + { + "start": [0.612, -0.7, 0.669], + "end": [0.612, -1.488, 0.669], + "state": false + } + ] + }, + { + "start": [0.612, 1.007, -0.185], + "end": [-0.194, 1.007, -0.185], + "state": false, + "children": [ + { + "start": [0.612, 1.007, -0.185], + "end": [0.333, 1.007, -0.185], + "state": true + }, + { + "start": [0.333, 1.007, -0.185], + "end": [-0.194, 1.007, -0.185], + "state": false + } + ] + }, + { + "start": [0.612, 1.007, -0.185], + "end": [0.612, -1.488, -0.185], + "state": false, + "children": [ + { + "start": [0.612, 1.007, -0.185], + "end": [0.612, 0.683, -0.185], + "state": true + }, + { + "start": [0.612, 0.683, -0.185], + "end": [0.612, -1.488, -0.185], + "state": false + } + ] + }, + { + "start": [-0.194, 1.007, -0.185], + "end": [-0.194, 1.007, -0.974], + "state": false, + "children": [] + }, + { + "start": [-0.194, 1.007, -0.185], + "end": [-0.194, -1.488, -0.185], + "state": false, + "children": [ + { + "start": [-0.194, 1.007, -0.185], + "end": [-0.194, 0.77, -0.185], + "state": false + }, + { + "start": [-0.194, 0.77, -0.185], + "end": [-0.194, -1.488, -0.185], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 2, + "roomName": "主卧室", + "lines": [ + { + "start": [-6.311, 1.013, 0.799], + "end": [-9.444, 1.013, 0.739], + "state": false, + "children": [ + { + "start": [-6.311, 1.013, 0.799], + "end": [-6.565, 1.013, 0.794], + "state": false + }, + { + "start": [-6.565, 1.013, 0.794], + "end": [-7.598, 1.013, 0.774], + "state": true + }, + { + "start": [-7.598, 1.013, 0.774], + "end": [-9.444, 1.013, 0.739], + "state": false + } + ] + }, + { + "start": [-6.311, 1.013, 0.799], + "end": [-6.311, -1.714, 0.799], + "state": false, + "children": [ + { + "start": [-6.311, 1.013, 0.799], + "end": [-6.311, -0.594, 0.799], + "state": true + }, + { + "start": [-6.311, -0.594, 0.799], + "end": [-6.311, -1.405, 0.799], + "state": false + }, + { + "start": [-6.311, -1.405, 0.799], + "end": [-6.311, -1.714, 0.799], + "state": true + } + ] + }, + { + "start": [-9.444, 1.013, 0.739], + "end": [-9.444, 1.013, 4.627], + "state": false, + "children": [ + { + "start": [-9.444, 1.013, 0.739], + "end": [-9.444, 1.013, 3.445], + "state": false + }, + { + "start": [-9.444, 1.013, 3.445], + "end": [-9.444, 1.013, 4.031], + "state": true + }, + { + "start": [-9.444, 1.013, 4.031], + "end": [-9.444, 1.013, 4.627], + "state": false + } + ] + }, + { + "start": [-9.444, 1.013, 0.739], + "end": [-9.444, -1.714, 0.739], + "state": false, + "children": [ + { + "start": [-9.444, 1.013, 0.739], + "end": [-9.444, -1.376, 0.739], + "state": false + }, + { + "start": [-9.444, -1.376, 0.739], + "end": [-9.444, -1.714, 0.739], + "state": true + } + ] + }, + { + "start": [-9.444, 1.013, 4.627], + "end": [-9.444, -1.714, 4.627], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.013, 4.064], + "end": [-6.311, 1.013, 4.064], + "state": false, + "children": [ + { + "start": [-7.436, 1.013, 4.064], + "end": [-7.155, 1.013, 4.064], + "state": true + }, + { + "start": [-7.155, 1.013, 4.064], + "end": [-6.311, 1.013, 4.064], + "state": false + } + ] + }, + { + "start": [-7.436, 1.013, 4.064], + "end": [-7.436, -1.714, 4.064], + "state": false, + "children": [ + { + "start": [-7.436, 1.013, 4.064], + "end": [-7.436, -0.002, 4.064], + "state": true + }, + { + "start": [-7.436, -0.002, 4.064], + "end": [-7.436, -1.301, 4.064], + "state": false + }, + { + "start": [-7.436, -1.301, 4.064], + "end": [-7.436, -1.714, 4.064], + "state": true + } + ] + }, + { + "start": [-6.311, 1.013, 4.064], + "end": [-6.311, 1.013, 0.799], + "state": false, + "children": [ + { + "start": [-6.311, 1.013, 4.064], + "end": [-6.311, 1.013, 3.326], + "state": false + }, + { + "start": [-6.311, 1.013, 3.326], + "end": [-6.311, 1.013, 0.799], + "state": true + } + ] + }, + { + "start": [-6.311, 1.013, 4.064], + "end": [-6.311, -1.714, 4.064], + "state": false, + "children": [ + { + "start": [-6.311, 1.013, 4.064], + "end": [-6.311, -1.261, 4.064], + "state": true + }, + { + "start": [-6.311, -1.261, 4.064], + "end": [-6.311, -1.714, 4.064], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 3, + "roomName": "主卧室", + "lines": [ + { + "start": [-6.311, 1.009, 0.799], + "end": [-9.444, 1.009, 0.739], + "state": false, + "children": [ + { + "start": [-6.311, 1.009, 0.799], + "end": [-6.558, 1.009, 0.794], + "state": false + }, + { + "start": [-6.558, 1.009, 0.794], + "end": [-7.158, 1.009, 0.783], + "state": true + }, + { + "start": [-7.158, 1.009, 0.783], + "end": [-9.444, 1.009, 0.739], + "state": false + } + ] + }, + { + "start": [-6.311, 1.009, 0.799], + "end": [-6.311, -1.718, 0.799], + "state": false, + "children": [ + { + "start": [-6.311, 1.009, 0.799], + "end": [-6.311, -1.407, 0.799], + "state": false + }, + { + "start": [-6.311, -1.407, 0.799], + "end": [-6.311, -1.718, 0.799], + "state": true + } + ] + }, + { + "start": [-9.444, 1.009, 0.739], + "end": [-9.444, 1.009, 4.627], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.009, 0.739], + "end": [-9.444, -1.718, 0.739], + "state": false, + "children": [ + { + "start": [-9.444, 1.009, 0.739], + "end": [-9.444, -1.386, 0.739], + "state": false + }, + { + "start": [-9.444, -1.386, 0.739], + "end": [-9.444, -1.718, 0.739], + "state": true + } + ] + }, + { + "start": [-9.444, 1.009, 4.627], + "end": [-7.436, 1.009, 4.627], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.009, 4.627], + "end": [-9.444, -1.718, 4.627], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.009, 4.627], + "end": [-7.436, 1.009, 4.064], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.009, 4.627], + "end": [-7.436, -1.718, 4.627], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.009, 4.064], + "end": [-6.311, 1.009, 4.064], + "state": false, + "children": [ + { + "start": [-7.436, 1.009, 4.064], + "end": [-7.231, 1.009, 4.064], + "state": false + }, + { + "start": [-7.231, 1.009, 4.064], + "end": [-6.311, 1.009, 4.064], + "state": true + } + ] + }, + { + "start": [-7.436, 1.009, 4.064], + "end": [-7.436, -1.718, 4.064], + "state": false, + "children": [ + { + "start": [-7.436, 1.009, 4.064], + "end": [-7.436, 0.768, 4.064], + "state": false + }, + { + "start": [-7.436, 0.768, 4.064], + "end": [-7.436, -0.919, 4.064], + "state": true + }, + { + "start": [-7.436, -0.919, 4.064], + "end": [-7.436, -1.718, 4.064], + "state": false + } + ] + }, + { + "start": [-6.311, 1.009, 4.064], + "end": [-6.311, 1.009, 0.799], + "state": true, + "children": [] + }, + { + "start": [-6.311, 1.009, 4.064], + "end": [-6.311, -1.718, 4.064], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 4, + "roomName": "主卧室", + "lines": [ + { + "start": [-6.311, 1.007, 0.799], + "end": [-9.444, 1.007, 0.739], + "state": false, + "children": [ + { + "start": [-6.311, 1.007, 0.799], + "end": [-7.365, 1.007, 0.779], + "state": false + }, + { + "start": [-7.365, 1.007, 0.779], + "end": [-8.097, 1.007, 0.765], + "state": true + }, + { + "start": [-8.097, 1.007, 0.765], + "end": [-9.444, 1.007, 0.739], + "state": false + } + ] + }, + { + "start": [-6.311, 1.007, 0.799], + "end": [-6.311, -1.72, 0.799], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.007, 0.739], + "end": [-9.444, 1.007, 4.627], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.007, 0.739], + "end": [-9.444, -1.72, 0.739], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.007, 4.627], + "end": [-7.436, 1.007, 4.627], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.007, 4.627], + "end": [-9.444, -1.72, 4.627], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.007, 4.064], + "end": [-6.311, 1.007, 4.064], + "state": true, + "children": [] + }, + { + "start": [-7.436, 1.007, 4.064], + "end": [-7.436, -1.72, 4.064], + "state": true, + "children": [] + }, + { + "start": [-6.311, 1.007, 4.064], + "end": [-6.311, 1.007, 0.799], + "state": false, + "children": [ + { + "start": [-6.311, 1.007, 4.064], + "end": [-6.311, 1.007, 1.343], + "state": true + }, + { + "start": [-6.311, 1.007, 1.343], + "end": [-6.311, 1.007, 0.799], + "state": false + } + ] + }, + { + "start": [-6.311, 1.007, 4.064], + "end": [-6.311, -1.72, 4.064], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 5, + "roomName": "主卧室", + "lines": [ + { + "start": [-6.311, 1.008, 0.799], + "end": [-9.444, 1.008, 0.739], + "state": false, + "children": [ + { + "start": [-6.311, 1.008, 0.799], + "end": [-6.919, 1.008, 0.787], + "state": true + }, + { + "start": [-6.919, 1.008, 0.787], + "end": [-9.444, 1.008, 0.739], + "state": false + } + ] + }, + { + "start": [-6.311, 1.008, 0.799], + "end": [-6.311, -1.719, 0.799], + "state": false, + "children": [ + { + "start": [-6.311, 1.008, 0.799], + "end": [-6.311, -0.147, 0.799], + "state": true + }, + { + "start": [-6.311, -0.147, 0.799], + "end": [-6.311, -1.719, 0.799], + "state": false + } + ] + }, + { + "start": [-9.444, 1.008, 0.739], + "end": [-9.444, 1.008, 4.627], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.008, 0.739], + "end": [-9.444, -1.719, 0.739], + "state": false, + "children": [ + { + "start": [-9.444, 1.008, 0.739], + "end": [-9.444, 0.205, 0.739], + "state": false + }, + { + "start": [-9.444, 0.205, 0.739], + "end": [-9.444, -0.061, 0.739], + "state": true + }, + { + "start": [-9.444, -0.061, 0.739], + "end": [-9.444, -1.719, 0.739], + "state": false + } + ] + }, + { + "start": [-9.444, 1.008, 4.627], + "end": [-7.436, 1.008, 4.627], + "state": false, + "children": [] + }, + { + "start": [-9.444, 1.008, 4.627], + "end": [-9.444, -1.719, 4.627], + "state": false, + "children": [ + { + "start": [-9.444, 1.008, 4.627], + "end": [-9.444, -1.274, 4.627], + "state": false + }, + { + "start": [-9.444, -1.274, 4.627], + "end": [-9.444, -1.719, 4.627], + "state": true + } + ] + }, + { + "start": [-7.436, 1.008, 4.627], + "end": [-7.436, 1.008, 4.064], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.008, 4.627], + "end": [-7.436, -1.719, 4.627], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.008, 4.064], + "end": [-6.311, 1.008, 4.064], + "state": false, + "children": [ + { + "start": [-7.436, 1.008, 4.064], + "end": [-6.676, 1.008, 4.064], + "state": false + }, + { + "start": [-6.676, 1.008, 4.064], + "end": [-6.311, 1.008, 4.064], + "state": true + } + ] + }, + { + "start": [-7.436, 1.008, 4.064], + "end": [-7.436, -1.719, 4.064], + "state": false, + "children": [ + { + "start": [-7.436, 1.008, 4.064], + "end": [-7.436, 0.649, 4.064], + "state": false + }, + { + "start": [-7.436, 0.649, 4.064], + "end": [-7.436, -1.719, 4.064], + "state": true + } + ] + }, + { + "start": [-6.311, 1.008, 4.064], + "end": [-6.311, 1.008, 0.799], + "state": false, + "children": [ + { + "start": [-6.311, 1.008, 4.064], + "end": [-6.311, 1.008, 1.038], + "state": true + }, + { + "start": [-6.311, 1.008, 1.038], + "end": [-6.311, 1.008, 0.799], + "state": false + } + ] + }, + { + "start": [-6.311, 1.008, 4.064], + "end": [-6.311, -1.719, 4.064], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 6, + "roomName": "儿童房", + "lines": [ + { + "start": [-6.211, 1.007, 7.903], + "end": [-6.211, 1.007, 5.41], + "state": false, + "children": [ + { + "start": [-6.211, 1.007, 7.903], + "end": [-6.211, 1.007, 6.526], + "state": false + }, + { + "start": [-6.211, 1.007, 6.526], + "end": [-6.211, 1.007, 5.41], + "state": true + } + ] + }, + { + "start": [-6.211, 1.007, 7.903], + "end": [-6.211, -1.676, 7.903], + "state": false, + "children": [ + { + "start": [-6.211, 1.007, 7.903], + "end": [-6.211, 0.124, 7.903], + "state": false + }, + { + "start": [-6.211, 0.124, 7.903], + "end": [-6.211, -1.676, 7.903], + "state": true + } + ] + }, + { + "start": [-6.211, 1.007, 5.41], + "end": [-7.436, 1.007, 5.41], + "state": false, + "children": [] + }, + { + "start": [-6.211, 1.007, 5.41], + "end": [-6.211, -1.676, 5.41], + "state": false, + "children": [ + { + "start": [-6.211, 1.007, 5.41], + "end": [-6.211, -1.418, 5.41], + "state": true + }, + { + "start": [-6.211, -1.418, 5.41], + "end": [-6.211, -1.676, 5.41], + "state": false + } + ] + }, + { + "start": [-7.436, 1.007, 5.41], + "end": [-7.436, -1.676, 5.41], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.007, 4.797], + "end": [-9.484, 1.007, 7.903], + "state": false, + "children": [ + { + "start": [-9.484, 1.007, 4.797], + "end": [-9.484, 1.007, 5.377], + "state": false + }, + { + "start": [-9.484, 1.007, 5.377], + "end": [-9.484, 1.007, 5.827], + "state": true + }, + { + "start": [-9.484, 1.007, 5.827], + "end": [-9.484, 1.007, 7.903], + "state": false + } + ] + }, + { + "start": [-9.484, 1.007, 4.797], + "end": [-9.484, -1.676, 4.797], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.007, 7.903], + "end": [-6.211, 1.007, 7.903], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.007, 7.903], + "end": [-9.484, -1.676, 7.903], + "state": false, + "children": [ + { + "start": [-9.484, 1.007, 7.903], + "end": [-9.484, 0.075, 7.903], + "state": false + }, + { + "start": [-9.484, 0.075, 7.903], + "end": [-9.484, -1.676, 7.903], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 7, + "roomName": "儿童房", + "lines": [ + { + "start": [-6.211, 1.015, 7.903], + "end": [-6.211, 1.015, 5.41], + "state": false, + "children": [ + { + "start": [-6.211, 1.015, 7.903], + "end": [-6.211, 1.015, 6.049], + "state": false + }, + { + "start": [-6.211, 1.015, 6.049], + "end": [-6.211, 1.015, 5.41], + "state": true + } + ] + }, + { + "start": [-6.211, 1.015, 7.903], + "end": [-6.211, -1.669, 7.903], + "state": false, + "children": [ + { + "start": [-6.211, 1.015, 7.903], + "end": [-6.211, 0.12, 7.903], + "state": false + }, + { + "start": [-6.211, 0.12, 7.903], + "end": [-6.211, -1.669, 7.903], + "state": true + } + ] + }, + { + "start": [-6.211, 1.015, 5.41], + "end": [-7.436, 1.015, 5.41], + "state": true, + "children": [] + }, + { + "start": [-6.211, 1.015, 5.41], + "end": [-6.211, -1.669, 5.41], + "state": true, + "children": [] + }, + { + "start": [-7.436, 1.015, 5.41], + "end": [-7.436, -1.669, 5.41], + "state": false, + "children": [ + { + "start": [-7.436, 1.015, 5.41], + "end": [-7.436, -1.361, 5.41], + "state": false + }, + { + "start": [-7.436, -1.361, 5.41], + "end": [-7.436, -1.669, 5.41], + "state": true + } + ] + }, + { + "start": [-7.436, 1.015, 4.797], + "end": [-9.484, 1.015, 4.797], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.015, 4.797], + "end": [-9.484, 1.015, 7.903], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.015, 4.797], + "end": [-9.484, -1.669, 4.797], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.015, 7.903], + "end": [-6.211, 1.015, 7.903], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.015, 7.903], + "end": [-9.484, -1.669, 7.903], + "state": false, + "children": [ + { + "start": [-9.484, 1.015, 7.903], + "end": [-9.484, 0.051, 7.903], + "state": false + }, + { + "start": [-9.484, 0.051, 7.903], + "end": [-9.484, -1.669, 7.903], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 8, + "roomName": "儿童房", + "lines": [ + { + "start": [-6.211, 1.012, 7.903], + "end": [-6.211, 1.012, 5.41], + "state": false, + "children": [ + { + "start": [-6.211, 1.012, 7.903], + "end": [-6.211, 1.012, 6.533], + "state": false + }, + { + "start": [-6.211, 1.012, 6.533], + "end": [-6.211, 1.012, 5.41], + "state": true + } + ] + }, + { + "start": [-6.211, 1.012, 7.903], + "end": [-6.211, -1.671, 7.903], + "state": false, + "children": [ + { + "start": [-6.211, 1.012, 7.903], + "end": [-6.211, 0.325, 7.903], + "state": false + }, + { + "start": [-6.211, 0.325, 7.903], + "end": [-6.211, -1.671, 7.903], + "state": true + } + ] + }, + { + "start": [-6.211, 1.012, 5.41], + "end": [-7.436, 1.012, 5.41], + "state": true, + "children": [] + }, + { + "start": [-6.211, 1.012, 5.41], + "end": [-6.211, -1.671, 5.41], + "state": true, + "children": [] + }, + { + "start": [-7.436, 1.012, 5.41], + "end": [-7.436, 1.012, 4.797], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.012, 5.41], + "end": [-7.436, -1.671, 5.41], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.012, 4.797], + "end": [-9.484, 1.012, 4.797], + "state": false, + "children": [] + }, + { + "start": [-7.436, 1.012, 4.797], + "end": [-7.436, -1.671, 4.797], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.012, 4.797], + "end": [-9.484, 1.012, 7.903], + "state": false, + "children": [ + { + "start": [-9.484, 1.012, 4.797], + "end": [-9.484, 1.012, 5.387], + "state": false + }, + { + "start": [-9.484, 1.012, 5.387], + "end": [-9.484, 1.012, 5.837], + "state": true + }, + { + "start": [-9.484, 1.012, 5.837], + "end": [-9.484, 1.012, 7.903], + "state": false + } + ] + }, + { + "start": [-9.484, 1.012, 4.797], + "end": [-9.484, -1.671, 4.797], + "state": false, + "children": [] + }, + { + "start": [-9.484, 1.012, 7.903], + "end": [-6.211, 1.012, 7.903], + "state": false, + "children": [ + { + "start": [-9.484, 1.012, 7.903], + "end": [-8.136, 1.012, 7.903], + "state": false + }, + { + "start": [-8.136, 1.012, 7.903], + "end": [-7.867, 1.012, 7.903], + "state": true + }, + { + "start": [-7.867, 1.012, 7.903], + "end": [-6.211, 1.012, 7.903], + "state": false + } + ] + }, + { + "start": [-9.484, 1.012, 7.903], + "end": [-9.484, -1.671, 7.903], + "state": false, + "children": [ + { + "start": [-9.484, 1.012, 7.903], + "end": [-9.484, 0.041, 7.903], + "state": false + }, + { + "start": [-9.484, 0.041, 7.903], + "end": [-9.484, -1.671, 7.903], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 9, + "roomName": "卫生间", + "lines": [ + { + "start": [-3.656, 1.02, 7.873], + "end": [-3.656, 1.02, 5.41], + "state": false, + "children": [ + { + "start": [-3.656, 1.02, 7.873], + "end": [-3.656, 1.02, 7.493], + "state": false + }, + { + "start": [-3.656, 1.02, 7.493], + "end": [-3.656, 1.02, 6.811], + "state": true + }, + { + "start": [-3.656, 1.02, 6.811], + "end": [-3.656, 1.02, 6.184], + "state": false + }, + { + "start": [-3.656, 1.02, 6.184], + "end": [-3.656, 1.02, 5.41], + "state": true + } + ] + }, + { + "start": [-3.656, 1.02, 7.873], + "end": [-3.656, -1.346, 7.873], + "state": false, + "children": [ + { + "start": [-3.656, 1.02, 7.873], + "end": [-3.656, 0.726, 7.873], + "state": false + }, + { + "start": [-3.656, 0.726, 7.873], + "end": [-3.656, -1.346, 7.873], + "state": true + } + ] + }, + { + "start": [-3.656, 1.02, 5.41], + "end": [-6.071, 1.02, 5.41], + "state": false, + "children": [ + { + "start": [-3.656, 1.02, 5.41], + "end": [-4.677, 1.02, 5.41], + "state": true + }, + { + "start": [-4.677, 1.02, 5.41], + "end": [-6.071, 1.02, 5.41], + "state": false + } + ] + }, + { + "start": [-3.656, 1.02, 5.41], + "end": [-3.656, -1.346, 5.41], + "state": true, + "children": [] + }, + { + "start": [-6.071, 1.02, 5.41], + "end": [-6.071, 1.02, 7.873], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.02, 5.41], + "end": [-6.071, -1.346, 5.41], + "state": false, + "children": [ + { + "start": [-6.071, 1.02, 5.41], + "end": [-6.071, 0.16, 5.41], + "state": false + }, + { + "start": [-6.071, 0.16, 5.41], + "end": [-6.071, -0.145, 5.41], + "state": true + }, + { + "start": [-6.071, -0.145, 5.41], + "end": [-6.071, -1.346, 5.41], + "state": false + } + ] + }, + { + "start": [-6.071, 1.02, 7.873], + "end": [-3.656, 1.02, 7.873], + "state": false, + "children": [ + { + "start": [-6.071, 1.02, 7.873], + "end": [-5.655, 1.02, 7.873], + "state": false + }, + { + "start": [-5.655, 1.02, 7.873], + "end": [-4.541, 1.02, 7.873], + "state": true + }, + { + "start": [-4.541, 1.02, 7.873], + "end": [-3.656, 1.02, 7.873], + "state": false + } + ] + }, + { + "start": [-6.071, 1.02, 7.873], + "end": [-6.071, -1.346, 7.873], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 10, + "roomName": "卫生间", + "lines": [ + { + "start": [-3.656, 1.01, 7.873], + "end": [-3.656, 1.01, 5.41], + "state": false, + "children": [] + }, + { + "start": [-3.656, 1.01, 7.873], + "end": [-3.656, -1.356, 7.873], + "state": false, + "children": [] + }, + { + "start": [-3.656, 1.01, 5.41], + "end": [-6.071, 1.01, 5.41], + "state": false, + "children": [ + { + "start": [-3.656, 1.01, 5.41], + "end": [-4.187, 1.01, 5.41], + "state": false + }, + { + "start": [-4.187, 1.01, 5.41], + "end": [-5.531, 1.01, 5.41], + "state": true + }, + { + "start": [-5.531, 1.01, 5.41], + "end": [-6.071, 1.01, 5.41], + "state": false + } + ] + }, + { + "start": [-3.656, 1.01, 5.41], + "end": [-3.656, -1.356, 5.41], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.01, 5.41], + "end": [-6.071, 1.01, 7.873], + "state": false, + "children": [ + { + "start": [-6.071, 1.01, 5.41], + "end": [-6.071, 1.01, 6.944], + "state": false + }, + { + "start": [-6.071, 1.01, 6.944], + "end": [-6.071, 1.01, 7.873], + "state": true + } + ] + }, + { + "start": [-6.071, 1.01, 5.41], + "end": [-6.071, -1.356, 5.41], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.01, 7.873], + "end": [-3.656, 1.01, 7.873], + "state": false, + "children": [ + { + "start": [-6.071, 1.01, 7.873], + "end": [-5.385, 1.01, 7.873], + "state": true + }, + { + "start": [-5.385, 1.01, 7.873], + "end": [-4.763, 1.01, 7.873], + "state": false + }, + { + "start": [-4.763, 1.01, 7.873], + "end": [-4.208, 1.01, 7.873], + "state": true + }, + { + "start": [-4.208, 1.01, 7.873], + "end": [-3.656, 1.01, 7.873], + "state": false + } + ] + }, + { + "start": [-6.071, 1.01, 7.873], + "end": [-6.071, -1.356, 7.873], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 11, + "roomName": "次卧室", + "lines": [ + { + "start": [-3.286, 1.011, 4.074], + "end": [-3.286, 1.011, 0.789], + "state": false, + "children": [ + { + "start": [-3.286, 1.011, 4.074], + "end": [-3.286, 1.011, 3.421], + "state": false + }, + { + "start": [-3.286, 1.011, 3.421], + "end": [-3.286, 1.011, 1.18], + "state": true + }, + { + "start": [-3.286, 1.011, 1.18], + "end": [-3.286, 1.011, 0.789], + "state": false + } + ] + }, + { + "start": [-3.286, 1.011, 4.074], + "end": [-3.286, -1.665, 4.074], + "state": false, + "children": [ + { + "start": [-3.286, 1.011, 4.074], + "end": [-3.286, -1.277, 4.074], + "state": true + }, + { + "start": [-3.286, -1.277, 4.074], + "end": [-3.286, -1.665, 4.074], + "state": false + } + ] + }, + { + "start": [-3.286, 1.011, 0.789], + "end": [-6.071, 1.011, 0.789], + "state": false, + "children": [ + { + "start": [-3.286, 1.011, 0.789], + "end": [-3.517, 1.011, 0.789], + "state": false + }, + { + "start": [-3.517, 1.011, 0.789], + "end": [-3.938, 1.011, 0.789], + "state": true + }, + { + "start": [-3.938, 1.011, 0.789], + "end": [-6.071, 1.011, 0.789], + "state": false + } + ] + }, + { + "start": [-3.286, 1.011, 0.789], + "end": [-3.286, -1.665, 0.789], + "state": false, + "children": [ + { + "start": [-3.286, 1.011, 0.789], + "end": [-3.286, -1.422, 0.789], + "state": false + }, + { + "start": [-3.286, -1.422, 0.789], + "end": [-3.286, -1.665, 0.789], + "state": true + } + ] + }, + { + "start": [-6.071, 1.011, 0.789], + "end": [-6.071, 1.011, 4.074], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.011, 0.789], + "end": [-6.071, -1.665, 0.789], + "state": false, + "children": [ + { + "start": [-6.071, 1.011, 0.789], + "end": [-6.071, 0.117, 0.789], + "state": false + }, + { + "start": [-6.071, 0.117, 0.789], + "end": [-6.071, -1.665, 0.789], + "state": true + } + ] + }, + { + "start": [-6.071, 1.011, 4.074], + "end": [-3.286, 1.011, 4.074], + "state": false, + "children": [ + { + "start": [-6.071, 1.011, 4.074], + "end": [-4.472, 1.011, 4.074], + "state": false + }, + { + "start": [-4.472, 1.011, 4.074], + "end": [-4.195, 1.011, 4.074], + "state": true + }, + { + "start": [-4.195, 1.011, 4.074], + "end": [-3.286, 1.011, 4.074], + "state": false + } + ] + }, + { + "start": [-6.071, 1.011, 4.074], + "end": [-6.071, -1.665, 4.074], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 12, + "roomName": "次卧室", + "lines": [ + { + "start": [-3.286, 1.008, 4.074], + "end": [-3.286, 1.008, 0.789], + "state": false, + "children": [ + { + "start": [-3.286, 1.008, 4.074], + "end": [-3.286, 1.008, 1.49], + "state": true + }, + { + "start": [-3.286, 1.008, 1.49], + "end": [-3.286, 1.008, 0.789], + "state": false + } + ] + }, + { + "start": [-3.286, 1.008, 4.074], + "end": [-3.286, -1.669, 4.074], + "state": true, + "children": [] + }, + { + "start": [-3.286, 1.008, 0.789], + "end": [-6.071, 1.008, 0.789], + "state": false, + "children": [ + { + "start": [-3.286, 1.008, 0.789], + "end": [-4.158, 1.008, 0.789], + "state": false + }, + { + "start": [-4.158, 1.008, 0.789], + "end": [-5.719, 1.008, 0.789], + "state": true + }, + { + "start": [-5.719, 1.008, 0.789], + "end": [-6.071, 1.008, 0.789], + "state": false + } + ] + }, + { + "start": [-3.286, 1.008, 0.789], + "end": [-3.286, -1.669, 0.789], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.008, 0.789], + "end": [-6.071, 1.008, 4.074], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.008, 0.789], + "end": [-6.071, -1.669, 0.789], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.008, 4.074], + "end": [-3.286, 1.008, 4.074], + "state": false, + "children": [ + { + "start": [-6.071, 1.008, 4.074], + "end": [-4.141, 1.008, 4.074], + "state": false + }, + { + "start": [-4.141, 1.008, 4.074], + "end": [-3.286, 1.008, 4.074], + "state": true + } + ] + }, + { + "start": [-6.071, 1.008, 4.074], + "end": [-6.071, -1.669, 4.074], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 13, + "roomName": "阳台", + "lines": [ + { + "start": [-0.194, 1.003, -0.974], + "end": [-6.031, 1.003, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.003, -0.974], + "end": [-2.319, 1.003, -0.974], + "state": false + }, + { + "start": [-2.319, 1.003, -0.974], + "end": [-2.525, 1.003, -0.974], + "state": true + }, + { + "start": [-2.525, 1.003, -0.974], + "end": [-3.377, 1.003, -0.974], + "state": false + }, + { + "start": [-3.377, 1.003, -0.974], + "end": [-3.671, 1.003, -0.974], + "state": true + }, + { + "start": [-3.671, 1.003, -0.974], + "end": [-4.71, 1.003, -0.974], + "state": false + }, + { + "start": [-4.71, 1.003, -0.974], + "end": [-5.337, 1.003, -0.974], + "state": true + }, + { + "start": [-5.337, 1.003, -0.974], + "end": [-6.031, 1.003, -0.974], + "state": false + } + ] + }, + { + "start": [-0.194, 1.003, -0.974], + "end": [-0.194, -1.492, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.003, -0.974], + "end": [-0.194, -0.197, -0.974], + "state": false + }, + { + "start": [-0.194, -0.197, -0.974], + "end": [-0.194, -1.492, -0.974], + "state": true + } + ] + }, + { + "start": [-6.031, 1.003, -0.974], + "end": [-6.031, 1.003, 0.669], + "state": false, + "children": [ + { + "start": [-6.031, 1.003, -0.974], + "end": [-6.031, 1.003, 0.204], + "state": true + }, + { + "start": [-6.031, 1.003, 0.204], + "end": [-6.031, 1.003, 0.669], + "state": false + } + ] + }, + { + "start": [-6.031, 1.003, -0.974], + "end": [-6.031, -1.492, -0.974], + "state": false, + "children": [ + { + "start": [-6.031, 1.003, -0.974], + "end": [-6.031, 0.553, -0.974], + "state": true + }, + { + "start": [-6.031, 0.553, -0.974], + "end": [-6.031, -0.096, -0.974], + "state": false + }, + { + "start": [-6.031, -0.096, -0.974], + "end": [-6.031, -0.332, -0.974], + "state": true + }, + { + "start": [-6.031, -0.332, -0.974], + "end": [-6.031, -1.492, -0.974], + "state": false + } + ] + }, + { + "start": [-6.031, 1.003, 0.669], + "end": [0.612, 1.003, 0.669], + "state": false, + "children": [ + { + "start": [-6.031, 1.003, 0.669], + "end": [0.381, 1.003, 0.669], + "state": true + }, + { + "start": [0.381, 1.003, 0.669], + "end": [0.612, 1.003, 0.669], + "state": false + } + ] + }, + { + "start": [-6.031, 1.003, 0.669], + "end": [-6.031, -1.492, 0.669], + "state": true, + "children": [] + }, + { + "start": [0.612, 1.003, 0.669], + "end": [0.612, 1.003, -0.185], + "state": false, + "children": [] + }, + { + "start": [0.612, 1.003, 0.669], + "end": [0.612, -1.492, 0.669], + "state": false, + "children": [] + }, + { + "start": [0.612, 1.003, -0.185], + "end": [-0.194, 1.003, -0.185], + "state": false, + "children": [ + { + "start": [0.612, 1.003, -0.185], + "end": [0.207, 1.003, -0.185], + "state": false + }, + { + "start": [0.207, 1.003, -0.185], + "end": [-0.194, 1.003, -0.185], + "state": true + } + ] + }, + { + "start": [0.612, 1.003, -0.185], + "end": [0.612, -1.492, -0.185], + "state": false, + "children": [ + { + "start": [0.612, 1.003, -0.185], + "end": [0.612, 0.18, -0.185], + "state": false + }, + { + "start": [0.612, 0.18, -0.185], + "end": [0.612, -1.492, -0.185], + "state": true + } + ] + }, + { + "start": [-0.194, 1.003, -0.185], + "end": [-0.194, 1.003, -0.974], + "state": false, + "children": [] + }, + { + "start": [-0.194, 1.003, -0.185], + "end": [-0.194, -1.492, -0.185], + "state": false, + "children": [ + { + "start": [-0.194, 1.003, -0.185], + "end": [-0.194, 0.076, -0.185], + "state": false + }, + { + "start": [-0.194, 0.076, -0.185], + "end": [-0.194, -1.492, -0.185], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 14, + "roomName": "阳台", + "lines": [ + { + "start": [-0.194, 1.004, -0.974], + "end": [-6.031, 1.004, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.004, -0.974], + "end": [-2.066, 1.004, -0.974], + "state": false + }, + { + "start": [-2.066, 1.004, -0.974], + "end": [-3.701, 1.004, -0.974], + "state": true + }, + { + "start": [-3.701, 1.004, -0.974], + "end": [-5.221, 1.004, -0.974], + "state": false + }, + { + "start": [-5.221, 1.004, -0.974], + "end": [-5.671, 1.004, -0.974], + "state": true + }, + { + "start": [-5.671, 1.004, -0.974], + "end": [-6.031, 1.004, -0.974], + "state": false + } + ] + }, + { + "start": [-0.194, 1.004, -0.974], + "end": [-0.194, -1.49, -0.974], + "state": false, + "children": [ + { + "start": [-0.194, 1.004, -0.974], + "end": [-0.194, -0.257, -0.974], + "state": false + }, + { + "start": [-0.194, -0.257, -0.974], + "end": [-0.194, -1.49, -0.974], + "state": true + } + ] + }, + { + "start": [-6.031, 1.004, -0.974], + "end": [-6.031, 1.004, 0.669], + "state": false, + "children": [ + { + "start": [-6.031, 1.004, -0.974], + "end": [-6.031, 1.004, -0.6], + "state": false + }, + { + "start": [-6.031, 1.004, -0.6], + "end": [-6.031, 1.004, 0.167], + "state": true + }, + { + "start": [-6.031, 1.004, 0.167], + "end": [-6.031, 1.004, 0.669], + "state": false + } + ] + }, + { + "start": [-6.031, 1.004, -0.974], + "end": [-6.031, -1.49, -0.974], + "state": false, + "children": [ + { + "start": [-6.031, 1.004, -0.974], + "end": [-6.031, -0.062, -0.974], + "state": false + }, + { + "start": [-6.031, -0.062, -0.974], + "end": [-6.031, -0.358, -0.974], + "state": true + }, + { + "start": [-6.031, -0.358, -0.974], + "end": [-6.031, -0.859, -0.974], + "state": false + }, + { + "start": [-6.031, -0.859, -0.974], + "end": [-6.031, -1.49, -0.974], + "state": true + } + ] + }, + { + "start": [-6.031, 1.004, 0.669], + "end": [0.612, 1.004, 0.669], + "state": false, + "children": [ + { + "start": [-6.031, 1.004, 0.669], + "end": [0.199, 1.004, 0.669], + "state": true + }, + { + "start": [0.199, 1.004, 0.669], + "end": [0.612, 1.004, 0.669], + "state": false + } + ] + }, + { + "start": [-6.031, 1.004, 0.669], + "end": [-6.031, -1.49, 0.669], + "state": true, + "children": [] + }, + { + "start": [0.612, 1.004, 0.669], + "end": [0.612, 1.004, -0.185], + "state": false, + "children": [] + }, + { + "start": [0.612, 1.004, 0.669], + "end": [0.612, -1.49, 0.669], + "state": false, + "children": [] + }, + { + "start": [0.612, 1.004, -0.185], + "end": [-0.194, 1.004, -0.185], + "state": false, + "children": [ + { + "start": [0.612, 1.004, -0.185], + "end": [0.049, 1.004, -0.185], + "state": false + }, + { + "start": [0.049, 1.004, -0.185], + "end": [-0.194, 1.004, -0.185], + "state": true + } + ] + }, + { + "start": [0.612, 1.004, -0.185], + "end": [0.612, -1.49, -0.185], + "state": false, + "children": [] + }, + { + "start": [-0.194, 1.004, -0.185], + "end": [-0.194, 1.004, -0.974], + "state": false, + "children": [] + }, + { + "start": [-0.194, 1.004, -0.185], + "end": [-0.194, -1.49, -0.185], + "state": false, + "children": [ + { + "start": [-0.194, 1.004, -0.185], + "end": [-0.194, -0.001, -0.185], + "state": false + }, + { + "start": [-0.194, -0.001, -0.185], + "end": [-0.194, -1.49, -0.185], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 15, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 0.998, 5.29], + "end": [0.552, 0.998, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 0.998, 5.29], + "end": [-3.465, 0.998, 5.29], + "state": false + }, + { + "start": [-3.465, 0.998, 5.29], + "end": [-2.425, 0.998, 5.29], + "state": false + }, + { + "start": [-2.425, 0.998, 5.29], + "end": [0.155, 0.998, 5.29], + "state": true + }, + { + "start": [0.155, 0.998, 5.29], + "end": [0.552, 0.998, 5.29], + "state": false + } + ] + }, + { + "start": [0.552, 0.998, 5.29], + "end": [0.552, 0.998, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 0.998, 5.29], + "end": [0.552, 0.998, 4.405], + "state": false + }, + { + "start": [0.552, 0.998, 4.405], + "end": [0.552, 0.998, 4.061], + "state": true + }, + { + "start": [0.552, 0.998, 4.061], + "end": [0.552, 0.998, 1.71], + "state": false + }, + { + "start": [0.552, 0.998, 1.71], + "end": [0.552, 0.998, 1.465], + "state": true + }, + { + "start": [0.552, 0.998, 1.465], + "end": [0.552, 0.998, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 0.998, 5.29], + "end": [0.552, -1.672, 5.29], + "state": false, + "children": [ + { + "start": [0.552, 0.998, 5.29], + "end": [0.552, -0.018, 5.29], + "state": false + }, + { + "start": [0.552, -0.018, 5.29], + "end": [0.552, -1.672, 5.29], + "state": true + } + ] + }, + { + "start": [0.552, 0.998, 0.789], + "end": [-3.046, 0.998, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 0.998, 0.789], + "end": [-1.319, 0.998, 0.789], + "state": false + }, + { + "start": [-1.319, 0.998, 0.789], + "end": [-2.684, 0.998, 0.789], + "state": true + }, + { + "start": [-2.684, 0.998, 0.789], + "end": [-3.046, 0.998, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 0.998, 0.789], + "end": [0.552, -1.672, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 0.998, 0.789], + "end": [0.552, 0.707, 0.789], + "state": false + }, + { + "start": [0.552, 0.707, 0.789], + "end": [0.552, -1.672, 0.789], + "state": true + } + ] + }, + { + "start": [-3.046, 0.998, 0.789], + "end": [-3.046, 0.998, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 0.998, 0.789], + "end": [-3.046, 0.998, 1.043], + "state": false + }, + { + "start": [-3.046, 0.998, 1.043], + "end": [-3.046, 0.998, 1.459], + "state": true + }, + { + "start": [-3.046, 0.998, 1.459], + "end": [-3.046, 0.998, 4.224], + "state": false + } + ] + }, + { + "start": [-3.046, 0.998, 0.789], + "end": [-3.046, -1.672, 0.789], + "state": false, + "children": [] + }, + { + "start": [-3.046, 0.998, 4.224], + "end": [-3.046, -1.672, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 0.998, 4.224], + "end": [-3.046, 0.322, 4.224], + "state": false + }, + { + "start": [-3.046, 0.322, 4.224], + "end": [-3.046, -1.672, 4.224], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 16, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [-4.035, 1.004, 5.29], + "state": false + }, + { + "start": [-4.035, 1.004, 5.29], + "end": [-2.814, 1.004, 5.29], + "state": false + }, + { + "start": [-2.814, 1.004, 5.29], + "end": [0.074, 1.004, 5.29], + "state": true + }, + { + "start": [0.074, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": false + } + ] + }, + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, 1.004, 0.789], + "state": false, + "children": [] + }, + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, -1.666, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 1.004, 0.789], + "end": [-3.046, 1.004, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.004, 0.789], + "end": [0.007, 1.004, 0.789], + "state": true + }, + { + "start": [0.007, 1.004, 0.789], + "end": [-0.59, 1.004, 0.789], + "state": false + }, + { + "start": [-0.59, 1.004, 0.789], + "end": [-1.545, 1.004, 0.789], + "state": true + }, + { + "start": [-1.545, 1.004, 0.789], + "end": [-3.046, 1.004, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 1.004, 0.789], + "end": [0.552, -1.666, 0.789], + "state": false, + "children": [] + }, + { + "start": [-3.046, 1.004, 0.789], + "end": [-3.046, 1.004, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 1.004, 0.789], + "end": [-3.046, 1.004, 1.262], + "state": false + }, + { + "start": [-3.046, 1.004, 1.262], + "end": [-3.046, 1.004, 1.774], + "state": true + }, + { + "start": [-3.046, 1.004, 1.774], + "end": [-3.046, 1.004, 4.224], + "state": false + } + ] + }, + { + "start": [-3.046, 1.004, 0.789], + "end": [-3.046, -1.666, 0.789], + "state": false, + "children": [] + }, + { + "start": [-3.046, 1.004, 4.224], + "end": [-3.046, -1.666, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 1.004, 4.224], + "end": [-3.046, 0.281, 4.224], + "state": false + }, + { + "start": [-3.046, 0.281, 4.224], + "end": [-3.046, -1.666, 4.224], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 17, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [-0.827, 1.004, 5.29], + "state": true + }, + { + "start": [-0.827, 1.004, 5.29], + "end": [-0.394, 1.004, 5.29], + "state": false + }, + { + "start": [-0.394, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": true + } + ] + }, + { + "start": [-7.286, 1.004, 5.29], + "end": [-7.286, -1.666, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, 1.004, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, 1.004, 5.012], + "state": true + }, + { + "start": [0.552, 1.004, 5.012], + "end": [0.552, 1.004, 4.63], + "state": false + }, + { + "start": [0.552, 1.004, 4.63], + "end": [0.552, 1.004, 3.601], + "state": true + }, + { + "start": [0.552, 1.004, 3.601], + "end": [0.552, 1.004, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, -1.666, 5.29], + "state": false, + "children": [ + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, 0.698, 5.29], + "state": false + }, + { + "start": [0.552, 0.698, 5.29], + "end": [0.552, -1.666, 5.29], + "state": true + } + ] + }, + { + "start": [0.552, 1.004, 0.789], + "end": [-3.046, 1.004, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.004, 0.789], + "end": [0.144, 1.004, 0.789], + "state": false + }, + { + "start": [0.144, 1.004, 0.789], + "end": [-0.866, 1.004, 0.789], + "state": true + }, + { + "start": [-0.866, 1.004, 0.789], + "end": [-2.075, 1.004, 0.789], + "state": false + }, + { + "start": [-2.075, 1.004, 0.789], + "end": [-2.477, 1.004, 0.789], + "state": true + }, + { + "start": [-2.477, 1.004, 0.789], + "end": [-3.046, 1.004, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 1.004, 0.789], + "end": [0.552, -1.666, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.004, 0.789], + "end": [0.552, -1.369, 0.789], + "state": false + }, + { + "start": [0.552, -1.369, 0.789], + "end": [0.552, -1.666, 0.789], + "state": true + } + ] + }, + { + "start": [-3.046, 1.004, 0.789], + "end": [-3.046, 1.004, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 1.004, 0.789], + "end": [-3.046, 1.004, 3.99], + "state": false + }, + { + "start": [-3.046, 1.004, 3.99], + "end": [-3.046, 1.004, 4.224], + "state": true + } + ] + }, + { + "start": [-3.046, 1.004, 0.789], + "end": [-3.046, -1.666, 0.789], + "state": false, + "children": [ + { + "start": [-3.046, 1.004, 0.789], + "end": [-3.046, 0.278, 0.789], + "state": false + }, + { + "start": [-3.046, 0.278, 0.789], + "end": [-3.046, -1.11, 0.789], + "state": true + }, + { + "start": [-3.046, -1.11, 0.789], + "end": [-3.046, -1.351, 0.789], + "state": false + }, + { + "start": [-3.046, -1.351, 0.789], + "end": [-3.046, -1.666, 0.789], + "state": true + } + ] + }, + { + "start": [-3.046, 1.004, 4.224], + "end": [-7.286, 1.004, 4.224], + "state": true, + "children": [] + }, + { + "start": [-3.046, 1.004, 4.224], + "end": [-3.046, -1.666, 4.224], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.004, 4.224], + "end": [-7.286, 1.004, 5.29], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.004, 4.224], + "end": [-7.286, -1.666, 4.224], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 18, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 0.997, 5.29], + "end": [0.552, 0.997, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 0.997, 5.29], + "end": [-4.816, 0.997, 5.29], + "state": false + }, + { + "start": [-4.816, 0.997, 5.29], + "end": [0.283, 0.997, 5.29], + "state": true + }, + { + "start": [0.283, 0.997, 5.29], + "end": [0.552, 0.997, 5.29], + "state": false + } + ] + }, + { + "start": [0.552, 0.997, 5.29], + "end": [0.552, 0.997, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 0.997, 5.29], + "end": [0.552, 0.997, 4.798], + "state": false + }, + { + "start": [0.552, 0.997, 4.798], + "end": [0.552, 0.997, 3.687], + "state": true + }, + { + "start": [0.552, 0.997, 3.687], + "end": [0.552, 0.997, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 0.997, 5.29], + "end": [0.552, -1.673, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 0.997, 0.789], + "end": [-3.046, 0.997, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 0.997, 0.789], + "end": [-1.561, 0.997, 0.789], + "state": false + }, + { + "start": [-1.561, 0.997, 0.789], + "end": [-2.199, 0.997, 0.789], + "state": true + }, + { + "start": [-2.199, 0.997, 0.789], + "end": [-3.046, 0.997, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 0.997, 0.789], + "end": [0.552, -1.673, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 0.997, 0.789], + "end": [0.552, -1.455, 0.789], + "state": false + }, + { + "start": [0.552, -1.455, 0.789], + "end": [0.552, -1.673, 0.789], + "state": true + } + ] + }, + { + "start": [-3.046, 0.997, 0.789], + "end": [-3.046, 0.997, 4.224], + "state": false, + "children": [] + }, + { + "start": [-3.046, 0.997, 0.789], + "end": [-3.046, -1.673, 0.789], + "state": false, + "children": [ + { + "start": [-3.046, 0.997, 0.789], + "end": [-3.046, 0.367, 0.789], + "state": false + }, + { + "start": [-3.046, 0.367, 0.789], + "end": [-3.046, -1.133, 0.789], + "state": true + }, + { + "start": [-3.046, -1.133, 0.789], + "end": [-3.046, -1.383, 0.789], + "state": false + }, + { + "start": [-3.046, -1.383, 0.789], + "end": [-3.046, -1.673, 0.789], + "state": true + } + ] + }, + { + "start": [-3.046, 0.997, 4.224], + "end": [-3.046, -1.673, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 0.997, 4.224], + "end": [-3.046, 0.55, 4.224], + "state": false + }, + { + "start": [-3.046, 0.55, 4.224], + "end": [-3.046, 0.195, 4.224], + "state": true + }, + { + "start": [-3.046, 0.195, 4.224], + "end": [-3.046, -0.556, 4.224], + "state": false + }, + { + "start": [-3.046, -0.556, 4.224], + "end": [-3.046, -1.673, 4.224], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 19, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [-3.98, 1.004, 5.29], + "state": true + }, + { + "start": [-3.98, 1.004, 5.29], + "end": [-3.494, 1.004, 5.29], + "state": false + }, + { + "start": [-3.494, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": true + } + ] + }, + { + "start": [-7.286, 1.004, 5.29], + "end": [-7.286, -1.667, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, 1.004, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, 1.004, 4.609], + "state": false + }, + { + "start": [0.552, 1.004, 4.609], + "end": [0.552, 1.004, 3.636], + "state": true + }, + { + "start": [0.552, 1.004, 3.636], + "end": [0.552, 1.004, 1.29], + "state": false + }, + { + "start": [0.552, 1.004, 1.29], + "end": [0.552, 1.004, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, -1.667, 5.29], + "state": false, + "children": [ + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, 0.698, 5.29], + "state": true + }, + { + "start": [0.552, 0.698, 5.29], + "end": [0.552, 0.481, 5.29], + "state": false + }, + { + "start": [0.552, 0.481, 5.29], + "end": [0.552, -1.667, 5.29], + "state": true + } + ] + }, + { + "start": [-3.046, 1.004, 4.224], + "end": [-7.286, 1.004, 4.224], + "state": true, + "children": [] + }, + { + "start": [-3.046, 1.004, 4.224], + "end": [-3.046, -1.667, 4.224], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.004, 4.224], + "end": [-7.286, 1.004, 5.29], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.004, 4.224], + "end": [-7.286, -1.667, 4.224], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 20, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 1.004, 5.29], + "end": [-5.35, 1.004, 5.29], + "state": true + }, + { + "start": [-5.35, 1.004, 5.29], + "end": [-4.79, 1.004, 5.29], + "state": false + }, + { + "start": [-4.79, 1.004, 5.29], + "end": [0.552, 1.004, 5.29], + "state": true + } + ] + }, + { + "start": [-7.286, 1.004, 5.29], + "end": [-7.286, -1.667, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 1.004, 5.29], + "end": [0.552, -1.667, 5.29], + "state": true, + "children": [] + }, + { + "start": [-3.046, 1.004, 4.224], + "end": [-7.286, 1.004, 4.224], + "state": true, + "children": [] + }, + { + "start": [-3.046, 1.004, 4.224], + "end": [-3.046, -1.667, 4.224], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.004, 4.224], + "end": [-7.286, 1.004, 5.29], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.004, 4.224], + "end": [-7.286, -1.667, 4.224], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 21, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 1.007, 5.29], + "end": [0.552, 1.007, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 1.007, 5.29], + "end": [-6.831, 1.007, 5.29], + "state": true + }, + { + "start": [-6.831, 1.007, 5.29], + "end": [-6.547, 1.007, 5.29], + "state": false + }, + { + "start": [-6.547, 1.007, 5.29], + "end": [0.552, 1.007, 5.29], + "state": true + } + ] + }, + { + "start": [-7.286, 1.007, 5.29], + "end": [-7.286, -1.663, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 1.007, 5.29], + "end": [0.552, -1.663, 5.29], + "state": true, + "children": [] + }, + { + "start": [-3.046, 1.007, 4.224], + "end": [-7.286, 1.007, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 1.007, 4.224], + "end": [-6.486, 1.007, 4.224], + "state": true + }, + { + "start": [-6.486, 1.007, 4.224], + "end": [-6.894, 1.007, 4.224], + "state": false + }, + { + "start": [-6.894, 1.007, 4.224], + "end": [-7.286, 1.007, 4.224], + "state": true + } + ] + }, + { + "start": [-3.046, 1.007, 4.224], + "end": [-3.046, -1.663, 4.224], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.007, 4.224], + "end": [-7.286, 1.007, 5.29], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.007, 4.224], + "end": [-7.286, -1.663, 4.224], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 22, + "roomName": "餐厅", + "lines": [ + { + "start": [-3.416, 1.003, 8.383], + "end": [0.582, 1.003, 8.443], + "state": false, + "children": [ + { + "start": [-3.416, 1.003, 8.383], + "end": [-1.302, 1.003, 8.414], + "state": false + }, + { + "start": [-1.302, 1.003, 8.414], + "end": [0.017, 1.003, 8.434], + "state": true + }, + { + "start": [0.017, 1.003, 8.434], + "end": [0.582, 1.003, 8.443], + "state": false + } + ] + }, + { + "start": [-3.416, 1.003, 8.383], + "end": [-3.416, -1.67, 8.383], + "state": false, + "children": [ + { + "start": [-3.416, 1.003, 8.383], + "end": [-3.416, -0.241, 8.383], + "state": false + }, + { + "start": [-3.416, -0.241, 8.383], + "end": [-3.416, -1.67, 8.383], + "state": true + } + ] + }, + { + "start": [0.582, 1.003, 8.443], + "end": [0.582, 1.003, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.003, 8.443], + "end": [0.582, -1.67, 8.443], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.003, 7.903], + "end": [0.984, 1.003, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.003, 7.903], + "end": [0.582, -1.67, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.003, 7.903], + "end": [0.984, 1.003, 6.595], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.003, 7.903], + "end": [0.984, -1.67, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.003, 6.595], + "end": [0.073, 1.003, 6.595], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.003, 6.595], + "end": [0.984, -1.67, 6.595], + "state": false, + "children": [] + }, + { + "start": [0.073, 1.003, 6.595], + "end": [0.073, 1.003, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.073, 1.003, 6.595], + "end": [0.073, -1.67, 6.595], + "state": false, + "children": [ + { + "start": [0.073, 1.003, 6.595], + "end": [0.073, -1.316, 6.595], + "state": false + }, + { + "start": [0.073, -1.316, 6.595], + "end": [0.073, -1.67, 6.595], + "state": true + } + ] + }, + { + "start": [0.073, 1.003, 5.29], + "end": [-3.416, 1.003, 5.41], + "state": false, + "children": [ + { + "start": [0.073, 1.003, 5.29], + "end": [-1.738, 1.003, 5.352], + "state": true + }, + { + "start": [-1.738, 1.003, 5.352], + "end": [-3.416, 1.003, 5.41], + "state": false + } + ] + }, + { + "start": [0.073, 1.003, 5.29], + "end": [0.073, -1.67, 5.29], + "state": false, + "children": [ + { + "start": [0.073, 1.003, 5.29], + "end": [0.073, -0.039, 5.29], + "state": false + }, + { + "start": [0.073, -0.039, 5.29], + "end": [0.073, -1.67, 5.29], + "state": true + } + ] + }, + { + "start": [-3.416, 1.003, 5.41], + "end": [-3.416, 1.003, 8.383], + "state": false, + "children": [] + }, + { + "start": [-3.416, 1.003, 5.41], + "end": [-3.416, -1.67, 5.41], + "state": false, + "children": [ + { + "start": [-3.416, 1.003, 5.41], + "end": [-3.416, -1.443, 5.41], + "state": false + }, + { + "start": [-3.416, -1.443, 5.41], + "end": [-3.416, -1.67, 5.41], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 23, + "roomName": "餐厅", + "lines": [ + { + "start": [-3.416, 1.002, 8.383], + "end": [0.582, 1.002, 8.443], + "state": false, + "children": [ + { + "start": [-3.416, 1.002, 8.383], + "end": [-1.289, 1.002, 8.414], + "state": false + }, + { + "start": [-1.289, 1.002, 8.414], + "end": [0.015, 1.002, 8.434], + "state": true + }, + { + "start": [0.015, 1.002, 8.434], + "end": [0.582, 1.002, 8.443], + "state": false + } + ] + }, + { + "start": [-3.416, 1.002, 8.383], + "end": [-3.416, -1.671, 8.383], + "state": false, + "children": [ + { + "start": [-3.416, 1.002, 8.383], + "end": [-3.416, -0.302, 8.383], + "state": false + }, + { + "start": [-3.416, -0.302, 8.383], + "end": [-3.416, -1.671, 8.383], + "state": true + } + ] + }, + { + "start": [0.582, 1.002, 8.443], + "end": [0.582, 1.002, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.002, 8.443], + "end": [0.582, -1.671, 8.443], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.002, 7.903], + "end": [0.984, 1.002, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.002, 7.903], + "end": [0.582, -1.671, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.002, 7.903], + "end": [0.984, 1.002, 6.595], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.002, 7.903], + "end": [0.984, -1.671, 7.903], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.002, 6.595], + "end": [0.073, 1.002, 6.595], + "state": false, + "children": [] + }, + { + "start": [0.984, 1.002, 6.595], + "end": [0.984, -1.671, 6.595], + "state": false, + "children": [] + }, + { + "start": [0.073, 1.002, 6.595], + "end": [0.073, 1.002, 5.29], + "state": false, + "children": [ + { + "start": [0.073, 1.002, 6.595], + "end": [0.073, 1.002, 5.534], + "state": false + }, + { + "start": [0.073, 1.002, 5.534], + "end": [0.073, 1.002, 5.29], + "state": true + } + ] + }, + { + "start": [0.073, 1.002, 6.595], + "end": [0.073, -1.671, 6.595], + "state": false, + "children": [ + { + "start": [0.073, 1.002, 6.595], + "end": [0.073, -1.303, 6.595], + "state": false + }, + { + "start": [0.073, -1.303, 6.595], + "end": [0.073, -1.671, 6.595], + "state": true + } + ] + }, + { + "start": [0.073, 1.002, 5.29], + "end": [-3.416, 1.002, 5.41], + "state": false, + "children": [ + { + "start": [0.073, 1.002, 5.29], + "end": [-1.414, 1.002, 5.341], + "state": true + }, + { + "start": [-1.414, 1.002, 5.341], + "end": [-3.416, 1.002, 5.41], + "state": false + } + ] + }, + { + "start": [0.073, 1.002, 5.29], + "end": [0.073, -1.671, 5.29], + "state": false, + "children": [ + { + "start": [0.073, 1.002, 5.29], + "end": [0.073, -0.012, 5.29], + "state": false + }, + { + "start": [0.073, -0.012, 5.29], + "end": [0.073, -1.671, 5.29], + "state": true + } + ] + }, + { + "start": [-3.416, 1.002, 5.41], + "end": [-3.416, 1.002, 8.383], + "state": false, + "children": [] + }, + { + "start": [-3.416, 1.002, 5.41], + "end": [-3.416, -1.671, 5.41], + "state": false, + "children": [ + { + "start": [-3.416, 1.002, 5.41], + "end": [-3.416, -1.452, 5.41], + "state": false + }, + { + "start": [-3.416, -1.452, 5.41], + "end": [-3.416, -1.671, 5.41], + "state": true + } + ] + } + ] + }, + { + "panoIndex": 24, + "roomName": "玄关", + "lines": [ + { + "start": [0.582, 1.002, 9.944], + "end": [0.582, 1.002, 8.443], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.002, 9.944], + "end": [0.582, -1.351, 9.944], + "state": false, + "children": [] + }, + { + "start": [0.582, 1.002, 8.443], + "end": [-1.204, 1.002, 8.383], + "state": false, + "children": [ + { + "start": [0.582, 1.002, 8.443], + "end": [0.063, 1.002, 8.425], + "state": false + }, + { + "start": [0.063, 1.002, 8.425], + "end": [-1.204, 1.002, 8.383], + "state": true + } + ] + }, + { + "start": [0.582, 1.002, 8.443], + "end": [0.582, -1.351, 8.443], + "state": false, + "children": [] + }, + { + "start": [-1.204, 1.002, 8.383], + "end": [-1.159, 1.002, 9.944], + "state": true, + "children": [] + }, + { + "start": [-1.204, 1.002, 8.383], + "end": [-1.204, -1.351, 8.383], + "state": false, + "children": [ + { + "start": [-1.204, 1.002, 8.383], + "end": [-1.204, -0.037, 8.383], + "state": false + }, + { + "start": [-1.204, -0.037, 8.383], + "end": [-1.204, -1.351, 8.383], + "state": true + } + ] + }, + { + "start": [-1.159, 1.002, 9.944], + "end": [0.582, 1.002, 9.944], + "state": false, + "children": [ + { + "start": [-1.159, 1.002, 9.944], + "end": [-0.643, 1.002, 9.944], + "state": true + }, + { + "start": [-0.643, 1.002, 9.944], + "end": [-0.418, 1.002, 9.944], + "state": false + }, + { + "start": [-0.418, 1.002, 9.944], + "end": [0.139, 1.002, 9.944], + "state": true + }, + { + "start": [0.139, 1.002, 9.944], + "end": [0.582, 1.002, 9.944], + "state": false + } + ] + }, + { + "start": [-1.159, 1.002, 9.944], + "end": [-1.159, -1.351, 9.944], + "state": true, + "children": [] + } + ] + }, + { + "panoIndex": 25, + "roomName": "厨房", + "lines": [ + { + "start": [-1.277, 1.001, 10.42], + "end": [-1.321, 1.001, 8.503], + "state": false, + "children": [ + { + "start": [-1.277, 1.001, 10.42], + "end": [-1.29, 1.001, 9.87], + "state": false + }, + { + "start": [-1.29, 1.001, 9.87], + "end": [-1.312, 1.001, 8.868], + "state": true + }, + { + "start": [-1.312, 1.001, 8.868], + "end": [-1.321, 1.001, 8.503], + "state": false + } + ] + }, + { + "start": [-1.277, 1.001, 10.42], + "end": [-1.277, -1.346, 10.42], + "state": false, + "children": [ + { + "start": [-1.277, 1.001, 10.42], + "end": [-1.277, 0.339, 10.42], + "state": false + }, + { + "start": [-1.277, 0.339, 10.42], + "end": [-1.277, -0.9, 10.42], + "state": true + }, + { + "start": [-1.277, -0.9, 10.42], + "end": [-1.277, -1.111, 10.42], + "state": false + }, + { + "start": [-1.277, -1.111, 10.42], + "end": [-1.277, -1.346, 10.42], + "state": true + } + ] + }, + { + "start": [-1.321, 1.001, 8.503], + "end": [-3.436, 1.001, 8.503], + "state": false, + "children": [] + }, + { + "start": [-1.321, 1.001, 8.503], + "end": [-1.321, -1.346, 8.503], + "state": false, + "children": [ + { + "start": [-1.321, 1.001, 8.503], + "end": [-1.321, 0.179, 8.503], + "state": false + }, + { + "start": [-1.321, 0.179, 8.503], + "end": [-1.321, -1.346, 8.503], + "state": true + } + ] + }, + { + "start": [-3.436, 1.001, 8.503], + "end": [-3.436, 1.001, 10.42], + "state": false, + "children": [] + }, + { + "start": [-3.436, 1.001, 8.503], + "end": [-3.436, -1.346, 8.503], + "state": false, + "children": [ + { + "start": [-3.436, 1.001, 8.503], + "end": [-3.436, 0.165, 8.503], + "state": false + }, + { + "start": [-3.436, 0.165, 8.503], + "end": [-3.436, -1.346, 8.503], + "state": true + } + ] + }, + { + "start": [-3.436, 1.001, 10.42], + "end": [-1.277, 1.001, 10.42], + "state": false, + "children": [] + }, + { + "start": [-3.436, 1.001, 10.42], + "end": [-3.436, -1.346, 10.42], + "state": false, + "children": [ + { + "start": [-3.436, 1.001, 10.42], + "end": [-3.436, 0.14, 10.42], + "state": false + }, + { + "start": [-3.436, 0.14, 10.42], + "end": [-3.436, -0.655, 10.42], + "state": true + }, + { + "start": [-3.436, -0.655, 10.42], + "end": [-3.436, -1.346, 10.42], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 26, + "roomName": "厨房", + "lines": [ + { + "start": [-1.277, 1.001, 10.42], + "end": [-1.321, 1.001, 8.503], + "state": false, + "children": [] + }, + { + "start": [-1.277, 1.001, 10.42], + "end": [-1.277, -1.345, 10.42], + "state": false, + "children": [ + { + "start": [-1.277, 1.001, 10.42], + "end": [-1.277, 0.32, 10.42], + "state": false + }, + { + "start": [-1.277, 0.32, 10.42], + "end": [-1.277, -1.345, 10.42], + "state": true + } + ] + }, + { + "start": [-1.321, 1.001, 8.503], + "end": [-3.436, 1.001, 8.503], + "state": false, + "children": [] + }, + { + "start": [-1.321, 1.001, 8.503], + "end": [-1.321, -1.345, 8.503], + "state": false, + "children": [ + { + "start": [-1.321, 1.001, 8.503], + "end": [-1.321, -0.168, 8.503], + "state": false + }, + { + "start": [-1.321, -0.168, 8.503], + "end": [-1.321, -1.345, 8.503], + "state": true + } + ] + }, + { + "start": [-3.436, 1.001, 8.503], + "end": [-3.436, 1.001, 10.42], + "state": false, + "children": [] + }, + { + "start": [-3.436, 1.001, 8.503], + "end": [-3.436, -1.345, 8.503], + "state": false, + "children": [ + { + "start": [-3.436, 1.001, 8.503], + "end": [-3.436, 0.169, 8.503], + "state": false + }, + { + "start": [-3.436, 0.169, 8.503], + "end": [-3.436, -1.345, 8.503], + "state": true + } + ] + }, + { + "start": [-3.436, 1.001, 10.42], + "end": [-1.277, 1.001, 10.42], + "state": false, + "children": [] + }, + { + "start": [-3.436, 1.001, 10.42], + "end": [-3.436, -1.345, 10.42], + "state": false, + "children": [ + { + "start": [-3.436, 1.001, 10.42], + "end": [-3.436, -0.201, 10.42], + "state": false + }, + { + "start": [-3.436, -0.201, 10.42], + "end": [-3.436, -0.596, 10.42], + "state": true + }, + { + "start": [-3.436, -0.596, 10.42], + "end": [-3.436, -1.345, 10.42], + "state": false + } + ] + } + ] + }, + { + "panoIndex": 27, + "roomName": "次卧室", + "lines": [ + { + "start": [-3.286, 1.007, 4.074], + "end": [-3.286, 1.007, 0.789], + "state": false, + "children": [ + { + "start": [-3.286, 1.007, 4.074], + "end": [-3.286, 1.007, 1.116], + "state": true + }, + { + "start": [-3.286, 1.007, 1.116], + "end": [-3.286, 1.007, 0.789], + "state": false + } + ] + }, + { + "start": [-3.286, 1.007, 4.074], + "end": [-3.286, -1.669, 4.074], + "state": true, + "children": [] + }, + { + "start": [-3.286, 1.007, 0.789], + "end": [-6.071, 1.007, 0.789], + "state": false, + "children": [ + { + "start": [-3.286, 1.007, 0.789], + "end": [-3.744, 1.007, 0.789], + "state": true + }, + { + "start": [-3.744, 1.007, 0.789], + "end": [-6.071, 1.007, 0.789], + "state": false + } + ] + }, + { + "start": [-3.286, 1.007, 0.789], + "end": [-3.286, -1.669, 0.789], + "state": false, + "children": [] + }, + { + "start": [-6.071, 1.007, 0.789], + "end": [-6.071, 1.007, 4.074], + "state": false, + "children": [ + { + "start": [-6.071, 1.007, 0.789], + "end": [-6.071, 1.007, 3.132], + "state": false + }, + { + "start": [-6.071, 1.007, 3.132], + "end": [-6.071, 1.007, 3.483], + "state": true + }, + { + "start": [-6.071, 1.007, 3.483], + "end": [-6.071, 1.007, 4.074], + "state": false + } + ] + }, + { + "start": [-6.071, 1.007, 0.789], + "end": [-6.071, -1.669, 0.789], + "state": false, + "children": [ + { + "start": [-6.071, 1.007, 0.789], + "end": [-6.071, 0.101, 0.789], + "state": false + }, + { + "start": [-6.071, 0.101, 0.789], + "end": [-6.071, -1.669, 0.789], + "state": true + } + ] + }, + { + "start": [-6.071, 1.007, 4.074], + "end": [-3.286, 1.007, 4.074], + "state": false, + "children": [ + { + "start": [-6.071, 1.007, 4.074], + "end": [-4.497, 1.007, 4.074], + "state": false + }, + { + "start": [-4.497, 1.007, 4.074], + "end": [-3.286, 1.007, 4.074], + "state": true + } + ] + }, + { + "start": [-6.071, 1.007, 4.074], + "end": [-6.071, -1.669, 4.074], + "state": false, + "children": [] + } + ] + }, + { + "panoIndex": 28, + "roomName": "起居室", + "lines": [ + { + "start": [-7.286, 1.005, 5.29], + "end": [0.552, 1.005, 5.29], + "state": false, + "children": [ + { + "start": [-7.286, 1.005, 5.29], + "end": [-3.222, 1.005, 5.29], + "state": true + }, + { + "start": [-3.222, 1.005, 5.29], + "end": [-2.109, 1.005, 5.29], + "state": false + }, + { + "start": [-2.109, 1.005, 5.29], + "end": [0.552, 1.005, 5.29], + "state": true + } + ] + }, + { + "start": [-7.286, 1.005, 5.29], + "end": [-7.286, -1.665, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 1.005, 5.29], + "end": [0.552, 1.005, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.005, 5.29], + "end": [0.552, 1.005, 4.59], + "state": false + }, + { + "start": [0.552, 1.005, 4.59], + "end": [0.552, 1.005, 3.589], + "state": true + }, + { + "start": [0.552, 1.005, 3.589], + "end": [0.552, 1.005, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 1.005, 5.29], + "end": [0.552, -1.665, 5.29], + "state": true, + "children": [] + }, + { + "start": [0.552, 1.005, 0.789], + "end": [-3.046, 1.005, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.005, 0.789], + "end": [-1.472, 1.005, 0.789], + "state": false + }, + { + "start": [-1.472, 1.005, 0.789], + "end": [-1.899, 1.005, 0.789], + "state": true + }, + { + "start": [-1.899, 1.005, 0.789], + "end": [-3.046, 1.005, 0.789], + "state": false + } + ] + }, + { + "start": [0.552, 1.005, 0.789], + "end": [0.552, -1.665, 0.789], + "state": false, + "children": [ + { + "start": [0.552, 1.005, 0.789], + "end": [0.552, -1.405, 0.789], + "state": false + }, + { + "start": [0.552, -1.405, 0.789], + "end": [0.552, -1.665, 0.789], + "state": true + } + ] + }, + { + "start": [-3.046, 1.005, 0.789], + "end": [-3.046, 1.005, 4.224], + "state": false, + "children": [ + { + "start": [-3.046, 1.005, 0.789], + "end": [-3.046, 1.005, 3.397], + "state": false + }, + { + "start": [-3.046, 1.005, 3.397], + "end": [-3.046, 1.005, 4.224], + "state": true + } + ] + }, + { + "start": [-3.046, 1.005, 0.789], + "end": [-3.046, -1.665, 0.789], + "state": false, + "children": [ + { + "start": [-3.046, 1.005, 0.789], + "end": [-3.046, 0.435, 0.789], + "state": false + }, + { + "start": [-3.046, 0.435, 0.789], + "end": [-3.046, -1.665, 0.789], + "state": true + } + ] + }, + { + "start": [-3.046, 1.005, 4.224], + "end": [-7.286, 1.005, 4.224], + "state": true, + "children": [] + }, + { + "start": [-3.046, 1.005, 4.224], + "end": [-3.046, -1.665, 4.224], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.005, 4.224], + "end": [-7.286, 1.005, 5.29], + "state": true, + "children": [] + }, + { + "start": [-7.286, 1.005, 4.224], + "end": [-7.286, -1.665, 4.224], + "state": true, + "children": [] + } + ] + } +] diff --git a/open-works/real/80o2183onbPJ4DwKvy/work.js b/open-works/real/80o2183onbPJ4DwKvy/work.js new file mode 100644 index 000000000..5f88ee0d9 --- /dev/null +++ b/open-works/real/80o2183onbPJ4DwKvy/work.js @@ -0,0 +1,771 @@ +export const work = { + _signature: + 'puklHDfQKWfB+QrmZ2QoUtZ5dy9UHqfqTd4NDmcobN9QVyNpq1n30hWVuV6sr8FDHCYDeVDUj4rSpgFjrML15Dk/eKDGHK2ivKcDRyHjpFY+geVxkH3FyG2sRACkEsx4XsIJIPQPbPIM+vG061nAb1ubU3FwyGEidy/emnJKF24=', + allow_hosts: [ + 'realsee.com', + 'realsee.cn', + 'rushivr.com', + 'rushivr.cn', + 'system-open-c-9getw0dy659f6aa9-1304125667.ap-shanghai.app.tcloudbase.com', + 'test-system-rd-7g169jr0a1c8ade2-1304125667.ap-shanghai.app.tcloudbase.com', + ], + base_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/6e4139a4069b6a7276215f042e329ed3/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: '2021-10-28T16:27:15+08:00', + expire_at: '1658464765677', + initial: { + flag_position: [], + fov: 95, + heading: 0, + latitude: 0, + longitude: 2.6173753829485413, + pano: 17, + pano_index: 17, + }, + model: { + file_url: 'model/auto3d-nTEw78783bRCU3rvItSQZU.at3d', + material_base_url: 'materials/', + material_textures: ['texture_0.jpg', 'texture_1.jpg', 'texture_2.jpg'], + modify_time: '2022-01-13T21:22:40+08:00', + type: 0, + }, + observers: [ + { + accessible_nodes: [1, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28], + floor_index: 0, + index: 0, + offset_point_count: 0, + position: [-0.8072410225868225, 0.12546899914741516, -0.14347800612449646], + quaternion: { + w: -0.954886013438399, + x: 0.0023224658249839003, + y: 0.29686665790977657, + z: -0.007581373540636733, + }, + standing_position: [-0.8072410225868225, -0.9761697048439075, -0.14347800612449646], + visible_nodes: [1, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28], + }, + { + accessible_nodes: [0, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28], + floor_index: 0, + index: 1, + offset_point_count: 0, + position: [-2.176959991455078, 0.12378399819135666, 0.04013340175151825], + quaternion: { + w: -0.18761379582826934, + x: -0.005586619907342985, + y: -0.9822265324618187, + z: 0.0009405635233819157, + }, + standing_position: [-2.176959991455078, -0.9786253050806883, 0.04013340175151825], + visible_nodes: [0, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28], + }, + { + accessible_nodes: [3, 4, 5, 6, 7, 21], + floor_index: 0, + index: 2, + offset_point_count: 0, + position: [-6.737060070037842, 0.11766300350427628, -3.7159199714660645], + quaternion: { + w: -0.9424226584435601, + x: 0.0005208986052485072, + y: 0.3343664281786784, + z: -0.006191941822007794, + }, + standing_position: [-6.737060070037842, -0.9873790972166436, -3.7159199714660645], + visible_nodes: [3, 4, 5, 6, 7, 21], + }, + { + accessible_nodes: [2, 4, 5], + floor_index: 0, + index: 3, + offset_point_count: 0, + position: [-7.598869800567627, 0.12098900228738785, -3.6834499835968018], + quaternion: { + w: 0.42278603781342505, + x: -0.008404482477004128, + y: -0.9061461339820626, + z: 0.008974141955131276, + }, + standing_position: [-7.598869800567627, -0.9702023875222376, -3.6834499835968018], + visible_nodes: [2, 4, 5], + }, + { + accessible_nodes: [2, 3, 5, 6, 7, 21], + floor_index: 0, + index: 4, + offset_point_count: 0, + position: [-6.857850074768066, 0.12378499656915665, -1.1712199449539185], + quaternion: { + w: -0.992501269310877, + x: 0.0012066433555280736, + y: 0.12211125275827364, + z: -0.0053502961374052305, + }, + standing_position: [-6.857850074768066, -0.9831622155503019, -1.1712199449539185], + visible_nodes: [2, 3, 5, 6, 7, 21], + }, + { + accessible_nodes: [2, 3, 4, 21], + floor_index: 0, + index: 5, + offset_point_count: 0, + position: [-8.352640151977539, 0.12247499823570251, -1.1537599563598633], + quaternion: { + w: 0.6896944830478735, + x: -0.00615455415327963, + y: -0.7240623532609128, + z: 0.004165381214123087, + }, + standing_position: [-8.352640151977539, -0.9775680341375426, -1.1537599563598633], + visible_nodes: [2, 3, 4, 21], + }, + { + accessible_nodes: [2, 4, 7, 8, 21], + floor_index: 0, + index: 6, + offset_point_count: 0, + position: [-6.7775797843933105, 0.1237810030579567, -5.704460144042969], + quaternion: { + w: -0.44727637228049766, + x: -0.002180839488805842, + y: -0.8943931189753669, + z: -0.00022629349193712547, + }, + standing_position: [-6.7775797843933105, -0.9822310560148941, -5.704460144042969], + visible_nodes: [2, 4, 7, 8, 21], + }, + { + accessible_nodes: [2, 4, 6, 8, 21], + floor_index: 0, + index: 7, + offset_point_count: 0, + position: [-7.016570091247559, 0.11614599823951721, -6.997330188751221], + quaternion: { + w: 0.05492524321630398, + x: -0.006829306546339749, + y: -0.9984617546729309, + z: 0.0032718110405271553, + }, + standing_position: [-7.016570091247559, -0.9878173111426478, -6.997330188751221], + visible_nodes: [2, 4, 6, 8, 21], + }, + { + accessible_nodes: [6, 7, 20], + floor_index: 0, + index: 8, + offset_point_count: 0, + position: [-8.008079528808594, 0.11890800297260284, -5.73015022277832], + quaternion: { + w: 0.6336344383818164, + x: -0.0035240838138852694, + y: -0.7736036165617954, + z: 0.005694060911341164, + }, + standing_position: [-8.008079528808594, -0.984209678597362, -5.73015022277832], + visible_nodes: [6, 7, 20], + }, + { + accessible_nodes: [10, 11, 20], + floor_index: 0, + index: 9, + offset_point_count: 0, + position: [-5.07666015625, 0.11109299957752228, -5.778870105743408], + quaternion: { + w: -0.39325898959102107, + x: -0.005958671931531324, + y: -0.9194079865036345, + z: -0.0009051374720786617, + }, + standing_position: [-5.07666015625, -0.9976505428719273, -5.778870105743408], + visible_nodes: [10, 11, 20], + }, + { + accessible_nodes: [9, 20], + floor_index: 0, + index: 10, + offset_point_count: 0, + position: [-5.0661301612854, 0.1213729977607727, -7.389880180358887], + quaternion: { + w: -0.3420897453640438, + x: -0.004854904318265224, + y: -0.9396454739092736, + z: -0.004174093111379828, + }, + standing_position: [-5.0661301612854, -0.9948975137917149, -7.389880180358887], + visible_nodes: [9, 20], + }, + { + accessible_nodes: [9, 12, 13, 14, 19, 27], + floor_index: 0, + index: 11, + offset_point_count: 0, + position: [-3.743489980697632, 0.1197889968752861, -3.7695701122283936], + quaternion: { + w: -0.9421902316482446, + x: -0.0019400713050158043, + y: 0.3350177623387762, + z: -0.00607475606978466, + }, + standing_position: [-3.743489980697632, -0.9837309079757395, -3.7695701122283936], + visible_nodes: [9, 12, 13, 14, 19, 27], + }, + { + accessible_nodes: [11, 13, 14, 19, 27], + floor_index: 0, + index: 12, + offset_point_count: 0, + position: [-3.736920118331909, 0.12255199998617172, -1.1531200408935547], + quaternion: { + w: -0.5874378400218256, + x: -0.0032947683975882787, + y: -0.8092595367847827, + z: -0.002219846614758619, + }, + standing_position: [-3.736920118331909, -0.9732066341136898, -1.1531200408935547], + visible_nodes: [11, 13, 14, 19, 27], + }, + { + accessible_nodes: [0, 1, 11, 12, 14, 19, 27], + floor_index: 0, + index: 13, + offset_point_count: 0, + position: [-4.9778900146484375, 0.1274770051240921, -0.05687339976429939], + quaternion: { + w: -0.9090344551693744, + x: 0.003340518233534383, + y: 0.41667937600061883, + z: -0.00484620395651298, + }, + standing_position: [-4.9778900146484375, -0.9723607024718839, -0.05687339976429939], + visible_nodes: [0, 1, 11, 12, 14, 19, 27], + }, + { + accessible_nodes: [0, 1, 11, 12, 13, 16, 19, 27], + floor_index: 0, + index: 14, + offset_point_count: 0, + position: [-3.6734399795532227, 0.12632200121879578, 0.04664599895477295], + quaternion: { + w: -0.9580579194352538, + x: -0.000026473042140765638, + y: -0.28649483352155886, + z: -0.006762585421195572, + }, + standing_position: [-3.6734399795532227, -0.9758865460474861, 0.04664599895477295], + visible_nodes: [0, 1, 11, 12, 13, 16, 19, 27], + }, + { + accessible_nodes: [0, 1, 16, 17, 18, 22, 23, 24, 28], + floor_index: 0, + index: 15, + offset_point_count: 0, + position: [-1.9333399534225464, 0.1325259953737259, -1.362779974937439], + quaternion: { + w: -0.9935763993167797, + x: 0.0014192519504207296, + y: -0.11297290281167141, + z: -0.0064071537828790884, + }, + standing_position: [-1.9333399534225464, -0.9708228800227536, -1.362779974937439], + visible_nodes: [0, 1, 16, 17, 18, 22, 23, 24, 28], + }, + { + accessible_nodes: [0, 1, 14, 15, 17, 18, 22, 23, 24, 28], + floor_index: 0, + index: 16, + offset_point_count: 0, + position: [-0.3077259957790375, 0.12647099792957306, -1.2649699449539185], + quaternion: { + w: -0.9999665239810561, + x: 0.0005950400498486608, + y: 0.005698319127607282, + z: -0.005841423028729655, + }, + standing_position: [-0.3077259957790375, -0.9745380972542563, -1.2649699449539185], + visible_nodes: [0, 1, 14, 15, 17, 18, 22, 23, 24, 28], + }, + { + accessible_nodes: [0, 1, 15, 16, 18, 19, 20, 21, 22, 23, 24, 28], + floor_index: 0, + index: 17, + offset_point_count: 0, + position: [-0.6085860133171082, 0.12702900171279907, -4.759890079498291], + quaternion: { + w: -0.6949689292991681, + x: -0.0037145762765238583, + y: -0.7190247287946927, + z: -0.0028026115085182683, + }, + standing_position: [-0.6085860133171082, -0.9811793186895814, -4.759890079498291], + visible_nodes: [0, 1, 15, 16, 18, 19, 20, 21, 22, 23, 24, 28], + }, + { + accessible_nodes: [0, 1, 15, 16, 17, 19, 22, 23, 24, 28], + floor_index: 0, + index: 18, + offset_point_count: 0, + position: [-1.8673399686813354, 0.13419899344444275, -3.5204501152038574], + quaternion: { + w: -0.9050994919916577, + x: 0.0021445196478978826, + y: 0.42517272821860497, + z: -0.004298966606360608, + }, + standing_position: [-1.8673399686813354, -0.9671523354622564, -3.5204501152038574], + visible_nodes: [0, 1, 15, 16, 17, 19, 22, 23, 24, 28], + }, + { + accessible_nodes: [11, 12, 13, 14, 17, 18, 20, 21, 22, 27, 28], + floor_index: 0, + index: 19, + offset_point_count: 0, + position: [-3.7196600437164307, 0.12811000645160675, -4.78249979019165], + quaternion: { + w: -0.0019438009445794694, + x: -0.006090304449861529, + y: -0.9999793393265729, + z: -0.0006827971000012118, + }, + standing_position: [-3.7196600437164307, -0.9810281067067628, -4.78249979019165], + visible_nodes: [11, 12, 13, 14, 17, 18, 20, 21, 22, 27, 28], + }, + { + accessible_nodes: [8, 9, 10, 17, 19, 21, 28], + floor_index: 0, + index: 20, + offset_point_count: 0, + position: [-5.052159786224365, 0.1286340057849884, -4.80355978012085], + quaternion: { + w: -0.02226996690861397, + x: -0.006271478080856288, + y: -0.9997323169661134, + z: 0.000147179616300797, + }, + standing_position: [-5.052159786224365, -0.979669192986464, -4.80355978012085], + visible_nodes: [8, 9, 10, 17, 19, 21, 28], + }, + { + accessible_nodes: [2, 4, 5, 6, 7, 17, 19, 20, 28], + floor_index: 0, + index: 21, + offset_point_count: 0, + position: [-6.701809883117676, 0.1253959983587265, -4.748239994049072], + quaternion: { + w: -0.9981158059161921, + x: 0.0001808914053191754, + y: 0.06118808121586677, + z: -0.004563166448294019, + }, + standing_position: [-6.701809883117676, -0.9816518970133103, -4.748239994049072], + visible_nodes: [2, 4, 5, 6, 7, 17, 19, 20, 28], + }, + { + accessible_nodes: [0, 1, 15, 16, 17, 18, 19, 23, 24, 28], + floor_index: 0, + index: 22, + offset_point_count: 0, + position: [-0.8206380009651184, 0.13027900457382202, -6.680779933929443], + quaternion: { + w: 0.5866915419417053, + x: -0.004998088974174683, + y: -0.8097907572635588, + z: 0.002639947700979356, + }, + standing_position: [-0.8206380009651184, -0.9796744391666852, -6.680779933929443], + visible_nodes: [0, 1, 15, 16, 17, 18, 19, 23, 24, 28], + }, + { + accessible_nodes: [0, 1, 15, 16, 17, 18, 22, 24], + floor_index: 0, + index: 23, + offset_point_count: 0, + position: [-1.1569700241088867, 0.13116399943828583, -7.816689968109131], + quaternion: { + w: -0.8681638565320692, + x: 0.004340951592934706, + y: 0.496235951257098, + z: -0.004747912827472749, + }, + standing_position: [-1.1569700241088867, -0.9757861464577158, -7.816689968109131], + visible_nodes: [0, 1, 15, 16, 17, 18, 22, 24], + }, + { + accessible_nodes: [0, 1, 15, 16, 17, 18, 22, 23, 25, 26], + floor_index: 0, + index: 24, + offset_point_count: 0, + position: [-0.5342689752578735, 0.13173000514507294, -9.410449981689453], + quaternion: { + w: 0.7360407359575015, + x: -0.0036269466061410855, + y: -0.6769092288591223, + z: 0.004979323448038995, + }, + standing_position: [-0.5342689752578735, -0.974006343464543, -9.410449981689453], + visible_nodes: [0, 1, 15, 16, 17, 18, 22, 23, 25, 26], + }, + { + accessible_nodes: [24, 26], + floor_index: 0, + index: 25, + offset_point_count: 0, + position: [-2.3988800048828125, 0.13271799683570862, -9.389780044555664], + quaternion: { + w: -0.9291280778361498, + x: 0.0028158590734279495, + y: 0.369700413578233, + z: -0.005888936736929229, + }, + standing_position: [-2.3988800048828125, -0.9678027469568484, -9.389780044555664], + visible_nodes: [24, 26], + }, + { + accessible_nodes: [24, 25], + floor_index: 0, + index: 26, + offset_point_count: 0, + position: [-1.5571000576019287, 0.13238699734210968, -9.317580223083496], + quaternion: { + w: -0.9469608249104203, + x: 0.0021358925084079276, + y: 0.32129412783897, + z: -0.0055428938123015204, + }, + standing_position: [-1.5571000576019287, -0.9731854814247092, -9.317580223083496], + visible_nodes: [24, 25], + }, + { + accessible_nodes: [11, 12, 13, 14, 19, 28], + floor_index: 0, + index: 27, + offset_point_count: 0, + position: [-4.224259853363037, 0.1266070008277893, -3.2568700313568115], + quaternion: { + w: -0.5009226239451373, + x: -0.0033263233123369406, + y: -0.8654821097187694, + z: 0.0024847720220910977, + }, + standing_position: [-4.224259853363037, -0.983610006355343, -3.2568700313568115], + visible_nodes: [11, 12, 13, 14, 19, 28], + }, + { + accessible_nodes: [0, 1, 15, 16, 17, 18, 19, 20, 21, 22, 27], + floor_index: 0, + index: 28, + offset_point_count: 0, + position: [-2.676539897918701, 0.12914399802684784, -5.205190181732178], + quaternion: { + w: -0.9465335730826713, + x: -0.0002957623442261977, + y: -0.32257757008267024, + z: -0.004221720345430851, + }, + standing_position: [-2.676539897918701, -0.9797102343390065, -5.205190181732178], + visible_nodes: [0, 1, 15, 16, 17, 18, 19, 20, 21, 22, 27], + }, + ], + panorama: { + count: 29, + list: [ + { + back: 'images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_b.jpg', + down: 'images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_d.jpg', + front: 'images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_f.jpg', + index: 0, + left: 'images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_l.jpg', + right: 'images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_u.jpg', + }, + { + back: 'images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_b.jpg', + down: 'images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_d.jpg', + front: 'images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_f.jpg', + index: 1, + left: 'images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_l.jpg', + right: 'images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_u.jpg', + }, + { + back: 'images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_b.jpg', + down: 'images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_d.jpg', + front: 'images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_f.jpg', + index: 2, + left: 'images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_l.jpg', + right: 'images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_u.jpg', + }, + { + back: 'images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_b.jpg', + down: 'images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_d.jpg', + front: 'images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_f.jpg', + index: 3, + left: 'images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_l.jpg', + right: 'images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_u.jpg', + }, + { + back: 'images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_b.jpg', + down: 'images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_d.jpg', + front: 'images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_f.jpg', + index: 4, + left: 'images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_l.jpg', + right: 'images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_u.jpg', + }, + { + back: 'images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_b.jpg', + down: 'images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_d.jpg', + front: 'images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_f.jpg', + index: 5, + left: 'images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_l.jpg', + right: 'images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_u.jpg', + }, + { + back: 'images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_b.jpg', + down: 'images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_d.jpg', + front: 'images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_f.jpg', + index: 6, + left: 'images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_l.jpg', + right: 'images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_u.jpg', + }, + { + back: 'images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_b.jpg', + down: 'images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_d.jpg', + front: 'images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_f.jpg', + index: 7, + left: 'images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_l.jpg', + right: 'images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_u.jpg', + }, + { + back: 'images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_b.jpg', + down: 'images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_d.jpg', + front: 'images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_f.jpg', + index: 8, + left: 'images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_l.jpg', + right: 'images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_u.jpg', + }, + { + back: 'images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_b_fixed_20220114.jpg', + down: 'images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_d_fixed_20220114.jpg', + front: 'images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_f_fixed_20220114.jpg', + index: 9, + left: 'images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_l_fixed_20220114.jpg', + right: 'images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_r_fixed_20220114.jpg', + tiles: [1, 2], + up: 'images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_u_fixed_20220114.jpg', + }, + { + back: 'images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_b.jpg', + down: 'images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_d.jpg', + front: 'images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_f.jpg', + index: 10, + left: 'images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_l.jpg', + right: 'images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_u.jpg', + }, + { + back: 'images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_b.jpg', + down: 'images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_d.jpg', + front: 'images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_f.jpg', + index: 11, + left: 'images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_l.jpg', + right: 'images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_u.jpg', + }, + { + back: 'images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_b.jpg', + down: 'images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_d.jpg', + front: 'images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_f.jpg', + index: 12, + left: 'images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_l.jpg', + right: 'images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_u.jpg', + }, + { + back: 'images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_b_fixed_20220114.jpg', + down: 'images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_d_fixed_20220114.jpg', + front: 'images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_f_fixed_20220114.jpg', + index: 13, + left: 'images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_l_fixed_20220114.jpg', + right: 'images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_r_fixed_20220114.jpg', + tiles: [1, 2], + up: 'images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_u_fixed_20220114.jpg', + }, + { + back: 'images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_b.jpg', + down: 'images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_d.jpg', + front: 'images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_f.jpg', + index: 14, + left: 'images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_l.jpg', + right: 'images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_u.jpg', + }, + { + back: 'images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_b.jpg', + down: 'images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_d.jpg', + front: 'images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_f.jpg', + index: 15, + left: 'images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_l.jpg', + right: 'images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_u.jpg', + }, + { + back: 'images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_b.jpg', + down: 'images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_d.jpg', + front: 'images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_f.jpg', + index: 16, + left: 'images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_l.jpg', + right: 'images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_u.jpg', + }, + { + back: 'images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_b.jpg', + down: 'images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_d.jpg', + front: 'images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_f.jpg', + index: 17, + left: 'images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_l.jpg', + right: 'images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_u.jpg', + }, + { + back: 'images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_b.jpg', + down: 'images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_d.jpg', + front: 'images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_f.jpg', + index: 18, + left: 'images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_l.jpg', + right: 'images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_u.jpg', + }, + { + back: 'images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_b.jpg', + down: 'images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_d.jpg', + front: 'images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_f.jpg', + index: 19, + left: 'images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_l.jpg', + right: 'images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_u.jpg', + }, + { + back: 'images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_b.jpg', + down: 'images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_d.jpg', + front: 'images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_f.jpg', + index: 20, + left: 'images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_l.jpg', + right: 'images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_u.jpg', + }, + { + back: 'images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_b.jpg', + down: 'images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_d.jpg', + front: 'images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_f.jpg', + index: 21, + left: 'images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_l.jpg', + right: 'images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_u.jpg', + }, + { + back: 'images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_b_fixed_20220114.jpg', + down: 'images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_d_fixed_20220114.jpg', + front: 'images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_f_fixed_20220114.jpg', + index: 22, + left: 'images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_l_fixed_20220114.jpg', + right: 'images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_r_fixed_20220114.jpg', + tiles: [1, 2], + up: 'images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_u_fixed_20220114.jpg', + }, + { + back: 'images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_b.jpg', + down: 'images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_d.jpg', + front: 'images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_f.jpg', + index: 23, + left: 'images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_l.jpg', + right: 'images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_u.jpg', + }, + { + back: 'images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_b.jpg', + down: 'images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_d.jpg', + front: 'images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_f.jpg', + index: 24, + left: 'images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_l.jpg', + right: 'images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_u.jpg', + }, + { + back: 'images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_b.jpg', + down: 'images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_d.jpg', + front: 'images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_f.jpg', + index: 25, + left: 'images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_l.jpg', + right: 'images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_u.jpg', + }, + { + back: 'images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_b.jpg', + down: 'images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_d.jpg', + front: 'images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_f.jpg', + index: 26, + left: 'images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_l.jpg', + right: 'images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_u.jpg', + }, + { + back: 'images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_b.jpg', + down: 'images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_d.jpg', + front: 'images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_f.jpg', + index: 27, + left: 'images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_l.jpg', + right: 'images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_u.jpg', + }, + { + back: 'images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_b.jpg', + down: 'images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_d.jpg', + front: 'images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_f.jpg', + index: 28, + left: 'images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_l.jpg', + right: 'images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_u.jpg', + }, + ], + }, + picture_url: + 'https://vrlab-public.ljcdn.com/release/auto3dhd/6e4139a4069b6a7276215f042e329ed3/screenshot/1635386458_17/pc0_VxiyXfdQV.jpg', + title_picture_url: + 'https://vrlab-public.ljcdn.com/release/auto3dhd/6e4139a4069b6a7276215f042e329ed3/screenshot/1635386458_17/pc1_OkthsSDss_1.jpg', + vr_code: '80o2183onbPJ4DwKvy', + vr_type: 'reality', +} diff --git a/open-works/real/80o2183onbPJ4DwKvy/work.json b/open-works/real/80o2183onbPJ4DwKvy/work.json new file mode 100644 index 000000000..3b7ebae7a --- /dev/null +++ b/open-works/real/80o2183onbPJ4DwKvy/work.json @@ -0,0 +1,767 @@ +{ + "_signature": "puklHDfQKWfB+QrmZ2QoUtZ5dy9UHqfqTd4NDmcobN9QVyNpq1n30hWVuV6sr8FDHCYDeVDUj4rSpgFjrML15Dk/eKDGHK2ivKcDRyHjpFY+geVxkH3FyG2sRACkEsx4XsIJIPQPbPIM+vG061nAb1ubU3FwyGEidy/emnJKF24=", + "allow_hosts": [ + "realsee.com", + "realsee.cn", + "rushivr.com", + "rushivr.cn", + "system-open-c-9getw0dy659f6aa9-1304125667.ap-shanghai.app.tcloudbase.com", + "test-system-rd-7g169jr0a1c8ade2-1304125667.ap-shanghai.app.tcloudbase.com" + ], + "base_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/6e4139a4069b6a7276215f042e329ed3/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2021-10-28T16:27:15+08:00", + "expire_at": "1658464765677", + "initial": { + "flag_position": [], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 2.6173753829485413, + "pano": 17, + "pano_index": 17 + }, + "model": { + "file_url": "model/auto3d-nTEw78783bRCU3rvItSQZU.at3d", + "material_base_url": "materials/", + "material_textures": ["texture_0.jpg", "texture_1.jpg", "texture_2.jpg"], + "modify_time": "2022-01-13T21:22:40+08:00", + "type": 0 + }, + "observers": [ + { + "accessible_nodes": [1, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28], + "floor_index": 0, + "index": 0, + "offset_point_count": 0, + "position": [-0.8072410225868225, 0.12546899914741516, -0.14347800612449646], + "quaternion": { + "w": -0.954886013438399, + "x": 0.0023224658249839003, + "y": 0.29686665790977657, + "z": -0.007581373540636733 + }, + "standing_position": [-0.8072410225868225, -0.9761697048439075, -0.14347800612449646], + "visible_nodes": [1, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28] + }, + { + "accessible_nodes": [0, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28], + "floor_index": 0, + "index": 1, + "offset_point_count": 0, + "position": [-2.176959991455078, 0.12378399819135666, 0.04013340175151825], + "quaternion": { + "w": -0.18761379582826934, + "x": -0.005586619907342985, + "y": -0.9822265324618187, + "z": 0.0009405635233819157 + }, + "standing_position": [-2.176959991455078, -0.9786253050806883, 0.04013340175151825], + "visible_nodes": [0, 13, 14, 15, 16, 17, 18, 22, 23, 24, 28] + }, + { + "accessible_nodes": [3, 4, 5, 6, 7, 21], + "floor_index": 0, + "index": 2, + "offset_point_count": 0, + "position": [-6.737060070037842, 0.11766300350427628, -3.7159199714660645], + "quaternion": { + "w": -0.9424226584435601, + "x": 0.0005208986052485072, + "y": 0.3343664281786784, + "z": -0.006191941822007794 + }, + "standing_position": [-6.737060070037842, -0.9873790972166436, -3.7159199714660645], + "visible_nodes": [3, 4, 5, 6, 7, 21] + }, + { + "accessible_nodes": [2, 4, 5], + "floor_index": 0, + "index": 3, + "offset_point_count": 0, + "position": [-7.598869800567627, 0.12098900228738785, -3.6834499835968018], + "quaternion": { + "w": 0.42278603781342505, + "x": -0.008404482477004128, + "y": -0.9061461339820626, + "z": 0.008974141955131276 + }, + "standing_position": [-7.598869800567627, -0.9702023875222376, -3.6834499835968018], + "visible_nodes": [2, 4, 5] + }, + { + "accessible_nodes": [2, 3, 5, 6, 7, 21], + "floor_index": 0, + "index": 4, + "offset_point_count": 0, + "position": [-6.857850074768066, 0.12378499656915665, -1.1712199449539185], + "quaternion": { + "w": -0.992501269310877, + "x": 0.0012066433555280736, + "y": 0.12211125275827364, + "z": -0.0053502961374052305 + }, + "standing_position": [-6.857850074768066, -0.9831622155503019, -1.1712199449539185], + "visible_nodes": [2, 3, 5, 6, 7, 21] + }, + { + "accessible_nodes": [2, 3, 4, 21], + "floor_index": 0, + "index": 5, + "offset_point_count": 0, + "position": [-8.352640151977539, 0.12247499823570251, -1.1537599563598633], + "quaternion": { + "w": 0.6896944830478735, + "x": -0.00615455415327963, + "y": -0.7240623532609128, + "z": 0.004165381214123087 + }, + "standing_position": [-8.352640151977539, -0.9775680341375426, -1.1537599563598633], + "visible_nodes": [2, 3, 4, 21] + }, + { + "accessible_nodes": [2, 4, 7, 8, 21], + "floor_index": 0, + "index": 6, + "offset_point_count": 0, + "position": [-6.7775797843933105, 0.1237810030579567, -5.704460144042969], + "quaternion": { + "w": -0.44727637228049766, + "x": -0.002180839488805842, + "y": -0.8943931189753669, + "z": -0.00022629349193712547 + }, + "standing_position": [-6.7775797843933105, -0.9822310560148941, -5.704460144042969], + "visible_nodes": [2, 4, 7, 8, 21] + }, + { + "accessible_nodes": [2, 4, 6, 8, 21], + "floor_index": 0, + "index": 7, + "offset_point_count": 0, + "position": [-7.016570091247559, 0.11614599823951721, -6.997330188751221], + "quaternion": { + "w": 0.05492524321630398, + "x": -0.006829306546339749, + "y": -0.9984617546729309, + "z": 0.0032718110405271553 + }, + "standing_position": [-7.016570091247559, -0.9878173111426478, -6.997330188751221], + "visible_nodes": [2, 4, 6, 8, 21] + }, + { + "accessible_nodes": [6, 7, 20], + "floor_index": 0, + "index": 8, + "offset_point_count": 0, + "position": [-8.008079528808594, 0.11890800297260284, -5.73015022277832], + "quaternion": { + "w": 0.6336344383818164, + "x": -0.0035240838138852694, + "y": -0.7736036165617954, + "z": 0.005694060911341164 + }, + "standing_position": [-8.008079528808594, -0.984209678597362, -5.73015022277832], + "visible_nodes": [6, 7, 20] + }, + { + "accessible_nodes": [10, 11, 20], + "floor_index": 0, + "index": 9, + "offset_point_count": 0, + "position": [-5.07666015625, 0.11109299957752228, -5.778870105743408], + "quaternion": { + "w": -0.39325898959102107, + "x": -0.005958671931531324, + "y": -0.9194079865036345, + "z": -0.0009051374720786617 + }, + "standing_position": [-5.07666015625, -0.9976505428719273, -5.778870105743408], + "visible_nodes": [10, 11, 20] + }, + { + "accessible_nodes": [9, 20], + "floor_index": 0, + "index": 10, + "offset_point_count": 0, + "position": [-5.0661301612854, 0.1213729977607727, -7.389880180358887], + "quaternion": { + "w": -0.3420897453640438, + "x": -0.004854904318265224, + "y": -0.9396454739092736, + "z": -0.004174093111379828 + }, + "standing_position": [-5.0661301612854, -0.9948975137917149, -7.389880180358887], + "visible_nodes": [9, 20] + }, + { + "accessible_nodes": [9, 12, 13, 14, 19, 27], + "floor_index": 0, + "index": 11, + "offset_point_count": 0, + "position": [-3.743489980697632, 0.1197889968752861, -3.7695701122283936], + "quaternion": { + "w": -0.9421902316482446, + "x": -0.0019400713050158043, + "y": 0.3350177623387762, + "z": -0.00607475606978466 + }, + "standing_position": [-3.743489980697632, -0.9837309079757395, -3.7695701122283936], + "visible_nodes": [9, 12, 13, 14, 19, 27] + }, + { + "accessible_nodes": [11, 13, 14, 19, 27], + "floor_index": 0, + "index": 12, + "offset_point_count": 0, + "position": [-3.736920118331909, 0.12255199998617172, -1.1531200408935547], + "quaternion": { + "w": -0.5874378400218256, + "x": -0.0032947683975882787, + "y": -0.8092595367847827, + "z": -0.002219846614758619 + }, + "standing_position": [-3.736920118331909, -0.9732066341136898, -1.1531200408935547], + "visible_nodes": [11, 13, 14, 19, 27] + }, + { + "accessible_nodes": [0, 1, 11, 12, 14, 19, 27], + "floor_index": 0, + "index": 13, + "offset_point_count": 0, + "position": [-4.9778900146484375, 0.1274770051240921, -0.05687339976429939], + "quaternion": { + "w": -0.9090344551693744, + "x": 0.003340518233534383, + "y": 0.41667937600061883, + "z": -0.00484620395651298 + }, + "standing_position": [-4.9778900146484375, -0.9723607024718839, -0.05687339976429939], + "visible_nodes": [0, 1, 11, 12, 14, 19, 27] + }, + { + "accessible_nodes": [0, 1, 11, 12, 13, 16, 19, 27], + "floor_index": 0, + "index": 14, + "offset_point_count": 0, + "position": [-3.6734399795532227, 0.12632200121879578, 0.04664599895477295], + "quaternion": { + "w": -0.9580579194352538, + "x": -0.000026473042140765638, + "y": -0.28649483352155886, + "z": -0.006762585421195572 + }, + "standing_position": [-3.6734399795532227, -0.9758865460474861, 0.04664599895477295], + "visible_nodes": [0, 1, 11, 12, 13, 16, 19, 27] + }, + { + "accessible_nodes": [0, 1, 16, 17, 18, 22, 23, 24, 28], + "floor_index": 0, + "index": 15, + "offset_point_count": 0, + "position": [-1.9333399534225464, 0.1325259953737259, -1.362779974937439], + "quaternion": { + "w": -0.9935763993167797, + "x": 0.0014192519504207296, + "y": -0.11297290281167141, + "z": -0.0064071537828790884 + }, + "standing_position": [-1.9333399534225464, -0.9708228800227536, -1.362779974937439], + "visible_nodes": [0, 1, 16, 17, 18, 22, 23, 24, 28] + }, + { + "accessible_nodes": [0, 1, 14, 15, 17, 18, 22, 23, 24, 28], + "floor_index": 0, + "index": 16, + "offset_point_count": 0, + "position": [-0.3077259957790375, 0.12647099792957306, -1.2649699449539185], + "quaternion": { + "w": -0.9999665239810561, + "x": 0.0005950400498486608, + "y": 0.005698319127607282, + "z": -0.005841423028729655 + }, + "standing_position": [-0.3077259957790375, -0.9745380972542563, -1.2649699449539185], + "visible_nodes": [0, 1, 14, 15, 17, 18, 22, 23, 24, 28] + }, + { + "accessible_nodes": [0, 1, 15, 16, 18, 19, 20, 21, 22, 23, 24, 28], + "floor_index": 0, + "index": 17, + "offset_point_count": 0, + "position": [-0.6085860133171082, 0.12702900171279907, -4.759890079498291], + "quaternion": { + "w": -0.6949689292991681, + "x": -0.0037145762765238583, + "y": -0.7190247287946927, + "z": -0.0028026115085182683 + }, + "standing_position": [-0.6085860133171082, -0.9811793186895814, -4.759890079498291], + "visible_nodes": [0, 1, 15, 16, 18, 19, 20, 21, 22, 23, 24, 28] + }, + { + "accessible_nodes": [0, 1, 15, 16, 17, 19, 22, 23, 24, 28], + "floor_index": 0, + "index": 18, + "offset_point_count": 0, + "position": [-1.8673399686813354, 0.13419899344444275, -3.5204501152038574], + "quaternion": { + "w": -0.9050994919916577, + "x": 0.0021445196478978826, + "y": 0.42517272821860497, + "z": -0.004298966606360608 + }, + "standing_position": [-1.8673399686813354, -0.9671523354622564, -3.5204501152038574], + "visible_nodes": [0, 1, 15, 16, 17, 19, 22, 23, 24, 28] + }, + { + "accessible_nodes": [11, 12, 13, 14, 17, 18, 20, 21, 22, 27, 28], + "floor_index": 0, + "index": 19, + "offset_point_count": 0, + "position": [-3.7196600437164307, 0.12811000645160675, -4.78249979019165], + "quaternion": { + "w": -0.0019438009445794694, + "x": -0.006090304449861529, + "y": -0.9999793393265729, + "z": -0.0006827971000012118 + }, + "standing_position": [-3.7196600437164307, -0.9810281067067628, -4.78249979019165], + "visible_nodes": [11, 12, 13, 14, 17, 18, 20, 21, 22, 27, 28] + }, + { + "accessible_nodes": [8, 9, 10, 17, 19, 21, 28], + "floor_index": 0, + "index": 20, + "offset_point_count": 0, + "position": [-5.052159786224365, 0.1286340057849884, -4.80355978012085], + "quaternion": { + "w": -0.02226996690861397, + "x": -0.006271478080856288, + "y": -0.9997323169661134, + "z": 0.000147179616300797 + }, + "standing_position": [-5.052159786224365, -0.979669192986464, -4.80355978012085], + "visible_nodes": [8, 9, 10, 17, 19, 21, 28] + }, + { + "accessible_nodes": [2, 4, 5, 6, 7, 17, 19, 20, 28], + "floor_index": 0, + "index": 21, + "offset_point_count": 0, + "position": [-6.701809883117676, 0.1253959983587265, -4.748239994049072], + "quaternion": { + "w": -0.9981158059161921, + "x": 0.0001808914053191754, + "y": 0.06118808121586677, + "z": -0.004563166448294019 + }, + "standing_position": [-6.701809883117676, -0.9816518970133103, -4.748239994049072], + "visible_nodes": [2, 4, 5, 6, 7, 17, 19, 20, 28] + }, + { + "accessible_nodes": [0, 1, 15, 16, 17, 18, 19, 23, 24, 28], + "floor_index": 0, + "index": 22, + "offset_point_count": 0, + "position": [-0.8206380009651184, 0.13027900457382202, -6.680779933929443], + "quaternion": { + "w": 0.5866915419417053, + "x": -0.004998088974174683, + "y": -0.8097907572635588, + "z": 0.002639947700979356 + }, + "standing_position": [-0.8206380009651184, -0.9796744391666852, -6.680779933929443], + "visible_nodes": [0, 1, 15, 16, 17, 18, 19, 23, 24, 28] + }, + { + "accessible_nodes": [0, 1, 15, 16, 17, 18, 22, 24], + "floor_index": 0, + "index": 23, + "offset_point_count": 0, + "position": [-1.1569700241088867, 0.13116399943828583, -7.816689968109131], + "quaternion": { + "w": -0.8681638565320692, + "x": 0.004340951592934706, + "y": 0.496235951257098, + "z": -0.004747912827472749 + }, + "standing_position": [-1.1569700241088867, -0.9757861464577158, -7.816689968109131], + "visible_nodes": [0, 1, 15, 16, 17, 18, 22, 24] + }, + { + "accessible_nodes": [0, 1, 15, 16, 17, 18, 22, 23, 25, 26], + "floor_index": 0, + "index": 24, + "offset_point_count": 0, + "position": [-0.5342689752578735, 0.13173000514507294, -9.410449981689453], + "quaternion": { + "w": 0.7360407359575015, + "x": -0.0036269466061410855, + "y": -0.6769092288591223, + "z": 0.004979323448038995 + }, + "standing_position": [-0.5342689752578735, -0.974006343464543, -9.410449981689453], + "visible_nodes": [0, 1, 15, 16, 17, 18, 22, 23, 25, 26] + }, + { + "accessible_nodes": [24, 26], + "floor_index": 0, + "index": 25, + "offset_point_count": 0, + "position": [-2.3988800048828125, 0.13271799683570862, -9.389780044555664], + "quaternion": { + "w": -0.9291280778361498, + "x": 0.0028158590734279495, + "y": 0.369700413578233, + "z": -0.005888936736929229 + }, + "standing_position": [-2.3988800048828125, -0.9678027469568484, -9.389780044555664], + "visible_nodes": [24, 26] + }, + { + "accessible_nodes": [24, 25], + "floor_index": 0, + "index": 26, + "offset_point_count": 0, + "position": [-1.5571000576019287, 0.13238699734210968, -9.317580223083496], + "quaternion": { + "w": -0.9469608249104203, + "x": 0.0021358925084079276, + "y": 0.32129412783897, + "z": -0.0055428938123015204 + }, + "standing_position": [-1.5571000576019287, -0.9731854814247092, -9.317580223083496], + "visible_nodes": [24, 25] + }, + { + "accessible_nodes": [11, 12, 13, 14, 19, 28], + "floor_index": 0, + "index": 27, + "offset_point_count": 0, + "position": [-4.224259853363037, 0.1266070008277893, -3.2568700313568115], + "quaternion": { + "w": -0.5009226239451373, + "x": -0.0033263233123369406, + "y": -0.8654821097187694, + "z": 0.0024847720220910977 + }, + "standing_position": [-4.224259853363037, -0.983610006355343, -3.2568700313568115], + "visible_nodes": [11, 12, 13, 14, 19, 28] + }, + { + "accessible_nodes": [0, 1, 15, 16, 17, 18, 19, 20, 21, 22, 27], + "floor_index": 0, + "index": 28, + "offset_point_count": 0, + "position": [-2.676539897918701, 0.12914399802684784, -5.205190181732178], + "quaternion": { + "w": -0.9465335730826713, + "x": -0.0002957623442261977, + "y": -0.32257757008267024, + "z": -0.004221720345430851 + }, + "standing_position": [-2.676539897918701, -0.9797102343390065, -5.205190181732178], + "visible_nodes": [0, 1, 15, 16, 17, 18, 19, 20, 21, 22, 27] + } + ], + "panorama": { + "count": 29, + "list": [ + { + "back": "images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_b.jpg", + "down": "images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_d.jpg", + "front": "images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_f.jpg", + "index": 0, + "left": "images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_l.jpg", + "right": "images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/0/a179b9f36dd4b7f1f6a19fa3785d9b53/0_u.jpg" + }, + { + "back": "images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_b.jpg", + "down": "images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_d.jpg", + "front": "images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_f.jpg", + "index": 1, + "left": "images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_l.jpg", + "right": "images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/1/15380d48086a682af57330cc14b10e67/1_u.jpg" + }, + { + "back": "images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_b.jpg", + "down": "images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_d.jpg", + "front": "images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_f.jpg", + "index": 2, + "left": "images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_l.jpg", + "right": "images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/2/764f385a5ac31dcd23aa971a39a1ceb0/2_u.jpg" + }, + { + "back": "images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_b.jpg", + "down": "images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_d.jpg", + "front": "images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_f.jpg", + "index": 3, + "left": "images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_l.jpg", + "right": "images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/3/d44fc070b419f247b6dd0cf20c988fc6/3_u.jpg" + }, + { + "back": "images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_b.jpg", + "down": "images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_d.jpg", + "front": "images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_f.jpg", + "index": 4, + "left": "images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_l.jpg", + "right": "images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/4/7eb4320a2776899228bf4069170e9832/4_u.jpg" + }, + { + "back": "images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_b.jpg", + "down": "images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_d.jpg", + "front": "images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_f.jpg", + "index": 5, + "left": "images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_l.jpg", + "right": "images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/5/98e78f12cf68aaffc333c7f898bb46dc/5_u.jpg" + }, + { + "back": "images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_b.jpg", + "down": "images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_d.jpg", + "front": "images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_f.jpg", + "index": 6, + "left": "images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_l.jpg", + "right": "images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/6/81136d9b3b870606d670bef33bdfc973/6_u.jpg" + }, + { + "back": "images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_b.jpg", + "down": "images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_d.jpg", + "front": "images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_f.jpg", + "index": 7, + "left": "images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_l.jpg", + "right": "images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/7/6b0f92a55ad7d2390a1367d431498b92/7_u.jpg" + }, + { + "back": "images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_b.jpg", + "down": "images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_d.jpg", + "front": "images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_f.jpg", + "index": 8, + "left": "images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_l.jpg", + "right": "images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/8/a642f41196f6616886070c5cb1ba9801/8_u.jpg" + }, + { + "back": "images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_b_fixed_20220114.jpg", + "down": "images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_d_fixed_20220114.jpg", + "front": "images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_f_fixed_20220114.jpg", + "index": 9, + "left": "images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_l_fixed_20220114.jpg", + "right": "images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_r_fixed_20220114.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/9/e086ec2b3908c2a75582d04196b9a0bf/9_u_fixed_20220114.jpg" + }, + { + "back": "images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_b.jpg", + "down": "images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_d.jpg", + "front": "images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_f.jpg", + "index": 10, + "left": "images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_l.jpg", + "right": "images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/10/eb60a11b90943c33ae29f8dfcb75dbad/10_u.jpg" + }, + { + "back": "images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_b.jpg", + "down": "images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_d.jpg", + "front": "images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_f.jpg", + "index": 11, + "left": "images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_l.jpg", + "right": "images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/11/2fc04fcfa75a6b2c7a0aecdd070e9d2d/11_u.jpg" + }, + { + "back": "images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_b.jpg", + "down": "images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_d.jpg", + "front": "images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_f.jpg", + "index": 12, + "left": "images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_l.jpg", + "right": "images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/12/0f9cb7be02fbcabaf6bc76c1354f7fc5/12_u.jpg" + }, + { + "back": "images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_b_fixed_20220114.jpg", + "down": "images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_d_fixed_20220114.jpg", + "front": "images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_f_fixed_20220114.jpg", + "index": 13, + "left": "images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_l_fixed_20220114.jpg", + "right": "images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_r_fixed_20220114.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/13/3006a4d3988e06500b798a6464e77010/13_u_fixed_20220114.jpg" + }, + { + "back": "images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_b.jpg", + "down": "images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_d.jpg", + "front": "images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_f.jpg", + "index": 14, + "left": "images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_l.jpg", + "right": "images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/14/a9b68135c1fe1caeb369180b1153fffe/14_u.jpg" + }, + { + "back": "images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_b.jpg", + "down": "images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_d.jpg", + "front": "images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_f.jpg", + "index": 15, + "left": "images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_l.jpg", + "right": "images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/15/89bc2d24082717a1024f832a1dd92c08/15_u.jpg" + }, + { + "back": "images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_b.jpg", + "down": "images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_d.jpg", + "front": "images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_f.jpg", + "index": 16, + "left": "images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_l.jpg", + "right": "images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/16/969e4811c2bfaf954c9908aad4911846/16_u.jpg" + }, + { + "back": "images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_b.jpg", + "down": "images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_d.jpg", + "front": "images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_f.jpg", + "index": 17, + "left": "images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_l.jpg", + "right": "images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/17/55971f18c5ad59c66da9208966fb14d2/17_u.jpg" + }, + { + "back": "images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_b.jpg", + "down": "images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_d.jpg", + "front": "images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_f.jpg", + "index": 18, + "left": "images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_l.jpg", + "right": "images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/18/a88e6a97f6d6c15d8347cbbae8e1025e/18_u.jpg" + }, + { + "back": "images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_b.jpg", + "down": "images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_d.jpg", + "front": "images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_f.jpg", + "index": 19, + "left": "images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_l.jpg", + "right": "images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/19/a570358dc381e89bd085a5c5cd015077/19_u.jpg" + }, + { + "back": "images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_b.jpg", + "down": "images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_d.jpg", + "front": "images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_f.jpg", + "index": 20, + "left": "images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_l.jpg", + "right": "images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/20/9794bd17267cef132654ae1542e82e88/20_u.jpg" + }, + { + "back": "images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_b.jpg", + "down": "images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_d.jpg", + "front": "images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_f.jpg", + "index": 21, + "left": "images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_l.jpg", + "right": "images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/21/4024409782aef5a67a170dd0c86b3e22/21_u.jpg" + }, + { + "back": "images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_b_fixed_20220114.jpg", + "down": "images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_d_fixed_20220114.jpg", + "front": "images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_f_fixed_20220114.jpg", + "index": 22, + "left": "images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_l_fixed_20220114.jpg", + "right": "images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_r_fixed_20220114.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/22/0d5f880a5d0f1fcf9af8943adbb4d88e/22_u_fixed_20220114.jpg" + }, + { + "back": "images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_b.jpg", + "down": "images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_d.jpg", + "front": "images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_f.jpg", + "index": 23, + "left": "images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_l.jpg", + "right": "images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/23/5e8ba937e3b6bbc587b15c072cddf044/23_u.jpg" + }, + { + "back": "images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_b.jpg", + "down": "images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_d.jpg", + "front": "images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_f.jpg", + "index": 24, + "left": "images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_l.jpg", + "right": "images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/24/3ed84f7f803d13d99ec6c0634de8052f/24_u.jpg" + }, + { + "back": "images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_b.jpg", + "down": "images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_d.jpg", + "front": "images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_f.jpg", + "index": 25, + "left": "images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_l.jpg", + "right": "images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/25/e31c02241158e0ec145024ebaa82c52d/25_u.jpg" + }, + { + "back": "images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_b.jpg", + "down": "images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_d.jpg", + "front": "images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_f.jpg", + "index": 26, + "left": "images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_l.jpg", + "right": "images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/26/7d08dbae24032c246ad16c09b68ec7a6/26_u.jpg" + }, + { + "back": "images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_b.jpg", + "down": "images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_d.jpg", + "front": "images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_f.jpg", + "index": 27, + "left": "images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_l.jpg", + "right": "images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/27/2fb8807a098a744bbe2d69a38a4f6bbe/27_u.jpg" + }, + { + "back": "images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_b.jpg", + "down": "images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_d.jpg", + "front": "images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_f.jpg", + "index": 28, + "left": "images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_l.jpg", + "right": "images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/28/fad9525b0e5e875be72a08ca61dff62b/28_u.jpg" + } + ] + }, + "picture_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/6e4139a4069b6a7276215f042e329ed3/screenshot/1635386458_17/pc0_VxiyXfdQV.jpg", + "title_picture_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/6e4139a4069b6a7276215f042e329ed3/screenshot/1635386458_17/pc1_OkthsSDss_1.jpg", + "vr_code": "80o2183onbPJ4DwKvy", + "vr_type": "reality" +} diff --git a/open-works/real/Qw55QdEk/work.json b/open-works/real/Qw55QdEk/work.json new file mode 100644 index 000000000..4c0483fba --- /dev/null +++ b/open-works/real/Qw55QdEk/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"MHeuBzuEISl4uAxvsSyKPGY3PUiYx0CgBM1/Q55B/gduPals2p2ps5ir5HbvQXCYbAVMy2COVmNygObh8ovxkcSHu7usEYCZswei94tUH7WPmv3+WO09JvKH+o5xlBOIAIV2KzjzxoV9zx7tkCsw019s6XTnbBJfTWenYJ/e+eQ=\",\"allow_hosts\":[\"share.3dvr.pro\",\"rsvr.cn\",\"realsee.com\",\"realsee.cn\",\"rushivr.cn\",\"rushivr.com\"],\"base_url\":\"//vr-public.realsee-cdn.cn\",\"basic_code\":\"80LbGJ9ZjvgQe9P0go\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-07-21 16:29:03\",\"expire_at\":\"1721895937545\",\"from_type\":\"poincare\",\"initial\":{\"distance\":21.459263733874934,\"fov\":60,\"heading\":0,\"latitude\":0.7853981633974483,\"longitude\":0.7853981633974483,\"mode\":\"Mapview\",\"offset\":{\"x\":-4,\"y\":2.5,\"z\":-3},\"panoIndex\":0,\"pano_index\":0,\"workCode\":\"5DyMyjk6q6c1E63F9D\"},\"is_active\":true,\"model\":{\"file_url\":\"\",\"layers\":[{\"name\":\"poincare\",\"tileset_url\":\"https://vrlab-public.ljcdn.com/release/poincare/f186482a90a015505936ba8afaa96ed3/point_cloud/78163fd18f522a965468cc63d2bbca7d/tileset.json\",\"tileset_url_checksum\":\"e56d581fe5e7e731b2f12dd5b9f371d4\",\"type\":\"point_cloud\",\"up_axis\":\"Z\"}],\"material_base_url\":\"\",\"material_textures\":null,\"tiles\":null,\"type\":0},\"name\":\"银杏厅会议室\",\"picture_url\":\"https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/LIANGFANG/5DyMyjk6q6c1E63F9D/2024-07-25_16-12-43.image/png\",\"project_id\":\"mix-poincare-rzDPMYAjnjNMw61k\",\"resource_code\":\"5DyMyjk6q6c1E63F9D\",\"title_picture_url\":\"https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/LIANGFANG/5DyMyjk6q6c1E63F9D/2024-07-25_16-12-43.image/png\"}" \ No newline at end of file diff --git a/open-works/real/REQQYY2m/work.json b/open-works/real/REQQYY2m/work.json new file mode 100644 index 000000000..7ce31f596 --- /dev/null +++ b/open-works/real/REQQYY2m/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"PA1ccY4TyihPS953Bzw4upfjGrWxT7sHOIE7WH7GyYkHA7/datYToiQ3I/uyDhPQtp0ypTTPnNFbAjlqavhgkktGULvqoc9JmvlNwBggK0ZEerYC1P+Fk848bR5HDXt9Nx7cpsiFJQuyLTH1dJ5D8dv3ufSGBIv+5eDVZLMPYdI=\",\"allow_hosts\":[],\"base_url\":\"https://vrlab-public.ljcdn.com/release/auto3dhd/e29ec44ea241f57161a2aab89ddc0a37/\",\"basic_code\":\"80V07p9b21nn79ogrm\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-06-28 22:26:52\",\"expire_at\":\"1720689782587\",\"from_type\":\"vr\",\"initial\":{\"derivedId\":1683686156,\"distance\":0,\"fov\":71,\"heading\":0,\"latitude\":-0.09531888325539427,\"longitude\":3.1314238009341038,\"mode\":\"Panorama\",\"offset\":{\"x\":6.3922831662,\"y\":1.3523880869,\"z\":-0.6160842601},\"panoIndex\":47,\"pano_index\":47,\"workCode\":\"8oevE2A7l9TLd3Xs7D\"},\"is_active\":true,\"model\":{\"file_url\":\"model/13d52c7a51cf54438ac0537a104f26fb/auto3d-light-vEY8ZpGAj0dV7R9K-copy.at3d\",\"layers\":null,\"material_base_url\":\"materials/13d52c7a51cf54438ac0537a104f26fb/\",\"material_textures\":[\"texture_0.jpg\",\"texture_1.jpg\",\"texture_2.jpg\",\"texture_3.jpg\",\"texture_4.jpg\",\"texture_5.jpg\",\"texture_6.jpg\",\"texture_7.jpg\",\"texture_8.jpg\",\"texture_9.jpg\",\"texture_10.jpg\",\"texture_11.jpg\",\"texture_12.jpg\",\"texture_13.jpg\",\"texture_14.jpg\",\"texture_15.jpg\",\"texture_16.jpg\",\"texture_17.jpg\",\"texture_18.jpg\",\"texture_19.jpg\",\"texture_20.jpg\",\"texture_21.jpg\",\"texture_22.jpg\",\"texture_23.jpg\",\"texture_24.jpg\",\"texture_25.jpg\",\"texture_26.jpg\",\"texture_27.jpg\",\"texture_28.jpg\",\"texture_29.jpg\",\"texture_30.jpg\"],\"tiles\":null,\"type\":0},\"name\":\"Demo-客户演示用-惠州\",\"observers\":[{\"accessible_nodes\":[1,2,3,4,46,47,48],\"floor_index\":1,\"index\":0,\"offset_point_count\":0,\"position\":[-0.8018805311,1.3604802244,2.3116246218],\"quaternion\":{\"w\":-0.04203383504438361,\"x\":-0.005112938352154386,\"y\":-0.999099441096831,\"z\":0.0027058022843374978},\"standing_position\":[-0.8018805311,0.010066186695532275,2.3116246218],\"visible_nodes\":[1,2,3,4,46,47,48]},{\"accessible_nodes\":[0,2,3,46,47,48,132],\"floor_index\":1,\"index\":1,\"offset_point_count\":0,\"position\":[-0.7781921047,1.3742880033,-0.9833386079],\"quaternion\":{\"w\":-0.5055309658596172,\"x\":-0.009191964335284538,\"y\":-0.8627557517339424,\"z\":0.002542284500093934},\"standing_position\":[-0.7781921047,0.02641145453291016,-0.9833386079],\"visible_nodes\":[0,2,3,46,47,48,132]},{\"accessible_nodes\":[0,1,3,4,5,47],\"floor_index\":1,\"index\":2,\"offset_point_count\":0,\"position\":[-1.0706780598,1.3286883717,7.4238139757],\"quaternion\":{\"w\":0.014124707023957878,\"x\":-0.01121410976975676,\"y\":-0.9998291487424239,\"z\":-0.004050891874971019},\"standing_position\":[-1.0706780598,-0.0033260697901733582,7.4238139757],\"visible_nodes\":[0,1,3,4,5,47]},{\"accessible_nodes\":[0,1,2,4,5,6],\"floor_index\":1,\"index\":3,\"offset_point_count\":0,\"position\":[-0.9357949234,1.3190238791,12.354841755],\"quaternion\":{\"w\":-0.030986534458784635,\"x\":-0.009828592802050826,\"y\":-0.9994352495659736,\"z\":0.008509722744613587},\"standing_position\":[-0.9357949234,-0.03513046927341312,12.354841755],\"visible_nodes\":[0,1,2,4,5,6]},{\"accessible_nodes\":[0,2,3,5,6,7],\"floor_index\":1,\"index\":4,\"offset_point_count\":0,\"position\":[-0.8354888507,1.3022845792,16.7412943834],\"quaternion\":{\"w\":-0.010193363122364702,\"x\":-0.00279055315378371,\"y\":-0.9999377170854192,\"z\":0.003587493964580278},\"standing_position\":[-0.8354888507,-0.04633082874372563,16.7412943834],\"visible_nodes\":[0,2,3,5,6,7]},{\"accessible_nodes\":[2,3,4,6,7,8],\"floor_index\":1,\"index\":5,\"offset_point_count\":0,\"position\":[-0.7352864428,1.2654715073,20.3373390861],\"quaternion\":{\"w\":0.002100457163535612,\"x\":-0.009491298675118857,\"y\":-0.9999486713951872,\"z\":0.00285620653009637},\"standing_position\":[-0.7352864428,-0.08747811199321287,20.3373390861],\"visible_nodes\":[2,3,4,6,7,8]},{\"accessible_nodes\":[3,4,5,7,8,9],\"floor_index\":1,\"index\":6,\"offset_point_count\":0,\"position\":[-0.683967654,1.2261317747,23.8535896171],\"quaternion\":{\"w\":-0.004535625644662259,\"x\":-0.0015295476068195781,\"y\":-0.9999570743536944,\"z\":-0.00793334946915321},\"standing_position\":[-0.683967654,-0.12290360757081298,23.8535896171],\"visible_nodes\":[3,4,5,7,8,9]},{\"accessible_nodes\":[4,5,6,8,9,10,11],\"floor_index\":1,\"index\":7,\"offset_point_count\":0,\"position\":[-0.7207174037,1.1198067749,27.8274957449],\"quaternion\":{\"w\":0.010164854142882995,\"x\":-0.007421423031347019,\"y\":-0.9999131155380451,\"z\":-0.003919129161428399},\"standing_position\":[-0.7207174037,-0.25029622669454343,27.8274957449],\"visible_nodes\":[4,5,6,8,9,10,11]},{\"accessible_nodes\":[5,6,7,9,10,11],\"floor_index\":1,\"index\":8,\"offset_point_count\":0,\"position\":[-0.6301411043,1.10368298,32.2371439831],\"quaternion\":{\"w\":0.012574260277359297,\"x\":-0.007781073866153774,\"y\":-0.9998696303143726,\"z\":0.006485773148206506},\"standing_position\":[-0.6301411043,-0.25093509250976553,32.2371439831],\"visible_nodes\":[5,6,7,9,10,11]},{\"accessible_nodes\":[6,7,8,10,11,12,13],\"floor_index\":1,\"index\":9,\"offset_point_count\":0,\"position\":[2.9264184876,1.1067953926,34.9466388765],\"quaternion\":{\"w\":-0.02071958378072247,\"x\":-0.002165901055000824,\"y\":-0.9997330879914899,\"z\":0.009988017671857951},\"standing_position\":[2.9264184876,-0.24604765358835445,34.9466388765],\"visible_nodes\":[6,7,8,10,11,12,13]},{\"accessible_nodes\":[7,8,9,11,12,13,14],\"floor_index\":1,\"index\":10,\"offset_point_count\":0,\"position\":[7.2043402879,1.1263693397,35.3318993538],\"quaternion\":{\"w\":-0.03355551368835062,\"x\":-0.00810661079259567,\"y\":-0.9993731853266826,\"z\":0.007845176246586242},\"standing_position\":[7.2043402879,-0.21996273351166984,35.3318993538],\"visible_nodes\":[7,8,9,11,12,13,14]},{\"accessible_nodes\":[7,8,9,10,12,13,14,15],\"floor_index\":1,\"index\":11,\"offset_point_count\":0,\"position\":[10.1862009398,1.1207289174,35.4687368676],\"quaternion\":{\"w\":0.028832639111694012,\"x\":-0.004632492414909589,\"y\":-0.9995733797850962,\"z\":0.0005266441020201044},\"standing_position\":[10.1862009398,-0.2176307961543824,35.4687368676],\"visible_nodes\":[7,8,9,10,12,13,14,15]},{\"accessible_nodes\":[9,10,11,13,14,15,16],\"floor_index\":1,\"index\":12,\"offset_point_count\":0,\"position\":[14.1181002419,1.1274210383,35.3798227514],\"quaternion\":{\"w\":-0.007262739435405494,\"x\":-0.003105625950214399,\"y\":-0.9999359146215321,\"z\":0.00811013834128515},\"standing_position\":[14.1181002419,-0.2155840228495971,35.3798227514],\"visible_nodes\":[9,10,11,13,14,15,16]},{\"accessible_nodes\":[9,10,11,12,14,15,16,17],\"floor_index\":1,\"index\":13,\"offset_point_count\":0,\"position\":[17.3533921244,1.141284618,35.4127438434],\"quaternion\":{\"w\":0.8503099803963069,\"x\":0.0015398041658609186,\"y\":-0.5262364156203939,\"z\":0.006767648616262},\"standing_position\":[17.3533921244,-0.2071771291694946,35.4127438434],\"visible_nodes\":[9,10,11,12,14,15,16,17]},{\"accessible_nodes\":[10,11,12,13,15,16,17,18],\"floor_index\":1,\"index\":14,\"offset_point_count\":0,\"position\":[21.4186552393,1.1568340688,35.3566824439],\"quaternion\":{\"w\":-0.02721288432804074,\"x\":-0.0027893893604282287,\"y\":-0.9995917438259482,\"z\":0.008247661358671287},\"standing_position\":[21.4186552393,-0.19464438865086664,35.3566824439],\"visible_nodes\":[10,11,12,13,15,16,17,18]},{\"accessible_nodes\":[11,12,13,14,16,17,18,19],\"floor_index\":1,\"index\":15,\"offset_point_count\":0,\"position\":[24.7067050034,1.1825761143,35.3248150476],\"quaternion\":{\"w\":-0.01653478827960489,\"x\":-0.002398031072625527,\"y\":-0.9998585933145746,\"z\":-0.0019088193948235753},\"standing_position\":[24.7067050034,-0.17288166844536135,35.3248150476],\"visible_nodes\":[11,12,13,14,16,17,18,19]},{\"accessible_nodes\":[12,13,14,15,17,18,19,20],\"floor_index\":1,\"index\":16,\"offset_point_count\":0,\"position\":[27.9157982446,1.2134847107,35.4447095629],\"quaternion\":{\"w\":0.025555082188986254,\"x\":-0.002910559531258949,\"y\":-0.9996683863536948,\"z\":0.0012584625483545208},\"standing_position\":[27.9157982446,-0.1335714397364014,35.4447095629],\"visible_nodes\":[12,13,14,15,17,18,19,20]},{\"accessible_nodes\":[13,14,15,16,18,19,20],\"floor_index\":1,\"index\":17,\"offset_point_count\":0,\"position\":[31.6224543512,1.2197036585,35.6013106141],\"quaternion\":{\"w\":0.007385535994925742,\"x\":0.002785673188187618,\"y\":-0.999964312688208,\"z\":0.003011186161139519},\"standing_position\":[31.6224543512,-0.12171270044775384,35.6013106141],\"visible_nodes\":[13,14,15,16,18,19,20]},{\"accessible_nodes\":[14,15,16,17,19,20,21],\"floor_index\":1,\"index\":18,\"offset_point_count\":0,\"position\":[35.3053639162,1.2622823426,35.3424242533],\"quaternion\":{\"w\":0.0237055241726468,\"x\":0.000557167591698035,\"y\":-0.9997142839956824,\"z\":-0.0030146411812326307},\"standing_position\":[35.3053639162,-0.08607426197611079,35.3424242533],\"visible_nodes\":[14,15,16,17,19,20,21]},{\"accessible_nodes\":[15,16,17,18,20,21,22],\"floor_index\":1,\"index\":19,\"offset_point_count\":0,\"position\":[38.8504535662,1.3001239072,35.2617793793],\"quaternion\":{\"w\":0.014510265230232784,\"x\":0.0015278068855334066,\"y\":-0.9998923551562938,\"z\":-0.0015479300766910514},\"standing_position\":[38.8504535662,-0.05763854874024665,35.2617793793],\"visible_nodes\":[15,16,17,18,20,21,22]},{\"accessible_nodes\":[16,17,18,19,21,22,23],\"floor_index\":1,\"index\":20,\"offset_point_count\":0,\"position\":[42.5794317168,1.3469698609,35.3949178963],\"quaternion\":{\"w\":0.022878449859503304,\"x\":0.0025977420996258897,\"y\":-0.999734827554287,\"z\":0.0003206896130491292},\"standing_position\":[42.5794317168,-0.011296135079309044,35.3949178963],\"visible_nodes\":[16,17,18,19,21,22,23]},{\"accessible_nodes\":[18,19,20,22,23,24,25],\"floor_index\":1,\"index\":21,\"offset_point_count\":0,\"position\":[47.2927829847,1.4035041875,35.5148183556],\"quaternion\":{\"w\":-0.029750528196110647,\"x\":0.0022441372051418894,\"y\":-0.9995506602093763,\"z\":0.002889219191146538},\"standing_position\":[47.2927829847,0.04899006549072271,35.5148183556],\"visible_nodes\":[18,19,20,22,23,24,25]},{\"accessible_nodes\":[19,20,21,23,24,25,26],\"floor_index\":1,\"index\":22,\"offset_point_count\":0,\"position\":[51.0933438902,1.4529113322,35.6080252959],\"quaternion\":{\"w\":-0.003789461253785651,\"x\":0.0053059779866235215,\"y\":-0.9999777069140091,\"z\":0.001439534591668561},\"standing_position\":[51.0933438902,0.10195501143736574,35.6080252959],\"visible_nodes\":[19,20,21,23,24,25,26]},{\"accessible_nodes\":[20,21,22,24,25,26,27],\"floor_index\":1,\"index\":23,\"offset_point_count\":0,\"position\":[54.8707189645,1.5106893493,35.2355094616],\"quaternion\":{\"w\":-0.0033258929448772624,\"x\":0.0024795666468013446,\"y\":-0.9999907859700509,\"z\":-0.0011037033945560104},\"standing_position\":[54.8707189645,0.1524975014987915,35.2355094616],\"visible_nodes\":[20,21,22,24,25,26,27]},{\"accessible_nodes\":[21,22,23,25,26,27,28],\"floor_index\":1,\"index\":24,\"offset_point_count\":0,\"position\":[59.2669328156,1.5697733821,34.9677594084],\"quaternion\":{\"w\":0.044760475272191125,\"x\":0.005339040921133081,\"y\":-0.9989764273745402,\"z\":-0.003753938403587452},\"standing_position\":[59.2669328156,0.20778018847359614,34.9677594084],\"visible_nodes\":[21,22,23,25,26,27,28]},{\"accessible_nodes\":[21,22,23,24,26,27,28,29],\"floor_index\":1,\"index\":25,\"offset_point_count\":0,\"position\":[61.7511113701,1.6224404381,32.1716794862],\"quaternion\":{\"w\":-0.05211592558647916,\"x\":-0.001638224064432165,\"y\":-0.998638623689771,\"z\":0.0014648531163306596},\"standing_position\":[61.7511113701,0.2558303878985839,32.1716794862],\"visible_nodes\":[21,22,23,24,26,27,28,29]},{\"accessible_nodes\":[22,23,24,25,27,28,29,30],\"floor_index\":1,\"index\":26,\"offset_point_count\":0,\"position\":[62.1063940651,1.6330965817,28.7414233014],\"quaternion\":{\"w\":0.017568173566396516,\"x\":0.005507825043797617,\"y\":-0.99980983985706,\"z\":0.006427072297986994},\"standing_position\":[62.1063940651,0.2643659174467652,28.7414233014],\"visible_nodes\":[22,23,24,25,27,28,29,30]},{\"accessible_nodes\":[23,24,25,26,28,29,30,31],\"floor_index\":1,\"index\":27,\"offset_point_count\":0,\"position\":[62.2182927323,1.6061572546,25.104520663],\"quaternion\":{\"w\":-0.0026876901085580835,\"x\":0.003682849372990236,\"y\":-0.9999117332919941,\"z\":0.01247952617669321},\"standing_position\":[62.2182927323,0.25530333461708987,25.104520663],\"visible_nodes\":[23,24,25,26,28,29,30,31]},{\"accessible_nodes\":[24,25,26,27,29,30,31,32],\"floor_index\":1,\"index\":28,\"offset_point_count\":0,\"position\":[62.1713975645,1.5880495544,21.8898923838],\"quaternion\":{\"w\":0.02471655385053294,\"x\":0.0020668198161187096,\"y\":-0.9996207622393605,\"z\":-0.01196461130739902},\"standing_position\":[62.1713975645,0.24646928267911372,21.8898923838],\"visible_nodes\":[24,25,26,27,29,30,31,32]},{\"accessible_nodes\":[25,26,27,28,30,31,32,33],\"floor_index\":1,\"index\":29,\"offset_point_count\":0,\"position\":[62.240251124,1.5960484079,18.3337261304],\"quaternion\":{\"w\":0.04572356322267558,\"x\":0.005196576100132497,\"y\":-0.9989116727969495,\"z\":0.007604031649497129},\"standing_position\":[62.240251124,0.26726012741293936,18.3337261304],\"visible_nodes\":[25,26,27,28,30,31,32,33]},{\"accessible_nodes\":[26,27,28,29,31,32,33,34],\"floor_index\":1,\"index\":30,\"offset_point_count\":0,\"position\":[62.2189256494,1.5685679741,14.6757583639],\"quaternion\":{\"w\":-0.870827764730202,\"x\":-0.005043037472927385,\"y\":-0.49144798300912196,\"z\":-0.010604336700106224},\"standing_position\":[62.2189256494,0.225614888200647,14.6757583639],\"visible_nodes\":[26,27,28,29,31,32,33,34]},{\"accessible_nodes\":[27,28,29,30,32,33,34,35,36],\"floor_index\":1,\"index\":31,\"offset_point_count\":0,\"position\":[62.288714387,1.5721887028,10.7948676062],\"quaternion\":{\"w\":0.007905879388536312,\"x\":0.003633872266762799,\"y\":-0.9999565843950426,\"z\":0.00333487273551739},\"standing_position\":[62.288714387,0.2319416677734496,10.7948676062],\"visible_nodes\":[27,28,29,30,32,33,34,35,36]},{\"accessible_nodes\":[28,29,30,31,33,34,35,36],\"floor_index\":1,\"index\":32,\"offset_point_count\":0,\"position\":[62.0947540297,1.5858390592,7.406549245],\"quaternion\":{\"w\":-0.03810961688758972,\"x\":-0.00010478017603298834,\"y\":-0.9992717989616239,\"z\":0.0018756111970213828},\"standing_position\":[62.0947540297,0.23348620161027833,7.406549245],\"visible_nodes\":[28,29,30,31,33,34,35,36]},{\"accessible_nodes\":[29,30,31,32,34,35,36,37,74],\"floor_index\":1,\"index\":33,\"offset_point_count\":0,\"position\":[61.7368030614,1.5696087854,3.8131095129],\"quaternion\":{\"w\":-0.02601065593134585,\"x\":-0.0005728573870789708,\"y\":-0.9995997484118331,\"z\":0.011111280957850071},\"standing_position\":[61.7368030614,0.2395723836513428,3.8131095129],\"visible_nodes\":[29,30,31,32,34,35,36,37,74]},{\"accessible_nodes\":[30,31,32,33,35,36,37,74],\"floor_index\":1,\"index\":34,\"offset_point_count\":0,\"position\":[61.3056387974,1.5448378569,0.3007658944],\"quaternion\":{\"w\":-0.03508711488906456,\"x\":-0.0017167711222862171,\"y\":-0.999280831748513,\"z\":0.014274675343307314},\"standing_position\":[61.3056387974,0.2052885538451905,0.3007658944],\"visible_nodes\":[30,31,32,33,35,36,37,74]},{\"accessible_nodes\":[31,32,33,34,36,37,38,74,75],\"floor_index\":1,\"index\":35,\"offset_point_count\":0,\"position\":[56.0364870191,1.5290452891,-0.2684402124],\"quaternion\":{\"w\":0.6946548279248314,\"x\":-0.0032947976271217945,\"y\":-0.7192599495314611,\"z\":0.010437400386175247},\"standing_position\":[56.0364870191,0.18151850038845208,-0.2684402124],\"visible_nodes\":[31,32,33,34,36,37,38,74,75]},{\"accessible_nodes\":[31,32,33,34,35,37,38,39,74,75,76],\"floor_index\":1,\"index\":36,\"offset_point_count\":0,\"position\":[52.6234508079,1.5121706477,-0.588229936],\"quaternion\":{\"w\":0.66593083672372,\"x\":0.0017405538544327467,\"y\":-0.7459536783038208,\"z\":0.00928444996175655},\"standing_position\":[52.6234508079,0.16870651157634287,-0.588229936],\"visible_nodes\":[31,32,33,34,35,37,38,39,74,75,76]},{\"accessible_nodes\":[33,34,35,36,38,39,40,74],\"floor_index\":1,\"index\":37,\"offset_point_count\":0,\"position\":[48.5318983972,1.4804666209,-0.650574083],\"quaternion\":{\"w\":0.6896331526571543,\"x\":-0.0008131750583270488,\"y\":-0.7240108928220624,\"z\":0.014617817052099415},\"standing_position\":[48.5318983972,0.11931623695072013,-0.650574083],\"visible_nodes\":[33,34,35,36,38,39,40,74]},{\"accessible_nodes\":[35,36,37,39,40,41,62,74],\"floor_index\":1,\"index\":38,\"offset_point_count\":0,\"position\":[43.8518073708,1.4445773124,-0.4796715927],\"quaternion\":{\"w\":0.7019689861324033,\"x\":0.007244863410147273,\"y\":-0.7121047158424104,\"z\":0.009691652114444591},\"standing_position\":[43.8518073708,0.08555195324625253,-0.4796715927],\"visible_nodes\":[35,36,37,39,40,41,62,74]},{\"accessible_nodes\":[36,37,38,40,41,42,62,63],\"floor_index\":1,\"index\":39,\"offset_point_count\":0,\"position\":[40.0630186263,1.4314535096,-0.5361722165],\"quaternion\":{\"w\":0.7076519550114235,\"x\":0.01256214435307998,\"y\":-0.7064275851777024,\"z\":0.005565069346791058},\"standing_position\":[40.0630186263,0.08111099746926276,-0.5361722165],\"visible_nodes\":[36,37,38,40,41,42,62,63]},{\"accessible_nodes\":[37,38,39,41,42,43,49,62,63,64,65],\"floor_index\":1,\"index\":40,\"offset_point_count\":0,\"position\":[35.7355027003,1.4152911209,-0.6377657972],\"quaternion\":{\"w\":0.6911601594435443,\"x\":0.003866135376436149,\"y\":-0.7226671864696778,\"z\":0.00590123538863488},\"standing_position\":[35.7355027003,0.057244589222753994,-0.6377657972],\"visible_nodes\":[37,38,39,41,42,43,49,62,63,64,65]},{\"accessible_nodes\":[38,39,40,42,43,44,49,62,63],\"floor_index\":1,\"index\":41,\"offset_point_count\":0,\"position\":[31.8743623331,1.3993688063,-0.6544309706],\"quaternion\":{\"w\":0.7249777048256862,\"x\":0.0036519478302768807,\"y\":-0.6887147261929282,\"z\":0.00812506628242548},\"standing_position\":[31.8743623331,0.041290684161022995,-0.6544309706],\"visible_nodes\":[38,39,40,42,43,44,49,62,63]},{\"accessible_nodes\":[39,40,41,43,44,45,49,50,62],\"floor_index\":1,\"index\":42,\"offset_point_count\":0,\"position\":[28.1160733553,1.3668134909,-0.7633754],\"quaternion\":{\"w\":0.6651262863903692,\"x\":0.006713956847397044,\"y\":-0.746620020643031,\"z\":0.010976824018115172},\"standing_position\":[28.1160733553,0.020425031694372597,-0.7633754],\"visible_nodes\":[39,40,41,43,44,45,49,50,62]},{\"accessible_nodes\":[40,41,42,44,45,46,49,50,51,52,53,62],\"floor_index\":1,\"index\":43,\"offset_point_count\":0,\"position\":[23.6082061545,1.347771436,-0.7885620287],\"quaternion\":{\"w\":0.713792837894698,\"x\":0.004004907590120511,\"y\":-0.7002887050174378,\"z\":0.00891487140270898},\"standing_position\":[23.6082061545,0.00002554061425774634,-0.7885620287],\"visible_nodes\":[40,41,42,44,45,46,49,50,51,52,53,62]},{\"accessible_nodes\":[41,42,43,45,46,47,48,49],\"floor_index\":1,\"index\":44,\"offset_point_count\":0,\"position\":[19.451833789,1.333681252,-0.6754071071],\"quaternion\":{\"w\":0.6886233082619378,\"x\":0.010582287905916128,\"y\":-0.7249828315208574,\"z\":0.00926544654982883},\"standing_position\":[19.451833789,-0.01123687982830801,-0.6754071071],\"visible_nodes\":[41,42,43,45,46,47,48,49]},{\"accessible_nodes\":[42,43,44,46,47,48,49],\"floor_index\":1,\"index\":45,\"offset_point_count\":0,\"position\":[15.0323413807,1.3234358535,-0.6728356078],\"quaternion\":{\"w\":0.7077477175555207,\"x\":0.0029073860339674956,\"y\":-0.7064555759033968,\"z\":0.00228794959673598},\"standing_position\":[15.0323413807,-0.017028857689270094,-0.6728356078],\"visible_nodes\":[42,43,44,46,47,48,49]},{\"accessible_nodes\":[0,1,43,44,45,47,48,49,131],\"floor_index\":1,\"index\":46,\"offset_point_count\":0,\"position\":[11.5111816727,1.3278686687,-0.77588151],\"quaternion\":{\"w\":0.20983585246412986,\"x\":-0.0014984673941916076,\"y\":-0.9777327859645497,\"z\":0.0022953996809937077},\"standing_position\":[11.5111816727,-0.009846957062939365,-0.77588151],\"visible_nodes\":[0,1,43,44,45,47,48,49,131]},{\"accessible_nodes\":[0,1,2,44,45,46,48,130,131,133,134,135,136],\"floor_index\":1,\"index\":47,\"offset_point_count\":0,\"position\":[6.3922831662,1.3523880869,-0.6160842601],\"quaternion\":{\"w\":-0.9975550833287352,\"x\":-0.005308278498596937,\"y\":0.06966224205195055,\"z\":0.0016881805106746443},\"standing_position\":[6.3922831662,-0.00017100276064452302,-0.6160842601],\"visible_nodes\":[0,1,2,44,45,46,48,130,131,133,134,135,136]},{\"accessible_nodes\":[0,1,44,45,46,47,130,131,133,134,135,136],\"floor_index\":1,\"index\":48,\"offset_point_count\":0,\"position\":[6.9026901087,1.5063524803,4.0337528835],\"quaternion\":{\"w\":-0.9996640804415251,\"x\":0.005821951932522635,\"y\":0.02525393118941497,\"z\":-0.0002647792695353191},\"standing_position\":[6.9026901087,0.12614518011384268,4.0337528835],\"visible_nodes\":[0,1,44,45,46,47,130,131,133,134,135,136]},{\"accessible_nodes\":[40,41,42,43,44,45,46,50,51,52,53,62],\"floor_index\":1,\"index\":49,\"offset_point_count\":0,\"position\":[22.9824428343,1.5462489988,4.5130349387],\"quaternion\":{\"w\":-0.9998689763914069,\"x\":0.008832787303666462,\"y\":0.013564969956314192,\"z\":-0.0000592626398049242},\"standing_position\":[22.9824428343,0.19204935089655772,4.5130349387],\"visible_nodes\":[40,41,42,43,44,45,46,50,51,52,53,62]},{\"accessible_nodes\":[42,43,49,51,52,53,59,60,61],\"floor_index\":1,\"index\":50,\"offset_point_count\":0,\"position\":[22.9620579728,1.7588640681,6.2575964514],\"quaternion\":{\"w\":-0.99910136640383,\"x\":-0.017823897252886127,\"y\":0.038454757086650686,\"z\":0.0000012288542897459538},\"standing_position\":[22.9620579728,0.4125870695801026,6.2575964514],\"visible_nodes\":[42,43,49,51,52,53,59,60,61]},{\"accessible_nodes\":[43,49,50,52,53,60,61],\"floor_index\":1,\"index\":51,\"offset_point_count\":0,\"position\":[22.7847961172,1.7525361029,8.1482593002],\"quaternion\":{\"w\":-0.9979928778428231,\"x\":-0.0064920965307934874,\"y\":0.06288110019947808,\"z\":-0.0037464245567380284},\"standing_position\":[22.7847961172,0.33891002810904536,8.1482593002],\"visible_nodes\":[43,49,50,52,53,60,61]},{\"accessible_nodes\":[43,49,50,51,53,54,55],\"floor_index\":1,\"index\":52,\"offset_point_count\":0,\"position\":[22.2153196498,1.7475484893,10.7608227784],\"quaternion\":{\"w\":-0.7218000038642071,\"x\":-0.011397625912353429,\"y\":-0.6919646828776741,\"z\":0.007728269530694281},\"standing_position\":[22.2153196498,0.3296355292475097,10.7608227784],\"visible_nodes\":[43,49,50,51,53,54,55]},{\"accessible_nodes\":[43,49,50,51,52,54,55,56],\"floor_index\":1,\"index\":53,\"offset_point_count\":0,\"position\":[22.3317543937,1.7390941838,13.0883335435],\"quaternion\":{\"w\":-0.7599277029462456,\"x\":-0.014158747640314329,\"y\":-0.6498533351072379,\"z\":-0.00024300144581682916},\"standing_position\":[22.3317543937,0.3327771881792725,13.0883335435],\"visible_nodes\":[43,49,50,51,52,54,55,56]},{\"accessible_nodes\":[52,53,55,56],\"floor_index\":1,\"index\":54,\"offset_point_count\":0,\"position\":[24.1476963276,1.7491976454,13.5599596874],\"quaternion\":{\"w\":-0.7800016542044155,\"x\":-0.011176317024648563,\"y\":-0.6256716510079388,\"z\":-0.002737603097791973},\"standing_position\":[24.1476963276,0.3685310318212036,13.5599596874],\"visible_nodes\":[52,53,55,56]},{\"accessible_nodes\":[52,53,54,56,57],\"floor_index\":1,\"index\":55,\"offset_point_count\":0,\"position\":[25.5517804209,1.7736436252,15.1026288877],\"quaternion\":{\"w\":-0.8996624238568597,\"x\":-0.005088006321722624,\"y\":-0.4365361229508079,\"z\":-0.004224765060994352},\"standing_position\":[25.5517804209,0.4391018275620606,15.1026288877],\"visible_nodes\":[52,53,54,56,57]},{\"accessible_nodes\":[53,54,55,57,58],\"floor_index\":1,\"index\":56,\"offset_point_count\":0,\"position\":[28.570431066,1.7743472715,14.9049405715],\"quaternion\":{\"w\":-0.679655564291999,\"x\":-0.006840502338886084,\"y\":-0.733491632109733,\"z\":-0.003398095446339121},\"standing_position\":[28.570431066,0.42656501728094476,14.9049405715],\"visible_nodes\":[53,54,55,57,58]},{\"accessible_nodes\":[55,56,58],\"floor_index\":1,\"index\":57,\"offset_point_count\":0,\"position\":[29.0187621614,1.7701316544,12.5318419335],\"quaternion\":{\"w\":-0.08407356087147753,\"x\":-0.005272908585040142,\"y\":-0.9964159609947042,\"z\":0.007685407249353386},\"standing_position\":[29.0187621614,0.3878207870904298,12.5318419335],\"visible_nodes\":[55,56,58]},{\"accessible_nodes\":[56,57,59,60],\"floor_index\":1,\"index\":58,\"offset_point_count\":0,\"position\":[30.8230528301,1.7668885543,10.2673474572],\"quaternion\":{\"w\":0.6702550601982769,\"x\":0.00840851498020895,\"y\":-0.7420320847005202,\"z\":0.008708412221296416},\"standing_position\":[30.8230528301,0.372202570642163,10.2673474572],\"visible_nodes\":[56,57,59,60]},{\"accessible_nodes\":[50,58,60,61],\"floor_index\":1,\"index\":59,\"offset_point_count\":0,\"position\":[29.8896556188,1.752010978,8.113536232],\"quaternion\":{\"w\":0.6391895315500832,\"x\":-0.003419720633381154,\"y\":-0.7690261374946887,\"z\":0.00488345075920909},\"standing_position\":[29.8896556188,0.36278060747845453,8.113536232],\"visible_nodes\":[50,58,60,61]},{\"accessible_nodes\":[50,51,58,59,61],\"floor_index\":1,\"index\":60,\"offset_point_count\":0,\"position\":[27.7514478939,1.7640816092,6.387521924],\"quaternion\":{\"w\":0.3867826367972187,\"x\":0.0007356068867633345,\"y\":-0.9221408026570563,\"z\":-0.007415578949870003},\"standing_position\":[27.7514478939,0.3953135132298462,6.387521924],\"visible_nodes\":[50,51,58,59,61]},{\"accessible_nodes\":[50,51,59,60],\"floor_index\":1,\"index\":61,\"offset_point_count\":0,\"position\":[25.1283579428,1.7574579283,6.3617773448],\"quaternion\":{\"w\":-0.9964710055616269,\"x\":-0.01695743431639162,\"y\":0.08218408179256884,\"z\":-0.0019383486967705396},\"standing_position\":[25.1283579428,0.39910157167921145,6.3617773448],\"visible_nodes\":[50,51,59,60]},{\"accessible_nodes\":[38,39,40,41,42,43,49,63,64,65,66],\"floor_index\":1,\"index\":62,\"offset_point_count\":0,\"position\":[34.0887621483,1.6404113605,4.7280142105],\"quaternion\":{\"w\":-0.9999442075185996,\"x\":0.010447907964710795,\"y\":0.0002511067348678956,\"z\":-0.001536233710290709},\"standing_position\":[34.0887621483,0.28082655215039054,4.7280142105],\"visible_nodes\":[38,39,40,41,42,43,49,63,64,65,66]},{\"accessible_nodes\":[39,40,41,62,64,65,66,72,73],\"floor_index\":1,\"index\":63,\"offset_point_count\":0,\"position\":[33.9339091867,1.7970942096,6.2609370382],\"quaternion\":{\"w\":-0.9987592920969497,\"x\":-0.024257471761923038,\"y\":0.04342449088402581,\"z\":0.0024010614659364933},\"standing_position\":[33.9339091867,0.4311550692801758,6.2609370382],\"visible_nodes\":[39,40,41,62,64,65,66,72,73]},{\"accessible_nodes\":[40,62,63,65,66,72,73],\"floor_index\":1,\"index\":64,\"offset_point_count\":0,\"position\":[33.4553032112,1.7739221523,8.2198731482],\"quaternion\":{\"w\":-0.7599550274063359,\"x\":-0.006293853374549752,\"y\":-0.6499323993693499,\"z\":0.004076761794874455},\"standing_position\":[33.4553032112,0.36836654641163324,8.2198731482],\"visible_nodes\":[40,62,63,65,66,72,73]},{\"accessible_nodes\":[40,62,63,64,66,67,73],\"floor_index\":1,\"index\":65,\"offset_point_count\":0,\"position\":[33.0443525841,1.7768824698,10.7719010779],\"quaternion\":{\"w\":-0.7413653914629175,\"x\":-0.005621856393864669,\"y\":-0.6710690669931076,\"z\":0.0034725176060365027},\"standing_position\":[33.0443525841,0.37575858845997323,10.7719010779],\"visible_nodes\":[40,62,63,64,66,67,73]},{\"accessible_nodes\":[62,63,64,65,67,68],\"floor_index\":1,\"index\":66,\"offset_point_count\":0,\"position\":[33.5039372376,1.7719969254,12.9415325164],\"quaternion\":{\"w\":-0.9959327728441313,\"x\":-0.012831134488632772,\"y\":0.08914079021766896,\"z\":0.002682064641142239},\"standing_position\":[33.5039372376,0.3594185810549073,12.9415325164],\"visible_nodes\":[62,63,64,65,67,68]},{\"accessible_nodes\":[65,66,68],\"floor_index\":1,\"index\":67,\"offset_point_count\":0,\"position\":[36.4490289378,1.7985976981,14.7752404263],\"quaternion\":{\"w\":-0.6359665992203564,\"x\":-0.0022057618224266182,\"y\":-0.7716538828872695,\"z\":0.009586674238352511},\"standing_position\":[36.4490289378,0.4757118271664673,14.7752404263],\"visible_nodes\":[65,66,68]},{\"accessible_nodes\":[66,67,69,70],\"floor_index\":1,\"index\":68,\"offset_point_count\":0,\"position\":[39.6409281203,1.8168165054,14.8202874708],\"quaternion\":{\"w\":-0.04362384888282017,\"x\":0.00745929279886779,\"y\":-0.9989999757257254,\"z\":0.006353521776003257},\"standing_position\":[39.6409281203,0.4578395452178101,14.8202874708],\"visible_nodes\":[66,67,69,70]},{\"accessible_nodes\":[68,70],\"floor_index\":1,\"index\":69,\"offset_point_count\":0,\"position\":[39.9992455552,1.8102611094,12.3562148565],\"quaternion\":{\"w\":-0.05862815834651815,\"x\":-0.0014444295454565975,\"y\":-0.998277298837853,\"z\":0.0017570641464471732},\"standing_position\":[39.9992455552,0.40233824543973395,12.3562148565],\"visible_nodes\":[68,70]},{\"accessible_nodes\":[68,69,71,72],\"floor_index\":1,\"index\":70,\"offset_point_count\":0,\"position\":[41.834278686,1.8232961366,10.1563434108],\"quaternion\":{\"w\":0.6555312304716688,\"x\":0.014309603928803295,\"y\":-0.7549950319207406,\"z\":0.007519500175460836},\"standing_position\":[41.834278686,0.43194324467800294,10.1563434108],\"visible_nodes\":[68,69,71,72]},{\"accessible_nodes\":[70,72,73],\"floor_index\":1,\"index\":71,\"offset_point_count\":0,\"position\":[40.6710179543,1.8130010977,8.1045745648],\"quaternion\":{\"w\":0.6589243808076863,\"x\":-0.001101036626073162,\"y\":-0.7521351519009066,\"z\":0.01049577825879907},\"standing_position\":[40.6710179543,0.4198688879221679,8.1045745648],\"visible_nodes\":[70,72,73]},{\"accessible_nodes\":[63,64,70,71,73],\"floor_index\":1,\"index\":72,\"offset_point_count\":0,\"position\":[38.3533540694,1.7956158631,6.4925100078],\"quaternion\":{\"w\":-0.9964981563204219,\"x\":-0.01871175270795418,\"y\":0.08148490271655909,\"z\":-0.0012269465249335277},\"standing_position\":[38.3533540694,0.42582161356539316,6.4925100078],\"visible_nodes\":[63,64,70,71,73]},{\"accessible_nodes\":[63,64,65,71,72],\"floor_index\":1,\"index\":73,\"offset_point_count\":0,\"position\":[35.7815979615,1.7890045842,6.4694806759],\"quaternion\":{\"w\":-0.9984258220193426,\"x\":-0.01668967997672358,\"y\":0.053078384223693875,\"z\":-0.007072315883936753},\"standing_position\":[35.7815979615,0.43416680896959225,6.4694806759],\"visible_nodes\":[63,64,65,71,72]},{\"accessible_nodes\":[33,34,35,36,37,38,75,76,77,78],\"floor_index\":1,\"index\":74,\"offset_point_count\":0,\"position\":[55.3515957554,1.7343203232,4.6269177052],\"quaternion\":{\"w\":-0.9990965902754347,\"x\":0.01636770129051463,\"y\":0.03916604908962043,\"z\":0.002030330170019668},\"standing_position\":[55.3515957554,0.37636319848991695,4.6269177052],\"visible_nodes\":[33,34,35,36,37,38,75,76,77,78]},{\"accessible_nodes\":[35,36,74,76,77,78,79,80,81],\"floor_index\":1,\"index\":75,\"offset_point_count\":0,\"position\":[55.7749673925,2.0057473715,6.7155829422],\"quaternion\":{\"w\":-0.9995043140977432,\"x\":-0.008144083032145843,\"y\":-0.02912024644563328,\"z\":-0.008764203892313919},\"standing_position\":[55.7749673925,0.6752049263171997,6.7155829422],\"visible_nodes\":[35,36,74,76,77,78,79,80,81]},{\"accessible_nodes\":[36,74,75,77,78,79,80,81],\"floor_index\":0,\"index\":76,\"offset_point_count\":0,\"position\":[56.065715249,1.9982520874,8.4008952639],\"quaternion\":{\"w\":-0.9997079507661225,\"x\":-0.001713352583309318,\"y\":0.02345500114011363,\"z\":-0.005562418875171003},\"standing_position\":[56.065715249,0.6552991207099366,8.4008952639],\"visible_nodes\":[36,74,75,77,78,79,80,81]},{\"accessible_nodes\":[74,75,76,78,79,80,81,83],\"floor_index\":0,\"index\":77,\"offset_point_count\":0,\"position\":[56.0594303587,1.490297413,9.8958454361],\"quaternion\":{\"w\":-0.8768757204986349,\"x\":-0.0007400417297801211,\"y\":-0.480688349325389,\"z\":0.0052090272523484275},\"standing_position\":[56.0594303587,0.30056283486737057,9.8958454361],\"visible_nodes\":[74,75,76,78,79,80,81,83]},{\"accessible_nodes\":[74,75,76,77,79,80,81,83],\"floor_index\":0,\"index\":78,\"offset_point_count\":0,\"position\":[56.1211691275,0.8141621366,11.0090969125],\"quaternion\":{\"w\":-0.8964448047007691,\"x\":0.001546736221493114,\"y\":-0.4431404737546571,\"z\":0.0032924550507995335},\"standing_position\":[56.1211691275,-0.37995827050449216,11.0090969125],\"visible_nodes\":[74,75,76,77,79,80,81,83]},{\"accessible_nodes\":[75,76,77,78,80,81,83,84],\"floor_index\":0,\"index\":79,\"offset_point_count\":0,\"position\":[55.4442533553,0.4686238556,13.0014087926],\"quaternion\":{\"w\":-0.8976599172292367,\"x\":-0.003936553595828651,\"y\":0.4406364527736734,\"z\":-0.0055401305433692965},\"standing_position\":[55.4442533553,-0.8683860511687989,13.0014087926],\"visible_nodes\":[75,76,77,78,80,81,83,84]},{\"accessible_nodes\":[75,76,77,78,79,81,83,84],\"floor_index\":0,\"index\":80,\"offset_point_count\":0,\"position\":[55.3991655114,0.4843019018,14.7886638164],\"quaternion\":{\"w\":-0.9998585182664596,\"x\":-0.0033318774748010795,\"y\":0.015889701752549456,\"z\":-0.00439993341020634},\"standing_position\":[55.3991655114,-0.8660062780553467,14.7886638164],\"visible_nodes\":[75,76,77,78,79,81,83,84]},{\"accessible_nodes\":[75,76,77,78,79,80,82,83,84,115,116,117],\"floor_index\":0,\"index\":81,\"offset_point_count\":0,\"position\":[55.4920808108,0.4321026513,16.8372056944],\"quaternion\":{\"w\":-0.9987331077294875,\"x\":-0.0025983987162493264,\"y\":0.0498491941838028,\"z\":-0.006362835301862482},\"standing_position\":[55.4920808108,-0.915346889791919,16.8372056944],\"visible_nodes\":[75,76,77,78,79,80,82,83,84,115,116,117]},{\"accessible_nodes\":[81,115,116,117],\"floor_index\":0,\"index\":82,\"offset_point_count\":0,\"position\":[52.7615480278,0.3898013808,16.9202663187],\"quaternion\":{\"w\":-0.7781812756774382,\"x\":-0.005003482744734624,\"y\":-0.6279972541739335,\"z\":-0.005321288115177653},\"standing_position\":[52.7615480278,-0.9592278025877563,16.9202663187],\"visible_nodes\":[81,115,116,117]},{\"accessible_nodes\":[77,78,79,80,81,84,85],\"floor_index\":0,\"index\":83,\"offset_point_count\":0,\"position\":[55.7395779204,0.4293142809,19.9880108586],\"quaternion\":{\"w\":0.6791909845933153,\"x\":0.00929117591181969,\"y\":-0.7338390252977829,\"z\":0.009672923257412801},\"standing_position\":[55.7395779204,-0.9053551898870483,19.9880108586],\"visible_nodes\":[77,78,79,80,81,84,85]},{\"accessible_nodes\":[79,80,81,83,85,86,87,88],\"floor_index\":0,\"index\":84,\"offset_point_count\":0,\"position\":[55.8023287761,0.4203633674,24.5268915071],\"quaternion\":{\"w\":0.7289766232766203,\"x\":0.0007504315536878445,\"y\":-0.6845120617271839,\"z\":0.005979706755892662},\"standing_position\":[55.8023287761,-0.9434362045909668,24.5268915071],\"visible_nodes\":[79,80,81,83,85,86,87,88]},{\"accessible_nodes\":[83,84,86,87,88,90],\"floor_index\":0,\"index\":85,\"offset_point_count\":0,\"position\":[52.5430450635,0.3928884538,24.7902496431],\"quaternion\":{\"w\":0.6941209799791952,\"x\":0.004961609480411572,\"y\":-0.7197651113210476,\"z\":0.010470535917152177},\"standing_position\":[52.5430450635,-0.9777078358347047,24.7902496431],\"visible_nodes\":[83,84,86,87,88,90]},{\"accessible_nodes\":[84,85,87,88,89],\"floor_index\":0,\"index\":86,\"offset_point_count\":0,\"position\":[49.6037311071,0.3823818938,24.9029479744],\"quaternion\":{\"w\":0.7493844122789848,\"x\":0.0012050403678115634,\"y\":-0.6620668039933735,\"z\":0.00943915030523506},\"standing_position\":[49.6037311071,-1.0045002921359742,24.9029479744],\"visible_nodes\":[84,85,87,88,89]},{\"accessible_nodes\":[84,85,86,88,90,91],\"floor_index\":0,\"index\":87,\"offset_point_count\":0,\"position\":[46.528853451,0.3744446898,24.6821741791],\"quaternion\":{\"w\":0.7215257209091597,\"x\":0.003909442834579348,\"y\":-0.6923333489006579,\"z\":0.007738496973325516},\"standing_position\":[46.528853451,-0.985977444599414,24.6821741791],\"visible_nodes\":[84,85,86,88,90,91]},{\"accessible_nodes\":[84,85,86,87,89,90,91,92],\"floor_index\":0,\"index\":88,\"offset_point_count\":0,\"position\":[43.5164604291,0.3651573357,24.3663775053],\"quaternion\":{\"w\":0.724449960720543,\"x\":0.006411062755436914,\"y\":-0.6892786373448694,\"z\":0.005110064579352043},\"standing_position\":[43.5164604291,-0.9871872964487427,24.3663775053],\"visible_nodes\":[84,85,86,87,89,90,91,92]},{\"accessible_nodes\":[86,88,90,91,92],\"floor_index\":0,\"index\":89,\"offset_point_count\":0,\"position\":[40.5426656549,0.3416978376,24.69311705],\"quaternion\":{\"w\":0.7209958333743847,\"x\":0.0043144160538120145,\"y\":-0.6928230176964388,\"z\":0.011944045179841016},\"standing_position\":[40.5426656549,-1.0298260195166993,24.69311705],\"visible_nodes\":[86,88,90,91,92]},{\"accessible_nodes\":[85,87,88,89,91,92,93],\"floor_index\":0,\"index\":90,\"offset_point_count\":0,\"position\":[37.7614381917,0.342727034,24.5335809229],\"quaternion\":{\"w\":0.714646319219671,\"x\":0.002570783214764791,\"y\":-0.6994504299984381,\"z\":0.006567000251912513},\"standing_position\":[37.7614381917,-1.0227176261867676,24.5335809229],\"visible_nodes\":[85,87,88,89,91,92,93]},{\"accessible_nodes\":[87,88,89,90,92,93,94,95],\"floor_index\":0,\"index\":91,\"offset_point_count\":0,\"position\":[34.6609031698,0.3462913015,24.3738154686],\"quaternion\":{\"w\":0.7423378912873545,\"x\":0.0021848387194798933,\"y\":-0.669968685536869,\"z\":0.008464162351790979},\"standing_position\":[34.6609031698,-1.0155140182860718,24.3738154686],\"visible_nodes\":[87,88,89,90,92,93,94,95]},{\"accessible_nodes\":[88,89,90,91,93,94,95,96],\"floor_index\":0,\"index\":92,\"offset_point_count\":0,\"position\":[28.7046425995,0.371251127,24.5962027809],\"quaternion\":{\"w\":0.7382467289419568,\"x\":0.002490510423723745,\"y\":-0.6744693513422237,\"z\":0.008755491132767157},\"standing_position\":[28.7046425995,-0.9974849016712646,24.5962027809],\"visible_nodes\":[88,89,90,91,93,94,95,96]},{\"accessible_nodes\":[90,91,92,94,95,96,97],\"floor_index\":0,\"index\":93,\"offset_point_count\":0,\"position\":[25.6897894748,0.3844941623,24.6461304366],\"quaternion\":{\"w\":0.7015471448362625,\"x\":0.0026073841024809984,\"y\":-0.7125975985786087,\"z\":0.005428407572121985},\"standing_position\":[25.6897894748,-0.9869877331467773,24.6461304366],\"visible_nodes\":[90,91,92,94,95,96,97]},{\"accessible_nodes\":[91,92,93,95,96,97,98,99],\"floor_index\":0,\"index\":94,\"offset_point_count\":0,\"position\":[22.6090042184,0.395968533,24.6737953433],\"quaternion\":{\"w\":0.743627884746967,\"x\":0.0023557654979290614,\"y\":-0.6685149907257129,\"z\":0.009986317498659015},\"standing_position\":[22.6090042184,-0.9884553189668579,24.6737953433],\"visible_nodes\":[91,92,93,95,96,97,98,99]},{\"accessible_nodes\":[91,92,93,94,96,97,98,99],\"floor_index\":0,\"index\":95,\"offset_point_count\":0,\"position\":[19.6757175376,0.3889934229,24.8453497792],\"quaternion\":{\"w\":0.7391940037452808,\"x\":0.0069503048664043355,\"y\":-0.6734236073044959,\"z\":0.00667556913841212},\"standing_position\":[19.6757175376,-0.9635228706256957,24.8453497792],\"visible_nodes\":[91,92,93,94,96,97,98,99]},{\"accessible_nodes\":[92,93,94,95,97,98,99,100],\"floor_index\":0,\"index\":96,\"offset_point_count\":0,\"position\":[16.619233784,0.3648498819,25.2205067084],\"quaternion\":{\"w\":0.6712505485129495,\"x\":0.009662894796435133,\"y\":-0.7411506490417451,\"z\":0.0050044989231212995},\"standing_position\":[16.619233784,-0.9841969444626099,25.2205067084],\"visible_nodes\":[92,93,94,95,97,98,99,100]},{\"accessible_nodes\":[93,94,95,96,98,99,100],\"floor_index\":0,\"index\":97,\"offset_point_count\":0,\"position\":[13.4593578688,0.3403603348,25.4324538972],\"quaternion\":{\"w\":0.724009190238003,\"x\":0.002657596812834021,\"y\":-0.689658459909686,\"z\":0.013222642010647195},\"standing_position\":[13.4593578688,-1.0073488441245606,25.4324538972],\"visible_nodes\":[93,94,95,96,98,99,100]},{\"accessible_nodes\":[94,95,96,97,99,100],\"floor_index\":0,\"index\":98,\"offset_point_count\":0,\"position\":[10.6683523517,0.3257828255,25.5312854771],\"quaternion\":{\"w\":0.7205631135004255,\"x\":-0.0030907917969499057,\"y\":-0.6932222843720476,\"z\":0.014903385981537906},\"standing_position\":[10.6683523517,-1.0254477958378907,25.5312854771],\"visible_nodes\":[94,95,96,97,99,100]},{\"accessible_nodes\":[94,95,96,97,98,100,101,130],\"floor_index\":0,\"index\":99,\"offset_point_count\":0,\"position\":[7.6242521991,0.3035364607,25.3020734088],\"quaternion\":{\"w\":0.7148516812758997,\"x\":0.003967769828850962,\"y\":-0.699064964613447,\"z\":0.016718426886780994},\"standing_position\":[7.6242521991,-1.0279334327555054,25.3020734088],\"visible_nodes\":[94,95,96,97,98,100,101,130]},{\"accessible_nodes\":[96,97,98,99,101,102,103,118,129],\"floor_index\":0,\"index\":100,\"offset_point_count\":0,\"position\":[4.6813792856,0.2786083861,25.2988371122],\"quaternion\":{\"w\":0.6783524418915543,\"x\":0.0007803357472367324,\"y\":-0.7346952603801117,\"z\":0.007760802209408694},\"standing_position\":[4.6813792856,-1.0686729506843629,25.2988371122],\"visible_nodes\":[96,97,98,99,101,102,103,118,129]},{\"accessible_nodes\":[99,100,102,118],\"floor_index\":0,\"index\":101,\"offset_point_count\":0,\"position\":[4.2610260748,0.272218826,21.9072205657],\"quaternion\":{\"w\":-0.014900347952733374,\"x\":-0.010752352766079155,\"y\":-0.9997674028992943,\"z\":0.011291883709412438},\"standing_position\":[4.2610260748,-1.0692465279657593,21.9072205657],\"visible_nodes\":[99,100,102,118]},{\"accessible_nodes\":[100,101,103,104,105,106],\"floor_index\":0,\"index\":102,\"offset_point_count\":0,\"position\":[4.2472204274,0.2621383093,17.0792431373],\"quaternion\":{\"w\":-0.685945389467533,\"x\":0.00012127320998962319,\"y\":-0.7276269013374917,\"z\":0.006164448966572243},\"standing_position\":[4.2472204274,-1.070807633578723,17.0792431373],\"visible_nodes\":[100,101,103,104,105,106]},{\"accessible_nodes\":[100,102,104,105,106,107,118,129,130],\"floor_index\":0,\"index\":103,\"offset_point_count\":0,\"position\":[7.3319233848,0.2744611393,16.8472433811],\"quaternion\":{\"w\":-0.681084793717487,\"x\":-0.0016040472907847382,\"y\":-0.7321972093637069,\"z\":0.0028596119299875732},\"standing_position\":[7.3319233848,-1.0729940046285278,16.8472433811],\"visible_nodes\":[100,102,104,105,106,107,118,129,130]},{\"accessible_nodes\":[102,103,105,106,107,108],\"floor_index\":0,\"index\":104,\"offset_point_count\":0,\"position\":[10.5665258193,0.2672020001,16.6268042647],\"quaternion\":{\"w\":-0.7136235283185052,\"x\":-0.00435545069440298,\"y\":-0.7005153459596728,\"z\":0.0008602150594924304},\"standing_position\":[10.5665258193,-1.0857758717948365,16.6268042647],\"visible_nodes\":[102,103,105,106,107,108]},{\"accessible_nodes\":[102,103,104,106,107,108,109],\"floor_index\":0,\"index\":105,\"offset_point_count\":0,\"position\":[13.6568241094,0.2893903062,16.7370373352],\"quaternion\":{\"w\":-0.7073588201206722,\"x\":-0.0027039633448358033,\"y\":-0.7068372815224165,\"z\":0.004152787319986559},\"standing_position\":[13.6568241094,-1.045635123525647,16.7370373352],\"visible_nodes\":[102,103,104,106,107,108,109]},{\"accessible_nodes\":[102,103,104,105,107,108,109,110],\"floor_index\":0,\"index\":106,\"offset_point_count\":0,\"position\":[16.4396198402,0.2972468702,16.5089182601],\"quaternion\":{\"w\":-0.693406304284693,\"x\":0.0006243092266825226,\"y\":-0.7205457340273412,\"z\":0.0010735757127814881},\"standing_position\":[16.4396198402,-1.0573504598933838,16.5089182601],\"visible_nodes\":[102,103,104,105,107,108,109,110]},{\"accessible_nodes\":[103,104,105,106,108,109,110],\"floor_index\":0,\"index\":107,\"offset_point_count\":0,\"position\":[19.5790911619,0.3089178282,16.6227748118],\"quaternion\":{\"w\":-0.7172104146651084,\"x\":-0.00245020616126171,\"y\":-0.6967874079301376,\"z\":0.00951450148144004},\"standing_position\":[19.5790911619,-1.0682086271070068,16.6227748118],\"visible_nodes\":[103,104,105,106,108,109,110]},{\"accessible_nodes\":[104,105,106,107,109,110],\"floor_index\":0,\"index\":108,\"offset_point_count\":0,\"position\":[22.5188776247,0.1824695286,16.8271940414],\"quaternion\":{\"w\":-0.70892903226737,\"x\":0.004476131426490348,\"y\":-0.7051765741996823,\"z\":0.011206723130258545},\"standing_position\":[22.5188776247,-1.0602624002253784,16.8271940414],\"visible_nodes\":[104,105,106,107,109,110]},{\"accessible_nodes\":[105,106,107,108,110,112,113,114],\"floor_index\":0,\"index\":109,\"offset_point_count\":0,\"position\":[25.6618352629,0.141006363,16.9668457895],\"quaternion\":{\"w\":-0.9987726305195792,\"x\":-0.002266644360110567,\"y\":-0.048890293779473674,\"z\":0.007604868082987691},\"standing_position\":[25.6618352629,-1.2111918801411743,16.9668457895],\"visible_nodes\":[105,106,107,108,110,112,113,114]},{\"accessible_nodes\":[106,107,108,109],\"floor_index\":0,\"index\":110,\"offset_point_count\":0,\"position\":[28.6952570957,0.1123573922,16.7934144231],\"quaternion\":{\"w\":-0.6671851505490854,\"x\":-0.003485152950341044,\"y\":-0.7448139040055576,\"z\":0.010201812874512838},\"standing_position\":[28.6952570957,-1.2207927561917236,16.7934144231],\"visible_nodes\":[106,107,108,109]},{\"accessible_nodes\":[112,113,114,115],\"floor_index\":0,\"index\":111,\"offset_point_count\":0,\"position\":[31.6817073331,0.1372932635,16.8576871328],\"quaternion\":{\"w\":-0.6764055295539839,\"x\":0.003509747049952305,\"y\":-0.736475246851515,\"z\":0.008212918968910793},\"standing_position\":[31.6817073331,-1.2106956996271363,16.8576871328],\"visible_nodes\":[112,113,114,115]},{\"accessible_nodes\":[109,111,113,114,115],\"floor_index\":0,\"index\":112,\"offset_point_count\":0,\"position\":[34.5712724747,0.1555781931,16.845576884],\"quaternion\":{\"w\":-0.6991819326648061,\"x\":-0.00014530808360431263,\"y\":-0.7149308037320815,\"z\":0.004306945349013066},\"standing_position\":[34.5712724747,-1.1997075706405396,16.845576884],\"visible_nodes\":[109,111,113,114,115]},{\"accessible_nodes\":[109,111,112,114,115],\"floor_index\":0,\"index\":113,\"offset_point_count\":0,\"position\":[37.5752851347,0.1850067619,16.8930817296],\"quaternion\":{\"w\":-0.6813723513754595,\"x\":0.00709693202645527,\"y\":-0.7319025257163688,\"z\":0.00021252997432658842},\"standing_position\":[37.5752851347,-1.1623955723132569,16.8930817296],\"visible_nodes\":[109,111,112,114,115]},{\"accessible_nodes\":[109,111,112,113],\"floor_index\":0,\"index\":114,\"offset_point_count\":0,\"position\":[40.5377900706,0.2210280971,16.8099802065],\"quaternion\":{\"w\":-0.697618510452167,\"x\":0.0021061058763112966,\"y\":-0.7164544607998473,\"z\":-0.004121140821293308},\"standing_position\":[40.5377900706,-1.128285638861914,16.8099802065],\"visible_nodes\":[109,111,112,113]},{\"accessible_nodes\":[81,82,111,112,113,116,117],\"floor_index\":0,\"index\":115,\"offset_point_count\":0,\"position\":[43.699299081,0.2729971351,17.0243457618],\"quaternion\":{\"w\":0.7309308940097963,\"x\":0.009815773457407122,\"y\":-0.6823238539542642,\"z\":0.008822532863409994},\"standing_position\":[43.699299081,-1.0589939413694214,17.0243457618],\"visible_nodes\":[81,82,111,112,113,116,117]},{\"accessible_nodes\":[81,82,115,117],\"floor_index\":0,\"index\":116,\"offset_point_count\":0,\"position\":[46.5312478699,0.3067644447,16.8021599912],\"quaternion\":{\"w\":-0.694816240573033,\"x\":-0.004890653559033311,\"y\":-0.719169167790166,\"z\":-0.0014769732527102105},\"standing_position\":[46.5312478699,-1.0209327131598023,16.8021599912],\"visible_nodes\":[81,82,115,117]},{\"accessible_nodes\":[81,82,115,116],\"floor_index\":0,\"index\":117,\"offset_point_count\":0,\"position\":[49.5828748587,0.3452021752,16.8135080722],\"quaternion\":{\"w\":-0.6988235117602086,\"x\":-0.0035578224014879453,\"y\":-0.7152843756157407,\"z\":0.0011416464246085407},\"standing_position\":[49.5828748587,-0.9973568047880981,16.8135080722],\"visible_nodes\":[81,82,115,116]},{\"accessible_nodes\":[100,101,103,119,120,129,130,132],\"floor_index\":0,\"index\":118,\"offset_point_count\":0,\"position\":[7.7257721682,0.26998941,14.3668611891],\"quaternion\":{\"w\":0.7397606445382159,\"x\":-0.009675232139078059,\"y\":-0.6726857305792951,\"z\":0.012429260418234004},\"standing_position\":[7.7257721682,-1.075131496829834,14.3668611891],\"visible_nodes\":[100,101,103,119,120,129,130,132]},{\"accessible_nodes\":[118,120],\"floor_index\":0,\"index\":119,\"offset_point_count\":0,\"position\":[10.6803794134,-0.4825155811,14.5279862606],\"quaternion\":{\"w\":-0.3093909609220592,\"x\":0.000023101151562796582,\"y\":-0.950910388180716,\"z\":0.006831280771291341},\"standing_position\":[10.6803794134,-1.825240977256311,14.5279862606],\"visible_nodes\":[118,120]},{\"accessible_nodes\":[118,119,121,123],\"floor_index\":0,\"index\":120,\"offset_point_count\":0,\"position\":[13.317947167,-0.4652603438,14.4132999196],\"quaternion\":{\"w\":-0.008349743622146792,\"x\":-0.006034078851835822,\"y\":-0.9998809757291115,\"z\":0.01148503509792878},\"standing_position\":[13.317947167,-1.809052543888501,14.4132999196],\"visible_nodes\":[118,119,121,123]},{\"accessible_nodes\":[120,122,123,128],\"floor_index\":0,\"index\":121,\"offset_point_count\":0,\"position\":[13.346400977,-0.5727286586,11.941480145],\"quaternion\":{\"w\":-0.12112068487527723,\"x\":-0.0049325807042886315,\"y\":-0.9924906845910444,\"z\":0.016361244646534035},\"standing_position\":[13.346400977,-1.9095790633393799,11.941480145],\"visible_nodes\":[120,122,123,128]},{\"accessible_nodes\":[121,123,124,127,128],\"floor_index\":0,\"index\":122,\"offset_point_count\":0,\"position\":[10.6832966587,-0.6124084229,10.8263743996],\"quaternion\":{\"w\":0.08211141963295354,\"x\":-0.013427323420570996,\"y\":-0.9964533385337218,\"z\":0.012576401889967698},\"standing_position\":[10.6832966587,-1.956338309717932,10.8263743996],\"visible_nodes\":[121,123,124,127,128]},{\"accessible_nodes\":[120,121,122,124,125,128],\"floor_index\":0,\"index\":123,\"offset_point_count\":0,\"position\":[13.1178344959,-0.6016962583,9.6890134523],\"quaternion\":{\"w\":0.05486907523458719,\"x\":-0.005569536632404185,\"y\":-0.9984269593715906,\"z\":0.010098101048218752},\"standing_position\":[13.1178344959,-1.9511086995536622,9.6890134523],\"visible_nodes\":[120,121,122,124,125,128]},{\"accessible_nodes\":[122,123,125,126,127,128],\"floor_index\":0,\"index\":124,\"offset_point_count\":0,\"position\":[16.3857467192,-0.5714137838,9.2471044342],\"quaternion\":{\"w\":0.015245933857456997,\"x\":0.0009957439575173496,\"y\":-0.9998332829277089,\"z\":0.009998817023500655},\"standing_position\":[16.3857467192,-1.9193679378145874,9.2471044342],\"visible_nodes\":[122,123,125,126,127,128]},{\"accessible_nodes\":[123,124,126,128],\"floor_index\":0,\"index\":125,\"offset_point_count\":0,\"position\":[19.76205134,-0.5123587463,9.7150817372],\"quaternion\":{\"w\":0.12200834566843197,\"x\":-0.0010257733989449068,\"y\":-0.9924797241253848,\"z\":0.009844214785959503},\"standing_position\":[19.76205134,-1.88635560012843,9.7150817372],\"visible_nodes\":[123,124,126,128]},{\"accessible_nodes\":[124,125,127],\"floor_index\":0,\"index\":126,\"offset_point_count\":0,\"position\":[19.5465930918,-0.5434255808,6.8670157009],\"quaternion\":{\"w\":0.5564322638391621,\"x\":-0.008604195027502847,\"y\":-0.8308419383974307,\"z\":0.003282834103513183},\"standing_position\":[19.5465930918,-1.9398695438508424,6.8670157009],\"visible_nodes\":[124,125,127]},{\"accessible_nodes\":[122,124,126],\"floor_index\":0,\"index\":127,\"offset_point_count\":0,\"position\":[16.4234692291,-0.5992407927,6.8635603623],\"quaternion\":{\"w\":0.6056178738580682,\"x\":0.0018009314542438734,\"y\":-0.7957497752748662,\"z\":0.0024581794877974136},\"standing_position\":[16.4234692291,-1.9722567924940062,6.8635603623],\"visible_nodes\":[122,124,126]},{\"accessible_nodes\":[121,122,123,124,125],\"floor_index\":0,\"index\":128,\"offset_point_count\":0,\"position\":[9.4953049191,-0.626353791,10.0675267674],\"quaternion\":{\"w\":0.04464607841181386,\"x\":0.0031968419367553085,\"y\":-0.9989351094540626,\"z\":0.0111872691671711},\"standing_position\":[9.4953049191,-1.9610715415493165,10.0675267674],\"visible_nodes\":[121,122,123,124,125]},{\"accessible_nodes\":[100,103,118,130,132],\"floor_index\":0,\"index\":129,\"offset_point_count\":0,\"position\":[8.0025712946,0.3427257295,12.5145108533],\"quaternion\":{\"w\":0.11276714289122887,\"x\":-0.002477977417475112,\"y\":-0.9935814518070474,\"z\":0.008563278868104743},\"standing_position\":[8.0025712946,-0.9936869387281494,12.5145108533],\"visible_nodes\":[100,103,118,130,132]},{\"accessible_nodes\":[47,48,99,103,118,129,132],\"floor_index\":0,\"index\":130,\"offset_point_count\":0,\"position\":[8.0229063395,0.8210361388,10.7049039527],\"quaternion\":{\"w\":-0.5246770301499329,\"x\":-0.009703398197088148,\"y\":-0.8512455798710499,\"z\":0.0009060135150621512},\"standing_position\":[8.0229063395,-0.37826570007481686,10.7049039527],\"visible_nodes\":[47,48,99,103,118,129,132]},{\"accessible_nodes\":[46,47,48,132,133,134,135,136,138],\"floor_index\":1,\"index\":131,\"offset_point_count\":0,\"position\":[6.4762381784,1.7370540571,7.0828629467],\"quaternion\":{\"w\":-0.9993541757430146,\"x\":0.0016799937307028718,\"y\":0.03578872837891383,\"z\":0.002752451900203333},\"standing_position\":[6.4762381784,0.38980442998665765,7.0828629467],\"visible_nodes\":[46,47,48,132,133,134,135,136,138]},{\"accessible_nodes\":[1,118,129,130,131],\"floor_index\":1,\"index\":132,\"offset_point_count\":0,\"position\":[7.798631696,1.7364021448,6.8186254132],\"quaternion\":{\"w\":-0.7662068905312133,\"x\":-0.006616416715107287,\"y\":-0.6425397814338035,\"z\":-0.005084605800919632},\"standing_position\":[7.798631696,0.4154102710588501,6.8186254132],\"visible_nodes\":[1,118,129,130,131]},{\"accessible_nodes\":[47,48,131,134,135,136],\"floor_index\":1,\"index\":133,\"offset_point_count\":0,\"position\":[6.4906905903,1.7519614676,8.8075739019],\"quaternion\":{\"w\":-0.9999496839716486,\"x\":0.002560795874077802,\"y\":-0.007723371184363419,\"z\":-0.0058669735778088756},\"standing_position\":[6.4906905903,0.4177105406285644,8.8075739019],\"visible_nodes\":[47,48,131,134,135,136]},{\"accessible_nodes\":[47,48,131,133,135,136,137,189,190,344,345],\"floor_index\":1,\"index\":134,\"offset_point_count\":0,\"position\":[6.5895155143,2.2421429155,10.2470172708],\"quaternion\":{\"w\":0.8131189700220958,\"x\":0.011913807510858056,\"y\":-0.5819741437555452,\"z\":0.0013029791067806626},\"standing_position\":[6.5895155143,1.0444139239915162,10.2470172708],\"visible_nodes\":[47,48,131,133,135,136,137,189,190,344,345]},{\"accessible_nodes\":[47,48,131,133,134,136,137,189,190,191,343,344,345],\"floor_index\":1,\"index\":135,\"offset_point_count\":0,\"position\":[6.5018888247,2.9335186834,11.4299501869],\"quaternion\":{\"w\":0.8231218858405681,\"x\":0.015287340364393864,\"y\":-0.5676348709557932,\"z\":-0.005226045741349438},\"standing_position\":[6.5018888247,1.7535813207291016,11.4299501869],\"visible_nodes\":[47,48,131,133,134,136,137,189,190,191,343,344,345]},{\"accessible_nodes\":[47,48,131,133,134,135,137,189,190,191,343,344,345],\"floor_index\":1,\"index\":136,\"offset_point_count\":0,\"position\":[6.5475041976,3.2713036422,12.3831713645],\"quaternion\":{\"w\":-0.9036492101058906,\"x\":0.0006683092767039894,\"y\":0.42797181826749103,\"z\":-0.01605556659901237},\"standing_position\":[6.5475041976,1.9350314025149413,12.3831713645],\"visible_nodes\":[47,48,131,133,134,135,137,189,190,191,343,344,345]},{\"accessible_nodes\":[134,135,136,138,139,140,142,143,144,189,190,191,192,234,343,344,345],\"floor_index\":1,\"index\":137,\"offset_point_count\":0,\"position\":[8.0253366416,3.2737746894,12.5309679335],\"quaternion\":{\"w\":0.0607160847961957,\"x\":-0.007287008526798391,\"y\":-0.9980606922928084,\"z\":0.011632328364049106},\"standing_position\":[8.0253366416,1.9328542410967775,12.5309679335],\"visible_nodes\":[134,135,136,138,139,140,142,143,144,189,190,191,192,234,343,344,345]},{\"accessible_nodes\":[131,137,139,140,142,143,144,189,190,191,192,234,343,344,345],\"floor_index\":1,\"index\":138,\"offset_point_count\":0,\"position\":[7.8088894681,3.299564797,14.3800177586],\"quaternion\":{\"w\":0.22999561594393872,\"x\":-0.002614364642774174,\"y\":-0.9731641613314785,\"z\":0.006833510382155302},\"standing_position\":[7.8088894681,1.9520430150786132,14.3800177586],\"visible_nodes\":[131,137,139,140,142,143,144,189,190,191,192,234,343,344,345]},{\"accessible_nodes\":[137,138,140,142,143,144,146,148,153,154,155,156,157,189,190,344,345],\"floor_index\":1,\"index\":139,\"offset_point_count\":0,\"position\":[7.5475061723,3.3008491704,16.2663005125],\"quaternion\":{\"w\":-0.9447058609694342,\"x\":-0.001800332802270006,\"y\":0.32783844693964553,\"z\":-0.007039017804098487},\"standing_position\":[7.5475061723,1.9503935286534788,16.2663005125],\"visible_nodes\":[137,138,140,142,143,144,146,148,153,154,155,156,157,189,190,344,345]},{\"accessible_nodes\":[137,138,139,141,142,143,144,189,345],\"floor_index\":1,\"index\":140,\"offset_point_count\":0,\"position\":[7.8833303023,3.3121592262,19.3540163262],\"quaternion\":{\"w\":-0.9996903079829272,\"x\":-0.002343758743372768,\"y\":0.019643801128394492,\"z\":-0.015096887010389772},\"standing_position\":[7.8833303023,1.9550242879599486,19.3540163262],\"visible_nodes\":[137,138,139,141,142,143,144,189,345]},{\"accessible_nodes\":[140],\"floor_index\":1,\"index\":141,\"offset_point_count\":0,\"position\":[5.2328816118,3.3204041441,19.3169234922],\"quaternion\":{\"w\":-0.9999964242811071,\"x\":-0.001991752296946318,\"y\":-0.001345010284378624,\"z\":-0.0011727243683326799},\"standing_position\":[5.2328816118,1.9652905185735716,19.3169234922],\"visible_nodes\":[140]},{\"accessible_nodes\":[137,138,139,140,143,144,189,345],\"floor_index\":1,\"index\":142,\"offset_point_count\":0,\"position\":[8.0044111279,3.2948586863,22.2872213001],\"quaternion\":{\"w\":-0.992808925901656,\"x\":-0.0044028188969294085,\"y\":-0.11873873844147649,\"z\":-0.014565844189874305},\"standing_position\":[8.0044111279,1.9451547783333862,22.2872213001],\"visible_nodes\":[137,138,139,140,143,144,189,345]},{\"accessible_nodes\":[137,138,139,140,142,144,189,345],\"floor_index\":1,\"index\":143,\"offset_point_count\":0,\"position\":[8.0491750747,3.2878434034,24.2329212825],\"quaternion\":{\"w\":-0.996402611799066,\"x\":-0.0054853969020930305,\"y\":-0.08169882847659177,\"z\":-0.021841406693731826},\"standing_position\":[8.0491750747,1.9769669147143922,24.2329212825],\"visible_nodes\":[137,138,139,140,142,144,189,345]},{\"accessible_nodes\":[137,138,139,140,142,143,145],\"floor_index\":1,\"index\":144,\"offset_point_count\":0,\"position\":[7.7841210108,3.2496585796,27.1316172835],\"quaternion\":{\"w\":-0.9992174184955944,\"x\":-0.0039124234652413,\"y\":0.03885358001810217,\"z\":-0.006296255357990182},\"standing_position\":[7.7841210108,1.888225669634485,27.1316172835],\"visible_nodes\":[137,138,139,140,142,143,145]},{\"accessible_nodes\":[144],\"floor_index\":1,\"index\":145,\"offset_point_count\":0,\"position\":[5.2048516368,3.2597023225,27.3520104484],\"quaternion\":{\"w\":0.6570884471316438,\"x\":-0.004404184420761362,\"y\":-0.7537978222142858,\"z\":0.002054026032407296},\"standing_position\":[5.2048516368,1.940899250524292,27.3520104484],\"visible_nodes\":[144]},{\"accessible_nodes\":[139,147,149,150,151,153,154,155,156,157,158],\"floor_index\":1,\"index\":146,\"offset_point_count\":0,\"position\":[9.6163110474,3.3100495434,16.4586519929],\"quaternion\":{\"w\":-0.6982792834001621,\"x\":-0.006465427814068297,\"y\":-0.7157795598506568,\"z\":-0.004884907024628454},\"standing_position\":[9.6163110474,1.95587576391239,16.4586519929],\"visible_nodes\":[139,147,149,150,151,153,154,155,156,157,158]},{\"accessible_nodes\":[146,148,149,150,151],\"floor_index\":1,\"index\":147,\"offset_point_count\":0,\"position\":[9.6280477762,3.2964619279,18.856371953],\"quaternion\":{\"w\":-0.923030214497337,\"x\":-0.008563493210571173,\"y\":-0.38462843509769434,\"z\":-0.0016901517691374085},\"standing_position\":[9.6280477762,1.946616876134558,18.856371953],\"visible_nodes\":[146,148,149,150,151]},{\"accessible_nodes\":[139,147],\"floor_index\":1,\"index\":148,\"offset_point_count\":0,\"position\":[12.2983364679,3.2973845091,19.1285778433],\"quaternion\":{\"w\":-0.999135735473414,\"x\":-0.004566886698170165,\"y\":0.041257156446784814,\"z\":-0.002184646912829879},\"standing_position\":[12.2983364679,1.9447474565639893,19.1285778433],\"visible_nodes\":[139,147]},{\"accessible_nodes\":[146,147,150,151],\"floor_index\":1,\"index\":149,\"offset_point_count\":0,\"position\":[9.5120105135,3.2843059619,22.1800749835],\"quaternion\":{\"w\":-0.9998188250253143,\"x\":-0.002010294815112239,\"y\":0.018928113675516074,\"z\":0.00004841544666732215},\"standing_position\":[9.5120105135,1.933640631013159,22.1800749835],\"visible_nodes\":[146,147,150,151]},{\"accessible_nodes\":[146,147,149,151],\"floor_index\":1,\"index\":150,\"offset_point_count\":0,\"position\":[9.5290126366,3.2467676643,24.7166083396],\"quaternion\":{\"w\":-0.9996271276205944,\"x\":-0.013497662730618781,\"y\":0.023473914549372053,\"z\":-0.0035205346851448316},\"standing_position\":[9.5290126366,1.921276474343335,24.7166083396],\"visible_nodes\":[146,147,149,151]},{\"accessible_nodes\":[146,147,149,150,152],\"floor_index\":1,\"index\":151,\"offset_point_count\":0,\"position\":[9.7506333564,3.2129790159,27.0142018689],\"quaternion\":{\"w\":-0.9970385049234558,\"x\":-0.008520585547147151,\"y\":0.07635708545764212,\"z\":-0.0033488520338102123},\"standing_position\":[9.7506333564,1.8729799361957151,27.0142018689],\"visible_nodes\":[146,147,149,150,152]},{\"accessible_nodes\":[151],\"floor_index\":1,\"index\":152,\"offset_point_count\":0,\"position\":[12.3417429752,3.1960365308,27.1285057821],\"quaternion\":{\"w\":0.00017120336522209007,\"x\":-0.017875115030878415,\"y\":-0.9997899268971457,\"z\":-0.010027612906757421},\"standing_position\":[12.3417429752,2.1229881776048094,27.1285057821],\"visible_nodes\":[151]},{\"accessible_nodes\":[139,146,154,155,156,157,158,159],\"floor_index\":1,\"index\":153,\"offset_point_count\":0,\"position\":[11.354276733,3.3199721989,16.5774328535],\"quaternion\":{\"w\":-0.09363941674768958,\"x\":-0.002103243565158945,\"y\":-0.9956021188833419,\"z\":-0.001912292936997016},\"standing_position\":[11.354276733,1.9632506784761108,16.5774328535],\"visible_nodes\":[139,146,154,155,156,157,158,159]},{\"accessible_nodes\":[139,146,153,155,156,157,158,159,160],\"floor_index\":1,\"index\":154,\"offset_point_count\":0,\"position\":[13.8328880844,3.3369511763,16.8467715241],\"quaternion\":{\"w\":-0.024160736410369664,\"x\":-0.0033172057728941147,\"y\":-0.9996915331866125,\"z\":0.004700364481453476},\"standing_position\":[13.8328880844,1.9867562452697265,16.8467715241],\"visible_nodes\":[139,146,153,155,156,157,158,159,160]},{\"accessible_nodes\":[139,146,153,154,156,157,158,159,160,161],\"floor_index\":1,\"index\":155,\"offset_point_count\":0,\"position\":[15.9050543637,3.3557777383,16.7378077002],\"quaternion\":{\"w\":-0.00740581429905093,\"x\":-0.006463034024799378,\"y\":-0.9999516597316092,\"z\":-0.0002475767929284947},\"standing_position\":[15.9050543637,2.000104425159131,16.7378077002],\"visible_nodes\":[139,146,153,154,156,157,158,159,160,161]},{\"accessible_nodes\":[139,146,153,154,155,157,158,159,160,161,162],\"floor_index\":1,\"index\":156,\"offset_point_count\":0,\"position\":[20.1531524365,3.3882774431,16.6771303455],\"quaternion\":{\"w\":-0.35422673887862927,\"x\":-0.002280365500086077,\"y\":-0.9351417678084964,\"z\":-0.005300140064981985},\"standing_position\":[20.1531524365,2.0086475927124265,16.6771303455],\"visible_nodes\":[139,146,153,154,155,157,158,159,160,161,162]},{\"accessible_nodes\":[139,146,153,154,155,156,158,159,160,161,162,163,178,179],\"floor_index\":1,\"index\":157,\"offset_point_count\":0,\"position\":[21.8184162373,3.39223238,16.5885920117],\"quaternion\":{\"w\":-0.23586819037186474,\"x\":-0.006865086036531675,\"y\":-0.9717608074392586,\"z\":-0.000021774211141157308},\"standing_position\":[21.8184162373,2.048579773989563,16.5885920117],\"visible_nodes\":[139,146,153,154,155,156,158,159,160,161,162,163,178,179]},{\"accessible_nodes\":[146,153,154,155,156,157,159,160,161,162,163],\"floor_index\":1,\"index\":158,\"offset_point_count\":0,\"position\":[23.5538217486,3.3972547546,16.4046316158],\"quaternion\":{\"w\":-0.6976462406510421,\"x\":-0.009135548454430854,\"y\":-0.7163710101965322,\"z\":-0.004340554099400083},\"standing_position\":[23.5538217486,2.0646965995401856,16.4046316158],\"visible_nodes\":[146,153,154,155,156,157,159,160,161,162,163]},{\"accessible_nodes\":[153,154,155,156,157,158,160,161,162,163,164],\"floor_index\":1,\"index\":159,\"offset_point_count\":0,\"position\":[24.9807792363,3.4044450682,16.3079486657],\"quaternion\":{\"w\":0.32471624494598167,\"x\":0.0020113745955140927,\"y\":-0.9457977540547451,\"z\":0.004682209337054296},\"standing_position\":[24.9807792363,2.0724154871300535,16.3079486657],\"visible_nodes\":[153,154,155,156,157,158,160,161,162,163,164]},{\"accessible_nodes\":[154,155,156,157,158,159,161,162,163,164,165],\"floor_index\":1,\"index\":160,\"offset_point_count\":0,\"position\":[27.5720530232,3.4125210124,16.3897637624],\"quaternion\":{\"w\":-0.6703701227660871,\"x\":-0.005050959176631104,\"y\":-0.7420052843309137,\"z\":-0.00255819620167744},\"standing_position\":[27.5720530232,2.0763620215400147,16.3897637624],\"visible_nodes\":[154,155,156,157,158,159,161,162,163,164,165]},{\"accessible_nodes\":[155,156,157,158,159,160,162,163,164,165,166],\"floor_index\":1,\"index\":161,\"offset_point_count\":0,\"position\":[30.5104939586,3.4138807443,16.4849901823],\"quaternion\":{\"w\":-0.7066719976238588,\"x\":-0.0068730786825121236,\"y\":-0.7074960581162272,\"z\":-0.004095893880618462},\"standing_position\":[30.5104939586,2.067316809020154,16.4849901823],\"visible_nodes\":[155,156,157,158,159,160,162,163,164,165,166]},{\"accessible_nodes\":[156,157,158,159,160,161,163,164,165,166],\"floor_index\":1,\"index\":162,\"offset_point_count\":0,\"position\":[33.3520048333,3.4137897466,16.3325896358],\"quaternion\":{\"w\":-0.7472905866544964,\"x\":0.0013899200434356587,\"y\":-0.6644472315955572,\"z\":-0.008045102712165004},\"standing_position\":[33.3520048333,2.0728411649044434,16.3325896358],\"visible_nodes\":[156,157,158,159,160,161,163,164,165,166]},{\"accessible_nodes\":[157,158,159,160,161,162,164,165,166,167],\"floor_index\":1,\"index\":163,\"offset_point_count\":0,\"position\":[36.158835372,3.4105861142,16.2779578105],\"quaternion\":{\"w\":-0.6623947576308336,\"x\":-0.010363065154521907,\"y\":-0.7490413511115391,\"z\":-0.007927564868332215},\"standing_position\":[36.158835372,2.069862957270984,16.2779578105],\"visible_nodes\":[157,158,159,160,161,162,164,165,166,167]},{\"accessible_nodes\":[159,160,161,162,163,165,166,167],\"floor_index\":1,\"index\":164,\"offset_point_count\":0,\"position\":[38.5569725896,3.4111852087,16.3699177231],\"quaternion\":{\"w\":-0.6950260216268961,\"x\":-0.008425433082461565,\"y\":-0.7189176794494624,\"z\":-0.005021106627624242},\"standing_position\":[38.5569725896,2.0785787738779176,16.3699177231],\"visible_nodes\":[159,160,161,162,163,165,166,167]},{\"accessible_nodes\":[160,161,162,163,164,166,167,168],\"floor_index\":1,\"index\":165,\"offset_point_count\":0,\"position\":[41.3620325162,3.4036543731,16.4133807969],\"quaternion\":{\"w\":-0.6973690913132063,\"x\":-0.009579651123225556,\"y\":-0.7166261288321826,\"z\":-0.005618916737744135},\"standing_position\":[41.3620325162,2.0761608247067507,16.4133807969],\"visible_nodes\":[160,161,162,163,164,166,167,168]},{\"accessible_nodes\":[161,162,163,164,165,167,168,169,170,171,188],\"floor_index\":1,\"index\":166,\"offset_point_count\":0,\"position\":[45.2291414164,3.3959677738,16.450326841],\"quaternion\":{\"w\":-0.7888658869914962,\"x\":-0.008130000524228092,\"y\":-0.6144865778436499,\"z\":-0.005546264471649879},\"standing_position\":[45.2291414164,2.0543846410561644,16.450326841],\"visible_nodes\":[161,162,163,164,165,167,168,169,170,171,188]},{\"accessible_nodes\":[163,164,165,166,168,169,170,171,172,173,188],\"floor_index\":1,\"index\":167,\"offset_point_count\":0,\"position\":[50.0445457377,3.3988783659,17.2208913649],\"quaternion\":{\"w\":-0.6735774120839566,\"x\":-0.004391649439606238,\"y\":-0.7390943071929319,\"z\":-0.003713278025944155},\"standing_position\":[50.0445457377,2.0371880830783446,17.2208913649],\"visible_nodes\":[163,164,165,166,168,169,170,171,172,173,188]},{\"accessible_nodes\":[165,166,167,169,170,171,172,188],\"floor_index\":1,\"index\":168,\"offset_point_count\":0,\"position\":[54.9077220164,3.3948548197,17.521357303],\"quaternion\":{\"w\":-0.7240078178987553,\"x\":-0.011367120931282516,\"y\":-0.6896980794340376,\"z\":-0.00016559593741896853},\"standing_position\":[54.9077220164,2.0503214954583617,17.521357303],\"visible_nodes\":[165,166,167,169,170,171,172,188]},{\"accessible_nodes\":[166,167,168,170,171,172,173,186,188],\"floor_index\":1,\"index\":169,\"offset_point_count\":0,\"position\":[53.1334338112,3.3756437893,19.8079510669],\"quaternion\":{\"w\":0.6890287817481029,\"x\":0.001669630675830315,\"y\":-0.7247285387819359,\"z\":0.002257278639460748},\"standing_position\":[53.1334338112,2.024791776665723,19.8079510669],\"visible_nodes\":[166,167,168,170,171,172,173,186,188]},{\"accessible_nodes\":[166,167,168,169,171,172,173,174,175,188],\"floor_index\":1,\"index\":170,\"offset_point_count\":0,\"position\":[47.3703303877,3.3811262813,20.1313004846],\"quaternion\":{\"w\":0.6630749982503565,\"x\":0.000376901744140731,\"y\":-0.7485528506725493,\"z\":-0.00018544278453446806},\"standing_position\":[47.3703303877,2.0207676854519163,20.1313004846],\"visible_nodes\":[166,167,168,169,171,172,173,174,175,188]},{\"accessible_nodes\":[166,167,168,169,170,172,182,184,185,186,188],\"floor_index\":1,\"index\":171,\"offset_point_count\":0,\"position\":[47.1574926108,3.3571167521,23.366353988],\"quaternion\":{\"w\":0.7226973835738514,\"x\":0.004193726429762161,\"y\":-0.6911516818144914,\"z\":0.0005071115128880376},\"standing_position\":[47.1574926108,2.0214388899326416,23.366353988],\"visible_nodes\":[166,167,168,169,170,172,182,184,185,186,188]},{\"accessible_nodes\":[167,168,169,170,171,173,174,175,176],\"floor_index\":1,\"index\":172,\"offset_point_count\":0,\"position\":[43.1544000628,3.3868815205,20.0328344866],\"quaternion\":{\"w\":0.6986580496985682,\"x\":0.002358623285458419,\"y\":-0.7154513335825156,\"z\":0.0008693516537115067},\"standing_position\":[43.1544000628,2.0296937725446775,20.0328344866],\"visible_nodes\":[167,168,169,170,171,173,174,175,176]},{\"accessible_nodes\":[167,169,170,172,174,175,176,177],\"floor_index\":1,\"index\":173,\"offset_point_count\":0,\"position\":[39.534397148,3.3997722982,20.0641008355],\"quaternion\":{\"w\":0.6839762817901711,\"x\":0.0014431590204558864,\"y\":-0.7294925473060023,\"z\":-0.0038712640525651854},\"standing_position\":[39.534397148,2.045975577695239,20.0641008355],\"visible_nodes\":[167,169,170,172,174,175,176,177]},{\"accessible_nodes\":[170,172,173,175,176,177,178],\"floor_index\":1,\"index\":174,\"offset_point_count\":0,\"position\":[36.3949341373,3.4042164037,20.0058192389],\"quaternion\":{\"w\":0.7411463487418336,\"x\":0.006780448022892633,\"y\":-0.6712614136459804,\"z\":0.008014350431346696},\"standing_position\":[36.3949341373,2.0539758155118286,20.0058192389],\"visible_nodes\":[170,172,173,175,176,177,178]},{\"accessible_nodes\":[170,172,173,174,176,177,178,182,183],\"floor_index\":1,\"index\":175,\"offset_point_count\":0,\"position\":[32.8277379218,3.3998596747,20.1108767757],\"quaternion\":{\"w\":0.6306596453745504,\"x\":0.001765296043915773,\"y\":-0.7760545205557403,\"z\":0.002162534436109291},\"standing_position\":[32.8277379218,2.0494262058813355,20.1108767757],\"visible_nodes\":[170,172,173,174,176,177,178,182,183]},{\"accessible_nodes\":[172,173,174,175,177,178],\"floor_index\":1,\"index\":176,\"offset_point_count\":0,\"position\":[29.8052481346,3.4005187281,20.0741712864],\"quaternion\":{\"w\":0.7264989297543474,\"x\":-0.001722975405490751,\"y\":-0.6871647565176783,\"z\":-0.0009663439425576226},\"standing_position\":[29.8052481346,2.0634809263574465,20.0741712864],\"visible_nodes\":[172,173,174,175,177,178]},{\"accessible_nodes\":[173,174,175,176,178],\"floor_index\":1,\"index\":177,\"offset_point_count\":0,\"position\":[26.0392961153,3.3949817747,20.0620757216],\"quaternion\":{\"w\":0.7097917012548892,\"x\":0.0033673382642352505,\"y\":-0.7043977212484436,\"z\":0.0028726567235534363},\"standing_position\":[26.0392961153,2.0597697824362062,20.0620757216],\"visible_nodes\":[173,174,175,176,178]},{\"accessible_nodes\":[157,174,175,176,177,179],\"floor_index\":1,\"index\":178,\"offset_point_count\":0,\"position\":[22.3521504248,3.3931009062,19.9906399614],\"quaternion\":{\"w\":0.648514228874752,\"x\":-0.0006397695999583356,\"y\":-0.761194147130021,\"z\":0.0035151133388089915},\"standing_position\":[22.3521504248,2.0278939493365966,19.9906399614],\"visible_nodes\":[157,174,175,176,177,179]},{\"accessible_nodes\":[157,178,180,181,182,184],\"floor_index\":1,\"index\":179,\"offset_point_count\":0,\"position\":[22.6680539833,3.374604387,24.036954044],\"quaternion\":{\"w\":-0.9922175422380921,\"x\":-0.0045737207132657545,\"y\":-0.12430342417328911,\"z\":-0.005664685727408021},\"standing_position\":[22.6680539833,2.0164325663594362,24.036954044],\"visible_nodes\":[157,178,180,181,182,184]},{\"accessible_nodes\":[179,181,182,184,185],\"floor_index\":1,\"index\":180,\"offset_point_count\":0,\"position\":[25.2121440174,3.3770899027,23.6402827069],\"quaternion\":{\"w\":-0.7799076810393103,\"x\":-0.0024487351833049485,\"y\":-0.6258789682318778,\"z\":0.003678297309627973},\"standing_position\":[25.2121440174,2.0345124452720214,23.6402827069],\"visible_nodes\":[179,181,182,184,185]},{\"accessible_nodes\":[179,180,182,184,185,186],\"floor_index\":1,\"index\":181,\"offset_point_count\":0,\"position\":[29.0905376615,3.3786694526,23.6179090556],\"quaternion\":{\"w\":-0.6930319377726695,\"x\":-0.00667940300209326,\"y\":-0.7208586079461076,\"z\":-0.004998614860501635},\"standing_position\":[29.0905376615,2.02786858075094,23.6179090556],\"visible_nodes\":[179,180,182,184,185,186]},{\"accessible_nodes\":[171,175,179,180,181,183,184,185,186,188],\"floor_index\":1,\"index\":182,\"offset_point_count\":0,\"position\":[32.3599032168,3.3814233534,23.575143165],\"quaternion\":{\"w\":-0.7072957101463346,\"x\":-0.003663951467537872,\"y\":-0.7068941613848568,\"z\":0.004471967831516709},\"standing_position\":[32.3599032168,2.044875263418921,23.575143165],\"visible_nodes\":[171,175,179,180,181,183,184,185,186,188]},{\"accessible_nodes\":[175,182,184],\"floor_index\":1,\"index\":183,\"offset_point_count\":0,\"position\":[31.445155932,3.3855318164,25.5783374292],\"quaternion\":{\"w\":-0.986334989379876,\"x\":-0.00020875922198548055,\"y\":-0.16473423365235743,\"z\":-0.002424334101240156},\"standing_position\":[31.445155932,2.0477394198545897,25.5783374292],\"visible_nodes\":[175,182,184]},{\"accessible_nodes\":[171,179,180,181,182,183,185,186,188],\"floor_index\":1,\"index\":184,\"offset_point_count\":0,\"position\":[35.5534952882,3.3824698138,23.396068026],\"quaternion\":{\"w\":-0.6821474099293053,\"x\":-0.0031738356191502674,\"y\":-0.7312070404646005,\"z\":-0.0010496827266764984},\"standing_position\":[35.5534952882,2.0267641949416624,23.396068026],\"visible_nodes\":[171,179,180,181,182,183,185,186,188]},{\"accessible_nodes\":[171,180,181,182,184,186,188],\"floor_index\":1,\"index\":185,\"offset_point_count\":0,\"position\":[39.5846955805,3.3806507822,23.3869410668],\"quaternion\":{\"w\":-0.7130080247469268,\"x\":-0.005799382370914767,\"y\":-0.7011216910601183,\"z\":-0.003781289159648342},\"standing_position\":[39.5846955805,2.0214828487359497,23.3869410668],\"visible_nodes\":[171,180,181,182,184,186,188]},{\"accessible_nodes\":[169,171,181,182,184,185,187,188],\"floor_index\":1,\"index\":186,\"offset_point_count\":0,\"position\":[41.8970992979,3.3704657453,23.4852332275],\"quaternion\":{\"w\":-0.7147462688899,\"x\":0.0013123613500827087,\"y\":-0.6993815384323495,\"z\":-0.00122983772481026},\"standing_position\":[41.8970992979,2.0145410197674685,23.4852332275],\"visible_nodes\":[169,171,181,182,184,185,187,188]},{\"accessible_nodes\":[186],\"floor_index\":1,\"index\":187,\"offset_point_count\":0,\"position\":[41.6218961712,3.3646556333,25.5103836962],\"quaternion\":{\"w\":-0.9999656450598691,\"x\":-0.0067480068773722755,\"y\":0.002918415511990254,\"z\":0.003828309446341832},\"standing_position\":[41.6218961712,2.030373473494702,25.5103836962],\"visible_nodes\":[186]},{\"accessible_nodes\":[166,167,168,169,170,171,182,184,185,186],\"floor_index\":1,\"index\":188,\"offset_point_count\":0,\"position\":[44.6365269404,3.3642865723,23.4874349181],\"quaternion\":{\"w\":-0.7457676821350168,\"x\":-0.0012824751637977969,\"y\":-0.6661980474303418,\"z\":-0.003013493559075404},\"standing_position\":[44.6365269404,2.025837332569165,23.4874349181],\"visible_nodes\":[166,167,168,169,170,171,182,184,185,186]},{\"accessible_nodes\":[134,135,136,137,138,139,140,142,143,190,191,192,234,343,344,345],\"floor_index\":1,\"index\":189,\"offset_point_count\":0,\"position\":[7.9109901714,3.3764142671,11.088708479],\"quaternion\":{\"w\":-0.5700463282415164,\"x\":0.01203201174008386,\"y\":-0.8213026851593753,\"z\":0.019087003376785604},\"standing_position\":[7.9109901714,2.2113984504114623,11.088708479],\"visible_nodes\":[134,135,136,137,138,139,140,142,143,190,191,192,234,343,344,345]},{\"accessible_nodes\":[134,135,136,137,138,139,189,191,192,231,232,234,343,344,345],\"floor_index\":1,\"index\":190,\"offset_point_count\":0,\"position\":[7.8790878114,4.3954371417,9.3837908539],\"quaternion\":{\"w\":-0.5773050850330186,\"x\":0.01859396791994205,\"y\":-0.8161926015653413,\"z\":0.014238690264665068},\"standing_position\":[7.8790878114,3.2293912375404545,9.3837908539],\"visible_nodes\":[134,135,136,137,138,139,189,191,192,231,232,234,343,344,345]},{\"accessible_nodes\":[135,136,137,138,189,190,192,231,232,233,234,343,344,345],\"floor_index\":1,\"index\":191,\"offset_point_count\":0,\"position\":[7.9177767389,5.2314942097,7.9659395477],\"quaternion\":{\"w\":-0.574238305367323,\"x\":0.0201629124974731,\"y\":-0.8183024750054224,\"z\":0.014996166515222585},\"standing_position\":[7.9177767389,4.052383563452136,7.9659395477],\"visible_nodes\":[135,136,137,138,189,190,192,231,232,233,234,343,344,345]},{\"accessible_nodes\":[137,138,189,190,191,231,232,233,234,343,344,345],\"floor_index\":1,\"index\":192,\"offset_point_count\":0,\"position\":[7.2092845767,5.7295278374,6.6744162317],\"quaternion\":{\"w\":-0.9999919152673186,\"x\":-0.00040103309224534745,\"y\":0.00015779602573874702,\"z\":-0.003997957297416021},\"standing_position\":[7.2092845767,4.373813873891394,6.6744162317],\"visible_nodes\":[137,138,189,190,191,231,232,233,234,343,344,345]},{\"accessible_nodes\":[194,195,201,202,203],\"floor_index\":3,\"index\":193,\"offset_point_count\":0,\"position\":[33.3454176107,18.5629683222,17.3074157423],\"quaternion\":{\"w\":0.5398062864297413,\"x\":0.025149022403829043,\"y\":-0.8413977185760608,\"z\":-0.0051547067507384066},\"standing_position\":[33.3454176107,17.21950525895995,17.3074157423],\"visible_nodes\":[194,195,201,202,203]},{\"accessible_nodes\":[193,195,196,197,198,204],\"floor_index\":3,\"index\":194,\"offset_point_count\":0,\"position\":[33.185298012,18.5675056171,21.0416065024],\"quaternion\":{\"w\":-0.6911779251079139,\"x\":0.012736195835910846,\"y\":-0.7224958805245881,\"z\":0.010514607217530746},\"standing_position\":[33.185298012,17.232118387180567,21.0416065024],\"visible_nodes\":[193,195,196,197,198,204]},{\"accessible_nodes\":[193,194,196,197,198,205],\"floor_index\":3,\"index\":195,\"offset_point_count\":0,\"position\":[33.3788345722,18.5695535478,24.3920127853],\"quaternion\":{\"w\":-0.8379452321339634,\"x\":0.011144968321087155,\"y\":-0.5454648546194337,\"z\":0.01384380631684973},\"standing_position\":[33.3788345722,17.226189189851695,24.3920127853],\"visible_nodes\":[193,194,196,197,198,205]},{\"accessible_nodes\":[194,195,197,198,199,200,204],\"floor_index\":3,\"index\":196,\"offset_point_count\":0,\"position\":[37.8510905228,18.6114542616,23.8259632159],\"quaternion\":{\"w\":-0.6800889709934547,\"x\":0.019258654122481633,\"y\":-0.7328702052717112,\"z\":0.003057363614842746},\"standing_position\":[37.8510905228,17.2754072082629,23.8259632159],\"visible_nodes\":[194,195,197,198,199,200,204]},{\"accessible_nodes\":[194,195,196,198,199,200,204],\"floor_index\":3,\"index\":197,\"offset_point_count\":0,\"position\":[42.26651296,18.6661358017,23.5227031595],\"quaternion\":{\"w\":-0.7177883762033228,\"x\":0.014924494060284593,\"y\":-0.6960739763128628,\"z\":0.006173677505892772},\"standing_position\":[42.26651296,17.340161456492787,23.5227031595],\"visible_nodes\":[194,195,196,198,199,200,204]},{\"accessible_nodes\":[194,195,196,197,199,200,201],\"floor_index\":3,\"index\":198,\"offset_point_count\":0,\"position\":[47.2754537518,18.7296542153,23.3565424363],\"quaternion\":{\"w\":-0.7963293992936875,\"x\":0.015187221298168345,\"y\":-0.6046722599681583,\"z\":0.0005278567351789077},\"standing_position\":[47.2754537518,17.394025824987803,23.3565424363],\"visible_nodes\":[194,195,196,197,199,200,201]},{\"accessible_nodes\":[196,197,198,200,201,202],\"floor_index\":3,\"index\":199,\"offset_point_count\":0,\"position\":[48.434992825,18.75069328,20.8957843401],\"quaternion\":{\"w\":-0.7278591394948888,\"x\":0.016154206821453673,\"y\":-0.68553313216795,\"z\":0.002104125836250127},\"standing_position\":[48.434992825,17.407618242997437,20.8957843401],\"visible_nodes\":[196,197,198,200,201,202]},{\"accessible_nodes\":[196,197,198,199,201,202,203],\"floor_index\":3,\"index\":200,\"offset_point_count\":0,\"position\":[51.4425168888,18.8050650998,18.9939349745],\"quaternion\":{\"w\":-0.7129338893870883,\"x\":0.00764645849868971,\"y\":-0.7011754004705242,\"z\":-0.004455033644796636},\"standing_position\":[51.4425168888,17.476545993888745,18.9939349745],\"visible_nodes\":[196,197,198,199,201,202,203]},{\"accessible_nodes\":[193,198,199,200,202,203],\"floor_index\":3,\"index\":201,\"offset_point_count\":0,\"position\":[48.2351026,18.7578101246,16.5027843063],\"quaternion\":{\"w\":0.710933568867189,\"x\":0.009925997088709587,\"y\":-0.703167725884088,\"z\":-0.005483895140596355},\"standing_position\":[48.2351026,17.450806149685448,16.5027843063],\"visible_nodes\":[193,198,199,200,202,203]},{\"accessible_nodes\":[193,199,200,201,203],\"floor_index\":3,\"index\":202,\"offset_point_count\":0,\"position\":[43.5855752871,18.6884843588,16.4448598496],\"quaternion\":{\"w\":0.679077430403883,\"x\":0.007281163178561208,\"y\":-0.7339813287986282,\"z\":-0.008498625278670156},\"standing_position\":[43.5855752871,17.36462907792384,16.4448598496],\"visible_nodes\":[193,199,200,201,203]},{\"accessible_nodes\":[193,200,201,202,204],\"floor_index\":3,\"index\":203,\"offset_point_count\":0,\"position\":[39.214291753,18.6421438474,16.4425187932],\"quaternion\":{\"w\":0.7023088684097034,\"x\":0.009314846868532498,\"y\":-0.7118010466064236,\"z\":-0.003840030810619591},\"standing_position\":[39.214291753,17.338656546527197,16.4425187932],\"visible_nodes\":[193,200,201,202,204]},{\"accessible_nodes\":[194,196,197,203,205,206,207],\"floor_index\":3,\"index\":204,\"offset_point_count\":0,\"position\":[30.9232014533,18.4147482201,21.1575895612],\"quaternion\":{\"w\":0.5497784189215627,\"x\":0.012070213081505092,\"y\":-0.8351951044217153,\"z\":-0.0068650934310371635},\"standing_position\":[30.9232014533,17.07948544467886,21.1575895612],\"visible_nodes\":[194,196,197,203,205,206,207]},{\"accessible_nodes\":[195,204,206,207],\"floor_index\":3,\"index\":205,\"offset_point_count\":0,\"position\":[30.9759246928,17.680230026,19.7016323982],\"quaternion\":{\"w\":-0.5076098002312136,\"x\":0.015349169431161123,\"y\":-0.861449268268306,\"z\":0.0013580463099722758},\"standing_position\":[30.9759246928,16.529878382437683,19.7016323982],\"visible_nodes\":[195,204,206,207]},{\"accessible_nodes\":[204,205,207],\"floor_index\":3,\"index\":206,\"offset_point_count\":0,\"position\":[30.9715086033,16.2485908735,17.726246841],\"quaternion\":{\"w\":-0.5273875283417924,\"x\":0.01927372906274467,\"y\":-0.849322083531919,\"z\":0.011954452670979577},\"standing_position\":[30.9715086033,15.089799331446777,17.726246841],\"visible_nodes\":[204,205,207]},{\"accessible_nodes\":[204,205,206,208,209,210,211],\"floor_index\":3,\"index\":207,\"offset_point_count\":0,\"position\":[30.0352203893,15.7120767113,16.3711055026],\"quaternion\":{\"w\":0.20472761260531777,\"x\":0.0067244852797268065,\"y\":-0.9787953094110127,\"z\":-0.001059385772520557},\"standing_position\":[30.0352203893,14.544430064800366,16.3711055026],\"visible_nodes\":[204,205,206,208,209,210,211]},{\"accessible_nodes\":[207,209,210,211,212,213],\"floor_index\":3,\"index\":208,\"offset_point_count\":0,\"position\":[28.4950143902,14.6290187832,16.4367963146],\"quaternion\":{\"w\":-0.9660586329384983,\"x\":0.007348209164496881,\"y\":0.2580071921896152,\"z\":0.010440511379025252},\"standing_position\":[28.4950143902,13.479031920063708,16.4367963146],\"visible_nodes\":[207,209,210,211,212,213]},{\"accessible_nodes\":[207,208,210,211,212,213,218],\"floor_index\":3,\"index\":209,\"offset_point_count\":0,\"position\":[26.7893119402,13.3906101363,16.4147237714],\"quaternion\":{\"w\":-0.9593580325926291,\"x\":0.006587766152247005,\"y\":0.2814599846735829,\"z\":0.019210350149666912},\"standing_position\":[26.7893119402,12.2604272740182,16.4147237714],\"visible_nodes\":[207,208,210,211,212,213,218]},{\"accessible_nodes\":[207,208,209,211,212,213,218,221,222],\"floor_index\":3,\"index\":210,\"offset_point_count\":0,\"position\":[23.8226312839,13.2302346012,17.6041576342],\"quaternion\":{\"w\":-0.916937378736956,\"x\":-0.018564072252619083,\"y\":0.3985719813313904,\"z\":0.0046462539850522615},\"standing_position\":[23.8226312839,11.877355196178332,17.6041576342],\"visible_nodes\":[207,208,209,211,212,213,218,221,222]},{\"accessible_nodes\":[207,208,209,210,212,213,214,218],\"floor_index\":3,\"index\":211,\"offset_point_count\":0,\"position\":[23.9734907128,13.102771637,22.8121747332],\"quaternion\":{\"w\":-0.9333463487098452,\"x\":-0.004814838758636478,\"y\":0.35881106396132784,\"z\":-0.009799212144176214},\"standing_position\":[23.9734907128,11.773493763960754,22.8121747332],\"visible_nodes\":[207,208,209,210,212,213,214,218]},{\"accessible_nodes\":[208,209,210,211,213],\"floor_index\":3,\"index\":212,\"offset_point_count\":0,\"position\":[28.551232452,13.1453739192,22.4281776317],\"quaternion\":{\"w\":-0.7514943769750542,\"x\":-0.0034286195027454854,\"y\":-0.6596837803637436,\"z\":-0.00785766518640457},\"standing_position\":[28.551232452,11.81293688077837,22.4281776317],\"visible_nodes\":[208,209,210,211,213]},{\"accessible_nodes\":[208,209,210,211,212,214,215,216,218,219,220,221,222],\"floor_index\":3,\"index\":213,\"offset_point_count\":0,\"position\":[16.0913615194,13.0545146431,23.6275979152],\"quaternion\":{\"w\":-0.9985769607045819,\"x\":-0.009231330295759848,\"y\":-0.0524242969345725,\"z\":-0.0032439908514555913},\"standing_position\":[16.0913615194,11.72194707050631,23.6275979152],\"visible_nodes\":[208,209,210,211,212,214,215,216,218,219,220,221,222]},{\"accessible_nodes\":[211,213,215,216,217,218,219,221,222],\"floor_index\":3,\"index\":214,\"offset_point_count\":0,\"position\":[9.4146224512,13.0097911811,23.9732740634],\"quaternion\":{\"w\":-0.9995998152010633,\"x\":0.007361247559374472,\"y\":-0.02726057849412351,\"z\":0.0016960760688606014},\"standing_position\":[9.4146224512,11.661956236374964,23.9732740634],\"visible_nodes\":[211,213,215,216,217,218,219,221,222]},{\"accessible_nodes\":[213,214,216,218,220,221],\"floor_index\":3,\"index\":215,\"offset_point_count\":0,\"position\":[7.3897952454,13.1679169435,17.9056473431],\"quaternion\":{\"w\":-0.9995580325949064,\"x\":-0.0028986492835021056,\"y\":-0.029568418377142806,\"z\":-0.0010199390047952994},\"standing_position\":[7.3897952454,11.809056331584411,17.9056473431],\"visible_nodes\":[213,214,216,218,220,221]},{\"accessible_nodes\":[213,214,215,217,218],\"floor_index\":3,\"index\":216,\"offset_point_count\":0,\"position\":[4.560618997,13.1808299132,17.5509621692],\"quaternion\":{\"w\":-0.9996692573421471,\"x\":0.004455750331707437,\"y\":-0.025327696149541726,\"z\":0.00015594392730899703},\"standing_position\":[4.560618997,11.839015156806568,17.5509621692],\"visible_nodes\":[213,214,215,217,218]},{\"accessible_nodes\":[214,216],\"floor_index\":3,\"index\":217,\"offset_point_count\":0,\"position\":[4.1245280842,13.1474331431,12.4508147824],\"quaternion\":{\"w\":-0.5482243645945633,\"x\":0.02087568686383724,\"y\":-0.8360620078678375,\"z\":-0.003816109026573854},\"standing_position\":[4.1245280842,11.78900824113772,12.4508147824],\"visible_nodes\":[214,216]},{\"accessible_nodes\":[209,210,211,213,214,215,216,219,220,221,222,224],\"floor_index\":3,\"index\":218,\"offset_point_count\":0,\"position\":[12.3480564612,13.1945963687,17.5635440539],\"quaternion\":{\"w\":-0.5221026193487603,\"x\":0.005897753236000031,\"y\":-0.8524853870301825,\"z\":-0.025352089876039974},\"standing_position\":[12.3480564612,11.846728403001757,17.5635440539],\"visible_nodes\":[209,210,211,213,214,215,216,219,220,221,222,224]},{\"accessible_nodes\":[213,214,218,220,221,222],\"floor_index\":3,\"index\":219,\"offset_point_count\":0,\"position\":[12.2984316335,13.0667224573,11.4145598813],\"quaternion\":{\"w\":-0.6270454681871371,\"x\":0.008516347216665469,\"y\":-0.7787504732101291,\"z\":0.017004229667321166},\"standing_position\":[12.2984316335,11.714439217935375,11.4145598813],\"visible_nodes\":[213,214,218,220,221,222]},{\"accessible_nodes\":[213,215,218,219,221,222,223],\"floor_index\":3,\"index\":220,\"offset_point_count\":0,\"position\":[17.5423162806,13.0612339865,10.054335654],\"quaternion\":{\"w\":-0.6989207198260683,\"x\":0.009223378017009011,\"y\":-0.7150252340127584,\"z\":0.01279298011437292},\"standing_position\":[17.5423162806,11.720388163212036,10.054335654],\"visible_nodes\":[213,215,218,219,221,222,223]},{\"accessible_nodes\":[210,213,214,215,218,219,220,222,223],\"floor_index\":3,\"index\":221,\"offset_point_count\":0,\"position\":[11.4299179236,13.1811086312,14.4407568236],\"quaternion\":{\"w\":-0.9997792311180504,\"x\":0.015233374330019157,\"y\":-0.013931383265907564,\"z\":-0.003917171389548074},\"standing_position\":[11.4299179236,11.841823138302967,14.4407568236],\"visible_nodes\":[210,213,214,215,218,219,220,222,223]},{\"accessible_nodes\":[210,213,214,218,219,220,221,223],\"floor_index\":3,\"index\":222,\"offset_point_count\":0,\"position\":[9.4128141176,13.1850543763,14.5517420518],\"quaternion\":{\"w\":-0.46674847804501485,\"x\":0.014296883731849248,\"y\":-0.8840558989679329,\"z\":0.019662593955080458},\"standing_position\":[9.4128141176,11.84401376503291,14.5517420518],\"visible_nodes\":[210,213,214,218,219,220,221,223]},{\"accessible_nodes\":[220,221,222,224],\"floor_index\":3,\"index\":223,\"offset_point_count\":0,\"position\":[8.198562795,13.1338539341,14.4747035602],\"quaternion\":{\"w\":-0.4928804450842974,\"x\":0.0003914754768434591,\"y\":-0.8700119040564904,\"z\":0.012165233976284622},\"standing_position\":[8.198562795,11.806578300288049,14.4747035602],\"visible_nodes\":[220,221,222,224]},{\"accessible_nodes\":[218,223,225,226],\"floor_index\":2,\"index\":224,\"offset_point_count\":0,\"position\":[6.4412696838,13.1146967078,11.9672984185],\"quaternion\":{\"w\":-0.8083147864822916,\"x\":0.0009509586968731973,\"y\":-0.5887497026326213,\"z\":0.00027019848042166667},\"standing_position\":[6.4412696838,11.786988940313428,11.9672984185],\"visible_nodes\":[218,223,225,226]},{\"accessible_nodes\":[224,226],\"floor_index\":2,\"index\":225,\"offset_point_count\":0,\"position\":[6.5629051483,12.0787323669,9.8370473601],\"quaternion\":{\"w\":-0.47819799576604316,\"x\":0.005694358152007283,\"y\":-0.8781897566870158,\"z\":0.008774683052636003},\"standing_position\":[6.5629051483,10.79457950149015,9.8370473601],\"visible_nodes\":[224,226]},{\"accessible_nodes\":[224,225,227],\"floor_index\":2,\"index\":226,\"offset_point_count\":0,\"position\":[6.5161465335,11.0281870909,8.2046691665],\"quaternion\":{\"w\":-0.5324059821080916,\"x\":-0.0006090984584420288,\"y\":-0.846471030839213,\"z\":0.0055032056388057676},\"standing_position\":[6.5161465335,9.851457173373754,8.2046691665],\"visible_nodes\":[224,225,227]},{\"accessible_nodes\":[228,229,230,232,235,236,226],\"floor_index\":2,\"index\":227,\"offset_point_count\":0,\"position\":[7.865990169,10.0657187694,8.5341779649],\"quaternion\":{\"w\":0.8228661147689686,\"x\":0.018745510386446233,\"y\":-0.5678549252890214,\"z\":0.008984945269961686},\"standing_position\":[7.865990169,8.853152870504736,8.5341779649],\"visible_nodes\":[228,229,230,232,235,236,226]},{\"accessible_nodes\":[227,229,230,232,235,236],\"floor_index\":2,\"index\":228,\"offset_point_count\":0,\"position\":[7.9401669376,8.8789819787,10.4657177632],\"quaternion\":{\"w\":0.852370699259516,\"x\":0.0058874114311954755,\"y\":-0.522839682766142,\"z\":0.008256810342245872},\"standing_position\":[7.9401669376,7.664104373261768,10.4657177632],\"visible_nodes\":[227,229,230,232,235,236]},{\"accessible_nodes\":[227,228,230,235,236],\"floor_index\":2,\"index\":229,\"offset_point_count\":0,\"position\":[7.8301461829,8.2255365779,11.6249827253],\"quaternion\":{\"w\":0.8585442311230825,\"x\":0.0009423220874155876,\"y\":-0.5126231587384635,\"z\":0.010880754370767213},\"standing_position\":[7.8301461829,6.927943461139746,11.6249827253],\"visible_nodes\":[227,228,230,235,236]},{\"accessible_nodes\":[227,228,229,231,232,233,235],\"floor_index\":2,\"index\":230,\"offset_point_count\":0,\"position\":[7.2082101979,8.2297323797,12.4458133236],\"quaternion\":{\"w\":0.8403116377361631,\"x\":0.013959477033385577,\"y\":-0.5419152384367872,\"z\":0.00305608858643162},\"standing_position\":[7.2082101979,6.906793222214038,12.4458133236],\"visible_nodes\":[227,228,229,231,232,233,235]},{\"accessible_nodes\":[190,191,192,230,232,233,234,235,343,344],\"floor_index\":1,\"index\":231,\"offset_point_count\":0,\"position\":[6.5030880132,7.7300536577,10.9565385919],\"quaternion\":{\"w\":-0.525809806497781,\"x\":0.0070923197219843505,\"y\":-0.8504293216370188,\"z\":0.015611133091512379},\"standing_position\":[6.5030880132,6.449624413658557,10.9565385919],\"visible_nodes\":[190,191,192,230,232,233,234,235,343,344]},{\"accessible_nodes\":[190,191,192,227,228,230,231,233,234,343,344],\"floor_index\":1,\"index\":232,\"offset_point_count\":0,\"position\":[6.5172074502,6.8604698716,9.5423886763],\"quaternion\":{\"w\":-0.536855705984218,\"x\":0.007641037182565865,\"y\":-0.8434909091537383,\"z\":0.015831731030033123},\"standing_position\":[6.5172074502,5.606899434168665,9.5423886763],\"visible_nodes\":[190,191,192,227,228,230,231,233,234,343,344]},{\"accessible_nodes\":[191,192,230,231,232,234,343],\"floor_index\":1,\"index\":233,\"offset_point_count\":0,\"position\":[6.5384056749,5.8336822669,7.8423586682],\"quaternion\":{\"w\":-0.5429791630711067,\"x\":-0.011900123523647558,\"y\":-0.839645624698301,\"z\":0.005218468090719218},\"standing_position\":[6.5384056749,4.6381611506432865,7.8423586682],\"visible_nodes\":[191,192,230,231,232,234,343]},{\"accessible_nodes\":[137,138,189,190,191,192,231,232,233,343,344,345],\"floor_index\":1,\"index\":234,\"offset_point_count\":0,\"position\":[7.1422240151,5.7025538954,6.6569454308],\"quaternion\":{\"w\":-0.5676774890523892,\"x\":-0.004011206924042093,\"y\":-0.8232410687186348,\"z\":0.0005595303034590412},\"standing_position\":[7.1422240151,4.372979548857642,6.6569454308],\"visible_nodes\":[137,138,189,190,191,192,231,232,233,343,344,345]},{\"accessible_nodes\":[227,228,229,230,231,236,237,238,239,284,285,286,289],\"floor_index\":2,\"index\":235,\"offset_point_count\":0,\"position\":[8.0416049459,8.2270464183,13.5467582996],\"quaternion\":{\"w\":-0.9925462171480983,\"x\":-0.007346392514548279,\"y\":-0.12159026916324708,\"z\":0.0037199498232021342},\"standing_position\":[8.0416049459,6.909081864466993,13.5467582996],\"visible_nodes\":[227,228,229,230,231,236,237,238,239,284,285,286,289]},{\"accessible_nodes\":[227,228,229,235,237,238,239,284,285,286,289],\"floor_index\":2,\"index\":236,\"offset_point_count\":0,\"position\":[8.0605284064,8.2206512244,14.4449785691],\"quaternion\":{\"w\":-0.9699028294499403,\"x\":-0.010914859049337783,\"y\":-0.24319568763787616,\"z\":0.005021828039992763},\"standing_position\":[8.0605284064,6.892837479855016,14.4449785691],\"visible_nodes\":[227,228,229,235,237,238,239,284,285,286,289]},{\"accessible_nodes\":[235,236,238,239,284,285,286,289],\"floor_index\":2,\"index\":237,\"offset_point_count\":0,\"position\":[6.5230040719,8.2185511291,14.5294639038],\"quaternion\":{\"w\":-0.9971690958408208,\"x\":-0.013771054811341712,\"y\":0.07391400995319818,\"z\":0.000930492134052364},\"standing_position\":[6.5230040719,6.891029328105127,14.5294639038],\"visible_nodes\":[235,236,238,239,284,285,286,289]},{\"accessible_nodes\":[235,236,237,239,240,284,285,286,289],\"floor_index\":2,\"index\":238,\"offset_point_count\":0,\"position\":[4.9863477061,8.2188608684,14.3676097506],\"quaternion\":{\"w\":0.689782488218054,\"x\":0.006903640998714757,\"y\":-0.7239631849237915,\"z\":0.005454790633332779},\"standing_position\":[4.9863477061,6.888383034652136,14.3676097506],\"visible_nodes\":[235,236,237,239,240,284,285,286,289]},{\"accessible_nodes\":[235,236,237,238,241,270,279,284,285,286],\"floor_index\":2,\"index\":239,\"offset_point_count\":0,\"position\":[4.2723832374,8.2224665779,15.4708261493],\"quaternion\":{\"w\":-0.9093166262089349,\"x\":-0.0100112834601446,\"y\":0.41597954653265884,\"z\":-0.0020143322163111766},\"standing_position\":[4.2723832374,6.885103930843421,15.4708261493],\"visible_nodes\":[235,236,237,238,241,270,279,284,285,286]},{\"accessible_nodes\":[238,241,242,243,244,245,246,247,266,270,279,280,281,282,283],\"floor_index\":2,\"index\":240,\"offset_point_count\":0,\"position\":[4.2361298904,8.2294874267,16.3454088506],\"quaternion\":{\"w\":-0.9833273483433683,\"x\":-0.001224543766659819,\"y\":0.18182487810515685,\"z\":-0.002352520708284258},\"standing_position\":[4.2361298904,6.897495277346973,16.3454088506],\"visible_nodes\":[238,241,242,243,244,245,246,247,266,270,279,280,281,282,283]},{\"accessible_nodes\":[239,240,242,243,244,245,246,247,279,280,281,282,283],\"floor_index\":2,\"index\":241,\"offset_point_count\":0,\"position\":[6.5411188769,8.2348290331,16.8274792709],\"quaternion\":{\"w\":-0.014481352020845125,\"x\":0.0026379932311982016,\"y\":-0.9998306549111204,\"z\":0.011044785430170448},\"standing_position\":[6.5411188769,6.9097640163534795,16.8274792709],\"visible_nodes\":[239,240,242,243,244,245,246,247,279,280,281,282,283]},{\"accessible_nodes\":[240,241,243,244,245,246,247,264,276,277,278,279,280,281],\"floor_index\":2,\"index\":242,\"offset_point_count\":0,\"position\":[7.7761726907,8.2300973977,16.5676962869],\"quaternion\":{\"w\":-0.3231161530955243,\"x\":0.00201192711994835,\"y\":-0.9462817669304423,\"z\":0.011946338548474924},\"standing_position\":[7.7761726907,6.904165252581286,16.5676962869],\"visible_nodes\":[240,241,243,244,245,246,247,264,276,277,278,279,280,281]},{\"accessible_nodes\":[240,241,242,244,245,246,247,264,265,266,268,269,270,271,272,273,274,280],\"floor_index\":2,\"index\":243,\"offset_point_count\":0,\"position\":[9.7797141855,8.2500794721,16.9377000648],\"quaternion\":{\"w\":-0.6102625550575885,\"x\":0.0022296913729222163,\"y\":-0.7921492841788093,\"z\":0.008610745046713185},\"standing_position\":[9.7797141855,6.913940746819238,16.9377000648],\"visible_nodes\":[240,241,242,244,245,246,247,264,265,266,268,269,270,271,272,273,274,280]},{\"accessible_nodes\":[240,241,242,243,245,246,247,264,265,266,268,269,270,271,272,273,274],\"floor_index\":2,\"index\":244,\"offset_point_count\":0,\"position\":[11.8289818661,8.2576060279,17.1083544532],\"quaternion\":{\"w\":-0.6281567173550995,\"x\":0.0019179268686974045,\"y\":-0.7780440168782227,\"z\":0.007934636461533681},\"standing_position\":[11.8289818661,6.928289054213781,17.1083544532],\"visible_nodes\":[240,241,242,243,245,246,247,264,265,266,268,269,270,271,272,273,274]},{\"accessible_nodes\":[240,241,242,243,244,246,247,263,264,265,266,267,269,270,271,272,273,274],\"floor_index\":2,\"index\":245,\"offset_point_count\":0,\"position\":[13.8393695192,8.262090605,16.9786520999],\"quaternion\":{\"w\":-0.6010613866891292,\"x\":0.002734186428928392,\"y\":-0.7991593411047636,\"z\":0.007878598204578438},\"standing_position\":[13.8393695192,6.9401272947583,16.9786520999],\"visible_nodes\":[240,241,242,243,244,246,247,263,264,265,266,267,269,270,271,272,273,274]},{\"accessible_nodes\":[240,241,242,243,244,245,247,260,261,262,263,264,271,272,273],\"floor_index\":2,\"index\":246,\"offset_point_count\":0,\"position\":[15.8735224366,8.260232048,16.7566091059],\"quaternion\":{\"w\":-0.9987142963956209,\"x\":-0.0048770760742875416,\"y\":-0.05039941183044892,\"z\":0.0024211441737909704},\"standing_position\":[15.8735224366,6.944337921107911,16.7566091059],\"visible_nodes\":[240,241,242,243,244,245,247,260,261,262,263,264,271,272,273]},{\"accessible_nodes\":[240,241,242,243,244,245,246,248,250,255,256,257,258,259,271,272],\"floor_index\":2,\"index\":247,\"offset_point_count\":0,\"position\":[17.9205642358,8.2705381094,16.6250017577],\"quaternion\":{\"w\":-0.9764599662684589,\"x\":0.00009645395433867293,\"y\":-0.215697397257241,\"z\":0.0007428623292893892},\"standing_position\":[17.9205642358,6.949206489183631,16.6250017577],\"visible_nodes\":[240,241,242,243,244,245,246,248,250,255,256,257,258,259,271,272]},{\"accessible_nodes\":[247,249,255,256,257,258,259],\"floor_index\":2,\"index\":248,\"offset_point_count\":0,\"position\":[17.9175335925,8.3095207717,18.6918780343],\"quaternion\":{\"w\":-0.9957848598090855,\"x\":-0.002806814441360217,\"y\":-0.0916763127855773,\"z\":-0.0002876445621546246},\"standing_position\":[17.9175335925,6.994352152544117,18.6918780343],\"visible_nodes\":[247,249,255,256,257,258,259]},{\"accessible_nodes\":[248,250,251,252,253,259],\"floor_index\":2,\"index\":249,\"offset_point_count\":0,\"position\":[20.0806801326,8.3247480966,18.7805259242],\"quaternion\":{\"w\":-0.5859244214903299,\"x\":0.007145080866602465,\"y\":-0.8103104510772399,\"z\":0.00620357860165488},\"standing_position\":[20.0806801326,7.005620536938135,18.7805259242],\"visible_nodes\":[248,250,251,252,253,259]},{\"accessible_nodes\":[247,249,251,252,253,258,261],\"floor_index\":2,\"index\":250,\"offset_point_count\":0,\"position\":[20.210286432,8.3601461941,20.6174228618],\"quaternion\":{\"w\":-0.7228064582272024,\"x\":0.01013097399605143,\"y\":-0.6909685043835211,\"z\":0.0032712997562989437},\"standing_position\":[20.210286432,7.041891008019068,20.6174228618],\"visible_nodes\":[247,249,251,252,253,258,261]},{\"accessible_nodes\":[249,250,252,253],\"floor_index\":2,\"index\":251,\"offset_point_count\":0,\"position\":[20.2403040739,8.404405895,22.8166857574],\"quaternion\":{\"w\":0.6250787372561926,\"x\":0.003015851339425632,\"y\":-0.7805541984865625,\"z\":0.0016158032362717301},\"standing_position\":[20.2403040739,7.0955174596362305,22.8166857574],\"visible_nodes\":[249,250,252,253]},{\"accessible_nodes\":[249,250,251,253],\"floor_index\":2,\"index\":252,\"offset_point_count\":0,\"position\":[20.253617997,8.4537500314,24.5836345895],\"quaternion\":{\"w\":0.7027488568458286,\"x\":0.005619309713816644,\"y\":-0.7114013159251253,\"z\":0.004541374084750914},\"standing_position\":[20.253617997,7.146961467671668,24.5836345895],\"visible_nodes\":[249,250,251,253]},{\"accessible_nodes\":[249,250,251,252,254],\"floor_index\":2,\"index\":253,\"offset_point_count\":0,\"position\":[20.2767502637,8.4853532152,26.078857921],\"quaternion\":{\"w\":-0.9633439616772402,\"x\":0.013804801456217188,\"y\":0.26789727606811586,\"z\":0.0029803210371519362},\"standing_position\":[20.2767502637,6.938716156941943,26.078857921],\"visible_nodes\":[249,250,251,252,254]},{\"accessible_nodes\":[253,255,256,260,261,262,267,268,275,276],\"floor_index\":2,\"index\":254,\"offset_point_count\":0,\"position\":[19.0317880504,8.5058355567,27.8175820552],\"quaternion\":{\"w\":-0.7460888092425945,\"x\":0.025995082259171437,\"y\":-0.665297381157479,\"z\":0.007424709633466628},\"standing_position\":[19.0317880504,6.895302200033434,27.8175820552],\"visible_nodes\":[253,255,256,260,261,262,267,268,275,276]},{\"accessible_nodes\":[247,248,254,256,257,258,259,260,261,262,267,268,275,276],\"floor_index\":2,\"index\":255,\"offset_point_count\":0,\"position\":[17.9076141221,8.4948082131,27.8227499055],\"quaternion\":{\"w\":-0.9973687360750787,\"x\":0.015441488130665319,\"y\":0.07046790886646502,\"z\":0.007171669856173986},\"standing_position\":[17.9076141221,7.141935841426417,27.8227499055],\"visible_nodes\":[247,248,254,256,257,258,259,260,261,262,267,268,275,276]},{\"accessible_nodes\":[247,248,254,255,257,258,259,260,261,262,267],\"floor_index\":2,\"index\":256,\"offset_point_count\":0,\"position\":[17.8266022614,8.4523513953,25.7350424307],\"quaternion\":{\"w\":-0.705404376307802,\"x\":0.027810133512102687,\"y\":-0.7082023155850311,\"z\":0.008985058167655836},\"standing_position\":[17.8266022614,7.1346208493023795,25.7350424307],\"visible_nodes\":[247,248,254,255,257,258,259,260,261,262,267]},{\"accessible_nodes\":[247,248,255,256,258,259,260,261],\"floor_index\":2,\"index\":257,\"offset_point_count\":0,\"position\":[17.8135393104,8.416691342,24.1558301408],\"quaternion\":{\"w\":-0.7111393920688803,\"x\":0.021504879094943016,\"y\":-0.7026511382969503,\"z\":0.009983569751274545},\"standing_position\":[17.8135393104,7.08772520125293,24.1558301408],\"visible_nodes\":[247,248,255,256,258,259,260,261]},{\"accessible_nodes\":[247,248,250,255,256,257,259,260,261],\"floor_index\":2,\"index\":258,\"offset_point_count\":0,\"position\":[17.8081201718,8.3811077769,22.5824357061],\"quaternion\":{\"w\":-0.6749115067647543,\"x\":0.024047749293309165,\"y\":-0.7374713360361879,\"z\":0.007223703132156251},\"standing_position\":[17.8081201718,7.060681074400611,22.5824357061],\"visible_nodes\":[247,248,250,255,256,257,259,260,261]},{\"accessible_nodes\":[247,248,249,255,256,257,258],\"floor_index\":2,\"index\":259,\"offset_point_count\":0,\"position\":[17.8042449933,8.3241380402,20.1735623721],\"quaternion\":{\"w\":-0.7103500161156905,\"x\":0.007483394365849647,\"y\":-0.7038085984129492,\"z\":0.0005465955884419925},\"standing_position\":[17.8042449933,7.019660229340319,20.1735623721],\"visible_nodes\":[247,248,249,255,256,257,258]},{\"accessible_nodes\":[246,254,255,256,257,258,261,262,263,267,268,275,276],\"floor_index\":2,\"index\":260,\"offset_point_count\":0,\"position\":[15.9742033239,8.4402996464,27.6350591214],\"quaternion\":{\"w\":-0.974475815143711,\"x\":0.006079011564926709,\"y\":-0.2240042988063363,\"z\":0.013490717928244595},\"standing_position\":[15.9742033239,7.130653636001135,27.6350591214],\"visible_nodes\":[246,254,255,256,257,258,261,262,263,267,268,275,276]},{\"accessible_nodes\":[246,250,254,255,256,257,258,260,262,263],\"floor_index\":2,\"index\":261,\"offset_point_count\":0,\"position\":[15.9345527519,8.3861968923,24.2579717648],\"quaternion\":{\"w\":0.5009658457063046,\"x\":-0.0030018979447191444,\"y\":-0.8654617671364807,\"z\":0.00036350158602728997},\"standing_position\":[15.9345527519,7.0749090123561515,24.2579717648],\"visible_nodes\":[246,250,254,255,256,257,258,260,262,263]},{\"accessible_nodes\":[246,254,255,256,260,261,263],\"floor_index\":2,\"index\":262,\"offset_point_count\":0,\"position\":[15.7559392839,8.3353119542,21.7694942148],\"quaternion\":{\"w\":0.5205204683443786,\"x\":-0.005044932751133271,\"y\":-0.8538335816334469,\"z\":0.0010944335583667139},\"standing_position\":[15.7559392839,7.048649137198657,21.7694942148],\"visible_nodes\":[246,254,255,256,260,261,263]},{\"accessible_nodes\":[245,246,260,261,262],\"floor_index\":2,\"index\":263,\"offset_point_count\":0,\"position\":[15.8328989053,8.2789818575,18.594436176],\"quaternion\":{\"w\":0.37601639475655635,\"x\":0.0007417913124121043,\"y\":-0.9266122607514969,\"z\":-0.0009122863853693394},\"standing_position\":[15.8328989053,6.966533594331665,18.594436176],\"visible_nodes\":[245,246,260,261,262]},{\"accessible_nodes\":[242,243,244,245,246,265,266,267,269,270,271,272,273,274],\"floor_index\":2,\"index\":264,\"offset_point_count\":0,\"position\":[13.8582850447,8.2691921181,18.91589579],\"quaternion\":{\"w\":-0.9957047739038917,\"x\":0.01205205284187811,\"y\":0.09175962684378866,\"z\":0.0026299052627146925},\"standing_position\":[13.8582850447,6.967001337460351,18.91589579],\"visible_nodes\":[242,243,244,245,246,265,266,267,269,270,271,272,273,274]},{\"accessible_nodes\":[243,244,245,264,266,267,270,271,272,273,274],\"floor_index\":2,\"index\":265,\"offset_point_count\":0,\"position\":[13.8771128229,8.3188005135,21.6230700584],\"quaternion\":{\"w\":-0.9713660536455863,\"x\":0.011529725619880778,\"y\":0.23725832417661127,\"z\":0.004851481537071917},\"standing_position\":[13.8771128229,7.013477508777404,21.6230700584],\"visible_nodes\":[243,244,245,264,266,267,270,271,272,273,274]},{\"accessible_nodes\":[240,243,244,245,264,265,267,271,272],\"floor_index\":2,\"index\":266,\"offset_point_count\":0,\"position\":[13.9548090605,8.3740645765,24.3935102619],\"quaternion\":{\"w\":-0.9803124860726808,\"x\":0.016843092059500537,\"y\":-0.19657453938183622,\"z\":0.007885713749265541},\"standing_position\":[13.9548090605,7.079091203086914,24.3935102619],\"visible_nodes\":[240,243,244,245,264,265,267,271,272]},{\"accessible_nodes\":[245,254,255,256,260,264,265,266,268,275,276],\"floor_index\":2,\"index\":267,\"offset_point_count\":0,\"position\":[13.8121164067,8.4214378929,27.6655547578],\"quaternion\":{\"w\":-0.9970094519737513,\"x\":0.011025579876136829,\"y\":-0.07642605769599668,\"z\":0.0031050413502815137},\"standing_position\":[13.8121164067,7.110345277772437,27.6655547578],\"visible_nodes\":[245,254,255,256,260,264,265,266,268,275,276]},{\"accessible_nodes\":[243,244,254,255,260,267,269,270,271,272,275,276],\"floor_index\":2,\"index\":268,\"offset_point_count\":0,\"position\":[11.9213986752,8.4231509225,27.6117751489],\"quaternion\":{\"w\":-0.9719071462079081,\"x\":0.016014649738639156,\"y\":-0.2346130217682565,\"z\":0.009836369206976656},\"standing_position\":[11.9213986752,7.111520435057983,27.6117751489],\"visible_nodes\":[243,244,254,255,260,267,269,270,271,272,275,276]},{\"accessible_nodes\":[243,244,245,264,268,270,271,272,273],\"floor_index\":2,\"index\":269,\"offset_point_count\":0,\"position\":[11.9564642574,8.3923515001,26.1861900561],\"quaternion\":{\"w\":-0.9927606147380142,\"x\":0.016043004465082493,\"y\":-0.11888765282166922,\"z\":0.005891019660911282},\"standing_position\":[11.9564642574,7.081700674599512,26.1861900561],\"visible_nodes\":[243,244,245,264,268,270,271,272,273]},{\"accessible_nodes\":[239,240,243,244,245,264,265,268,269,271,272,273,274],\"floor_index\":2,\"index\":270,\"offset_point_count\":0,\"position\":[11.8115999799,8.3362572779,23.1077595878],\"quaternion\":{\"w\":0.6662345754450514,\"x\":-0.004033441054810487,\"y\":-0.745721093757579,\"z\":-0.003906653270756192},\"standing_position\":[11.8115999799,7.028709350997229,23.1077595878],\"visible_nodes\":[239,240,243,244,245,264,265,268,269,271,272,273,274]},{\"accessible_nodes\":[243,244,245,246,247,264,265,266,268,269,270,272,273,274],\"floor_index\":2,\"index\":271,\"offset_point_count\":0,\"position\":[11.8655416263,8.2688772347,19.2455248403],\"quaternion\":{\"w\":0.6119848831277933,\"x\":-0.00007776371774139746,\"y\":-0.7908688239999095,\"z\":0.0009954675176324394},\"standing_position\":[11.8655416263,6.95512196088103,19.2455248403],\"visible_nodes\":[243,244,245,246,247,264,265,266,268,269,270,272,273,274]},{\"accessible_nodes\":[243,244,245,246,247,264,265,266,268,269,270,271,273,274],\"floor_index\":2,\"index\":272,\"offset_point_count\":0,\"position\":[9.9172373645,8.2573835661,19.1819299566],\"quaternion\":{\"w\":-0.9306313785006393,\"x\":0.005837540244723512,\"y\":0.3658878535221948,\"z\":0.004151219821562576},\"standing_position\":[9.9172373645,6.945898990828393,19.1819299566],\"visible_nodes\":[243,244,245,246,247,264,265,266,268,269,270,271,273,274]},{\"accessible_nodes\":[243,244,245,246,264,265,269,270,271,272,274],\"floor_index\":2,\"index\":273,\"offset_point_count\":0,\"position\":[9.9258466108,8.3204095931,22.3729702266],\"quaternion\":{\"w\":-0.9963249208466082,\"x\":0.013710723468998837,\"y\":-0.08414217507855218,\"z\":0.008291974136288748},\"standing_position\":[9.9258466108,7.020198640341212,22.3729702266],\"visible_nodes\":[243,244,245,246,264,265,269,270,271,272,274]},{\"accessible_nodes\":[243,244,245,264,265,270,271,272,273],\"floor_index\":2,\"index\":274,\"offset_point_count\":0,\"position\":[9.8403453475,8.3807477258,25.3475386175],\"quaternion\":{\"w\":-0.9867457758967099,\"x\":0.013910247766225849,\"y\":-0.1612895441131937,\"z\":0.011178369058612149},\"standing_position\":[9.8403453475,7.073517253235302,25.3475386175],\"visible_nodes\":[243,244,245,264,265,270,271,272,273]},{\"accessible_nodes\":[254,255,260,267,268,276],\"floor_index\":2,\"index\":275,\"offset_point_count\":0,\"position\":[9.8373029276,8.3951317411,27.4762539359],\"quaternion\":{\"w\":-0.43653399930717923,\"x\":0.011460947085550083,\"y\":-0.8995881664962029,\"z\":0.006916490880748332},\"standing_position\":[9.8373029276,7.105502758556055,27.4762539359],\"visible_nodes\":[254,255,260,267,268,276]},{\"accessible_nodes\":[242,254,255,260,267,268,275,277,278,279],\"floor_index\":2,\"index\":276,\"offset_point_count\":0,\"position\":[7.8952638196,8.3857279174,27.58660208],\"quaternion\":{\"w\":-0.9970662773983483,\"x\":0.007660523099758235,\"y\":-0.0758542603078968,\"z\":0.006802964661184763},\"standing_position\":[7.8952638196,7.079768335071204,27.58660208],\"visible_nodes\":[242,254,255,260,267,268,275,277,278,279]},{\"accessible_nodes\":[242,276,278,279],\"floor_index\":2,\"index\":277,\"offset_point_count\":0,\"position\":[7.7780824623,8.3621204156,25.764012146],\"quaternion\":{\"w\":-0.012408038953381391,\"x\":0.011716319782761263,\"y\":-0.9998207066894544,\"z\":0.008204707649196605},\"standing_position\":[7.7780824623,7.050809647472558,25.764012146],\"visible_nodes\":[242,276,278,279]},{\"accessible_nodes\":[242,276,277,279],\"floor_index\":2,\"index\":278,\"offset_point_count\":0,\"position\":[7.8273505389,8.3084032529,22.6240370259],\"quaternion\":{\"w\":-0.47381707689441793,\"x\":0.011246849990128168,\"y\":-0.8805012966912655,\"z\":0.009399214976854208},\"standing_position\":[7.8273505389,7.004892944634314,22.6240370259],\"visible_nodes\":[242,276,277,279]},{\"accessible_nodes\":[239,240,241,242,276,277,278,280],\"floor_index\":2,\"index\":279,\"offset_point_count\":0,\"position\":[7.8159051566,8.237892494,18.648136413],\"quaternion\":{\"w\":-0.009716578362975957,\"x\":0.012467295756422392,\"y\":-0.9998390443716428,\"z\":0.008487304954502133},\"standing_position\":[7.8159051566,6.925841316975159,18.648136413],\"visible_nodes\":[239,240,241,242,276,277,278,280]},{\"accessible_nodes\":[240,241,242,243,279,281,282,283],\"floor_index\":2,\"index\":280,\"offset_point_count\":0,\"position\":[5.9082384082,8.2342520619,18.10466062],\"quaternion\":{\"w\":-0.995279345297088,\"x\":0.007175909365292942,\"y\":-0.09604067029188416,\"z\":0.011988121356460466},\"standing_position\":[5.9082384082,6.920115437563757,18.10466062],\"visible_nodes\":[240,241,242,243,279,281,282,283]},{\"accessible_nodes\":[240,241,242,280,282,283],\"floor_index\":2,\"index\":281,\"offset_point_count\":0,\"position\":[5.8953833017,8.2645738083,20.2083118693],\"quaternion\":{\"w\":-0.6729297787630428,\"x\":0.014651163821103418,\"y\":-0.7394853410480833,\"z\":0.010596049597000156},\"standing_position\":[5.8953833017,6.964027162181836,20.2083118693],\"visible_nodes\":[240,241,242,280,282,283]},{\"accessible_nodes\":[240,241,280,281,283],\"floor_index\":2,\"index\":282,\"offset_point_count\":0,\"position\":[5.9540247231,8.3109951821,22.9805187927],\"quaternion\":{\"w\":-0.7842139192901879,\"x\":0.013277591484359658,\"y\":-0.6202048247756542,\"z\":0.01334897040343863},\"standing_position\":[5.9540247231,7.019376238885583,22.9805187927],\"visible_nodes\":[240,241,280,281,283]},{\"accessible_nodes\":[240,241,280,281,282],\"floor_index\":2,\"index\":283,\"offset_point_count\":0,\"position\":[5.969672106,8.3660233519,26.2784850922],\"quaternion\":{\"w\":-0.7125173247222962,\"x\":0.01347592809098037,\"y\":-0.7013906527392563,\"z\":0.013733248243872618},\"standing_position\":[5.969672106,7.083126952402013,26.2784850922],\"visible_nodes\":[240,241,280,281,282]},{\"accessible_nodes\":[235,236,237,238,239,285,286,289],\"floor_index\":2,\"index\":284,\"offset_point_count\":0,\"position\":[10.0655996126,8.2001897727,14.3281639178],\"quaternion\":{\"w\":-0.6673492677783227,\"x\":0.00877803771536217,\"y\":-0.7446562474390448,\"z\":0.007413758521447138},\"standing_position\":[10.0655996126,6.897438589190173,14.3281639178],\"visible_nodes\":[235,236,237,238,239,285,286,289]},{\"accessible_nodes\":[235,236,237,238,239,284,286,287,289,291],\"floor_index\":2,\"index\":285,\"offset_point_count\":0,\"position\":[14.2267590423,8.235560277,14.3678623272],\"quaternion\":{\"w\":-0.6755715220784629,\"x\":0.009938235819135778,\"y\":-0.737212175614999,\"z\":0.00474844480434656},\"standing_position\":[14.2267590423,6.929975011840392,14.3678623272],\"visible_nodes\":[235,236,237,238,239,284,286,287,289,291]},{\"accessible_nodes\":[235,236,237,238,239,284,285,287,288,289],\"floor_index\":2,\"index\":286,\"offset_point_count\":0,\"position\":[15.686809625,8.2430831901,14.3194059265],\"quaternion\":{\"w\":0.16232612492757365,\"x\":0.016137990686980068,\"y\":-0.9866042423636744,\"z\":0.0013629245570428612},\"standing_position\":[15.686809625,6.945508431570337,14.3194059265],\"visible_nodes\":[235,236,237,238,239,284,285,287,288,289]},{\"accessible_nodes\":[285,286,288],\"floor_index\":2,\"index\":287,\"offset_point_count\":0,\"position\":[15.5857145178,8.2578812199,12.2529129566],\"quaternion\":{\"w\":0.10592497913703032,\"x\":0.01181763354197552,\"y\":-0.9943038708438181,\"z\":-0.0002214150839149863},\"standing_position\":[15.5857145178,6.954683239972937,12.2529129566],\"visible_nodes\":[285,286,288]},{\"accessible_nodes\":[286,287],\"floor_index\":2,\"index\":288,\"offset_point_count\":0,\"position\":[15.5634733252,8.2618296808,9.2123439955],\"quaternion\":{\"w\":0.11399787930593717,\"x\":0.012280094284393629,\"y\":-0.9934012673260488,\"z\":-0.0027566502983945537},\"standing_position\":[15.5634733252,6.961907452940503,9.2123439955],\"visible_nodes\":[286,287]},{\"accessible_nodes\":[235,236,237,238,284,285,286,290],\"floor_index\":2,\"index\":289,\"offset_point_count\":0,\"position\":[19.5884607264,8.2792342283,14.2705107766],\"quaternion\":{\"w\":-0.6480605728632284,\"x\":0.014227220608284168,\"y\":-0.7614518972660059,\"z\":0.0024654568880064717},\"standing_position\":[19.5884607264,6.979990897344495,14.2705107766],\"visible_nodes\":[235,236,237,238,284,285,286,290]},{\"accessible_nodes\":[289,291],\"floor_index\":2,\"index\":290,\"offset_point_count\":0,\"position\":[20.0344368819,8.2753554451,16.6710197402],\"quaternion\":{\"w\":0.8108022551927063,\"x\":0.008375032808340883,\"y\":-0.5852065313844336,\"z\":-0.007928483238256926},\"standing_position\":[20.0344368819,6.975125657273463,16.6710197402],\"visible_nodes\":[289,291]},{\"accessible_nodes\":[285,290,292,293,294,337,340],\"floor_index\":2,\"index\":291,\"offset_point_count\":0,\"position\":[25.6354176611,8.3594371183,16.7620921946],\"quaternion\":{\"w\":-0.047722121375956134,\"x\":0.015122189061924926,\"y\":-0.9987414892878937,\"z\":0.0030578467829324215},\"standing_position\":[25.6354176611,7.038979540594617,16.7620921946],\"visible_nodes\":[285,290,292,293,294,337,340]},{\"accessible_nodes\":[291,293,294,337,340],\"floor_index\":2,\"index\":292,\"offset_point_count\":0,\"position\":[25.7588066389,8.3664322215,19.4967589559],\"quaternion\":{\"w\":0.046785245963335935,\"x\":0.015459432564486656,\"y\":-0.9987850547289943,\"z\":-0.0007453238526900724},\"standing_position\":[25.7588066389,7.071805389491638,19.4967589559],\"visible_nodes\":[291,293,294,337,340]},{\"accessible_nodes\":[291,292,294,295,296,333,337,340],\"floor_index\":2,\"index\":293,\"offset_point_count\":0,\"position\":[25.9261129604,8.3802744485,21.368594033],\"quaternion\":{\"w\":-0.9995849395374062,\"x\":0.004278632091014966,\"y\":0.027430056256839,\"z\":0.007695993127467601},\"standing_position\":[25.9261129604,7.0783399678328855,21.368594033],\"visible_nodes\":[291,292,294,295,296,333,337,340]},{\"accessible_nodes\":[291,292,293,337,340],\"floor_index\":2,\"index\":294,\"offset_point_count\":0,\"position\":[25.8132689313,8.3960512781,24.1652430603],\"quaternion\":{\"w\":-0.9981867315162029,\"x\":0.004648491463067181,\"y\":-0.059441282303837974,\"z\":0.008268543965178959},\"standing_position\":[25.8132689313,7.10070466040133,24.1652430603],\"visible_nodes\":[291,292,293,337,340]},{\"accessible_nodes\":[293,296,333],\"floor_index\":2,\"index\":295,\"offset_point_count\":0,\"position\":[29.1643744174,8.3932256779,21.2556036854],\"quaternion\":{\"w\":0.3595325360572505,\"x\":0.0010424439734091865,\"y\":-0.9331284460485598,\"z\":0.002562319967979715},\"standing_position\":[29.1643744174,7.1005379041954715,21.2556036854],\"visible_nodes\":[293,296,333]},{\"accessible_nodes\":[293,295,333,297],\"floor_index\":2,\"index\":296,\"offset_point_count\":0,\"position\":[31.6593585539,8.4064405401,21.4392873329],\"quaternion\":{\"w\":-0.7035391417029105,\"x\":0.008104787251934375,\"y\":-0.7106090167419774,\"z\":-0.0013426343495812525},\"standing_position\":[31.6593585539,7.109162493492029,21.4392873329],\"visible_nodes\":[293,295,333,297]},{\"accessible_nodes\":[298,302,303,313,314,315,296],\"floor_index\":2,\"index\":297,\"offset_point_count\":0,\"position\":[32.7508364178,8.4103402853,21.4772396951],\"quaternion\":{\"w\":-0.2592555497331058,\"x\":0.01572292474369414,\"y\":-0.9656666490176619,\"z\":0.0052217320595358855},\"standing_position\":[32.7508364178,7.115088438986524,21.4772396951],\"visible_nodes\":[298,302,303,313,314,315,296]},{\"accessible_nodes\":[297,299,300,301,302,303,313,314,315],\"floor_index\":2,\"index\":298,\"offset_point_count\":0,\"position\":[32.7060590685,8.4052193993,19.2536796031],\"quaternion\":{\"w\":0.1742396392864214,\"x\":0.019250541638752634,\"y\":-0.9845125285642636,\"z\":0.002244998017672099},\"standing_position\":[32.7060590685,7.111519896355054,19.2536796031],\"visible_nodes\":[297,299,300,301,302,303,313,314,315]},{\"accessible_nodes\":[298,300,301,302,303,304,306,315,317],\"floor_index\":2,\"index\":299,\"offset_point_count\":0,\"position\":[30.731325552,8.3800892638,18.6751353772],\"quaternion\":{\"w\":-0.999804852583743,\"x\":-0.003553917112742144,\"y\":0.01942389894869354,\"z\":0.0005770165282846302},\"standing_position\":[30.731325552,7.0641985939773075,18.6751353772],\"visible_nodes\":[298,300,301,302,303,304,306,315,317]},{\"accessible_nodes\":[298,299,301,302,303,304,306],\"floor_index\":2,\"index\":300,\"offset_point_count\":0,\"position\":[27.8314924342,8.3647387161,18.9519230886],\"quaternion\":{\"w\":-0.7067440678386652,\"x\":0.0019228889292926695,\"y\":-0.7073918333392039,\"z\":0.010291155349696074},\"standing_position\":[27.8314924342,7.059898747418664,18.9519230886],\"visible_nodes\":[298,299,301,302,303,304,306]},{\"accessible_nodes\":[298,299,300,302,303,304,306,307,315,316],\"floor_index\":2,\"index\":301,\"offset_point_count\":0,\"position\":[28.2977916905,8.3768404333,16.5908651384],\"quaternion\":{\"w\":-0.6970521161329272,\"x\":0.0034000335706923022,\"y\":-0.7169916191455796,\"z\":0.005458413000229825},\"standing_position\":[28.2977916905,7.069345554531079,16.5908651384],\"visible_nodes\":[298,299,300,302,303,304,306,307,315,316]},{\"accessible_nodes\":[297,298,299,300,301,303,304,306,307,314,315,316,317],\"floor_index\":2,\"index\":302,\"offset_point_count\":0,\"position\":[31.3175965878,8.3857248106,16.6548928308],\"quaternion\":{\"w\":-0.5364291607369769,\"x\":0.0015130125613588962,\"y\":-0.8439393416887259,\"z\":-0.0028010545405665046},\"standing_position\":[31.3175965878,7.077829746246056,16.6548928308],\"visible_nodes\":[297,298,299,300,301,303,304,306,307,314,315,316,317]},{\"accessible_nodes\":[297,298,299,300,301,302,304,306,307,314,316,317,319,329],\"floor_index\":2,\"index\":303,\"offset_point_count\":0,\"position\":[33.9687003048,8.4039983702,16.3999606991],\"quaternion\":{\"w\":-0.40724653876629746,\"x\":0.01069239211732309,\"y\":-0.9132555739495927,\"z\":-0.0004234135668371419},\"standing_position\":[33.9687003048,7.092810745268665,16.3999606991],\"visible_nodes\":[297,298,299,300,301,302,304,306,307,314,316,317,319,329]},{\"accessible_nodes\":[299,300,301,302,303,305,306,307,308,316,317,319,326,328,329],\"floor_index\":2,\"index\":304,\"offset_point_count\":0,\"position\":[36.5910347469,8.4259251741,16.558362484],\"quaternion\":{\"w\":0.5157230374816382,\"x\":0.009863760927444292,\"y\":-0.8566983311090316,\"z\":-0.0006454395963210269},\"standing_position\":[36.5910347469,7.118265190465051,16.558362484],\"visible_nodes\":[299,300,301,302,303,305,306,307,308,316,317,319,326,328,329]},{\"accessible_nodes\":[304,306,307,308,316,317,319,329],\"floor_index\":2,\"index\":305,\"offset_point_count\":0,\"position\":[36.6219708777,8.4268870896,17.9392556509],\"quaternion\":{\"w\":-0.999515575341375,\"x\":-0.0014546090985159813,\"y\":-0.030924546888069327,\"z\":0.0031883371091156686},\"standing_position\":[36.6219708777,7.1380495375293815,17.9392556509],\"visible_nodes\":[304,306,307,308,316,317,319,329]},{\"accessible_nodes\":[299,300,301,302,303,304,305,307,308,310,311,316,317,319,320,326,328,329,330],\"floor_index\":2,\"index\":306,\"offset_point_count\":0,\"position\":[37.9423397384,8.4343915482,16.276667181],\"quaternion\":{\"w\":-0.9334916999764915,\"x\":-0.0002681128819959544,\"y\":-0.35859221976310013,\"z\":0.0021880548322512983},\"standing_position\":[37.9423397384,7.14284007744347,16.276667181],\"visible_nodes\":[299,300,301,302,303,304,305,307,308,310,311,316,317,319,320,326,328,329,330]},{\"accessible_nodes\":[301,302,303,304,305,306,308,309,310,311,312,316,317,319,326,327,328,329,330],\"floor_index\":2,\"index\":307,\"offset_point_count\":0,\"position\":[39.8513326107,8.4528719746,16.882653501],\"quaternion\":{\"w\":-0.6708564975615701,\"x\":0.007517260408855246,\"y\":-0.7415449507952974,\"z\":0.002475104068919387},\"standing_position\":[39.8513326107,7.142042692793055,16.882653501],\"visible_nodes\":[301,302,303,304,305,306,308,309,310,311,312,316,317,319,326,327,328,329,330]},{\"accessible_nodes\":[304,305,306,307,309,310,311,312,316,317,318,326,327,328,329],\"floor_index\":2,\"index\":308,\"offset_point_count\":0,\"position\":[39.9198866527,8.4538390149,19.8125589514],\"quaternion\":{\"w\":-0.8623886966603127,\"x\":0.012462654440529798,\"y\":-0.5060394240323574,\"z\":0.0073822393524840485},\"standing_position\":[39.9198866527,7.151918839347632,19.8125589514],\"visible_nodes\":[304,305,306,307,309,310,311,312,316,317,318,326,327,328,329]},{\"accessible_nodes\":[307,308,310,311,316,317,325,326,327,328,329],\"floor_index\":2,\"index\":309,\"offset_point_count\":0,\"position\":[37.5255818445,8.437074905,21.2056039531],\"quaternion\":{\"w\":-0.971018439796588,\"x\":0.00030359529017981863,\"y\":0.2390001517619125,\"z\":-0.0014208717810642714},\"standing_position\":[37.5255818445,7.129130011163024,21.2056039531],\"visible_nodes\":[307,308,310,311,316,317,325,326,327,328,329]},{\"accessible_nodes\":[306,307,308,309,311,312,316,325,326,327,328,329],\"floor_index\":2,\"index\":310,\"offset_point_count\":0,\"position\":[39.0306262557,8.4460814768,22.5712402833],\"quaternion\":{\"w\":-0.9998918412383412,\"x\":-0.0013666903945406441,\"y\":-0.012091567733992562,\"z\":0.00825992208294389},\"standing_position\":[39.0306262557,7.139746504418408,22.5712402833],\"visible_nodes\":[306,307,308,309,311,312,316,325,326,327,328,329]},{\"accessible_nodes\":[306,307,308,309,310,312,313,316,324,325,326,327,328,329,332],\"floor_index\":2,\"index\":311,\"offset_point_count\":0,\"position\":[39.8982021019,8.4504780434,25.210875462],\"quaternion\":{\"w\":0.714195563302288,\"x\":0.006099218433860198,\"y\":-0.6999190750901135,\"z\":-0.0008795831859857195},\"standing_position\":[39.8982021019,7.176611628376197,25.210875462],\"visible_nodes\":[306,307,308,309,310,312,313,316,324,325,326,327,328,329,332]},{\"accessible_nodes\":[307,308,310,311,313,316,324,325,326,327,328,329],\"floor_index\":2,\"index\":312,\"offset_point_count\":0,\"position\":[36.6807900643,8.4446768716,25.4996546185],\"quaternion\":{\"w\":0.7214741358182273,\"x\":-0.001264599664444271,\"y\":-0.6924402042956489,\"z\":-0.0001543917790109938},\"standing_position\":[36.6807900643,7.144732947649805,25.4996546185],\"visible_nodes\":[307,308,310,311,313,316,324,325,326,327,328,329]},{\"accessible_nodes\":[297,298,311,312,314,315,324,325,326,327],\"floor_index\":2,\"index\":313,\"offset_point_count\":0,\"position\":[33.1343123504,8.4166268278,25.3532123707],\"quaternion\":{\"w\":0.7897668651726782,\"x\":0.0070730681935977455,\"y\":-0.6133462991247277,\"z\":0.004957085995853966},\"standing_position\":[33.1343123504,7.09753765352937,25.3532123707],\"visible_nodes\":[297,298,311,312,314,315,324,325,326,327]},{\"accessible_nodes\":[297,298,302,303,313,315],\"floor_index\":2,\"index\":314,\"offset_point_count\":0,\"position\":[32.7853087734,8.4019186344,23.052081704],\"quaternion\":{\"w\":0.47720382908931896,\"x\":0.007905948230685888,\"y\":-0.8787568672704641,\"z\":-0.0006019702317012954},\"standing_position\":[32.7853087734,7.1020812835546625,23.052081704],\"visible_nodes\":[297,298,302,303,313,315]},{\"accessible_nodes\":[297,298,299,301,302,313,314],\"floor_index\":2,\"index\":315,\"offset_point_count\":0,\"position\":[34.0083955612,8.4167916065,21.2259061559],\"quaternion\":{\"w\":-0.7037060551567011,\"x\":-0.001154441706325371,\"y\":-0.7104305877951764,\"z\":0.009209987523631911},\"standing_position\":[34.0083955612,7.108897376611084,21.2259061559],\"visible_nodes\":[297,298,299,301,302,313,314]},{\"accessible_nodes\":[301,302,303,304,305,306,307,308,309,310,311,312,317,318,319,327,328,329,330],\"floor_index\":2,\"index\":316,\"offset_point_count\":0,\"position\":[42.1332846029,8.4763272609,16.4300049221],\"quaternion\":{\"w\":-0.9994685111222864,\"x\":-0.003924982609602224,\"y\":-0.0312988512663332,\"z\":-0.008225935943462732},\"standing_position\":[42.1332846029,7.181053122449377,16.4300049221],\"visible_nodes\":[301,302,303,304,305,306,307,308,309,310,311,312,317,318,319,327,328,329,330]},{\"accessible_nodes\":[299,302,303,304,305,306,307,308,309,316,318,319,320,330,331,332],\"floor_index\":2,\"index\":317,\"offset_point_count\":0,\"position\":[44.9978756225,8.5054893208,16.2735490651],\"quaternion\":{\"w\":-0.9998588153709503,\"x\":0.0022930157385764554,\"y\":0.01506725193937592,\"z\":-0.0070755678864273626},\"standing_position\":[44.9978756225,7.2048309755775275,16.2735490651],\"visible_nodes\":[299,302,303,304,305,306,307,308,309,316,318,319,320,330,331,332]},{\"accessible_nodes\":[308,316,317,319,320,330,331],\"floor_index\":2,\"index\":318,\"offset_point_count\":0,\"position\":[45.37115842,8.5084643219,17.6571593942],\"quaternion\":{\"w\":-0.9999365892020353,\"x\":0.006447653675864586,\"y\":-0.0042606826732881275,\"z\":-0.008190620723795922},\"standing_position\":[45.37115842,7.202088460732092,17.6571593942],\"visible_nodes\":[308,316,317,319,320,330,331]},{\"accessible_nodes\":[303,304,305,306,307,316,317,318,320,321,323,324,330,331,332],\"floor_index\":2,\"index\":319,\"offset_point_count\":0,\"position\":[47.9456500888,8.5437986459,16.4498136071],\"quaternion\":{\"w\":-0.04594693628048843,\"x\":0.005167917533097981,\"y\":-0.998892976124069,\"z\":-0.008659576282700273},\"standing_position\":[47.9456500888,7.237713655398597,16.4498136071],\"visible_nodes\":[303,304,305,306,307,316,317,318,320,321,323,324,330,331,332]},{\"accessible_nodes\":[306,317,318,319,321,322,323,324,325,330,331,332],\"floor_index\":2,\"index\":320,\"offset_point_count\":0,\"position\":[48.054216439,8.5582597044,19.2012176847],\"quaternion\":{\"w\":0.7332903197374558,\"x\":0.0067897516177730845,\"y\":-0.6798816856446421,\"z\":-0.0002958197790094109},\"standing_position\":[48.054216439,7.263474920082983,19.2012176847],\"visible_nodes\":[306,317,318,319,321,322,323,324,325,330,331,332]},{\"accessible_nodes\":[319,320,322,323,324,325,330,331,332],\"floor_index\":2,\"index\":321,\"offset_point_count\":0,\"position\":[48.0984630055,8.5417334698,21.5766711504],\"quaternion\":{\"w\":0.7077760813482455,\"x\":0.0016501616209749612,\"y\":-0.7064252284035445,\"z\":0.0036987777969155994},\"standing_position\":[48.0984630055,7.239445533589368,21.5766711504],\"visible_nodes\":[319,320,322,323,324,325,330,331,332]},{\"accessible_nodes\":[320,321,323,324,326,330,331,332],\"floor_index\":2,\"index\":322,\"offset_point_count\":0,\"position\":[45.6154982598,8.5172095036,21.4892241906],\"quaternion\":{\"w\":0.7097261816344796,\"x\":-0.0036602391402052875,\"y\":-0.704467802848363,\"z\":0.0006731170652267984},\"standing_position\":[45.6154982598,7.212765190550684,21.4892241906],\"visible_nodes\":[320,321,323,324,326,330,331,332]},{\"accessible_nodes\":[319,320,321,322,324,325,326,330,331,332],\"floor_index\":2,\"index\":323,\"offset_point_count\":0,\"position\":[48.3173176597,8.5423356635,23.3306712861],\"quaternion\":{\"w\":0.7289115115780719,\"x\":0.006276577850990986,\"y\":-0.6845713344130033,\"z\":0.003269377875600314},\"standing_position\":[48.3173176597,7.237535510721374,23.3306712861],\"visible_nodes\":[319,320,321,322,324,325,326,330,331,332]},{\"accessible_nodes\":[311,312,313,319,320,321,322,323,325,326,327,330,331,332],\"floor_index\":2,\"index\":324,\"offset_point_count\":0,\"position\":[47.3377389193,8.5286939137,25.427506153],\"quaternion\":{\"w\":0.7265095873291835,\"x\":0.004426916354689575,\"y\":-0.68705532955869,\"z\":0.010917147866122958},\"standing_position\":[47.3377389193,7.226076483013049,25.427506153],\"visible_nodes\":[311,312,313,319,320,321,322,323,325,326,327,330,331,332]},{\"accessible_nodes\":[309,310,311,312,313,320,321,323,324,326,327,330,331,332],\"floor_index\":2,\"index\":325,\"offset_point_count\":0,\"position\":[45.3310938383,8.3129181483,25.5154367385],\"quaternion\":{\"w\":0.003936420386349504,\"x\":-0.0028686836157227106,\"y\":-0.9999846913328224,\"z\":-0.0026242470737249213},\"standing_position\":[45.3310938383,7.221229515334912,25.5154367385],\"visible_nodes\":[309,310,311,312,313,320,321,323,324,326,327,330,331,332]},{\"accessible_nodes\":[304,306,307,308,309,310,311,312,313,322,323,324,325,327,328,329,331,332],\"floor_index\":2,\"index\":326,\"offset_point_count\":0,\"position\":[44.0831413514,8.3043168679,25.4655520526],\"quaternion\":{\"w\":-0.0009081611164944079,\"x\":-0.0014140489354001276,\"y\":-0.9999763902087888,\"z\":-0.006662513500552567},\"standing_position\":[44.0831413514,7.217998136592017,25.4655520526],\"visible_nodes\":[304,306,307,308,309,310,311,312,313,322,323,324,325,327,328,329,331,332]},{\"accessible_nodes\":[307,308,309,310,311,312,313,316,324,325,326,328,329,332],\"floor_index\":2,\"index\":327,\"offset_point_count\":0,\"position\":[41.9222518479,8.4922267137,25.1514582567],\"quaternion\":{\"w\":0.29832425493937165,\"x\":0.004699585771683114,\"y\":-0.9544506352085476,\"z\":0.002128746500918999},\"standing_position\":[41.9222518479,7.187982672257128,25.1514582567],\"visible_nodes\":[307,308,309,310,311,312,313,316,324,325,326,328,329,332]},{\"accessible_nodes\":[304,306,307,308,309,310,311,312,316,326,327,329],\"floor_index\":2,\"index\":328,\"offset_point_count\":0,\"position\":[41.8032579383,8.4812354705,22.2509384716],\"quaternion\":{\"w\":-0.6944574786794463,\"x\":0.0044444379591462154,\"y\":-0.7194210560235224,\"z\":-0.01193274929628867},\"standing_position\":[41.8032579383,7.169067587580688,22.2509384716],\"visible_nodes\":[304,306,307,308,309,310,311,312,316,326,327,329]},{\"accessible_nodes\":[303,304,305,306,307,308,309,310,311,312,316,326,327,328],\"floor_index\":2,\"index\":329,\"offset_point_count\":0,\"position\":[41.9894280565,8.4980540148,20.6888339864],\"quaternion\":{\"w\":-0.6856549327126792,\"x\":-0.006209725494397207,\"y\":-0.727845221029169,\"z\":-0.008948523239309577},\"standing_position\":[41.9894280565,7.164463507292675,20.6888339864],\"visible_nodes\":[303,304,305,306,307,308,309,310,311,312,316,326,327,328]},{\"accessible_nodes\":[306,307,316,317,318,319,320,321,322,323,324,325,331,332],\"floor_index\":2,\"index\":330,\"offset_point_count\":0,\"position\":[52.1856869916,8.6049678387,17.0135818375],\"quaternion\":{\"w\":-0.6790734120536387,\"x\":0.0032290678873290618,\"y\":-0.734032895158657,\"z\":-0.006676261864178032},\"standing_position\":[52.1856869916,7.287376886780445,17.0135818375],\"visible_nodes\":[306,307,316,317,318,319,320,321,322,323,324,325,331,332]},{\"accessible_nodes\":[317,318,319,320,321,322,323,324,325,326,330,332],\"floor_index\":2,\"index\":331,\"offset_point_count\":0,\"position\":[52.0807986416,8.6078120542,21.2082291474],\"quaternion\":{\"w\":-0.7100048101190665,\"x\":0.002998682001483926,\"y\":-0.7041168166398244,\"z\":-0.010182076901974172},\"standing_position\":[52.0807986416,7.281727082772083,21.2082291474],\"visible_nodes\":[317,318,319,320,321,322,323,324,325,326,330,332]},{\"accessible_nodes\":[311,317,319,320,321,322,323,324,325,326,327,330,331],\"floor_index\":2,\"index\":332,\"offset_point_count\":0,\"position\":[52.0974255807,8.6124443116,24.9300605324],\"quaternion\":{\"w\":0.7139413362983765,\"x\":-0.002441126239396567,\"y\":-0.7001894954938984,\"z\":0.004058088907768854},\"standing_position\":[52.0974255807,7.295608669739037,24.9300605324],\"visible_nodes\":[311,317,319,320,321,322,323,324,325,326,327,330,331]},{\"accessible_nodes\":[293,295,296,337,334],\"floor_index\":2,\"index\":333,\"offset_point_count\":0,\"position\":[27.2953740551,8.402005801,21.4241125614],\"quaternion\":{\"w\":-0.9983990282572395,\"x\":0.0047011018311915774,\"y\":0.05627189098237455,\"z\":-0.003278511604437024},\"standing_position\":[27.2953740551,7.081649789609314,21.4241125614],\"visible_nodes\":[293,295,296,337,334]},{\"accessible_nodes\":[333,335],\"floor_index\":2,\"index\":334,\"offset_point_count\":0,\"position\":[27.3201228572,8.398604417,22.494187139],\"quaternion\":{\"w\":-0.9998408179055304,\"x\":0.0036735160579801766,\"y\":-0.014163311670616296,\"z\":-0.010209754060035296},\"standing_position\":[27.3201228572,7.31268277183551,22.494187139],\"visible_nodes\":[333,335]},{\"accessible_nodes\":[336,334],\"floor_index\":2,\"index\":335,\"offset_point_count\":0,\"position\":[27.3293086177,8.4208678152,24.4778775817],\"quaternion\":{\"w\":-0.7124153488554278,\"x\":0.004287901880090631,\"y\":-0.7017212226732209,\"z\":-0.0057705094547006765},\"standing_position\":[27.3293086177,7.11567594069591,24.4778775817],\"visible_nodes\":[336,334]},{\"accessible_nodes\":[335],\"floor_index\":2,\"index\":336,\"offset_point_count\":0,\"position\":[27.4452309296,8.4274287714,25.3827073798],\"quaternion\":{\"w\":-0.8743379612598323,\"x\":-0.012954194404049307,\"y\":0.4851096578991529,\"z\":0.005825012209994188},\"standing_position\":[27.4452309296,7.139322091483619,25.3827073798],\"visible_nodes\":[335]},{\"accessible_nodes\":[291,292,293,294,333,340,338],\"floor_index\":2,\"index\":337,\"offset_point_count\":0,\"position\":[25.6647875554,8.386822725,22.2700431358],\"quaternion\":{\"w\":0.7051864403209445,\"x\":0.000051918762493979116,\"y\":-0.7089917638978608,\"z\":0.006538280606413188},\"standing_position\":[25.6647875554,7.08479943341217,22.2700431358],\"visible_nodes\":[291,292,293,294,333,340,338]},{\"accessible_nodes\":[339,337],\"floor_index\":2,\"index\":338,\"offset_point_count\":0,\"position\":[24.2226811426,8.3593630695,22.4183429416],\"quaternion\":{\"w\":0.7061552279886943,\"x\":-0.002874567000292945,\"y\":-0.7079577375627728,\"z\":0.011504841839909788},\"standing_position\":[24.2226811426,7.05894814964679,22.4183429416],\"visible_nodes\":[339,337]},{\"accessible_nodes\":[338],\"floor_index\":2,\"index\":339,\"offset_point_count\":0,\"position\":[22.2141756769,8.3378602746,22.6901562909],\"quaternion\":{\"w\":-0.004626515117417949,\"x\":0.0021772267898750508,\"y\":-0.9999815752427641,\"z\":0.0032708659649114775},\"standing_position\":[22.2141756769,7.031130957888575,22.6901562909],\"visible_nodes\":[338]},{\"accessible_nodes\":[291,292,293,294,337,341],\"floor_index\":2,\"index\":340,\"offset_point_count\":0,\"position\":[25.6926153224,8.3754832783,19.4661796807],\"quaternion\":{\"w\":0.7252603784253511,\"x\":-0.0023178779476731646,\"y\":-0.6884676462804915,\"z\":0.002073409633280696},\"standing_position\":[25.6926153224,7.071360353495313,19.4661796807],\"visible_nodes\":[291,292,293,294,337,341]},{\"accessible_nodes\":[342,340],\"floor_index\":2,\"index\":341,\"offset_point_count\":0,\"position\":[24.2798435505,8.3568534868,19.5021027441],\"quaternion\":{\"w\":0.7179563339986526,\"x\":-0.0060726355415929014,\"y\":-0.6960075771139277,\"z\":0.008675625774130998},\"standing_position\":[24.2798435505,7.0386928336856815,19.5021027441],\"visible_nodes\":[342,340]},{\"accessible_nodes\":[341],\"floor_index\":2,\"index\":342,\"offset_point_count\":0,\"position\":[22.5338640355,8.3400243842,19.6435575107],\"quaternion\":{\"w\":0.030138743040434565,\"x\":0.003618978949075866,\"y\":-0.9995101590529233,\"z\":0.007615473470737467},\"standing_position\":[22.5338640355,7.025805267035388,19.6435575107],\"visible_nodes\":[341]},{\"accessible_nodes\":[135,136,137,138,189,190,191,192,231,232,233,234,344,345],\"floor_index\":1,\"index\":343,\"offset_point_count\":0,\"position\":[7.8954043277,5.2414742168,7.957319955],\"quaternion\":{\"w\":-0.8983718490135363,\"x\":0.013868664366187493,\"y\":0.4388830418973416,\"z\":-0.010832800010025038},\"standing_position\":[7.8954043277,4.052239125590589,7.957319955],\"visible_nodes\":[135,136,137,138,189,190,191,192,231,232,233,234,344,345]},{\"accessible_nodes\":[134,135,136,137,138,139,189,190,191,192,231,232,234,343,345],\"floor_index\":1,\"index\":344,\"offset_point_count\":0,\"position\":[7.8705999456,4.3902256021,9.3943052563],\"quaternion\":{\"w\":-0.8971647160778226,\"x\":0.007420487041782547,\"y\":0.4415926882490486,\"z\":-0.00602488241917349},\"standing_position\":[7.8705999456,3.228714180896387,9.3943052563],\"visible_nodes\":[134,135,136,137,138,139,189,190,191,192,231,232,234,343,345]},{\"accessible_nodes\":[134,135,136,137,138,139,140,142,143,189,190,191,192,234,343,344],\"floor_index\":1,\"index\":345,\"offset_point_count\":0,\"position\":[7.950309526,3.3687482623,11.0900299615],\"quaternion\":{\"w\":-0.8990258175241688,\"x\":0.01230586812341747,\"y\":0.4377201939914488,\"z\":-0.001473026106910937},\"standing_position\":[7.950309526,2.2127587345976685,11.0900299615],\"visible_nodes\":[134,135,136,137,138,139,140,142,143,189,190,191,192,234,343,344]}],\"panorama\":{\"count\":346,\"list\":[{\"back\":\"images/cube_2048/0/52d64a3257848ef988eaa2cc74d65431/0_b.jpg\",\"derived_id\":1683681236,\"derived_id_str\":\"1683681236\",\"down\":\"images/cube_2048/0/52d64a3257848ef988eaa2cc74d65431/0_d.jpg\",\"front\":\"images/cube_2048/0/52d64a3257848ef988eaa2cc74d65431/0_f.jpg\",\"index\":0,\"left\":\"images/cube_2048/0/52d64a3257848ef988eaa2cc74d65431/0_l.jpg\",\"right\":\"images/cube_2048/0/52d64a3257848ef988eaa2cc74d65431/0_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/0/52d64a3257848ef988eaa2cc74d65431/0_u.jpg\"},{\"back\":\"images/cube_2048/1/fb16e5420d9222c781b4dc246b73a8d4/1_b.jpg\",\"derived_id\":1683681292,\"derived_id_str\":\"1683681292\",\"down\":\"images/cube_2048/1/fb16e5420d9222c781b4dc246b73a8d4/1_d.jpg\",\"front\":\"images/cube_2048/1/fb16e5420d9222c781b4dc246b73a8d4/1_f.jpg\",\"index\":1,\"left\":\"images/cube_2048/1/fb16e5420d9222c781b4dc246b73a8d4/1_l.jpg\",\"right\":\"images/cube_2048/1/fb16e5420d9222c781b4dc246b73a8d4/1_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/1/fb16e5420d9222c781b4dc246b73a8d4/1_u.jpg\"},{\"back\":\"images/cube_2048/2/f803978380fc486a52d4cbfeba890bed/2_b.jpg\",\"derived_id\":1683681355,\"derived_id_str\":\"1683681355\",\"down\":\"images/cube_2048/2/f803978380fc486a52d4cbfeba890bed/2_d.jpg\",\"front\":\"images/cube_2048/2/f803978380fc486a52d4cbfeba890bed/2_f.jpg\",\"index\":2,\"left\":\"images/cube_2048/2/f803978380fc486a52d4cbfeba890bed/2_l.jpg\",\"right\":\"images/cube_2048/2/f803978380fc486a52d4cbfeba890bed/2_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/2/f803978380fc486a52d4cbfeba890bed/2_u.jpg\"},{\"back\":\"images/cube_2048/3/9f40a95f5b515fa15c4051f06b8c70ae/3_b.jpg\",\"derived_id\":1683681424,\"derived_id_str\":\"1683681424\",\"down\":\"images/cube_2048/3/9f40a95f5b515fa15c4051f06b8c70ae/3_d.jpg\",\"front\":\"images/cube_2048/3/9f40a95f5b515fa15c4051f06b8c70ae/3_f.jpg\",\"index\":3,\"left\":\"images/cube_2048/3/9f40a95f5b515fa15c4051f06b8c70ae/3_l.jpg\",\"right\":\"images/cube_2048/3/9f40a95f5b515fa15c4051f06b8c70ae/3_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/3/9f40a95f5b515fa15c4051f06b8c70ae/3_u.jpg\"},{\"back\":\"images/cube_2048/4/0cdf871542243f7ac3ae7b881327bd6c/4_b.jpg\",\"derived_id\":1683681491,\"derived_id_str\":\"1683681491\",\"down\":\"images/cube_2048/4/0cdf871542243f7ac3ae7b881327bd6c/4_d.jpg\",\"front\":\"images/cube_2048/4/0cdf871542243f7ac3ae7b881327bd6c/4_f.jpg\",\"index\":4,\"left\":\"images/cube_2048/4/0cdf871542243f7ac3ae7b881327bd6c/4_l.jpg\",\"right\":\"images/cube_2048/4/0cdf871542243f7ac3ae7b881327bd6c/4_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/4/0cdf871542243f7ac3ae7b881327bd6c/4_u.jpg\"},{\"back\":\"images/cube_2048/5/bd1736055db9df68dfa8aebe2f22ca7c/5_b.jpg\",\"derived_id\":1683681550,\"derived_id_str\":\"1683681550\",\"down\":\"images/cube_2048/5/bd1736055db9df68dfa8aebe2f22ca7c/5_d.jpg\",\"front\":\"images/cube_2048/5/bd1736055db9df68dfa8aebe2f22ca7c/5_f.jpg\",\"index\":5,\"left\":\"images/cube_2048/5/bd1736055db9df68dfa8aebe2f22ca7c/5_l.jpg\",\"right\":\"images/cube_2048/5/bd1736055db9df68dfa8aebe2f22ca7c/5_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/5/bd1736055db9df68dfa8aebe2f22ca7c/5_u.jpg\"},{\"back\":\"images/cube_2048/6/aaaa3cfacce566ba9ab9428e3f9ee438/6_b.jpg\",\"derived_id\":1683681593,\"derived_id_str\":\"1683681593\",\"down\":\"images/cube_2048/6/aaaa3cfacce566ba9ab9428e3f9ee438/6_d.jpg\",\"front\":\"images/cube_2048/6/aaaa3cfacce566ba9ab9428e3f9ee438/6_f.jpg\",\"index\":6,\"left\":\"images/cube_2048/6/aaaa3cfacce566ba9ab9428e3f9ee438/6_l.jpg\",\"right\":\"images/cube_2048/6/aaaa3cfacce566ba9ab9428e3f9ee438/6_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/6/aaaa3cfacce566ba9ab9428e3f9ee438/6_u.jpg\"},{\"back\":\"images/cube_2048/7/70dd22f55af7b8926efb76537616c9fe/7_b.jpg\",\"derived_id\":1683681642,\"derived_id_str\":\"1683681642\",\"down\":\"images/cube_2048/7/70dd22f55af7b8926efb76537616c9fe/7_d.jpg\",\"front\":\"images/cube_2048/7/70dd22f55af7b8926efb76537616c9fe/7_f.jpg\",\"index\":7,\"left\":\"images/cube_2048/7/70dd22f55af7b8926efb76537616c9fe/7_l.jpg\",\"right\":\"images/cube_2048/7/70dd22f55af7b8926efb76537616c9fe/7_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/7/70dd22f55af7b8926efb76537616c9fe/7_u.jpg\"},{\"back\":\"images/cube_2048/8/9721f0f1f66ad5d4c4a93ca5a656ed20/8_b.jpg\",\"derived_id\":1683681687,\"derived_id_str\":\"1683681687\",\"down\":\"images/cube_2048/8/9721f0f1f66ad5d4c4a93ca5a656ed20/8_d.jpg\",\"front\":\"images/cube_2048/8/9721f0f1f66ad5d4c4a93ca5a656ed20/8_f.jpg\",\"index\":8,\"left\":\"images/cube_2048/8/9721f0f1f66ad5d4c4a93ca5a656ed20/8_l.jpg\",\"right\":\"images/cube_2048/8/9721f0f1f66ad5d4c4a93ca5a656ed20/8_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/8/9721f0f1f66ad5d4c4a93ca5a656ed20/8_u.jpg\"},{\"back\":\"images/cube_2048/9/63f875ea81b5ef61c3aa6c8c02fe809f/9_b.jpg\",\"derived_id\":1683681903,\"derived_id_str\":\"1683681903\",\"down\":\"images/cube_2048/9/63f875ea81b5ef61c3aa6c8c02fe809f/9_d.jpg\",\"front\":\"images/cube_2048/9/63f875ea81b5ef61c3aa6c8c02fe809f/9_f.jpg\",\"index\":9,\"left\":\"images/cube_2048/9/63f875ea81b5ef61c3aa6c8c02fe809f/9_l.jpg\",\"right\":\"images/cube_2048/9/63f875ea81b5ef61c3aa6c8c02fe809f/9_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/9/63f875ea81b5ef61c3aa6c8c02fe809f/9_u.jpg\"},{\"back\":\"images/cube_2048/10/d5ed837221ea8b356b2e611f90dbe26a/10_b.jpg\",\"derived_id\":1683681949,\"derived_id_str\":\"1683681949\",\"down\":\"images/cube_2048/10/d5ed837221ea8b356b2e611f90dbe26a/10_d.jpg\",\"front\":\"images/cube_2048/10/d5ed837221ea8b356b2e611f90dbe26a/10_f.jpg\",\"index\":10,\"left\":\"images/cube_2048/10/d5ed837221ea8b356b2e611f90dbe26a/10_l.jpg\",\"right\":\"images/cube_2048/10/d5ed837221ea8b356b2e611f90dbe26a/10_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/10/d5ed837221ea8b356b2e611f90dbe26a/10_u.jpg\"},{\"back\":\"images/cube_2048/11/9e46f1c9e6e9241c949ba29fde639816/11_b.jpg\",\"derived_id\":1683682025,\"derived_id_str\":\"1683682025\",\"down\":\"images/cube_2048/11/9e46f1c9e6e9241c949ba29fde639816/11_d.jpg\",\"front\":\"images/cube_2048/11/9e46f1c9e6e9241c949ba29fde639816/11_f.jpg\",\"index\":11,\"left\":\"images/cube_2048/11/9e46f1c9e6e9241c949ba29fde639816/11_l.jpg\",\"right\":\"images/cube_2048/11/9e46f1c9e6e9241c949ba29fde639816/11_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/11/9e46f1c9e6e9241c949ba29fde639816/11_u.jpg\"},{\"back\":\"images/cube_2048/12/a36f56ef246eae499de51d580b2179fd/12_b.jpg\",\"derived_id\":1683682176,\"derived_id_str\":\"1683682176\",\"down\":\"images/cube_2048/12/a36f56ef246eae499de51d580b2179fd/12_d.jpg\",\"front\":\"images/cube_2048/12/a36f56ef246eae499de51d580b2179fd/12_f.jpg\",\"index\":12,\"left\":\"images/cube_2048/12/a36f56ef246eae499de51d580b2179fd/12_l.jpg\",\"right\":\"images/cube_2048/12/a36f56ef246eae499de51d580b2179fd/12_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/12/a36f56ef246eae499de51d580b2179fd/12_u.jpg\"},{\"back\":\"images/cube_2048/13/47c16efa418cd9a6ff11c2abb86b0247/13_b.jpg\",\"derived_id\":1683682260,\"derived_id_str\":\"1683682260\",\"down\":\"images/cube_2048/13/47c16efa418cd9a6ff11c2abb86b0247/13_d.jpg\",\"front\":\"images/cube_2048/13/47c16efa418cd9a6ff11c2abb86b0247/13_f.jpg\",\"index\":13,\"left\":\"images/cube_2048/13/47c16efa418cd9a6ff11c2abb86b0247/13_l.jpg\",\"right\":\"images/cube_2048/13/47c16efa418cd9a6ff11c2abb86b0247/13_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/13/47c16efa418cd9a6ff11c2abb86b0247/13_u.jpg\"},{\"back\":\"images/cube_2048/14/eab8802f7ab9865d9bac2244befb0a04/14_b.jpg\",\"derived_id\":1683682325,\"derived_id_str\":\"1683682325\",\"down\":\"images/cube_2048/14/eab8802f7ab9865d9bac2244befb0a04/14_d.jpg\",\"front\":\"images/cube_2048/14/eab8802f7ab9865d9bac2244befb0a04/14_f.jpg\",\"index\":14,\"left\":\"images/cube_2048/14/eab8802f7ab9865d9bac2244befb0a04/14_l.jpg\",\"right\":\"images/cube_2048/14/eab8802f7ab9865d9bac2244befb0a04/14_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/14/eab8802f7ab9865d9bac2244befb0a04/14_u.jpg\"},{\"back\":\"images/cube_2048/15/3151a650c7a180c6d6813c08b3b18660/15_b.jpg\",\"derived_id\":1683682817,\"derived_id_str\":\"1683682817\",\"down\":\"images/cube_2048/15/3151a650c7a180c6d6813c08b3b18660/15_d.jpg\",\"front\":\"images/cube_2048/15/3151a650c7a180c6d6813c08b3b18660/15_f.jpg\",\"index\":15,\"left\":\"images/cube_2048/15/3151a650c7a180c6d6813c08b3b18660/15_l.jpg\",\"right\":\"images/cube_2048/15/3151a650c7a180c6d6813c08b3b18660/15_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/15/3151a650c7a180c6d6813c08b3b18660/15_u.jpg\"},{\"back\":\"images/cube_2048/16/ed188e3561edfbe71fa9d4a782033028/16_b.jpg\",\"derived_id\":1683682928,\"derived_id_str\":\"1683682928\",\"down\":\"images/cube_2048/16/ed188e3561edfbe71fa9d4a782033028/16_d.jpg\",\"front\":\"images/cube_2048/16/ed188e3561edfbe71fa9d4a782033028/16_f.jpg\",\"index\":16,\"left\":\"images/cube_2048/16/ed188e3561edfbe71fa9d4a782033028/16_l.jpg\",\"right\":\"images/cube_2048/16/ed188e3561edfbe71fa9d4a782033028/16_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/16/ed188e3561edfbe71fa9d4a782033028/16_u.jpg\"},{\"back\":\"images/cube_2048/17/a581be74d7c81b9cf2386c72abb3e8ce/17_b.jpg\",\"derived_id\":1683682972,\"derived_id_str\":\"1683682972\",\"down\":\"images/cube_2048/17/a581be74d7c81b9cf2386c72abb3e8ce/17_d.jpg\",\"front\":\"images/cube_2048/17/a581be74d7c81b9cf2386c72abb3e8ce/17_f.jpg\",\"index\":17,\"left\":\"images/cube_2048/17/a581be74d7c81b9cf2386c72abb3e8ce/17_l.jpg\",\"right\":\"images/cube_2048/17/a581be74d7c81b9cf2386c72abb3e8ce/17_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/17/a581be74d7c81b9cf2386c72abb3e8ce/17_u.jpg\"},{\"back\":\"images/cube_2048/18/18838acfe8b8c256881d94108d0c557a/18_b.jpg\",\"derived_id\":1683683038,\"derived_id_str\":\"1683683038\",\"down\":\"images/cube_2048/18/18838acfe8b8c256881d94108d0c557a/18_d.jpg\",\"front\":\"images/cube_2048/18/18838acfe8b8c256881d94108d0c557a/18_f.jpg\",\"index\":18,\"left\":\"images/cube_2048/18/18838acfe8b8c256881d94108d0c557a/18_l.jpg\",\"right\":\"images/cube_2048/18/18838acfe8b8c256881d94108d0c557a/18_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/18/18838acfe8b8c256881d94108d0c557a/18_u.jpg\"},{\"back\":\"images/cube_2048/19/7bb101121c4cd97fb7511ddac4954a3b/19_b.jpg\",\"derived_id\":1683683118,\"derived_id_str\":\"1683683118\",\"down\":\"images/cube_2048/19/7bb101121c4cd97fb7511ddac4954a3b/19_d.jpg\",\"front\":\"images/cube_2048/19/7bb101121c4cd97fb7511ddac4954a3b/19_f.jpg\",\"index\":19,\"left\":\"images/cube_2048/19/7bb101121c4cd97fb7511ddac4954a3b/19_l.jpg\",\"right\":\"images/cube_2048/19/7bb101121c4cd97fb7511ddac4954a3b/19_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/19/7bb101121c4cd97fb7511ddac4954a3b/19_u.jpg\"},{\"back\":\"images/cube_2048/20/bbe6fe816a4899ad5a9cf7376ee475ff/20_b.jpg\",\"derived_id\":1683683203,\"derived_id_str\":\"1683683203\",\"down\":\"images/cube_2048/20/bbe6fe816a4899ad5a9cf7376ee475ff/20_d.jpg\",\"front\":\"images/cube_2048/20/bbe6fe816a4899ad5a9cf7376ee475ff/20_f.jpg\",\"index\":20,\"left\":\"images/cube_2048/20/bbe6fe816a4899ad5a9cf7376ee475ff/20_l.jpg\",\"right\":\"images/cube_2048/20/bbe6fe816a4899ad5a9cf7376ee475ff/20_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/20/bbe6fe816a4899ad5a9cf7376ee475ff/20_u.jpg\"},{\"back\":\"images/cube_2048/21/bd454275ba4b58d61292ad68374df0c7/21_b.jpg\",\"derived_id\":1683683301,\"derived_id_str\":\"1683683301\",\"down\":\"images/cube_2048/21/bd454275ba4b58d61292ad68374df0c7/21_d.jpg\",\"front\":\"images/cube_2048/21/bd454275ba4b58d61292ad68374df0c7/21_f.jpg\",\"index\":21,\"left\":\"images/cube_2048/21/bd454275ba4b58d61292ad68374df0c7/21_l.jpg\",\"right\":\"images/cube_2048/21/bd454275ba4b58d61292ad68374df0c7/21_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/21/bd454275ba4b58d61292ad68374df0c7/21_u.jpg\"},{\"back\":\"images/cube_2048/22/72de4cf608538f283f913f49e8194048/22_b.jpg\",\"derived_id\":1683683391,\"derived_id_str\":\"1683683391\",\"down\":\"images/cube_2048/22/72de4cf608538f283f913f49e8194048/22_d.jpg\",\"front\":\"images/cube_2048/22/72de4cf608538f283f913f49e8194048/22_f.jpg\",\"index\":22,\"left\":\"images/cube_2048/22/72de4cf608538f283f913f49e8194048/22_l.jpg\",\"right\":\"images/cube_2048/22/72de4cf608538f283f913f49e8194048/22_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/22/72de4cf608538f283f913f49e8194048/22_u.jpg\"},{\"back\":\"images/cube_2048/23/60f853eea547a20f279f6db3956f3b18/23_b.jpg\",\"derived_id\":1683683516,\"derived_id_str\":\"1683683516\",\"down\":\"images/cube_2048/23/60f853eea547a20f279f6db3956f3b18/23_d.jpg\",\"front\":\"images/cube_2048/23/60f853eea547a20f279f6db3956f3b18/23_f.jpg\",\"index\":23,\"left\":\"images/cube_2048/23/60f853eea547a20f279f6db3956f3b18/23_l.jpg\",\"right\":\"images/cube_2048/23/60f853eea547a20f279f6db3956f3b18/23_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/23/60f853eea547a20f279f6db3956f3b18/23_u.jpg\"},{\"back\":\"images/cube_2048/24/09de7debd13e19e21130c93cb49edfa9/24_b.jpg\",\"derived_id\":1683683652,\"derived_id_str\":\"1683683652\",\"down\":\"images/cube_2048/24/09de7debd13e19e21130c93cb49edfa9/24_d.jpg\",\"front\":\"images/cube_2048/24/09de7debd13e19e21130c93cb49edfa9/24_f.jpg\",\"index\":24,\"left\":\"images/cube_2048/24/09de7debd13e19e21130c93cb49edfa9/24_l.jpg\",\"right\":\"images/cube_2048/24/09de7debd13e19e21130c93cb49edfa9/24_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/24/09de7debd13e19e21130c93cb49edfa9/24_u.jpg\"},{\"back\":\"images/cube_2048/25/2f90da6f69e77352ad37a1faf6e8c14c/25_b.jpg\",\"derived_id\":1683683774,\"derived_id_str\":\"1683683774\",\"down\":\"images/cube_2048/25/2f90da6f69e77352ad37a1faf6e8c14c/25_d.jpg\",\"front\":\"images/cube_2048/25/2f90da6f69e77352ad37a1faf6e8c14c/25_f.jpg\",\"index\":25,\"left\":\"images/cube_2048/25/2f90da6f69e77352ad37a1faf6e8c14c/25_l.jpg\",\"right\":\"images/cube_2048/25/2f90da6f69e77352ad37a1faf6e8c14c/25_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/25/2f90da6f69e77352ad37a1faf6e8c14c/25_u.jpg\"},{\"back\":\"images/cube_2048/26/459767c6138a6c7dc599d11f2dce9394/26_b.jpg\",\"derived_id\":1683683868,\"derived_id_str\":\"1683683868\",\"down\":\"images/cube_2048/26/459767c6138a6c7dc599d11f2dce9394/26_d.jpg\",\"front\":\"images/cube_2048/26/459767c6138a6c7dc599d11f2dce9394/26_f.jpg\",\"index\":26,\"left\":\"images/cube_2048/26/459767c6138a6c7dc599d11f2dce9394/26_l.jpg\",\"right\":\"images/cube_2048/26/459767c6138a6c7dc599d11f2dce9394/26_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/26/459767c6138a6c7dc599d11f2dce9394/26_u.jpg\"},{\"back\":\"images/cube_2048/27/8d91c536b5e6a0c99b8b89d2d4c0f575/27_b.jpg\",\"derived_id\":1683683926,\"derived_id_str\":\"1683683926\",\"down\":\"images/cube_2048/27/8d91c536b5e6a0c99b8b89d2d4c0f575/27_d.jpg\",\"front\":\"images/cube_2048/27/8d91c536b5e6a0c99b8b89d2d4c0f575/27_f.jpg\",\"index\":27,\"left\":\"images/cube_2048/27/8d91c536b5e6a0c99b8b89d2d4c0f575/27_l.jpg\",\"right\":\"images/cube_2048/27/8d91c536b5e6a0c99b8b89d2d4c0f575/27_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/27/8d91c536b5e6a0c99b8b89d2d4c0f575/27_u.jpg\"},{\"back\":\"images/cube_2048/28/b44f5180b1af584b9ab7e1f327284c1a/28_b.jpg\",\"derived_id\":1683683985,\"derived_id_str\":\"1683683985\",\"down\":\"images/cube_2048/28/b44f5180b1af584b9ab7e1f327284c1a/28_d.jpg\",\"front\":\"images/cube_2048/28/b44f5180b1af584b9ab7e1f327284c1a/28_f.jpg\",\"index\":28,\"left\":\"images/cube_2048/28/b44f5180b1af584b9ab7e1f327284c1a/28_l.jpg\",\"right\":\"images/cube_2048/28/b44f5180b1af584b9ab7e1f327284c1a/28_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/28/b44f5180b1af584b9ab7e1f327284c1a/28_u.jpg\"},{\"back\":\"images/cube_2048/29/c478de3eb6354e021a685bc3bdaa75ae/29_b.jpg\",\"derived_id\":1683684049,\"derived_id_str\":\"1683684049\",\"down\":\"images/cube_2048/29/c478de3eb6354e021a685bc3bdaa75ae/29_d.jpg\",\"front\":\"images/cube_2048/29/c478de3eb6354e021a685bc3bdaa75ae/29_f.jpg\",\"index\":29,\"left\":\"images/cube_2048/29/c478de3eb6354e021a685bc3bdaa75ae/29_l.jpg\",\"right\":\"images/cube_2048/29/c478de3eb6354e021a685bc3bdaa75ae/29_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/29/c478de3eb6354e021a685bc3bdaa75ae/29_u.jpg\"},{\"back\":\"images/cube_2048/30/5fd41a91f5d85804f5dfb4de76d59b15/30_b.jpg\",\"derived_id\":1683684110,\"derived_id_str\":\"1683684110\",\"down\":\"images/cube_2048/30/5fd41a91f5d85804f5dfb4de76d59b15/30_d.jpg\",\"front\":\"images/cube_2048/30/5fd41a91f5d85804f5dfb4de76d59b15/30_f.jpg\",\"index\":30,\"left\":\"images/cube_2048/30/5fd41a91f5d85804f5dfb4de76d59b15/30_l.jpg\",\"right\":\"images/cube_2048/30/5fd41a91f5d85804f5dfb4de76d59b15/30_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/30/5fd41a91f5d85804f5dfb4de76d59b15/30_u.jpg\"},{\"back\":\"images/cube_2048/31/e338c4bbd191d3e14c59d35c068683ed/31_b.jpg\",\"derived_id\":1683684171,\"derived_id_str\":\"1683684171\",\"down\":\"images/cube_2048/31/e338c4bbd191d3e14c59d35c068683ed/31_d.jpg\",\"front\":\"images/cube_2048/31/e338c4bbd191d3e14c59d35c068683ed/31_f.jpg\",\"index\":31,\"left\":\"images/cube_2048/31/e338c4bbd191d3e14c59d35c068683ed/31_l.jpg\",\"right\":\"images/cube_2048/31/e338c4bbd191d3e14c59d35c068683ed/31_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/31/e338c4bbd191d3e14c59d35c068683ed/31_u.jpg\"},{\"back\":\"images/cube_2048/32/03c1d8289fe20d62bd779e45b9e0d311/32_b.jpg\",\"derived_id\":1683684222,\"derived_id_str\":\"1683684222\",\"down\":\"images/cube_2048/32/03c1d8289fe20d62bd779e45b9e0d311/32_d.jpg\",\"front\":\"images/cube_2048/32/03c1d8289fe20d62bd779e45b9e0d311/32_f.jpg\",\"index\":32,\"left\":\"images/cube_2048/32/03c1d8289fe20d62bd779e45b9e0d311/32_l.jpg\",\"right\":\"images/cube_2048/32/03c1d8289fe20d62bd779e45b9e0d311/32_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/32/03c1d8289fe20d62bd779e45b9e0d311/32_u.jpg\"},{\"back\":\"images/cube_2048/33/39b96a88f3d402e83e03050f894a7511/33_b.jpg\",\"derived_id\":1683684268,\"derived_id_str\":\"1683684268\",\"down\":\"images/cube_2048/33/39b96a88f3d402e83e03050f894a7511/33_d.jpg\",\"front\":\"images/cube_2048/33/39b96a88f3d402e83e03050f894a7511/33_f.jpg\",\"index\":33,\"left\":\"images/cube_2048/33/39b96a88f3d402e83e03050f894a7511/33_l.jpg\",\"right\":\"images/cube_2048/33/39b96a88f3d402e83e03050f894a7511/33_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/33/39b96a88f3d402e83e03050f894a7511/33_u.jpg\"},{\"back\":\"images/cube_2048/34/7e9c8e7826a29c185d7201aaae443ac3/34_b.jpg\",\"derived_id\":1683684311,\"derived_id_str\":\"1683684311\",\"down\":\"images/cube_2048/34/7e9c8e7826a29c185d7201aaae443ac3/34_d.jpg\",\"front\":\"images/cube_2048/34/7e9c8e7826a29c185d7201aaae443ac3/34_f.jpg\",\"index\":34,\"left\":\"images/cube_2048/34/7e9c8e7826a29c185d7201aaae443ac3/34_l.jpg\",\"right\":\"images/cube_2048/34/7e9c8e7826a29c185d7201aaae443ac3/34_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/34/7e9c8e7826a29c185d7201aaae443ac3/34_u.jpg\"},{\"back\":\"images/cube_2048/35/031f3b6b79ccd92b7ba59616848d4641/35_b.jpg\",\"derived_id\":1683685083,\"derived_id_str\":\"1683685083\",\"down\":\"images/cube_2048/35/031f3b6b79ccd92b7ba59616848d4641/35_d.jpg\",\"front\":\"images/cube_2048/35/031f3b6b79ccd92b7ba59616848d4641/35_f.jpg\",\"index\":35,\"left\":\"images/cube_2048/35/031f3b6b79ccd92b7ba59616848d4641/35_l.jpg\",\"right\":\"images/cube_2048/35/031f3b6b79ccd92b7ba59616848d4641/35_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/35/031f3b6b79ccd92b7ba59616848d4641/35_u.jpg\"},{\"back\":\"images/cube_2048/36/cf73d4d2d0b88a2ea6b1aa23b55a5a98/36_b.jpg\",\"derived_id\":1683685182,\"derived_id_str\":\"1683685182\",\"down\":\"images/cube_2048/36/cf73d4d2d0b88a2ea6b1aa23b55a5a98/36_d.jpg\",\"front\":\"images/cube_2048/36/cf73d4d2d0b88a2ea6b1aa23b55a5a98/36_f.jpg\",\"index\":36,\"left\":\"images/cube_2048/36/cf73d4d2d0b88a2ea6b1aa23b55a5a98/36_l.jpg\",\"right\":\"images/cube_2048/36/cf73d4d2d0b88a2ea6b1aa23b55a5a98/36_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/36/cf73d4d2d0b88a2ea6b1aa23b55a5a98/36_u.jpg\"},{\"back\":\"images/cube_2048/37/40791a6b7d1c5c1ef66a909679c15ef5/37_b.jpg\",\"derived_id\":1683685236,\"derived_id_str\":\"1683685236\",\"down\":\"images/cube_2048/37/40791a6b7d1c5c1ef66a909679c15ef5/37_d.jpg\",\"front\":\"images/cube_2048/37/40791a6b7d1c5c1ef66a909679c15ef5/37_f.jpg\",\"index\":37,\"left\":\"images/cube_2048/37/40791a6b7d1c5c1ef66a909679c15ef5/37_l.jpg\",\"right\":\"images/cube_2048/37/40791a6b7d1c5c1ef66a909679c15ef5/37_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/37/40791a6b7d1c5c1ef66a909679c15ef5/37_u.jpg\"},{\"back\":\"images/cube_2048/38/b48b968f984cd87741ed34fc79ee8bff/38_b.jpg\",\"derived_id\":1683685415,\"derived_id_str\":\"1683685415\",\"down\":\"images/cube_2048/38/b48b968f984cd87741ed34fc79ee8bff/38_d.jpg\",\"front\":\"images/cube_2048/38/b48b968f984cd87741ed34fc79ee8bff/38_f.jpg\",\"index\":38,\"left\":\"images/cube_2048/38/b48b968f984cd87741ed34fc79ee8bff/38_l.jpg\",\"right\":\"images/cube_2048/38/b48b968f984cd87741ed34fc79ee8bff/38_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/38/b48b968f984cd87741ed34fc79ee8bff/38_u.jpg\"},{\"back\":\"images/cube_2048/39/534b2410c7932a572d0832b90a170b50/39_b.jpg\",\"derived_id\":1683685484,\"derived_id_str\":\"1683685484\",\"down\":\"images/cube_2048/39/534b2410c7932a572d0832b90a170b50/39_d.jpg\",\"front\":\"images/cube_2048/39/534b2410c7932a572d0832b90a170b50/39_f.jpg\",\"index\":39,\"left\":\"images/cube_2048/39/534b2410c7932a572d0832b90a170b50/39_l.jpg\",\"right\":\"images/cube_2048/39/534b2410c7932a572d0832b90a170b50/39_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/39/534b2410c7932a572d0832b90a170b50/39_u.jpg\"},{\"back\":\"images/cube_2048/40/241a7faf731a9eab0cd918624797cae6/40_b.jpg\",\"derived_id\":1683685609,\"derived_id_str\":\"1683685609\",\"down\":\"images/cube_2048/40/241a7faf731a9eab0cd918624797cae6/40_d.jpg\",\"front\":\"images/cube_2048/40/241a7faf731a9eab0cd918624797cae6/40_f.jpg\",\"index\":40,\"left\":\"images/cube_2048/40/241a7faf731a9eab0cd918624797cae6/40_l.jpg\",\"right\":\"images/cube_2048/40/241a7faf731a9eab0cd918624797cae6/40_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/40/241a7faf731a9eab0cd918624797cae6/40_u.jpg\"},{\"back\":\"images/cube_2048/41/419b782478dcde23074627ad75cdaa6a/41_b.jpg\",\"derived_id\":1683685675,\"derived_id_str\":\"1683685675\",\"down\":\"images/cube_2048/41/419b782478dcde23074627ad75cdaa6a/41_d.jpg\",\"front\":\"images/cube_2048/41/419b782478dcde23074627ad75cdaa6a/41_f.jpg\",\"index\":41,\"left\":\"images/cube_2048/41/419b782478dcde23074627ad75cdaa6a/41_l.jpg\",\"right\":\"images/cube_2048/41/419b782478dcde23074627ad75cdaa6a/41_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/41/419b782478dcde23074627ad75cdaa6a/41_u.jpg\"},{\"back\":\"images/cube_2048/42/9c52358f028e36937a6635edbb7cbd38/42_b.jpg\",\"derived_id\":1683685744,\"derived_id_str\":\"1683685744\",\"down\":\"images/cube_2048/42/9c52358f028e36937a6635edbb7cbd38/42_d.jpg\",\"front\":\"images/cube_2048/42/9c52358f028e36937a6635edbb7cbd38/42_f.jpg\",\"index\":42,\"left\":\"images/cube_2048/42/9c52358f028e36937a6635edbb7cbd38/42_l.jpg\",\"right\":\"images/cube_2048/42/9c52358f028e36937a6635edbb7cbd38/42_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/42/9c52358f028e36937a6635edbb7cbd38/42_u.jpg\"},{\"back\":\"images/cube_2048/43/3e14fd95c659b0aa71cd8630ba46d262/43_b.jpg\",\"derived_id\":1683685836,\"derived_id_str\":\"1683685836\",\"down\":\"images/cube_2048/43/3e14fd95c659b0aa71cd8630ba46d262/43_d.jpg\",\"front\":\"images/cube_2048/43/3e14fd95c659b0aa71cd8630ba46d262/43_f.jpg\",\"index\":43,\"left\":\"images/cube_2048/43/3e14fd95c659b0aa71cd8630ba46d262/43_l.jpg\",\"right\":\"images/cube_2048/43/3e14fd95c659b0aa71cd8630ba46d262/43_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/43/3e14fd95c659b0aa71cd8630ba46d262/43_u.jpg\"},{\"back\":\"images/cube_2048/44/8b9009203de6648d720e85cbf7e6c86d/44_b.jpg\",\"derived_id\":1683685887,\"derived_id_str\":\"1683685887\",\"down\":\"images/cube_2048/44/8b9009203de6648d720e85cbf7e6c86d/44_d.jpg\",\"front\":\"images/cube_2048/44/8b9009203de6648d720e85cbf7e6c86d/44_f.jpg\",\"index\":44,\"left\":\"images/cube_2048/44/8b9009203de6648d720e85cbf7e6c86d/44_l.jpg\",\"right\":\"images/cube_2048/44/8b9009203de6648d720e85cbf7e6c86d/44_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/44/8b9009203de6648d720e85cbf7e6c86d/44_u.jpg\"},{\"back\":\"images/cube_2048/45/69462787ce0ec8f3901658f65654f7b8/45_b.jpg\",\"derived_id\":1683685938,\"derived_id_str\":\"1683685938\",\"down\":\"images/cube_2048/45/69462787ce0ec8f3901658f65654f7b8/45_d.jpg\",\"front\":\"images/cube_2048/45/69462787ce0ec8f3901658f65654f7b8/45_f.jpg\",\"index\":45,\"left\":\"images/cube_2048/45/69462787ce0ec8f3901658f65654f7b8/45_l.jpg\",\"right\":\"images/cube_2048/45/69462787ce0ec8f3901658f65654f7b8/45_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/45/69462787ce0ec8f3901658f65654f7b8/45_u.jpg\"},{\"back\":\"images/cube_2048/46/ae346c3aebbe79178689d1ad3fee8454/46_b.jpg\",\"derived_id\":1683686007,\"derived_id_str\":\"1683686007\",\"down\":\"images/cube_2048/46/ae346c3aebbe79178689d1ad3fee8454/46_d.jpg\",\"front\":\"images/cube_2048/46/ae346c3aebbe79178689d1ad3fee8454/46_f.jpg\",\"index\":46,\"left\":\"images/cube_2048/46/ae346c3aebbe79178689d1ad3fee8454/46_l.jpg\",\"right\":\"images/cube_2048/46/ae346c3aebbe79178689d1ad3fee8454/46_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/46/ae346c3aebbe79178689d1ad3fee8454/46_u.jpg\"},{\"back\":\"images/cube_2048/47/326fb52961b2b74ce36b8d755dc49d49/47_b.jpg\",\"derived_id\":1683686156,\"derived_id_str\":\"1683686156\",\"down\":\"images/cube_2048/47/326fb52961b2b74ce36b8d755dc49d49/47_d.jpg\",\"front\":\"images/cube_2048/47/326fb52961b2b74ce36b8d755dc49d49/47_f.jpg\",\"index\":47,\"left\":\"images/cube_2048/47/326fb52961b2b74ce36b8d755dc49d49/47_l.jpg\",\"right\":\"images/cube_2048/47/326fb52961b2b74ce36b8d755dc49d49/47_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/47/326fb52961b2b74ce36b8d755dc49d49/47_u.jpg\"},{\"back\":\"images/cube_2048/48/bcb19347b40fe3f0215cb25bda4cdece/48_b.jpg\",\"derived_id\":1683686225,\"derived_id_str\":\"1683686225\",\"down\":\"images/cube_2048/48/bcb19347b40fe3f0215cb25bda4cdece/48_d.jpg\",\"front\":\"images/cube_2048/48/bcb19347b40fe3f0215cb25bda4cdece/48_f.jpg\",\"index\":48,\"left\":\"images/cube_2048/48/bcb19347b40fe3f0215cb25bda4cdece/48_l.jpg\",\"right\":\"images/cube_2048/48/bcb19347b40fe3f0215cb25bda4cdece/48_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/48/bcb19347b40fe3f0215cb25bda4cdece/48_u.jpg\"},{\"back\":\"images/cube_2048/49/342d89fa5a76fd03eea09c00be7a8626/49_b.jpg\",\"derived_id\":1683686424,\"derived_id_str\":\"1683686424\",\"down\":\"images/cube_2048/49/342d89fa5a76fd03eea09c00be7a8626/49_d.jpg\",\"front\":\"images/cube_2048/49/342d89fa5a76fd03eea09c00be7a8626/49_f.jpg\",\"index\":49,\"left\":\"images/cube_2048/49/342d89fa5a76fd03eea09c00be7a8626/49_l.jpg\",\"right\":\"images/cube_2048/49/342d89fa5a76fd03eea09c00be7a8626/49_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/49/342d89fa5a76fd03eea09c00be7a8626/49_u.jpg\"},{\"back\":\"images/cube_2048/50/a14fa9324642fc59cb772d443665be6e/50_b.jpg\",\"derived_id\":1683686562,\"derived_id_str\":\"1683686562\",\"down\":\"images/cube_2048/50/a14fa9324642fc59cb772d443665be6e/50_d.jpg\",\"front\":\"images/cube_2048/50/a14fa9324642fc59cb772d443665be6e/50_f.jpg\",\"index\":50,\"left\":\"images/cube_2048/50/a14fa9324642fc59cb772d443665be6e/50_l.jpg\",\"right\":\"images/cube_2048/50/a14fa9324642fc59cb772d443665be6e/50_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/50/a14fa9324642fc59cb772d443665be6e/50_u.jpg\"},{\"back\":\"images/cube_2048/51/7bbea383a045277e6c69176f41cbcd3c/51_b.jpg\",\"derived_id\":1683686642,\"derived_id_str\":\"1683686642\",\"down\":\"images/cube_2048/51/7bbea383a045277e6c69176f41cbcd3c/51_d.jpg\",\"front\":\"images/cube_2048/51/7bbea383a045277e6c69176f41cbcd3c/51_f.jpg\",\"index\":51,\"left\":\"images/cube_2048/51/7bbea383a045277e6c69176f41cbcd3c/51_l.jpg\",\"right\":\"images/cube_2048/51/7bbea383a045277e6c69176f41cbcd3c/51_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/51/7bbea383a045277e6c69176f41cbcd3c/51_u.jpg\"},{\"back\":\"images/cube_2048/52/9a21b403b5d433bcaa90d87488919beb/52_b.jpg\",\"derived_id\":1683686726,\"derived_id_str\":\"1683686726\",\"down\":\"images/cube_2048/52/9a21b403b5d433bcaa90d87488919beb/52_d.jpg\",\"front\":\"images/cube_2048/52/9a21b403b5d433bcaa90d87488919beb/52_f.jpg\",\"index\":52,\"left\":\"images/cube_2048/52/9a21b403b5d433bcaa90d87488919beb/52_l.jpg\",\"right\":\"images/cube_2048/52/9a21b403b5d433bcaa90d87488919beb/52_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/52/9a21b403b5d433bcaa90d87488919beb/52_u.jpg\"},{\"back\":\"images/cube_2048/53/45c0f5fac95a0f50e248844e96762efc/53_b.jpg\",\"derived_id\":1683686813,\"derived_id_str\":\"1683686813\",\"down\":\"images/cube_2048/53/45c0f5fac95a0f50e248844e96762efc/53_d.jpg\",\"front\":\"images/cube_2048/53/45c0f5fac95a0f50e248844e96762efc/53_f.jpg\",\"index\":53,\"left\":\"images/cube_2048/53/45c0f5fac95a0f50e248844e96762efc/53_l.jpg\",\"right\":\"images/cube_2048/53/45c0f5fac95a0f50e248844e96762efc/53_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/53/45c0f5fac95a0f50e248844e96762efc/53_u.jpg\"},{\"back\":\"images/cube_2048/54/d71ce47d6760733f707f9dca3b01524d/54_b.jpg\",\"derived_id\":1683686901,\"derived_id_str\":\"1683686901\",\"down\":\"images/cube_2048/54/d71ce47d6760733f707f9dca3b01524d/54_d.jpg\",\"front\":\"images/cube_2048/54/d71ce47d6760733f707f9dca3b01524d/54_f.jpg\",\"index\":54,\"left\":\"images/cube_2048/54/d71ce47d6760733f707f9dca3b01524d/54_l.jpg\",\"right\":\"images/cube_2048/54/d71ce47d6760733f707f9dca3b01524d/54_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/54/d71ce47d6760733f707f9dca3b01524d/54_u.jpg\"},{\"back\":\"images/cube_2048/55/73a1c4eef3acf47ba8e49dfd49101191/55_b.jpg\",\"derived_id\":1683686984,\"derived_id_str\":\"1683686984\",\"down\":\"images/cube_2048/55/73a1c4eef3acf47ba8e49dfd49101191/55_d.jpg\",\"front\":\"images/cube_2048/55/73a1c4eef3acf47ba8e49dfd49101191/55_f.jpg\",\"index\":55,\"left\":\"images/cube_2048/55/73a1c4eef3acf47ba8e49dfd49101191/55_l.jpg\",\"right\":\"images/cube_2048/55/73a1c4eef3acf47ba8e49dfd49101191/55_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/55/73a1c4eef3acf47ba8e49dfd49101191/55_u.jpg\"},{\"back\":\"images/cube_2048/56/7d170f268d2d5426b73c30f57265cc15/56_b.jpg\",\"derived_id\":1683687061,\"derived_id_str\":\"1683687061\",\"down\":\"images/cube_2048/56/7d170f268d2d5426b73c30f57265cc15/56_d.jpg\",\"front\":\"images/cube_2048/56/7d170f268d2d5426b73c30f57265cc15/56_f.jpg\",\"index\":56,\"left\":\"images/cube_2048/56/7d170f268d2d5426b73c30f57265cc15/56_l.jpg\",\"right\":\"images/cube_2048/56/7d170f268d2d5426b73c30f57265cc15/56_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/56/7d170f268d2d5426b73c30f57265cc15/56_u.jpg\"},{\"back\":\"images/cube_2048/57/f15b35c568c8241089ac2fb55f690d4a/57_b.jpg\",\"derived_id\":1683687140,\"derived_id_str\":\"1683687140\",\"down\":\"images/cube_2048/57/f15b35c568c8241089ac2fb55f690d4a/57_d.jpg\",\"front\":\"images/cube_2048/57/f15b35c568c8241089ac2fb55f690d4a/57_f.jpg\",\"index\":57,\"left\":\"images/cube_2048/57/f15b35c568c8241089ac2fb55f690d4a/57_l.jpg\",\"right\":\"images/cube_2048/57/f15b35c568c8241089ac2fb55f690d4a/57_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/57/f15b35c568c8241089ac2fb55f690d4a/57_u.jpg\"},{\"back\":\"images/cube_2048/58/4042a4c40e9fe29b67a90b641a25f8b4/58_b.jpg\",\"derived_id\":1683687208,\"derived_id_str\":\"1683687208\",\"down\":\"images/cube_2048/58/4042a4c40e9fe29b67a90b641a25f8b4/58_d.jpg\",\"front\":\"images/cube_2048/58/4042a4c40e9fe29b67a90b641a25f8b4/58_f.jpg\",\"index\":58,\"left\":\"images/cube_2048/58/4042a4c40e9fe29b67a90b641a25f8b4/58_l.jpg\",\"right\":\"images/cube_2048/58/4042a4c40e9fe29b67a90b641a25f8b4/58_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/58/4042a4c40e9fe29b67a90b641a25f8b4/58_u.jpg\"},{\"back\":\"images/cube_2048/59/6b50770d2ed7c38ab34761e11eb69cf5/59_b.jpg\",\"derived_id\":1683687291,\"derived_id_str\":\"1683687291\",\"down\":\"images/cube_2048/59/6b50770d2ed7c38ab34761e11eb69cf5/59_d.jpg\",\"front\":\"images/cube_2048/59/6b50770d2ed7c38ab34761e11eb69cf5/59_f.jpg\",\"index\":59,\"left\":\"images/cube_2048/59/6b50770d2ed7c38ab34761e11eb69cf5/59_l.jpg\",\"right\":\"images/cube_2048/59/6b50770d2ed7c38ab34761e11eb69cf5/59_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/59/6b50770d2ed7c38ab34761e11eb69cf5/59_u.jpg\"},{\"back\":\"images/cube_2048/60/a56ec0ace8bc48693b80fb99496752e5/60_b.jpg\",\"derived_id\":1683687372,\"derived_id_str\":\"1683687372\",\"down\":\"images/cube_2048/60/a56ec0ace8bc48693b80fb99496752e5/60_d.jpg\",\"front\":\"images/cube_2048/60/a56ec0ace8bc48693b80fb99496752e5/60_f.jpg\",\"index\":60,\"left\":\"images/cube_2048/60/a56ec0ace8bc48693b80fb99496752e5/60_l.jpg\",\"right\":\"images/cube_2048/60/a56ec0ace8bc48693b80fb99496752e5/60_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/60/a56ec0ace8bc48693b80fb99496752e5/60_u.jpg\"},{\"back\":\"images/cube_2048/61/1f656b2abb264f9959c8277736b78f87/61_b.jpg\",\"derived_id\":1683687446,\"derived_id_str\":\"1683687446\",\"down\":\"images/cube_2048/61/1f656b2abb264f9959c8277736b78f87/61_d.jpg\",\"front\":\"images/cube_2048/61/1f656b2abb264f9959c8277736b78f87/61_f.jpg\",\"index\":61,\"left\":\"images/cube_2048/61/1f656b2abb264f9959c8277736b78f87/61_l.jpg\",\"right\":\"images/cube_2048/61/1f656b2abb264f9959c8277736b78f87/61_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/61/1f656b2abb264f9959c8277736b78f87/61_u.jpg\"},{\"back\":\"images/cube_2048/62/8d481dc75493a648dbd2d0666b9566c3/62_b.jpg\",\"derived_id\":1683687600,\"derived_id_str\":\"1683687600\",\"down\":\"images/cube_2048/62/8d481dc75493a648dbd2d0666b9566c3/62_d.jpg\",\"front\":\"images/cube_2048/62/8d481dc75493a648dbd2d0666b9566c3/62_f.jpg\",\"index\":62,\"left\":\"images/cube_2048/62/8d481dc75493a648dbd2d0666b9566c3/62_l.jpg\",\"right\":\"images/cube_2048/62/8d481dc75493a648dbd2d0666b9566c3/62_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/62/8d481dc75493a648dbd2d0666b9566c3/62_u.jpg\"},{\"back\":\"images/cube_2048/63/549d6c21aec211a15b9cd7b90b7c1367/63_b.jpg\",\"derived_id\":1683687740,\"derived_id_str\":\"1683687740\",\"down\":\"images/cube_2048/63/549d6c21aec211a15b9cd7b90b7c1367/63_d.jpg\",\"front\":\"images/cube_2048/63/549d6c21aec211a15b9cd7b90b7c1367/63_f.jpg\",\"index\":63,\"left\":\"images/cube_2048/63/549d6c21aec211a15b9cd7b90b7c1367/63_l.jpg\",\"right\":\"images/cube_2048/63/549d6c21aec211a15b9cd7b90b7c1367/63_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/63/549d6c21aec211a15b9cd7b90b7c1367/63_u.jpg\"},{\"back\":\"images/cube_2048/64/7ee9ca9f46b574b9aa06c65f411628e8/64_b.jpg\",\"derived_id\":1683687803,\"derived_id_str\":\"1683687803\",\"down\":\"images/cube_2048/64/7ee9ca9f46b574b9aa06c65f411628e8/64_d.jpg\",\"front\":\"images/cube_2048/64/7ee9ca9f46b574b9aa06c65f411628e8/64_f.jpg\",\"index\":64,\"left\":\"images/cube_2048/64/7ee9ca9f46b574b9aa06c65f411628e8/64_l.jpg\",\"right\":\"images/cube_2048/64/7ee9ca9f46b574b9aa06c65f411628e8/64_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/64/7ee9ca9f46b574b9aa06c65f411628e8/64_u.jpg\"},{\"back\":\"images/cube_2048/65/a155adeaab8b2a5f5027af9a8be895a2/65_b.jpg\",\"derived_id\":1683687891,\"derived_id_str\":\"1683687891\",\"down\":\"images/cube_2048/65/a155adeaab8b2a5f5027af9a8be895a2/65_d.jpg\",\"front\":\"images/cube_2048/65/a155adeaab8b2a5f5027af9a8be895a2/65_f.jpg\",\"index\":65,\"left\":\"images/cube_2048/65/a155adeaab8b2a5f5027af9a8be895a2/65_l.jpg\",\"right\":\"images/cube_2048/65/a155adeaab8b2a5f5027af9a8be895a2/65_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/65/a155adeaab8b2a5f5027af9a8be895a2/65_u.jpg\"},{\"back\":\"images/cube_2048/66/3235c3e869ca893473c2b36932e21efc/66_b.jpg\",\"derived_id\":1683687965,\"derived_id_str\":\"1683687965\",\"down\":\"images/cube_2048/66/3235c3e869ca893473c2b36932e21efc/66_d.jpg\",\"front\":\"images/cube_2048/66/3235c3e869ca893473c2b36932e21efc/66_f.jpg\",\"index\":66,\"left\":\"images/cube_2048/66/3235c3e869ca893473c2b36932e21efc/66_l.jpg\",\"right\":\"images/cube_2048/66/3235c3e869ca893473c2b36932e21efc/66_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/66/3235c3e869ca893473c2b36932e21efc/66_u.jpg\"},{\"back\":\"images/cube_2048/67/fec0eb8a5b0352b216fecba3104656cb/67_b.jpg\",\"derived_id\":1683688033,\"derived_id_str\":\"1683688033\",\"down\":\"images/cube_2048/67/fec0eb8a5b0352b216fecba3104656cb/67_d.jpg\",\"front\":\"images/cube_2048/67/fec0eb8a5b0352b216fecba3104656cb/67_f.jpg\",\"index\":67,\"left\":\"images/cube_2048/67/fec0eb8a5b0352b216fecba3104656cb/67_l.jpg\",\"right\":\"images/cube_2048/67/fec0eb8a5b0352b216fecba3104656cb/67_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/67/fec0eb8a5b0352b216fecba3104656cb/67_u.jpg\"},{\"back\":\"images/cube_2048/68/34cbfbaa71e5f5612bb66f329b56eeb8/68_b.jpg\",\"derived_id\":1683688098,\"derived_id_str\":\"1683688098\",\"down\":\"images/cube_2048/68/34cbfbaa71e5f5612bb66f329b56eeb8/68_d.jpg\",\"front\":\"images/cube_2048/68/34cbfbaa71e5f5612bb66f329b56eeb8/68_f.jpg\",\"index\":68,\"left\":\"images/cube_2048/68/34cbfbaa71e5f5612bb66f329b56eeb8/68_l.jpg\",\"right\":\"images/cube_2048/68/34cbfbaa71e5f5612bb66f329b56eeb8/68_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/68/34cbfbaa71e5f5612bb66f329b56eeb8/68_u.jpg\"},{\"back\":\"images/cube_2048/69/619eeb3ee1796ab04d47de2c5fc0306f/69_b.jpg\",\"derived_id\":1683688171,\"derived_id_str\":\"1683688171\",\"down\":\"images/cube_2048/69/619eeb3ee1796ab04d47de2c5fc0306f/69_d.jpg\",\"front\":\"images/cube_2048/69/619eeb3ee1796ab04d47de2c5fc0306f/69_f.jpg\",\"index\":69,\"left\":\"images/cube_2048/69/619eeb3ee1796ab04d47de2c5fc0306f/69_l.jpg\",\"right\":\"images/cube_2048/69/619eeb3ee1796ab04d47de2c5fc0306f/69_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/69/619eeb3ee1796ab04d47de2c5fc0306f/69_u.jpg\"},{\"back\":\"images/cube_2048/70/a2d02c05ff8e5e25a615ae32a2534085/70_b.jpg\",\"derived_id\":1683688245,\"derived_id_str\":\"1683688245\",\"down\":\"images/cube_2048/70/a2d02c05ff8e5e25a615ae32a2534085/70_d.jpg\",\"front\":\"images/cube_2048/70/a2d02c05ff8e5e25a615ae32a2534085/70_f.jpg\",\"index\":70,\"left\":\"images/cube_2048/70/a2d02c05ff8e5e25a615ae32a2534085/70_l.jpg\",\"right\":\"images/cube_2048/70/a2d02c05ff8e5e25a615ae32a2534085/70_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/70/a2d02c05ff8e5e25a615ae32a2534085/70_u.jpg\"},{\"back\":\"images/cube_2048/71/6d1cebe8ece5b7698e70a94c572f524a/71_b.jpg\",\"derived_id\":1683688336,\"derived_id_str\":\"1683688336\",\"down\":\"images/cube_2048/71/6d1cebe8ece5b7698e70a94c572f524a/71_d.jpg\",\"front\":\"images/cube_2048/71/6d1cebe8ece5b7698e70a94c572f524a/71_f.jpg\",\"index\":71,\"left\":\"images/cube_2048/71/6d1cebe8ece5b7698e70a94c572f524a/71_l.jpg\",\"right\":\"images/cube_2048/71/6d1cebe8ece5b7698e70a94c572f524a/71_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/71/6d1cebe8ece5b7698e70a94c572f524a/71_u.jpg\"},{\"back\":\"images/cube_2048/72/f8664ff1a5226174ad719770487267f6/72_b.jpg\",\"derived_id\":1683688405,\"derived_id_str\":\"1683688405\",\"down\":\"images/cube_2048/72/f8664ff1a5226174ad719770487267f6/72_d.jpg\",\"front\":\"images/cube_2048/72/f8664ff1a5226174ad719770487267f6/72_f.jpg\",\"index\":72,\"left\":\"images/cube_2048/72/f8664ff1a5226174ad719770487267f6/72_l.jpg\",\"right\":\"images/cube_2048/72/f8664ff1a5226174ad719770487267f6/72_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/72/f8664ff1a5226174ad719770487267f6/72_u.jpg\"},{\"back\":\"images/cube_2048/73/7bfdd8555dfb1aa7c6734240b2fc5980/73_b.jpg\",\"derived_id\":1683688486,\"derived_id_str\":\"1683688486\",\"down\":\"images/cube_2048/73/7bfdd8555dfb1aa7c6734240b2fc5980/73_d.jpg\",\"front\":\"images/cube_2048/73/7bfdd8555dfb1aa7c6734240b2fc5980/73_f.jpg\",\"index\":73,\"left\":\"images/cube_2048/73/7bfdd8555dfb1aa7c6734240b2fc5980/73_l.jpg\",\"right\":\"images/cube_2048/73/7bfdd8555dfb1aa7c6734240b2fc5980/73_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/73/7bfdd8555dfb1aa7c6734240b2fc5980/73_u.jpg\"},{\"back\":\"images/cube_2048/74/afdbcf3b3985a785684bf70977ab82ab/74_b.jpg\",\"derived_id\":1683689288,\"derived_id_str\":\"1683689288\",\"down\":\"images/cube_2048/74/afdbcf3b3985a785684bf70977ab82ab/74_d.jpg\",\"front\":\"images/cube_2048/74/afdbcf3b3985a785684bf70977ab82ab/74_f.jpg\",\"index\":74,\"left\":\"images/cube_2048/74/afdbcf3b3985a785684bf70977ab82ab/74_l.jpg\",\"right\":\"images/cube_2048/74/afdbcf3b3985a785684bf70977ab82ab/74_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/74/afdbcf3b3985a785684bf70977ab82ab/74_u.jpg\"},{\"back\":\"images/cube_2048/75/e603262910db53b4eb0068ce84ae031a/75_b.jpg\",\"derived_id\":1683689473,\"derived_id_str\":\"1683689473\",\"down\":\"images/cube_2048/75/e603262910db53b4eb0068ce84ae031a/75_d.jpg\",\"front\":\"images/cube_2048/75/e603262910db53b4eb0068ce84ae031a/75_f.jpg\",\"index\":75,\"left\":\"images/cube_2048/75/e603262910db53b4eb0068ce84ae031a/75_l.jpg\",\"right\":\"images/cube_2048/75/e603262910db53b4eb0068ce84ae031a/75_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/75/e603262910db53b4eb0068ce84ae031a/75_u.jpg\"},{\"back\":\"images/cube_2048/76/55db218a2b019e821e8ee4091353b60a/76_b.jpg\",\"derived_id\":1683689533,\"derived_id_str\":\"1683689533\",\"down\":\"images/cube_2048/76/55db218a2b019e821e8ee4091353b60a/76_d.jpg\",\"front\":\"images/cube_2048/76/55db218a2b019e821e8ee4091353b60a/76_f.jpg\",\"index\":76,\"left\":\"images/cube_2048/76/55db218a2b019e821e8ee4091353b60a/76_l.jpg\",\"right\":\"images/cube_2048/76/55db218a2b019e821e8ee4091353b60a/76_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/76/55db218a2b019e821e8ee4091353b60a/76_u.jpg\"},{\"back\":\"images/cube_2048/77/423aff682e93ba9fe4413795f39a0c84/77_b.jpg\",\"derived_id\":1683689848,\"derived_id_str\":\"1683689848\",\"down\":\"images/cube_2048/77/423aff682e93ba9fe4413795f39a0c84/77_d.jpg\",\"front\":\"images/cube_2048/77/423aff682e93ba9fe4413795f39a0c84/77_f.jpg\",\"index\":77,\"left\":\"images/cube_2048/77/423aff682e93ba9fe4413795f39a0c84/77_l.jpg\",\"right\":\"images/cube_2048/77/423aff682e93ba9fe4413795f39a0c84/77_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/77/423aff682e93ba9fe4413795f39a0c84/77_u.jpg\"},{\"back\":\"images/cube_2048/78/4619c3209d769331bb3f6c494dd2fa5f/78_b.jpg\",\"derived_id\":1683690349,\"derived_id_str\":\"1683690349\",\"down\":\"images/cube_2048/78/4619c3209d769331bb3f6c494dd2fa5f/78_d.jpg\",\"front\":\"images/cube_2048/78/4619c3209d769331bb3f6c494dd2fa5f/78_f.jpg\",\"index\":78,\"left\":\"images/cube_2048/78/4619c3209d769331bb3f6c494dd2fa5f/78_l.jpg\",\"right\":\"images/cube_2048/78/4619c3209d769331bb3f6c494dd2fa5f/78_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/78/4619c3209d769331bb3f6c494dd2fa5f/78_u.jpg\"},{\"back\":\"images/cube_2048/79/af1d8231cb4971bbecd8dc1d297ddbe3/79_b.jpg\",\"derived_id\":1683690447,\"derived_id_str\":\"1683690447\",\"down\":\"images/cube_2048/79/af1d8231cb4971bbecd8dc1d297ddbe3/79_d.jpg\",\"front\":\"images/cube_2048/79/af1d8231cb4971bbecd8dc1d297ddbe3/79_f.jpg\",\"index\":79,\"left\":\"images/cube_2048/79/af1d8231cb4971bbecd8dc1d297ddbe3/79_l.jpg\",\"right\":\"images/cube_2048/79/af1d8231cb4971bbecd8dc1d297ddbe3/79_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/79/af1d8231cb4971bbecd8dc1d297ddbe3/79_u.jpg\"},{\"back\":\"images/cube_2048/80/ca2d3a1f967b89ef2482d9baa351fffc/80_b.jpg\",\"derived_id\":1683690498,\"derived_id_str\":\"1683690498\",\"down\":\"images/cube_2048/80/ca2d3a1f967b89ef2482d9baa351fffc/80_d.jpg\",\"front\":\"images/cube_2048/80/ca2d3a1f967b89ef2482d9baa351fffc/80_f.jpg\",\"index\":80,\"left\":\"images/cube_2048/80/ca2d3a1f967b89ef2482d9baa351fffc/80_l.jpg\",\"right\":\"images/cube_2048/80/ca2d3a1f967b89ef2482d9baa351fffc/80_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/80/ca2d3a1f967b89ef2482d9baa351fffc/80_u.jpg\"},{\"back\":\"images/cube_2048/81/bcf0d695dec7f764060f5c7fdbdc7735/81_b.jpg\",\"derived_id\":1683690576,\"derived_id_str\":\"1683690576\",\"down\":\"images/cube_2048/81/bcf0d695dec7f764060f5c7fdbdc7735/81_d.jpg\",\"front\":\"images/cube_2048/81/bcf0d695dec7f764060f5c7fdbdc7735/81_f.jpg\",\"index\":81,\"left\":\"images/cube_2048/81/bcf0d695dec7f764060f5c7fdbdc7735/81_l.jpg\",\"right\":\"images/cube_2048/81/bcf0d695dec7f764060f5c7fdbdc7735/81_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/81/bcf0d695dec7f764060f5c7fdbdc7735/81_u.jpg\"},{\"back\":\"images/cube_2048/82/138343afacc21d82943d967722e2106a/82_b.jpg\",\"derived_id\":1683691981,\"derived_id_str\":\"1683691981\",\"down\":\"images/cube_2048/82/138343afacc21d82943d967722e2106a/82_d.jpg\",\"front\":\"images/cube_2048/82/138343afacc21d82943d967722e2106a/82_f.jpg\",\"index\":82,\"left\":\"images/cube_2048/82/138343afacc21d82943d967722e2106a/82_l.jpg\",\"right\":\"images/cube_2048/82/138343afacc21d82943d967722e2106a/82_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/82/138343afacc21d82943d967722e2106a/82_u.jpg\"},{\"back\":\"images/cube_2048/83/4092b137cc791f0f2ce73883cae16271/83_b.jpg\",\"derived_id\":1683692042,\"derived_id_str\":\"1683692042\",\"down\":\"images/cube_2048/83/4092b137cc791f0f2ce73883cae16271/83_d.jpg\",\"front\":\"images/cube_2048/83/4092b137cc791f0f2ce73883cae16271/83_f.jpg\",\"index\":83,\"left\":\"images/cube_2048/83/4092b137cc791f0f2ce73883cae16271/83_l.jpg\",\"right\":\"images/cube_2048/83/4092b137cc791f0f2ce73883cae16271/83_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/83/4092b137cc791f0f2ce73883cae16271/83_u.jpg\"},{\"back\":\"images/cube_2048/84/27c322805f163774c9ea11dddcce5346/84_b.jpg\",\"derived_id\":1683692095,\"derived_id_str\":\"1683692095\",\"down\":\"images/cube_2048/84/27c322805f163774c9ea11dddcce5346/84_d.jpg\",\"front\":\"images/cube_2048/84/27c322805f163774c9ea11dddcce5346/84_f.jpg\",\"index\":84,\"left\":\"images/cube_2048/84/27c322805f163774c9ea11dddcce5346/84_l.jpg\",\"right\":\"images/cube_2048/84/27c322805f163774c9ea11dddcce5346/84_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/84/27c322805f163774c9ea11dddcce5346/84_u.jpg\"},{\"back\":\"images/cube_2048/85/bd0902fc6beb8671ecbbca5079b13351/85_b.jpg\",\"derived_id\":1683692153,\"derived_id_str\":\"1683692153\",\"down\":\"images/cube_2048/85/bd0902fc6beb8671ecbbca5079b13351/85_d.jpg\",\"front\":\"images/cube_2048/85/bd0902fc6beb8671ecbbca5079b13351/85_f.jpg\",\"index\":85,\"left\":\"images/cube_2048/85/bd0902fc6beb8671ecbbca5079b13351/85_l.jpg\",\"right\":\"images/cube_2048/85/bd0902fc6beb8671ecbbca5079b13351/85_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/85/bd0902fc6beb8671ecbbca5079b13351/85_u.jpg\"},{\"back\":\"images/cube_2048/86/eecd0716cf44eaeaebcac263e9c3c44c/86_b.jpg\",\"derived_id\":1683692204,\"derived_id_str\":\"1683692204\",\"down\":\"images/cube_2048/86/eecd0716cf44eaeaebcac263e9c3c44c/86_d.jpg\",\"front\":\"images/cube_2048/86/eecd0716cf44eaeaebcac263e9c3c44c/86_f.jpg\",\"index\":86,\"left\":\"images/cube_2048/86/eecd0716cf44eaeaebcac263e9c3c44c/86_l.jpg\",\"right\":\"images/cube_2048/86/eecd0716cf44eaeaebcac263e9c3c44c/86_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/86/eecd0716cf44eaeaebcac263e9c3c44c/86_u.jpg\"},{\"back\":\"images/cube_2048/87/b0b57ff32ca428b8e6c9e98e7302fdb7/87_b.jpg\",\"derived_id\":1683692266,\"derived_id_str\":\"1683692266\",\"down\":\"images/cube_2048/87/b0b57ff32ca428b8e6c9e98e7302fdb7/87_d.jpg\",\"front\":\"images/cube_2048/87/b0b57ff32ca428b8e6c9e98e7302fdb7/87_f.jpg\",\"index\":87,\"left\":\"images/cube_2048/87/b0b57ff32ca428b8e6c9e98e7302fdb7/87_l.jpg\",\"right\":\"images/cube_2048/87/b0b57ff32ca428b8e6c9e98e7302fdb7/87_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/87/b0b57ff32ca428b8e6c9e98e7302fdb7/87_u.jpg\"},{\"back\":\"images/cube_2048/88/69483e459b7eddcc172d1901767924bb/88_b.jpg\",\"derived_id\":1683692455,\"derived_id_str\":\"1683692455\",\"down\":\"images/cube_2048/88/69483e459b7eddcc172d1901767924bb/88_d.jpg\",\"front\":\"images/cube_2048/88/69483e459b7eddcc172d1901767924bb/88_f.jpg\",\"index\":88,\"left\":\"images/cube_2048/88/69483e459b7eddcc172d1901767924bb/88_l.jpg\",\"right\":\"images/cube_2048/88/69483e459b7eddcc172d1901767924bb/88_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/88/69483e459b7eddcc172d1901767924bb/88_u.jpg\"},{\"back\":\"images/cube_2048/89/ac63adf454368239cf3357d2309c9460/89_b.jpg\",\"derived_id\":1683692726,\"derived_id_str\":\"1683692726\",\"down\":\"images/cube_2048/89/ac63adf454368239cf3357d2309c9460/89_d.jpg\",\"front\":\"images/cube_2048/89/ac63adf454368239cf3357d2309c9460/89_f.jpg\",\"index\":89,\"left\":\"images/cube_2048/89/ac63adf454368239cf3357d2309c9460/89_l.jpg\",\"right\":\"images/cube_2048/89/ac63adf454368239cf3357d2309c9460/89_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/89/ac63adf454368239cf3357d2309c9460/89_u.jpg\"},{\"back\":\"images/cube_2048/90/b7f40a2efda0dc75a11592e93a8ace07/90_b.jpg\",\"derived_id\":1683692806,\"derived_id_str\":\"1683692806\",\"down\":\"images/cube_2048/90/b7f40a2efda0dc75a11592e93a8ace07/90_d.jpg\",\"front\":\"images/cube_2048/90/b7f40a2efda0dc75a11592e93a8ace07/90_f.jpg\",\"index\":90,\"left\":\"images/cube_2048/90/b7f40a2efda0dc75a11592e93a8ace07/90_l.jpg\",\"right\":\"images/cube_2048/90/b7f40a2efda0dc75a11592e93a8ace07/90_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/90/b7f40a2efda0dc75a11592e93a8ace07/90_u.jpg\"},{\"back\":\"images/cube_2048/91/28ad2819e9bb42f9b9bdbf61e9c15aaa/91_b.jpg\",\"derived_id\":1683692883,\"derived_id_str\":\"1683692883\",\"down\":\"images/cube_2048/91/28ad2819e9bb42f9b9bdbf61e9c15aaa/91_d.jpg\",\"front\":\"images/cube_2048/91/28ad2819e9bb42f9b9bdbf61e9c15aaa/91_f.jpg\",\"index\":91,\"left\":\"images/cube_2048/91/28ad2819e9bb42f9b9bdbf61e9c15aaa/91_l.jpg\",\"right\":\"images/cube_2048/91/28ad2819e9bb42f9b9bdbf61e9c15aaa/91_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/91/28ad2819e9bb42f9b9bdbf61e9c15aaa/91_u.jpg\"},{\"back\":\"images/cube_2048/92/9a7699b7eedee4f7b1478bae3b2eb932/92_b.jpg\",\"derived_id\":1683693058,\"derived_id_str\":\"1683693058\",\"down\":\"images/cube_2048/92/9a7699b7eedee4f7b1478bae3b2eb932/92_d.jpg\",\"front\":\"images/cube_2048/92/9a7699b7eedee4f7b1478bae3b2eb932/92_f.jpg\",\"index\":92,\"left\":\"images/cube_2048/92/9a7699b7eedee4f7b1478bae3b2eb932/92_l.jpg\",\"right\":\"images/cube_2048/92/9a7699b7eedee4f7b1478bae3b2eb932/92_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/92/9a7699b7eedee4f7b1478bae3b2eb932/92_u.jpg\"},{\"back\":\"images/cube_2048/93/46f867c0cbdcc7ee35c3f95342f0d765/93_b.jpg\",\"derived_id\":1683693136,\"derived_id_str\":\"1683693136\",\"down\":\"images/cube_2048/93/46f867c0cbdcc7ee35c3f95342f0d765/93_d.jpg\",\"front\":\"images/cube_2048/93/46f867c0cbdcc7ee35c3f95342f0d765/93_f.jpg\",\"index\":93,\"left\":\"images/cube_2048/93/46f867c0cbdcc7ee35c3f95342f0d765/93_l.jpg\",\"right\":\"images/cube_2048/93/46f867c0cbdcc7ee35c3f95342f0d765/93_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/93/46f867c0cbdcc7ee35c3f95342f0d765/93_u.jpg\"},{\"back\":\"images/cube_2048/94/d0728f58d0776c864aaeb60ec0cedbb6/94_b.jpg\",\"derived_id\":1683693226,\"derived_id_str\":\"1683693226\",\"down\":\"images/cube_2048/94/d0728f58d0776c864aaeb60ec0cedbb6/94_d.jpg\",\"front\":\"images/cube_2048/94/d0728f58d0776c864aaeb60ec0cedbb6/94_f.jpg\",\"index\":94,\"left\":\"images/cube_2048/94/d0728f58d0776c864aaeb60ec0cedbb6/94_l.jpg\",\"right\":\"images/cube_2048/94/d0728f58d0776c864aaeb60ec0cedbb6/94_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/94/d0728f58d0776c864aaeb60ec0cedbb6/94_u.jpg\"},{\"back\":\"images/cube_2048/95/280a8e42890187ac3a341b831d63859a/95_b.jpg\",\"derived_id\":1683693286,\"derived_id_str\":\"1683693286\",\"down\":\"images/cube_2048/95/280a8e42890187ac3a341b831d63859a/95_d.jpg\",\"front\":\"images/cube_2048/95/280a8e42890187ac3a341b831d63859a/95_f.jpg\",\"index\":95,\"left\":\"images/cube_2048/95/280a8e42890187ac3a341b831d63859a/95_l.jpg\",\"right\":\"images/cube_2048/95/280a8e42890187ac3a341b831d63859a/95_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/95/280a8e42890187ac3a341b831d63859a/95_u.jpg\"},{\"back\":\"images/cube_2048/96/539d4eb509adf63ff96b75ddbf90bb17/96_b.jpg\",\"derived_id\":1683693338,\"derived_id_str\":\"1683693338\",\"down\":\"images/cube_2048/96/539d4eb509adf63ff96b75ddbf90bb17/96_d.jpg\",\"front\":\"images/cube_2048/96/539d4eb509adf63ff96b75ddbf90bb17/96_f.jpg\",\"index\":96,\"left\":\"images/cube_2048/96/539d4eb509adf63ff96b75ddbf90bb17/96_l.jpg\",\"right\":\"images/cube_2048/96/539d4eb509adf63ff96b75ddbf90bb17/96_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/96/539d4eb509adf63ff96b75ddbf90bb17/96_u.jpg\"},{\"back\":\"images/cube_2048/97/cef4dd100dd259ee1aee2f5e90687bd5/97_b.jpg\",\"derived_id\":1683693393,\"derived_id_str\":\"1683693393\",\"down\":\"images/cube_2048/97/cef4dd100dd259ee1aee2f5e90687bd5/97_d.jpg\",\"front\":\"images/cube_2048/97/cef4dd100dd259ee1aee2f5e90687bd5/97_f.jpg\",\"index\":97,\"left\":\"images/cube_2048/97/cef4dd100dd259ee1aee2f5e90687bd5/97_l.jpg\",\"right\":\"images/cube_2048/97/cef4dd100dd259ee1aee2f5e90687bd5/97_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/97/cef4dd100dd259ee1aee2f5e90687bd5/97_u.jpg\"},{\"back\":\"images/cube_2048/98/f980ecc8dca7947a05cccecf6b277fb4/98_b.jpg\",\"derived_id\":1683693446,\"derived_id_str\":\"1683693446\",\"down\":\"images/cube_2048/98/f980ecc8dca7947a05cccecf6b277fb4/98_d.jpg\",\"front\":\"images/cube_2048/98/f980ecc8dca7947a05cccecf6b277fb4/98_f.jpg\",\"index\":98,\"left\":\"images/cube_2048/98/f980ecc8dca7947a05cccecf6b277fb4/98_l.jpg\",\"right\":\"images/cube_2048/98/f980ecc8dca7947a05cccecf6b277fb4/98_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/98/f980ecc8dca7947a05cccecf6b277fb4/98_u.jpg\"},{\"back\":\"images/cube_2048/99/5cdf8690c196bd6a1560167559817740/99_b.jpg\",\"derived_id\":1683693504,\"derived_id_str\":\"1683693504\",\"down\":\"images/cube_2048/99/5cdf8690c196bd6a1560167559817740/99_d.jpg\",\"front\":\"images/cube_2048/99/5cdf8690c196bd6a1560167559817740/99_f.jpg\",\"index\":99,\"left\":\"images/cube_2048/99/5cdf8690c196bd6a1560167559817740/99_l.jpg\",\"right\":\"images/cube_2048/99/5cdf8690c196bd6a1560167559817740/99_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/99/5cdf8690c196bd6a1560167559817740/99_u.jpg\"},{\"back\":\"images/cube_2048/100/05fa43f1ee20b5f2ca42e2189a9bc6cc/100_b.jpg\",\"derived_id\":1683693558,\"derived_id_str\":\"1683693558\",\"down\":\"images/cube_2048/100/05fa43f1ee20b5f2ca42e2189a9bc6cc/100_d.jpg\",\"front\":\"images/cube_2048/100/05fa43f1ee20b5f2ca42e2189a9bc6cc/100_f.jpg\",\"index\":100,\"left\":\"images/cube_2048/100/05fa43f1ee20b5f2ca42e2189a9bc6cc/100_l.jpg\",\"right\":\"images/cube_2048/100/05fa43f1ee20b5f2ca42e2189a9bc6cc/100_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/100/05fa43f1ee20b5f2ca42e2189a9bc6cc/100_u.jpg\"},{\"back\":\"images/cube_2048/101/01a1dceaefe0260ee6f4aabc20c4186c/101_b.jpg\",\"derived_id\":1683693621,\"derived_id_str\":\"1683693621\",\"down\":\"images/cube_2048/101/01a1dceaefe0260ee6f4aabc20c4186c/101_d.jpg\",\"front\":\"images/cube_2048/101/01a1dceaefe0260ee6f4aabc20c4186c/101_f.jpg\",\"index\":101,\"left\":\"images/cube_2048/101/01a1dceaefe0260ee6f4aabc20c4186c/101_l.jpg\",\"right\":\"images/cube_2048/101/01a1dceaefe0260ee6f4aabc20c4186c/101_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/101/01a1dceaefe0260ee6f4aabc20c4186c/101_u.jpg\"},{\"back\":\"images/cube_2048/102/1e8cc7ee02537fc9ac7a204b65a203b8/102_b.jpg\",\"derived_id\":1683693720,\"derived_id_str\":\"1683693720\",\"down\":\"images/cube_2048/102/1e8cc7ee02537fc9ac7a204b65a203b8/102_d.jpg\",\"front\":\"images/cube_2048/102/1e8cc7ee02537fc9ac7a204b65a203b8/102_f.jpg\",\"index\":102,\"left\":\"images/cube_2048/102/1e8cc7ee02537fc9ac7a204b65a203b8/102_l.jpg\",\"right\":\"images/cube_2048/102/1e8cc7ee02537fc9ac7a204b65a203b8/102_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/102/1e8cc7ee02537fc9ac7a204b65a203b8/102_u.jpg\"},{\"back\":\"images/cube_2048/103/f00c15f9fa46a1c82e119228ffd4003b/103_b.jpg\",\"derived_id\":1683693782,\"derived_id_str\":\"1683693782\",\"down\":\"images/cube_2048/103/f00c15f9fa46a1c82e119228ffd4003b/103_d.jpg\",\"front\":\"images/cube_2048/103/f00c15f9fa46a1c82e119228ffd4003b/103_f.jpg\",\"index\":103,\"left\":\"images/cube_2048/103/f00c15f9fa46a1c82e119228ffd4003b/103_l.jpg\",\"right\":\"images/cube_2048/103/f00c15f9fa46a1c82e119228ffd4003b/103_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/103/f00c15f9fa46a1c82e119228ffd4003b/103_u.jpg\"},{\"back\":\"images/cube_2048/104/c6fb00e45777598d5c003a18e2d6d668/104_b.jpg\",\"derived_id\":1683693835,\"derived_id_str\":\"1683693835\",\"down\":\"images/cube_2048/104/c6fb00e45777598d5c003a18e2d6d668/104_d.jpg\",\"front\":\"images/cube_2048/104/c6fb00e45777598d5c003a18e2d6d668/104_f.jpg\",\"index\":104,\"left\":\"images/cube_2048/104/c6fb00e45777598d5c003a18e2d6d668/104_l.jpg\",\"right\":\"images/cube_2048/104/c6fb00e45777598d5c003a18e2d6d668/104_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/104/c6fb00e45777598d5c003a18e2d6d668/104_u.jpg\"},{\"back\":\"images/cube_2048/105/3cf08f6539e36552c861f317eeee7ea4/105_b.jpg\",\"derived_id\":1683693897,\"derived_id_str\":\"1683693897\",\"down\":\"images/cube_2048/105/3cf08f6539e36552c861f317eeee7ea4/105_d.jpg\",\"front\":\"images/cube_2048/105/3cf08f6539e36552c861f317eeee7ea4/105_f.jpg\",\"index\":105,\"left\":\"images/cube_2048/105/3cf08f6539e36552c861f317eeee7ea4/105_l.jpg\",\"right\":\"images/cube_2048/105/3cf08f6539e36552c861f317eeee7ea4/105_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/105/3cf08f6539e36552c861f317eeee7ea4/105_u.jpg\"},{\"back\":\"images/cube_2048/106/59cf3acbfa6d068416b4bd46f75dd9e9/106_b.jpg\",\"derived_id\":1683693952,\"derived_id_str\":\"1683693952\",\"down\":\"images/cube_2048/106/59cf3acbfa6d068416b4bd46f75dd9e9/106_d.jpg\",\"front\":\"images/cube_2048/106/59cf3acbfa6d068416b4bd46f75dd9e9/106_f.jpg\",\"index\":106,\"left\":\"images/cube_2048/106/59cf3acbfa6d068416b4bd46f75dd9e9/106_l.jpg\",\"right\":\"images/cube_2048/106/59cf3acbfa6d068416b4bd46f75dd9e9/106_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/106/59cf3acbfa6d068416b4bd46f75dd9e9/106_u.jpg\"},{\"back\":\"images/cube_2048/107/dfe322be081ee2d6f941e537c38016e8/107_b.jpg\",\"derived_id\":1683694006,\"derived_id_str\":\"1683694006\",\"down\":\"images/cube_2048/107/dfe322be081ee2d6f941e537c38016e8/107_d.jpg\",\"front\":\"images/cube_2048/107/dfe322be081ee2d6f941e537c38016e8/107_f.jpg\",\"index\":107,\"left\":\"images/cube_2048/107/dfe322be081ee2d6f941e537c38016e8/107_l.jpg\",\"right\":\"images/cube_2048/107/dfe322be081ee2d6f941e537c38016e8/107_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/107/dfe322be081ee2d6f941e537c38016e8/107_u.jpg\"},{\"back\":\"images/cube_2048/108/230e268f6cde80b5283271d9b909914d/108_b.jpg\",\"derived_id\":1683694062,\"derived_id_str\":\"1683694062\",\"down\":\"images/cube_2048/108/230e268f6cde80b5283271d9b909914d/108_d.jpg\",\"front\":\"images/cube_2048/108/230e268f6cde80b5283271d9b909914d/108_f.jpg\",\"index\":108,\"left\":\"images/cube_2048/108/230e268f6cde80b5283271d9b909914d/108_l.jpg\",\"right\":\"images/cube_2048/108/230e268f6cde80b5283271d9b909914d/108_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/108/230e268f6cde80b5283271d9b909914d/108_u.jpg\"},{\"back\":\"images/cube_2048/109/eef9160c241754d8cfa8ee30905decdf/109_b.jpg\",\"derived_id\":1683694158,\"derived_id_str\":\"1683694158\",\"down\":\"images/cube_2048/109/eef9160c241754d8cfa8ee30905decdf/109_d.jpg\",\"front\":\"images/cube_2048/109/eef9160c241754d8cfa8ee30905decdf/109_f.jpg\",\"index\":109,\"left\":\"images/cube_2048/109/eef9160c241754d8cfa8ee30905decdf/109_l.jpg\",\"right\":\"images/cube_2048/109/eef9160c241754d8cfa8ee30905decdf/109_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/109/eef9160c241754d8cfa8ee30905decdf/109_u.jpg\"},{\"back\":\"images/cube_2048/110/aa91eb3a18104a4f51fd5831c7fe8b0c/110_b.jpg\",\"derived_id\":1683694244,\"derived_id_str\":\"1683694244\",\"down\":\"images/cube_2048/110/aa91eb3a18104a4f51fd5831c7fe8b0c/110_d.jpg\",\"front\":\"images/cube_2048/110/aa91eb3a18104a4f51fd5831c7fe8b0c/110_f.jpg\",\"index\":110,\"left\":\"images/cube_2048/110/aa91eb3a18104a4f51fd5831c7fe8b0c/110_l.jpg\",\"right\":\"images/cube_2048/110/aa91eb3a18104a4f51fd5831c7fe8b0c/110_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/110/aa91eb3a18104a4f51fd5831c7fe8b0c/110_u.jpg\"},{\"back\":\"images/cube_2048/111/c5a7aa235599211d9921cf60df2f8d0e/111_b.jpg\",\"derived_id\":1683694328,\"derived_id_str\":\"1683694328\",\"down\":\"images/cube_2048/111/c5a7aa235599211d9921cf60df2f8d0e/111_d.jpg\",\"front\":\"images/cube_2048/111/c5a7aa235599211d9921cf60df2f8d0e/111_f.jpg\",\"index\":111,\"left\":\"images/cube_2048/111/c5a7aa235599211d9921cf60df2f8d0e/111_l.jpg\",\"right\":\"images/cube_2048/111/c5a7aa235599211d9921cf60df2f8d0e/111_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/111/c5a7aa235599211d9921cf60df2f8d0e/111_u.jpg\"},{\"back\":\"images/cube_2048/112/5c6e09e3ddd403cb6b40e8d7501eab43/112_b.jpg\",\"derived_id\":1683694422,\"derived_id_str\":\"1683694422\",\"down\":\"images/cube_2048/112/5c6e09e3ddd403cb6b40e8d7501eab43/112_d.jpg\",\"front\":\"images/cube_2048/112/5c6e09e3ddd403cb6b40e8d7501eab43/112_f.jpg\",\"index\":112,\"left\":\"images/cube_2048/112/5c6e09e3ddd403cb6b40e8d7501eab43/112_l.jpg\",\"right\":\"images/cube_2048/112/5c6e09e3ddd403cb6b40e8d7501eab43/112_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/112/5c6e09e3ddd403cb6b40e8d7501eab43/112_u.jpg\"},{\"back\":\"images/cube_2048/113/19efc3b3ca2147a71d9a8dfeb2d1eb50/113_b.jpg\",\"derived_id\":1683694796,\"derived_id_str\":\"1683694796\",\"down\":\"images/cube_2048/113/19efc3b3ca2147a71d9a8dfeb2d1eb50/113_d.jpg\",\"front\":\"images/cube_2048/113/19efc3b3ca2147a71d9a8dfeb2d1eb50/113_f.jpg\",\"index\":113,\"left\":\"images/cube_2048/113/19efc3b3ca2147a71d9a8dfeb2d1eb50/113_l.jpg\",\"right\":\"images/cube_2048/113/19efc3b3ca2147a71d9a8dfeb2d1eb50/113_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/113/19efc3b3ca2147a71d9a8dfeb2d1eb50/113_u.jpg\"},{\"back\":\"images/cube_2048/114/f9c4da11cb6513f6592775c9a9ae219b/114_b.jpg\",\"derived_id\":1683694864,\"derived_id_str\":\"1683694864\",\"down\":\"images/cube_2048/114/f9c4da11cb6513f6592775c9a9ae219b/114_d.jpg\",\"front\":\"images/cube_2048/114/f9c4da11cb6513f6592775c9a9ae219b/114_f.jpg\",\"index\":114,\"left\":\"images/cube_2048/114/f9c4da11cb6513f6592775c9a9ae219b/114_l.jpg\",\"right\":\"images/cube_2048/114/f9c4da11cb6513f6592775c9a9ae219b/114_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/114/f9c4da11cb6513f6592775c9a9ae219b/114_u.jpg\"},{\"back\":\"images/cube_2048/115/30d7c03cb8901a1d6f046d16f9b50182/115_b.jpg\",\"derived_id\":1683694936,\"derived_id_str\":\"1683694936\",\"down\":\"images/cube_2048/115/30d7c03cb8901a1d6f046d16f9b50182/115_d.jpg\",\"front\":\"images/cube_2048/115/30d7c03cb8901a1d6f046d16f9b50182/115_f.jpg\",\"index\":115,\"left\":\"images/cube_2048/115/30d7c03cb8901a1d6f046d16f9b50182/115_l.jpg\",\"right\":\"images/cube_2048/115/30d7c03cb8901a1d6f046d16f9b50182/115_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/115/30d7c03cb8901a1d6f046d16f9b50182/115_u.jpg\"},{\"back\":\"images/cube_2048/116/453f51cad039e2458c7f54652b99d872/116_b.jpg\",\"derived_id\":1683695066,\"derived_id_str\":\"1683695066\",\"down\":\"images/cube_2048/116/453f51cad039e2458c7f54652b99d872/116_d.jpg\",\"front\":\"images/cube_2048/116/453f51cad039e2458c7f54652b99d872/116_f.jpg\",\"index\":116,\"left\":\"images/cube_2048/116/453f51cad039e2458c7f54652b99d872/116_l.jpg\",\"right\":\"images/cube_2048/116/453f51cad039e2458c7f54652b99d872/116_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/116/453f51cad039e2458c7f54652b99d872/116_u.jpg\"},{\"back\":\"images/cube_2048/117/b59f2dfab8ebd77234c7de996f0a06b2/117_b.jpg\",\"derived_id\":1683695167,\"derived_id_str\":\"1683695167\",\"down\":\"images/cube_2048/117/b59f2dfab8ebd77234c7de996f0a06b2/117_d.jpg\",\"front\":\"images/cube_2048/117/b59f2dfab8ebd77234c7de996f0a06b2/117_f.jpg\",\"index\":117,\"left\":\"images/cube_2048/117/b59f2dfab8ebd77234c7de996f0a06b2/117_l.jpg\",\"right\":\"images/cube_2048/117/b59f2dfab8ebd77234c7de996f0a06b2/117_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/117/b59f2dfab8ebd77234c7de996f0a06b2/117_u.jpg\"},{\"back\":\"images/cube_2048/118/17383f75695b310cced0f17108248a25/118_b.jpg\",\"derived_id\":1683695777,\"derived_id_str\":\"1683695777\",\"down\":\"images/cube_2048/118/17383f75695b310cced0f17108248a25/118_d.jpg\",\"front\":\"images/cube_2048/118/17383f75695b310cced0f17108248a25/118_f.jpg\",\"index\":118,\"left\":\"images/cube_2048/118/17383f75695b310cced0f17108248a25/118_l.jpg\",\"right\":\"images/cube_2048/118/17383f75695b310cced0f17108248a25/118_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/118/17383f75695b310cced0f17108248a25/118_u.jpg\"},{\"back\":\"images/cube_2048/119/bedaf9741e0464e359935354d0c2c798/119_b.jpg\",\"derived_id\":1683695851,\"derived_id_str\":\"1683695851\",\"down\":\"images/cube_2048/119/bedaf9741e0464e359935354d0c2c798/119_d.jpg\",\"front\":\"images/cube_2048/119/bedaf9741e0464e359935354d0c2c798/119_f.jpg\",\"index\":119,\"left\":\"images/cube_2048/119/bedaf9741e0464e359935354d0c2c798/119_l.jpg\",\"right\":\"images/cube_2048/119/bedaf9741e0464e359935354d0c2c798/119_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/119/bedaf9741e0464e359935354d0c2c798/119_u.jpg\"},{\"back\":\"images/cube_2048/120/88288ec535650adf776f12b7382fe7f6/120_b.jpg\",\"derived_id\":1683695902,\"derived_id_str\":\"1683695902\",\"down\":\"images/cube_2048/120/88288ec535650adf776f12b7382fe7f6/120_d.jpg\",\"front\":\"images/cube_2048/120/88288ec535650adf776f12b7382fe7f6/120_f.jpg\",\"index\":120,\"left\":\"images/cube_2048/120/88288ec535650adf776f12b7382fe7f6/120_l.jpg\",\"right\":\"images/cube_2048/120/88288ec535650adf776f12b7382fe7f6/120_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/120/88288ec535650adf776f12b7382fe7f6/120_u.jpg\"},{\"back\":\"images/cube_2048/121/1b369ffc2167a942f108f9b9fe61da9e/121_b.jpg\",\"derived_id\":1683695955,\"derived_id_str\":\"1683695955\",\"down\":\"images/cube_2048/121/1b369ffc2167a942f108f9b9fe61da9e/121_d.jpg\",\"front\":\"images/cube_2048/121/1b369ffc2167a942f108f9b9fe61da9e/121_f.jpg\",\"index\":121,\"left\":\"images/cube_2048/121/1b369ffc2167a942f108f9b9fe61da9e/121_l.jpg\",\"right\":\"images/cube_2048/121/1b369ffc2167a942f108f9b9fe61da9e/121_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/121/1b369ffc2167a942f108f9b9fe61da9e/121_u.jpg\"},{\"back\":\"images/cube_2048/122/9826bceaf2d807abdfba816185710205/122_b.jpg\",\"derived_id\":1683696009,\"derived_id_str\":\"1683696009\",\"down\":\"images/cube_2048/122/9826bceaf2d807abdfba816185710205/122_d.jpg\",\"front\":\"images/cube_2048/122/9826bceaf2d807abdfba816185710205/122_f.jpg\",\"index\":122,\"left\":\"images/cube_2048/122/9826bceaf2d807abdfba816185710205/122_l.jpg\",\"right\":\"images/cube_2048/122/9826bceaf2d807abdfba816185710205/122_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/122/9826bceaf2d807abdfba816185710205/122_u.jpg\"},{\"back\":\"images/cube_2048/123/161daffbb5394ab225dfc38e3d88fa47/123_b.jpg\",\"derived_id\":1683696058,\"derived_id_str\":\"1683696058\",\"down\":\"images/cube_2048/123/161daffbb5394ab225dfc38e3d88fa47/123_d.jpg\",\"front\":\"images/cube_2048/123/161daffbb5394ab225dfc38e3d88fa47/123_f.jpg\",\"index\":123,\"left\":\"images/cube_2048/123/161daffbb5394ab225dfc38e3d88fa47/123_l.jpg\",\"right\":\"images/cube_2048/123/161daffbb5394ab225dfc38e3d88fa47/123_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/123/161daffbb5394ab225dfc38e3d88fa47/123_u.jpg\"},{\"back\":\"images/cube_2048/124/b79fbbb4cd31f028a99d04cad23f83c5/124_b.jpg\",\"derived_id\":1683696110,\"derived_id_str\":\"1683696110\",\"down\":\"images/cube_2048/124/b79fbbb4cd31f028a99d04cad23f83c5/124_d.jpg\",\"front\":\"images/cube_2048/124/b79fbbb4cd31f028a99d04cad23f83c5/124_f.jpg\",\"index\":124,\"left\":\"images/cube_2048/124/b79fbbb4cd31f028a99d04cad23f83c5/124_l.jpg\",\"right\":\"images/cube_2048/124/b79fbbb4cd31f028a99d04cad23f83c5/124_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/124/b79fbbb4cd31f028a99d04cad23f83c5/124_u.jpg\"},{\"back\":\"images/cube_2048/125/d6c52ebb103da962901f048f11ca4c20/125_b.jpg\",\"derived_id\":1683696163,\"derived_id_str\":\"1683696163\",\"down\":\"images/cube_2048/125/d6c52ebb103da962901f048f11ca4c20/125_d.jpg\",\"front\":\"images/cube_2048/125/d6c52ebb103da962901f048f11ca4c20/125_f.jpg\",\"index\":125,\"left\":\"images/cube_2048/125/d6c52ebb103da962901f048f11ca4c20/125_l.jpg\",\"right\":\"images/cube_2048/125/d6c52ebb103da962901f048f11ca4c20/125_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/125/d6c52ebb103da962901f048f11ca4c20/125_u.jpg\"},{\"back\":\"images/cube_2048/126/879dcfcee973bc24ad4375bb5dff46b0/126_b.jpg\",\"derived_id\":1683696211,\"derived_id_str\":\"1683696211\",\"down\":\"images/cube_2048/126/879dcfcee973bc24ad4375bb5dff46b0/126_d.jpg\",\"front\":\"images/cube_2048/126/879dcfcee973bc24ad4375bb5dff46b0/126_f.jpg\",\"index\":126,\"left\":\"images/cube_2048/126/879dcfcee973bc24ad4375bb5dff46b0/126_l.jpg\",\"right\":\"images/cube_2048/126/879dcfcee973bc24ad4375bb5dff46b0/126_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/126/879dcfcee973bc24ad4375bb5dff46b0/126_u.jpg\"},{\"back\":\"images/cube_2048/127/9ff0df0a547a7ea595b00ec0ea9e5f8a/127_b.jpg\",\"derived_id\":1683696264,\"derived_id_str\":\"1683696264\",\"down\":\"images/cube_2048/127/9ff0df0a547a7ea595b00ec0ea9e5f8a/127_d.jpg\",\"front\":\"images/cube_2048/127/9ff0df0a547a7ea595b00ec0ea9e5f8a/127_f.jpg\",\"index\":127,\"left\":\"images/cube_2048/127/9ff0df0a547a7ea595b00ec0ea9e5f8a/127_l.jpg\",\"right\":\"images/cube_2048/127/9ff0df0a547a7ea595b00ec0ea9e5f8a/127_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/127/9ff0df0a547a7ea595b00ec0ea9e5f8a/127_u.jpg\"},{\"back\":\"images/cube_2048/128/16170cc56ae5fd6bca9b472d4402228d/128_b.jpg\",\"derived_id\":1683696357,\"derived_id_str\":\"1683696357\",\"down\":\"images/cube_2048/128/16170cc56ae5fd6bca9b472d4402228d/128_d.jpg\",\"front\":\"images/cube_2048/128/16170cc56ae5fd6bca9b472d4402228d/128_f.jpg\",\"index\":128,\"left\":\"images/cube_2048/128/16170cc56ae5fd6bca9b472d4402228d/128_l.jpg\",\"right\":\"images/cube_2048/128/16170cc56ae5fd6bca9b472d4402228d/128_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/128/16170cc56ae5fd6bca9b472d4402228d/128_u.jpg\"},{\"back\":\"images/cube_2048/129/9c48124966432434d2f702d49994a770/129_b.jpg\",\"derived_id\":1683700088,\"derived_id_str\":\"1683700088\",\"down\":\"images/cube_2048/129/9c48124966432434d2f702d49994a770/129_d.jpg\",\"front\":\"images/cube_2048/129/9c48124966432434d2f702d49994a770/129_f.jpg\",\"index\":129,\"left\":\"images/cube_2048/129/9c48124966432434d2f702d49994a770/129_l.jpg\",\"right\":\"images/cube_2048/129/9c48124966432434d2f702d49994a770/129_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/129/9c48124966432434d2f702d49994a770/129_u.jpg\"},{\"back\":\"images/cube_2048/130/aa51b5768e964a1c5cbe079f727e7332/130_b.jpg\",\"derived_id\":1683700192,\"derived_id_str\":\"1683700192\",\"down\":\"images/cube_2048/130/aa51b5768e964a1c5cbe079f727e7332/130_d.jpg\",\"front\":\"images/cube_2048/130/aa51b5768e964a1c5cbe079f727e7332/130_f.jpg\",\"index\":130,\"left\":\"images/cube_2048/130/aa51b5768e964a1c5cbe079f727e7332/130_l.jpg\",\"right\":\"images/cube_2048/130/aa51b5768e964a1c5cbe079f727e7332/130_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/130/aa51b5768e964a1c5cbe079f727e7332/130_u.jpg\"},{\"back\":\"images/cube_2048/131/9ea4d624e1789276434834258fa6eed8/131_b.jpg\",\"derived_id\":1683700489,\"derived_id_str\":\"1683700489\",\"down\":\"images/cube_2048/131/9ea4d624e1789276434834258fa6eed8/131_d.jpg\",\"front\":\"images/cube_2048/131/9ea4d624e1789276434834258fa6eed8/131_f.jpg\",\"index\":131,\"left\":\"images/cube_2048/131/9ea4d624e1789276434834258fa6eed8/131_l.jpg\",\"right\":\"images/cube_2048/131/9ea4d624e1789276434834258fa6eed8/131_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/131/9ea4d624e1789276434834258fa6eed8/131_u.jpg\"},{\"back\":\"images/cube_2048/132/0b4f74508238df9513c8e30975fb312b/132_b.jpg\",\"derived_id\":1683700603,\"derived_id_str\":\"1683700603\",\"down\":\"images/cube_2048/132/0b4f74508238df9513c8e30975fb312b/132_d.jpg\",\"front\":\"images/cube_2048/132/0b4f74508238df9513c8e30975fb312b/132_f.jpg\",\"index\":132,\"left\":\"images/cube_2048/132/0b4f74508238df9513c8e30975fb312b/132_l.jpg\",\"right\":\"images/cube_2048/132/0b4f74508238df9513c8e30975fb312b/132_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/132/0b4f74508238df9513c8e30975fb312b/132_u.jpg\"},{\"back\":\"images/cube_2048/133/df13f45539d2192a2c3acb03f78e8994/133_b.jpg\",\"derived_id\":1683700647,\"derived_id_str\":\"1683700647\",\"down\":\"images/cube_2048/133/df13f45539d2192a2c3acb03f78e8994/133_d.jpg\",\"front\":\"images/cube_2048/133/df13f45539d2192a2c3acb03f78e8994/133_f.jpg\",\"index\":133,\"left\":\"images/cube_2048/133/df13f45539d2192a2c3acb03f78e8994/133_l.jpg\",\"right\":\"images/cube_2048/133/df13f45539d2192a2c3acb03f78e8994/133_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/133/df13f45539d2192a2c3acb03f78e8994/133_u.jpg\"},{\"back\":\"images/cube_2048/134/615744ea8b267be239464b7eeb53cd08/134_b.jpg\",\"derived_id\":1683700736,\"derived_id_str\":\"1683700736\",\"down\":\"images/cube_2048/134/615744ea8b267be239464b7eeb53cd08/134_d.jpg\",\"front\":\"images/cube_2048/134/615744ea8b267be239464b7eeb53cd08/134_f.jpg\",\"index\":134,\"left\":\"images/cube_2048/134/615744ea8b267be239464b7eeb53cd08/134_l.jpg\",\"right\":\"images/cube_2048/134/615744ea8b267be239464b7eeb53cd08/134_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/134/615744ea8b267be239464b7eeb53cd08/134_u.jpg\"},{\"back\":\"images/cube_2048/135/8dd7f35b8229fd4fcd223ba391e1143e/135_b.jpg\",\"derived_id\":1683700877,\"derived_id_str\":\"1683700877\",\"down\":\"images/cube_2048/135/8dd7f35b8229fd4fcd223ba391e1143e/135_d.jpg\",\"front\":\"images/cube_2048/135/8dd7f35b8229fd4fcd223ba391e1143e/135_f.jpg\",\"index\":135,\"left\":\"images/cube_2048/135/8dd7f35b8229fd4fcd223ba391e1143e/135_l.jpg\",\"right\":\"images/cube_2048/135/8dd7f35b8229fd4fcd223ba391e1143e/135_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/135/8dd7f35b8229fd4fcd223ba391e1143e/135_u.jpg\"},{\"back\":\"images/cube_2048/136/e7207465acf670718480a13c5cfc79d9/136_b.jpg\",\"derived_id\":1683700972,\"derived_id_str\":\"1683700972\",\"down\":\"images/cube_2048/136/e7207465acf670718480a13c5cfc79d9/136_d.jpg\",\"front\":\"images/cube_2048/136/e7207465acf670718480a13c5cfc79d9/136_f.jpg\",\"index\":136,\"left\":\"images/cube_2048/136/e7207465acf670718480a13c5cfc79d9/136_l.jpg\",\"right\":\"images/cube_2048/136/e7207465acf670718480a13c5cfc79d9/136_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/136/e7207465acf670718480a13c5cfc79d9/136_u.jpg\"},{\"back\":\"images/cube_2048/137/60512812cfbf4e31c6dc63ecf7440526/137_b.jpg\",\"derived_id\":1683701566,\"derived_id_str\":\"1683701566\",\"down\":\"images/cube_2048/137/60512812cfbf4e31c6dc63ecf7440526/137_d.jpg\",\"front\":\"images/cube_2048/137/60512812cfbf4e31c6dc63ecf7440526/137_f.jpg\",\"index\":137,\"left\":\"images/cube_2048/137/60512812cfbf4e31c6dc63ecf7440526/137_l.jpg\",\"right\":\"images/cube_2048/137/60512812cfbf4e31c6dc63ecf7440526/137_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/137/60512812cfbf4e31c6dc63ecf7440526/137_u.jpg\"},{\"back\":\"images/cube_2048/138/af8fd58bef50c110af22d17d33b6a8dc/138_b.jpg\",\"derived_id\":1683701627,\"derived_id_str\":\"1683701627\",\"down\":\"images/cube_2048/138/af8fd58bef50c110af22d17d33b6a8dc/138_d.jpg\",\"front\":\"images/cube_2048/138/af8fd58bef50c110af22d17d33b6a8dc/138_f.jpg\",\"index\":138,\"left\":\"images/cube_2048/138/af8fd58bef50c110af22d17d33b6a8dc/138_l.jpg\",\"right\":\"images/cube_2048/138/af8fd58bef50c110af22d17d33b6a8dc/138_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/138/af8fd58bef50c110af22d17d33b6a8dc/138_u.jpg\"},{\"back\":\"images/cube_2048/139/8cee0937e521f15d4f1ac61f7adf1f64/139_b.jpg\",\"derived_id\":1683701715,\"derived_id_str\":\"1683701715\",\"down\":\"images/cube_2048/139/8cee0937e521f15d4f1ac61f7adf1f64/139_d.jpg\",\"front\":\"images/cube_2048/139/8cee0937e521f15d4f1ac61f7adf1f64/139_f.jpg\",\"index\":139,\"left\":\"images/cube_2048/139/8cee0937e521f15d4f1ac61f7adf1f64/139_l.jpg\",\"right\":\"images/cube_2048/139/8cee0937e521f15d4f1ac61f7adf1f64/139_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/139/8cee0937e521f15d4f1ac61f7adf1f64/139_u.jpg\"},{\"back\":\"images/cube_2048/140/0135487ad53c1d522395371c9091f258/140_b.jpg\",\"derived_id\":1683701800,\"derived_id_str\":\"1683701800\",\"down\":\"images/cube_2048/140/0135487ad53c1d522395371c9091f258/140_d.jpg\",\"front\":\"images/cube_2048/140/0135487ad53c1d522395371c9091f258/140_f.jpg\",\"index\":140,\"left\":\"images/cube_2048/140/0135487ad53c1d522395371c9091f258/140_l.jpg\",\"right\":\"images/cube_2048/140/0135487ad53c1d522395371c9091f258/140_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/140/0135487ad53c1d522395371c9091f258/140_u.jpg\"},{\"back\":\"images/cube_2048/141/f34d134e2430cacf46e72056a7dea75a/141_b.jpg\",\"derived_id\":1683701852,\"derived_id_str\":\"1683701852\",\"down\":\"images/cube_2048/141/f34d134e2430cacf46e72056a7dea75a/141_d.jpg\",\"front\":\"images/cube_2048/141/f34d134e2430cacf46e72056a7dea75a/141_f.jpg\",\"index\":141,\"left\":\"images/cube_2048/141/f34d134e2430cacf46e72056a7dea75a/141_l.jpg\",\"right\":\"images/cube_2048/141/f34d134e2430cacf46e72056a7dea75a/141_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/141/f34d134e2430cacf46e72056a7dea75a/141_u.jpg\"},{\"back\":\"images/cube_2048/142/6c58031c94375bf53019c0aa0c532caf/142_b.jpg\",\"derived_id\":1683701910,\"derived_id_str\":\"1683701910\",\"down\":\"images/cube_2048/142/6c58031c94375bf53019c0aa0c532caf/142_d.jpg\",\"front\":\"images/cube_2048/142/6c58031c94375bf53019c0aa0c532caf/142_f.jpg\",\"index\":142,\"left\":\"images/cube_2048/142/6c58031c94375bf53019c0aa0c532caf/142_l.jpg\",\"right\":\"images/cube_2048/142/6c58031c94375bf53019c0aa0c532caf/142_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/142/6c58031c94375bf53019c0aa0c532caf/142_u.jpg\"},{\"back\":\"images/cube_2048/143/e72280fe70097c113cf7f9c3f621ae4c/143_b.jpg\",\"derived_id\":1683701963,\"derived_id_str\":\"1683701963\",\"down\":\"images/cube_2048/143/e72280fe70097c113cf7f9c3f621ae4c/143_d.jpg\",\"front\":\"images/cube_2048/143/e72280fe70097c113cf7f9c3f621ae4c/143_f.jpg\",\"index\":143,\"left\":\"images/cube_2048/143/e72280fe70097c113cf7f9c3f621ae4c/143_l.jpg\",\"right\":\"images/cube_2048/143/e72280fe70097c113cf7f9c3f621ae4c/143_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/143/e72280fe70097c113cf7f9c3f621ae4c/143_u.jpg\"},{\"back\":\"images/cube_2048/144/d0618bacbb293fc48c6a3ab8ec26ebf6/144_b.jpg\",\"derived_id\":1683702037,\"derived_id_str\":\"1683702037\",\"down\":\"images/cube_2048/144/d0618bacbb293fc48c6a3ab8ec26ebf6/144_d.jpg\",\"front\":\"images/cube_2048/144/d0618bacbb293fc48c6a3ab8ec26ebf6/144_f.jpg\",\"index\":144,\"left\":\"images/cube_2048/144/d0618bacbb293fc48c6a3ab8ec26ebf6/144_l.jpg\",\"right\":\"images/cube_2048/144/d0618bacbb293fc48c6a3ab8ec26ebf6/144_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/144/d0618bacbb293fc48c6a3ab8ec26ebf6/144_u.jpg\"},{\"back\":\"images/cube_2048/145/f2828bdb0d9eb3042691ab18ae07c44a/145_b.jpg\",\"derived_id\":1683702087,\"derived_id_str\":\"1683702087\",\"down\":\"images/cube_2048/145/f2828bdb0d9eb3042691ab18ae07c44a/145_d.jpg\",\"front\":\"images/cube_2048/145/f2828bdb0d9eb3042691ab18ae07c44a/145_f.jpg\",\"index\":145,\"left\":\"images/cube_2048/145/f2828bdb0d9eb3042691ab18ae07c44a/145_l.jpg\",\"right\":\"images/cube_2048/145/f2828bdb0d9eb3042691ab18ae07c44a/145_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/145/f2828bdb0d9eb3042691ab18ae07c44a/145_u.jpg\"},{\"back\":\"images/cube_2048/146/183be264f5348a570efe601e81c5b430/146_b.jpg\",\"derived_id\":1683702155,\"derived_id_str\":\"1683702155\",\"down\":\"images/cube_2048/146/183be264f5348a570efe601e81c5b430/146_d.jpg\",\"front\":\"images/cube_2048/146/183be264f5348a570efe601e81c5b430/146_f.jpg\",\"index\":146,\"left\":\"images/cube_2048/146/183be264f5348a570efe601e81c5b430/146_l.jpg\",\"right\":\"images/cube_2048/146/183be264f5348a570efe601e81c5b430/146_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/146/183be264f5348a570efe601e81c5b430/146_u.jpg\"},{\"back\":\"images/cube_2048/147/f5073414b4dd13e0bf325cf54491ef49/147_b.jpg\",\"derived_id\":1683702220,\"derived_id_str\":\"1683702220\",\"down\":\"images/cube_2048/147/f5073414b4dd13e0bf325cf54491ef49/147_d.jpg\",\"front\":\"images/cube_2048/147/f5073414b4dd13e0bf325cf54491ef49/147_f.jpg\",\"index\":147,\"left\":\"images/cube_2048/147/f5073414b4dd13e0bf325cf54491ef49/147_l.jpg\",\"right\":\"images/cube_2048/147/f5073414b4dd13e0bf325cf54491ef49/147_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/147/f5073414b4dd13e0bf325cf54491ef49/147_u.jpg\"},{\"back\":\"images/cube_2048/148/9ec874bd234197318983cd48ac104311/148_b.jpg\",\"derived_id\":1683702269,\"derived_id_str\":\"1683702269\",\"down\":\"images/cube_2048/148/9ec874bd234197318983cd48ac104311/148_d.jpg\",\"front\":\"images/cube_2048/148/9ec874bd234197318983cd48ac104311/148_f.jpg\",\"index\":148,\"left\":\"images/cube_2048/148/9ec874bd234197318983cd48ac104311/148_l.jpg\",\"right\":\"images/cube_2048/148/9ec874bd234197318983cd48ac104311/148_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/148/9ec874bd234197318983cd48ac104311/148_u.jpg\"},{\"back\":\"images/cube_2048/149/cd8ad0f48aa57801923fead6631c78ee/149_b.jpg\",\"derived_id\":1683702318,\"derived_id_str\":\"1683702318\",\"down\":\"images/cube_2048/149/cd8ad0f48aa57801923fead6631c78ee/149_d.jpg\",\"front\":\"images/cube_2048/149/cd8ad0f48aa57801923fead6631c78ee/149_f.jpg\",\"index\":149,\"left\":\"images/cube_2048/149/cd8ad0f48aa57801923fead6631c78ee/149_l.jpg\",\"right\":\"images/cube_2048/149/cd8ad0f48aa57801923fead6631c78ee/149_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/149/cd8ad0f48aa57801923fead6631c78ee/149_u.jpg\"},{\"back\":\"images/cube_2048/150/60fa0d4f6a81c65bb1a5ce860112fec9/150_b.jpg\",\"derived_id\":1683702379,\"derived_id_str\":\"1683702379\",\"down\":\"images/cube_2048/150/60fa0d4f6a81c65bb1a5ce860112fec9/150_d.jpg\",\"front\":\"images/cube_2048/150/60fa0d4f6a81c65bb1a5ce860112fec9/150_f.jpg\",\"index\":150,\"left\":\"images/cube_2048/150/60fa0d4f6a81c65bb1a5ce860112fec9/150_l.jpg\",\"right\":\"images/cube_2048/150/60fa0d4f6a81c65bb1a5ce860112fec9/150_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/150/60fa0d4f6a81c65bb1a5ce860112fec9/150_u.jpg\"},{\"back\":\"images/cube_2048/151/70f6fbaf59184a348ebdd7f2c9e59f07/151_b.jpg\",\"derived_id\":1683702445,\"derived_id_str\":\"1683702445\",\"down\":\"images/cube_2048/151/70f6fbaf59184a348ebdd7f2c9e59f07/151_d.jpg\",\"front\":\"images/cube_2048/151/70f6fbaf59184a348ebdd7f2c9e59f07/151_f.jpg\",\"index\":151,\"left\":\"images/cube_2048/151/70f6fbaf59184a348ebdd7f2c9e59f07/151_l.jpg\",\"right\":\"images/cube_2048/151/70f6fbaf59184a348ebdd7f2c9e59f07/151_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/151/70f6fbaf59184a348ebdd7f2c9e59f07/151_u.jpg\"},{\"back\":\"images/cube_2048/152/aa912cac51548aeefc0fd49be75f0edf/152_b.jpg\",\"derived_id\":1683702495,\"derived_id_str\":\"1683702495\",\"down\":\"images/cube_2048/152/aa912cac51548aeefc0fd49be75f0edf/152_d.jpg\",\"front\":\"images/cube_2048/152/aa912cac51548aeefc0fd49be75f0edf/152_f.jpg\",\"index\":152,\"left\":\"images/cube_2048/152/aa912cac51548aeefc0fd49be75f0edf/152_l.jpg\",\"right\":\"images/cube_2048/152/aa912cac51548aeefc0fd49be75f0edf/152_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/152/aa912cac51548aeefc0fd49be75f0edf/152_u.jpg\"},{\"back\":\"images/cube_2048/153/af71ec880ddcb3788dd6b15b7a62d53d/153_b.jpg\",\"derived_id\":1683702553,\"derived_id_str\":\"1683702553\",\"down\":\"images/cube_2048/153/af71ec880ddcb3788dd6b15b7a62d53d/153_d.jpg\",\"front\":\"images/cube_2048/153/af71ec880ddcb3788dd6b15b7a62d53d/153_f.jpg\",\"index\":153,\"left\":\"images/cube_2048/153/af71ec880ddcb3788dd6b15b7a62d53d/153_l.jpg\",\"right\":\"images/cube_2048/153/af71ec880ddcb3788dd6b15b7a62d53d/153_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/153/af71ec880ddcb3788dd6b15b7a62d53d/153_u.jpg\"},{\"back\":\"images/cube_2048/154/afbf203f5956d67278c556686e7f91bf/154_b.jpg\",\"derived_id\":1683702605,\"derived_id_str\":\"1683702605\",\"down\":\"images/cube_2048/154/afbf203f5956d67278c556686e7f91bf/154_d.jpg\",\"front\":\"images/cube_2048/154/afbf203f5956d67278c556686e7f91bf/154_f.jpg\",\"index\":154,\"left\":\"images/cube_2048/154/afbf203f5956d67278c556686e7f91bf/154_l.jpg\",\"right\":\"images/cube_2048/154/afbf203f5956d67278c556686e7f91bf/154_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/154/afbf203f5956d67278c556686e7f91bf/154_u.jpg\"},{\"back\":\"images/cube_2048/155/7495b791b7afb18d6988e8a8d0a2f983/155_b.jpg\",\"derived_id\":1683702652,\"derived_id_str\":\"1683702652\",\"down\":\"images/cube_2048/155/7495b791b7afb18d6988e8a8d0a2f983/155_d.jpg\",\"front\":\"images/cube_2048/155/7495b791b7afb18d6988e8a8d0a2f983/155_f.jpg\",\"index\":155,\"left\":\"images/cube_2048/155/7495b791b7afb18d6988e8a8d0a2f983/155_l.jpg\",\"right\":\"images/cube_2048/155/7495b791b7afb18d6988e8a8d0a2f983/155_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/155/7495b791b7afb18d6988e8a8d0a2f983/155_u.jpg\"},{\"back\":\"images/cube_2048/156/7e22d7ef75f1eb84c13791195f42eef1/156_b.jpg\",\"derived_id\":1683702702,\"derived_id_str\":\"1683702702\",\"down\":\"images/cube_2048/156/7e22d7ef75f1eb84c13791195f42eef1/156_d.jpg\",\"front\":\"images/cube_2048/156/7e22d7ef75f1eb84c13791195f42eef1/156_f.jpg\",\"index\":156,\"left\":\"images/cube_2048/156/7e22d7ef75f1eb84c13791195f42eef1/156_l.jpg\",\"right\":\"images/cube_2048/156/7e22d7ef75f1eb84c13791195f42eef1/156_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/156/7e22d7ef75f1eb84c13791195f42eef1/156_u.jpg\"},{\"back\":\"images/cube_2048/157/a49483aa61aaec324fb52bd19ddc3e6f/157_b.jpg\",\"derived_id\":1683702755,\"derived_id_str\":\"1683702755\",\"down\":\"images/cube_2048/157/a49483aa61aaec324fb52bd19ddc3e6f/157_d.jpg\",\"front\":\"images/cube_2048/157/a49483aa61aaec324fb52bd19ddc3e6f/157_f.jpg\",\"index\":157,\"left\":\"images/cube_2048/157/a49483aa61aaec324fb52bd19ddc3e6f/157_l.jpg\",\"right\":\"images/cube_2048/157/a49483aa61aaec324fb52bd19ddc3e6f/157_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/157/a49483aa61aaec324fb52bd19ddc3e6f/157_u.jpg\"},{\"back\":\"images/cube_2048/158/198637468484362e875dd469b76c19dc/158_b.jpg\",\"derived_id\":1683702899,\"derived_id_str\":\"1683702899\",\"down\":\"images/cube_2048/158/198637468484362e875dd469b76c19dc/158_d.jpg\",\"front\":\"images/cube_2048/158/198637468484362e875dd469b76c19dc/158_f.jpg\",\"index\":158,\"left\":\"images/cube_2048/158/198637468484362e875dd469b76c19dc/158_l.jpg\",\"right\":\"images/cube_2048/158/198637468484362e875dd469b76c19dc/158_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/158/198637468484362e875dd469b76c19dc/158_u.jpg\"},{\"back\":\"images/cube_2048/159/dd65d9f5df24633ce6238e40a6905a01/159_b.jpg\",\"derived_id\":1683703057,\"derived_id_str\":\"1683703057\",\"down\":\"images/cube_2048/159/dd65d9f5df24633ce6238e40a6905a01/159_d.jpg\",\"front\":\"images/cube_2048/159/dd65d9f5df24633ce6238e40a6905a01/159_f.jpg\",\"index\":159,\"left\":\"images/cube_2048/159/dd65d9f5df24633ce6238e40a6905a01/159_l.jpg\",\"right\":\"images/cube_2048/159/dd65d9f5df24633ce6238e40a6905a01/159_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/159/dd65d9f5df24633ce6238e40a6905a01/159_u.jpg\"},{\"back\":\"images/cube_2048/160/6dc0ec63f76512c2c9d4f9f351c0ef1a/160_b.jpg\",\"derived_id\":1683703112,\"derived_id_str\":\"1683703112\",\"down\":\"images/cube_2048/160/6dc0ec63f76512c2c9d4f9f351c0ef1a/160_d.jpg\",\"front\":\"images/cube_2048/160/6dc0ec63f76512c2c9d4f9f351c0ef1a/160_f.jpg\",\"index\":160,\"left\":\"images/cube_2048/160/6dc0ec63f76512c2c9d4f9f351c0ef1a/160_l.jpg\",\"right\":\"images/cube_2048/160/6dc0ec63f76512c2c9d4f9f351c0ef1a/160_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/160/6dc0ec63f76512c2c9d4f9f351c0ef1a/160_u.jpg\"},{\"back\":\"images/cube_2048/161/fd67f6927a221b47e7f8aeda028d455f/161_b.jpg\",\"derived_id\":1683703169,\"derived_id_str\":\"1683703169\",\"down\":\"images/cube_2048/161/fd67f6927a221b47e7f8aeda028d455f/161_d.jpg\",\"front\":\"images/cube_2048/161/fd67f6927a221b47e7f8aeda028d455f/161_f.jpg\",\"index\":161,\"left\":\"images/cube_2048/161/fd67f6927a221b47e7f8aeda028d455f/161_l.jpg\",\"right\":\"images/cube_2048/161/fd67f6927a221b47e7f8aeda028d455f/161_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/161/fd67f6927a221b47e7f8aeda028d455f/161_u.jpg\"},{\"back\":\"images/cube_2048/162/5eb8cf7c81c4db4ace0687379274922b/162_b.jpg\",\"derived_id\":1683703316,\"derived_id_str\":\"1683703316\",\"down\":\"images/cube_2048/162/5eb8cf7c81c4db4ace0687379274922b/162_d.jpg\",\"front\":\"images/cube_2048/162/5eb8cf7c81c4db4ace0687379274922b/162_f.jpg\",\"index\":162,\"left\":\"images/cube_2048/162/5eb8cf7c81c4db4ace0687379274922b/162_l.jpg\",\"right\":\"images/cube_2048/162/5eb8cf7c81c4db4ace0687379274922b/162_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/162/5eb8cf7c81c4db4ace0687379274922b/162_u.jpg\"},{\"back\":\"images/cube_2048/163/1d60025132a3db27f6f6b0f62e322d54/163_b.jpg\",\"derived_id\":1683703372,\"derived_id_str\":\"1683703372\",\"down\":\"images/cube_2048/163/1d60025132a3db27f6f6b0f62e322d54/163_d.jpg\",\"front\":\"images/cube_2048/163/1d60025132a3db27f6f6b0f62e322d54/163_f.jpg\",\"index\":163,\"left\":\"images/cube_2048/163/1d60025132a3db27f6f6b0f62e322d54/163_l.jpg\",\"right\":\"images/cube_2048/163/1d60025132a3db27f6f6b0f62e322d54/163_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/163/1d60025132a3db27f6f6b0f62e322d54/163_u.jpg\"},{\"back\":\"images/cube_2048/164/7de7548462d9158ef8fd6d6d2615bdd3/164_b.jpg\",\"derived_id\":1683703423,\"derived_id_str\":\"1683703423\",\"down\":\"images/cube_2048/164/7de7548462d9158ef8fd6d6d2615bdd3/164_d.jpg\",\"front\":\"images/cube_2048/164/7de7548462d9158ef8fd6d6d2615bdd3/164_f.jpg\",\"index\":164,\"left\":\"images/cube_2048/164/7de7548462d9158ef8fd6d6d2615bdd3/164_l.jpg\",\"right\":\"images/cube_2048/164/7de7548462d9158ef8fd6d6d2615bdd3/164_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/164/7de7548462d9158ef8fd6d6d2615bdd3/164_u.jpg\"},{\"back\":\"images/cube_2048/165/0939445ade73dca195b4f309807c533f/165_b.jpg\",\"derived_id\":1683703488,\"derived_id_str\":\"1683703488\",\"down\":\"images/cube_2048/165/0939445ade73dca195b4f309807c533f/165_d.jpg\",\"front\":\"images/cube_2048/165/0939445ade73dca195b4f309807c533f/165_f.jpg\",\"index\":165,\"left\":\"images/cube_2048/165/0939445ade73dca195b4f309807c533f/165_l.jpg\",\"right\":\"images/cube_2048/165/0939445ade73dca195b4f309807c533f/165_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/165/0939445ade73dca195b4f309807c533f/165_u.jpg\"},{\"back\":\"images/cube_2048/166/54f77f847f73af1b02cdfff663eb2b9f/166_b.jpg\",\"derived_id\":1683703546,\"derived_id_str\":\"1683703546\",\"down\":\"images/cube_2048/166/54f77f847f73af1b02cdfff663eb2b9f/166_d.jpg\",\"front\":\"images/cube_2048/166/54f77f847f73af1b02cdfff663eb2b9f/166_f.jpg\",\"index\":166,\"left\":\"images/cube_2048/166/54f77f847f73af1b02cdfff663eb2b9f/166_l.jpg\",\"right\":\"images/cube_2048/166/54f77f847f73af1b02cdfff663eb2b9f/166_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/166/54f77f847f73af1b02cdfff663eb2b9f/166_u.jpg\"},{\"back\":\"images/cube_2048/167/acfca4d8b1b57cf739809b3c4858f85a/167_b.jpg\",\"derived_id\":1683703599,\"derived_id_str\":\"1683703599\",\"down\":\"images/cube_2048/167/acfca4d8b1b57cf739809b3c4858f85a/167_d.jpg\",\"front\":\"images/cube_2048/167/acfca4d8b1b57cf739809b3c4858f85a/167_f.jpg\",\"index\":167,\"left\":\"images/cube_2048/167/acfca4d8b1b57cf739809b3c4858f85a/167_l.jpg\",\"right\":\"images/cube_2048/167/acfca4d8b1b57cf739809b3c4858f85a/167_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/167/acfca4d8b1b57cf739809b3c4858f85a/167_u.jpg\"},{\"back\":\"images/cube_2048/168/ecd58a962abc8b9db147828ce150f727/168_b.jpg\",\"derived_id\":1683703649,\"derived_id_str\":\"1683703649\",\"down\":\"images/cube_2048/168/ecd58a962abc8b9db147828ce150f727/168_d.jpg\",\"front\":\"images/cube_2048/168/ecd58a962abc8b9db147828ce150f727/168_f.jpg\",\"index\":168,\"left\":\"images/cube_2048/168/ecd58a962abc8b9db147828ce150f727/168_l.jpg\",\"right\":\"images/cube_2048/168/ecd58a962abc8b9db147828ce150f727/168_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/168/ecd58a962abc8b9db147828ce150f727/168_u.jpg\"},{\"back\":\"images/cube_2048/169/96124950694cbf942bed490d036a807d/169_b.jpg\",\"derived_id\":1683703703,\"derived_id_str\":\"1683703703\",\"down\":\"images/cube_2048/169/96124950694cbf942bed490d036a807d/169_d.jpg\",\"front\":\"images/cube_2048/169/96124950694cbf942bed490d036a807d/169_f.jpg\",\"index\":169,\"left\":\"images/cube_2048/169/96124950694cbf942bed490d036a807d/169_l.jpg\",\"right\":\"images/cube_2048/169/96124950694cbf942bed490d036a807d/169_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/169/96124950694cbf942bed490d036a807d/169_u.jpg\"},{\"back\":\"images/cube_2048/170/63fc92b0f2db44aeabe789d7594ae3d0/170_b.jpg\",\"derived_id\":1683703758,\"derived_id_str\":\"1683703758\",\"down\":\"images/cube_2048/170/63fc92b0f2db44aeabe789d7594ae3d0/170_d.jpg\",\"front\":\"images/cube_2048/170/63fc92b0f2db44aeabe789d7594ae3d0/170_f.jpg\",\"index\":170,\"left\":\"images/cube_2048/170/63fc92b0f2db44aeabe789d7594ae3d0/170_l.jpg\",\"right\":\"images/cube_2048/170/63fc92b0f2db44aeabe789d7594ae3d0/170_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/170/63fc92b0f2db44aeabe789d7594ae3d0/170_u.jpg\"},{\"back\":\"images/cube_2048/171/67d6440d3d82ec2cc5d6b6e098785fa6/171_b.jpg\",\"derived_id\":1683703809,\"derived_id_str\":\"1683703809\",\"down\":\"images/cube_2048/171/67d6440d3d82ec2cc5d6b6e098785fa6/171_d.jpg\",\"front\":\"images/cube_2048/171/67d6440d3d82ec2cc5d6b6e098785fa6/171_f.jpg\",\"index\":171,\"left\":\"images/cube_2048/171/67d6440d3d82ec2cc5d6b6e098785fa6/171_l.jpg\",\"right\":\"images/cube_2048/171/67d6440d3d82ec2cc5d6b6e098785fa6/171_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/171/67d6440d3d82ec2cc5d6b6e098785fa6/171_u.jpg\"},{\"back\":\"images/cube_2048/172/b65464e615ee5aadd71f55d724bfdb04/172_b.jpg\",\"derived_id\":1683703861,\"derived_id_str\":\"1683703861\",\"down\":\"images/cube_2048/172/b65464e615ee5aadd71f55d724bfdb04/172_d.jpg\",\"front\":\"images/cube_2048/172/b65464e615ee5aadd71f55d724bfdb04/172_f.jpg\",\"index\":172,\"left\":\"images/cube_2048/172/b65464e615ee5aadd71f55d724bfdb04/172_l.jpg\",\"right\":\"images/cube_2048/172/b65464e615ee5aadd71f55d724bfdb04/172_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/172/b65464e615ee5aadd71f55d724bfdb04/172_u.jpg\"},{\"back\":\"images/cube_2048/173/04609d706c16c9dbf82874f39b116293/173_b.jpg\",\"derived_id\":1683703911,\"derived_id_str\":\"1683703911\",\"down\":\"images/cube_2048/173/04609d706c16c9dbf82874f39b116293/173_d.jpg\",\"front\":\"images/cube_2048/173/04609d706c16c9dbf82874f39b116293/173_f.jpg\",\"index\":173,\"left\":\"images/cube_2048/173/04609d706c16c9dbf82874f39b116293/173_l.jpg\",\"right\":\"images/cube_2048/173/04609d706c16c9dbf82874f39b116293/173_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/173/04609d706c16c9dbf82874f39b116293/173_u.jpg\"},{\"back\":\"images/cube_2048/174/867876afa8f529c76448bb6f930afb82/174_b.jpg\",\"derived_id\":1683703967,\"derived_id_str\":\"1683703967\",\"down\":\"images/cube_2048/174/867876afa8f529c76448bb6f930afb82/174_d.jpg\",\"front\":\"images/cube_2048/174/867876afa8f529c76448bb6f930afb82/174_f.jpg\",\"index\":174,\"left\":\"images/cube_2048/174/867876afa8f529c76448bb6f930afb82/174_l.jpg\",\"right\":\"images/cube_2048/174/867876afa8f529c76448bb6f930afb82/174_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/174/867876afa8f529c76448bb6f930afb82/174_u.jpg\"},{\"back\":\"images/cube_2048/175/d3225e83c573c6f4d66fe6855aa2a64d/175_b.jpg\",\"derived_id\":1683704027,\"derived_id_str\":\"1683704027\",\"down\":\"images/cube_2048/175/d3225e83c573c6f4d66fe6855aa2a64d/175_d.jpg\",\"front\":\"images/cube_2048/175/d3225e83c573c6f4d66fe6855aa2a64d/175_f.jpg\",\"index\":175,\"left\":\"images/cube_2048/175/d3225e83c573c6f4d66fe6855aa2a64d/175_l.jpg\",\"right\":\"images/cube_2048/175/d3225e83c573c6f4d66fe6855aa2a64d/175_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/175/d3225e83c573c6f4d66fe6855aa2a64d/175_u.jpg\"},{\"back\":\"images/cube_2048/176/961979afa0fb13ca0b82097276f9e0ce/176_b.jpg\",\"derived_id\":1683704095,\"derived_id_str\":\"1683704095\",\"down\":\"images/cube_2048/176/961979afa0fb13ca0b82097276f9e0ce/176_d.jpg\",\"front\":\"images/cube_2048/176/961979afa0fb13ca0b82097276f9e0ce/176_f.jpg\",\"index\":176,\"left\":\"images/cube_2048/176/961979afa0fb13ca0b82097276f9e0ce/176_l.jpg\",\"right\":\"images/cube_2048/176/961979afa0fb13ca0b82097276f9e0ce/176_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/176/961979afa0fb13ca0b82097276f9e0ce/176_u.jpg\"},{\"back\":\"images/cube_2048/177/e2f571136081df21ccd24e7658f6da73/177_b.jpg\",\"derived_id\":1683704154,\"derived_id_str\":\"1683704154\",\"down\":\"images/cube_2048/177/e2f571136081df21ccd24e7658f6da73/177_d.jpg\",\"front\":\"images/cube_2048/177/e2f571136081df21ccd24e7658f6da73/177_f.jpg\",\"index\":177,\"left\":\"images/cube_2048/177/e2f571136081df21ccd24e7658f6da73/177_l.jpg\",\"right\":\"images/cube_2048/177/e2f571136081df21ccd24e7658f6da73/177_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/177/e2f571136081df21ccd24e7658f6da73/177_u.jpg\"},{\"back\":\"images/cube_2048/178/0952308204674d12e3975810439d915a/178_b.jpg\",\"derived_id\":1683705109,\"derived_id_str\":\"1683705109\",\"down\":\"images/cube_2048/178/0952308204674d12e3975810439d915a/178_d.jpg\",\"front\":\"images/cube_2048/178/0952308204674d12e3975810439d915a/178_f.jpg\",\"index\":178,\"left\":\"images/cube_2048/178/0952308204674d12e3975810439d915a/178_l.jpg\",\"right\":\"images/cube_2048/178/0952308204674d12e3975810439d915a/178_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/178/0952308204674d12e3975810439d915a/178_u.jpg\"},{\"back\":\"images/cube_2048/179/1b45546106b04de880414a497191796b/179_b.jpg\",\"derived_id\":1683705178,\"derived_id_str\":\"1683705178\",\"down\":\"images/cube_2048/179/1b45546106b04de880414a497191796b/179_d.jpg\",\"front\":\"images/cube_2048/179/1b45546106b04de880414a497191796b/179_f.jpg\",\"index\":179,\"left\":\"images/cube_2048/179/1b45546106b04de880414a497191796b/179_l.jpg\",\"right\":\"images/cube_2048/179/1b45546106b04de880414a497191796b/179_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/179/1b45546106b04de880414a497191796b/179_u.jpg\"},{\"back\":\"images/cube_2048/180/b6c4e9478cc5f81d082334463a7a9fce/180_b.jpg\",\"derived_id\":1683705232,\"derived_id_str\":\"1683705232\",\"down\":\"images/cube_2048/180/b6c4e9478cc5f81d082334463a7a9fce/180_d.jpg\",\"front\":\"images/cube_2048/180/b6c4e9478cc5f81d082334463a7a9fce/180_f.jpg\",\"index\":180,\"left\":\"images/cube_2048/180/b6c4e9478cc5f81d082334463a7a9fce/180_l.jpg\",\"right\":\"images/cube_2048/180/b6c4e9478cc5f81d082334463a7a9fce/180_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/180/b6c4e9478cc5f81d082334463a7a9fce/180_u.jpg\"},{\"back\":\"images/cube_2048/181/354575be158238c1dffc646111623455/181_b.jpg\",\"derived_id\":1683705293,\"derived_id_str\":\"1683705293\",\"down\":\"images/cube_2048/181/354575be158238c1dffc646111623455/181_d.jpg\",\"front\":\"images/cube_2048/181/354575be158238c1dffc646111623455/181_f.jpg\",\"index\":181,\"left\":\"images/cube_2048/181/354575be158238c1dffc646111623455/181_l.jpg\",\"right\":\"images/cube_2048/181/354575be158238c1dffc646111623455/181_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/181/354575be158238c1dffc646111623455/181_u.jpg\"},{\"back\":\"images/cube_2048/182/8d7705085a2608f71deca2800fc68fab/182_b.jpg\",\"derived_id\":1683705346,\"derived_id_str\":\"1683705346\",\"down\":\"images/cube_2048/182/8d7705085a2608f71deca2800fc68fab/182_d.jpg\",\"front\":\"images/cube_2048/182/8d7705085a2608f71deca2800fc68fab/182_f.jpg\",\"index\":182,\"left\":\"images/cube_2048/182/8d7705085a2608f71deca2800fc68fab/182_l.jpg\",\"right\":\"images/cube_2048/182/8d7705085a2608f71deca2800fc68fab/182_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/182/8d7705085a2608f71deca2800fc68fab/182_u.jpg\"},{\"back\":\"images/cube_2048/183/37ff546138755171a860775954b294ef/183_b.jpg\",\"derived_id\":1683705394,\"derived_id_str\":\"1683705394\",\"down\":\"images/cube_2048/183/37ff546138755171a860775954b294ef/183_d.jpg\",\"front\":\"images/cube_2048/183/37ff546138755171a860775954b294ef/183_f.jpg\",\"index\":183,\"left\":\"images/cube_2048/183/37ff546138755171a860775954b294ef/183_l.jpg\",\"right\":\"images/cube_2048/183/37ff546138755171a860775954b294ef/183_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/183/37ff546138755171a860775954b294ef/183_u.jpg\"},{\"back\":\"images/cube_2048/184/af4870f54b6fb76a24beb914b40047cf/184_b.jpg\",\"derived_id\":1683705450,\"derived_id_str\":\"1683705450\",\"down\":\"images/cube_2048/184/af4870f54b6fb76a24beb914b40047cf/184_d.jpg\",\"front\":\"images/cube_2048/184/af4870f54b6fb76a24beb914b40047cf/184_f.jpg\",\"index\":184,\"left\":\"images/cube_2048/184/af4870f54b6fb76a24beb914b40047cf/184_l.jpg\",\"right\":\"images/cube_2048/184/af4870f54b6fb76a24beb914b40047cf/184_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/184/af4870f54b6fb76a24beb914b40047cf/184_u.jpg\"},{\"back\":\"images/cube_2048/185/4d1a4318a1e8de452178137f5e8a5733/185_b.jpg\",\"derived_id\":1683705522,\"derived_id_str\":\"1683705522\",\"down\":\"images/cube_2048/185/4d1a4318a1e8de452178137f5e8a5733/185_d.jpg\",\"front\":\"images/cube_2048/185/4d1a4318a1e8de452178137f5e8a5733/185_f.jpg\",\"index\":185,\"left\":\"images/cube_2048/185/4d1a4318a1e8de452178137f5e8a5733/185_l.jpg\",\"right\":\"images/cube_2048/185/4d1a4318a1e8de452178137f5e8a5733/185_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/185/4d1a4318a1e8de452178137f5e8a5733/185_u.jpg\"},{\"back\":\"images/cube_2048/186/7353b440ba8b586f90ef5149c8ab8f85/186_b.jpg\",\"derived_id\":1683705645,\"derived_id_str\":\"1683705645\",\"down\":\"images/cube_2048/186/7353b440ba8b586f90ef5149c8ab8f85/186_d.jpg\",\"front\":\"images/cube_2048/186/7353b440ba8b586f90ef5149c8ab8f85/186_f.jpg\",\"index\":186,\"left\":\"images/cube_2048/186/7353b440ba8b586f90ef5149c8ab8f85/186_l.jpg\",\"right\":\"images/cube_2048/186/7353b440ba8b586f90ef5149c8ab8f85/186_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/186/7353b440ba8b586f90ef5149c8ab8f85/186_u.jpg\"},{\"back\":\"images/cube_2048/187/76145ed0dc57805e8f21bf1bb8d43c09/187_b.jpg\",\"derived_id\":1683705693,\"derived_id_str\":\"1683705693\",\"down\":\"images/cube_2048/187/76145ed0dc57805e8f21bf1bb8d43c09/187_d.jpg\",\"front\":\"images/cube_2048/187/76145ed0dc57805e8f21bf1bb8d43c09/187_f.jpg\",\"index\":187,\"left\":\"images/cube_2048/187/76145ed0dc57805e8f21bf1bb8d43c09/187_l.jpg\",\"right\":\"images/cube_2048/187/76145ed0dc57805e8f21bf1bb8d43c09/187_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/187/76145ed0dc57805e8f21bf1bb8d43c09/187_u.jpg\"},{\"back\":\"images/cube_2048/188/a8e1d11980b6d974ebb16863456de9e3/188_b.jpg\",\"derived_id\":1683705755,\"derived_id_str\":\"1683705755\",\"down\":\"images/cube_2048/188/a8e1d11980b6d974ebb16863456de9e3/188_d.jpg\",\"front\":\"images/cube_2048/188/a8e1d11980b6d974ebb16863456de9e3/188_f.jpg\",\"index\":188,\"left\":\"images/cube_2048/188/a8e1d11980b6d974ebb16863456de9e3/188_l.jpg\",\"right\":\"images/cube_2048/188/a8e1d11980b6d974ebb16863456de9e3/188_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/188/a8e1d11980b6d974ebb16863456de9e3/188_u.jpg\"},{\"back\":\"images/cube_2048/189/c38a6d1029ac10e6ee12149b69ef2a83/189_b.jpg\",\"derived_id\":1683706561,\"derived_id_str\":\"1683706561\",\"down\":\"images/cube_2048/189/c38a6d1029ac10e6ee12149b69ef2a83/189_d.jpg\",\"front\":\"images/cube_2048/189/c38a6d1029ac10e6ee12149b69ef2a83/189_f.jpg\",\"index\":189,\"left\":\"images/cube_2048/189/c38a6d1029ac10e6ee12149b69ef2a83/189_l.jpg\",\"right\":\"images/cube_2048/189/c38a6d1029ac10e6ee12149b69ef2a83/189_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/189/c38a6d1029ac10e6ee12149b69ef2a83/189_u.jpg\"},{\"back\":\"images/cube_2048/190/c1134a9ad3ccdcf842627921607d0226/190_b.jpg\",\"derived_id\":1683706665,\"derived_id_str\":\"1683706665\",\"down\":\"images/cube_2048/190/c1134a9ad3ccdcf842627921607d0226/190_d.jpg\",\"front\":\"images/cube_2048/190/c1134a9ad3ccdcf842627921607d0226/190_f.jpg\",\"index\":190,\"left\":\"images/cube_2048/190/c1134a9ad3ccdcf842627921607d0226/190_l.jpg\",\"right\":\"images/cube_2048/190/c1134a9ad3ccdcf842627921607d0226/190_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/190/c1134a9ad3ccdcf842627921607d0226/190_u.jpg\"},{\"back\":\"images/cube_2048/191/0d8ded06c21599d60b462125cc0446eb/191_b.jpg\",\"derived_id\":1683706753,\"derived_id_str\":\"1683706753\",\"down\":\"images/cube_2048/191/0d8ded06c21599d60b462125cc0446eb/191_d.jpg\",\"front\":\"images/cube_2048/191/0d8ded06c21599d60b462125cc0446eb/191_f.jpg\",\"index\":191,\"left\":\"images/cube_2048/191/0d8ded06c21599d60b462125cc0446eb/191_l.jpg\",\"right\":\"images/cube_2048/191/0d8ded06c21599d60b462125cc0446eb/191_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/191/0d8ded06c21599d60b462125cc0446eb/191_u.jpg\"},{\"back\":\"images/cube_2048/192/dae399aac244ed699d3d8417de23c1f2/192_b.jpg\",\"derived_id\":1683707062,\"derived_id_str\":\"1683707062\",\"down\":\"images/cube_2048/192/dae399aac244ed699d3d8417de23c1f2/192_d.jpg\",\"front\":\"images/cube_2048/192/dae399aac244ed699d3d8417de23c1f2/192_f.jpg\",\"index\":192,\"left\":\"images/cube_2048/192/dae399aac244ed699d3d8417de23c1f2/192_l.jpg\",\"right\":\"images/cube_2048/192/dae399aac244ed699d3d8417de23c1f2/192_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/192/dae399aac244ed699d3d8417de23c1f2/192_u.jpg\"},{\"back\":\"images/cube_2048/193/548a527c3607dadb5a5f7fd391537f7e/193_b.jpg\",\"derived_id\":1683682965,\"derived_id_str\":\"1683682965\",\"down\":\"images/cube_2048/193/548a527c3607dadb5a5f7fd391537f7e/193_d.jpg\",\"front\":\"images/cube_2048/193/548a527c3607dadb5a5f7fd391537f7e/193_f.jpg\",\"index\":193,\"left\":\"images/cube_2048/193/548a527c3607dadb5a5f7fd391537f7e/193_l.jpg\",\"right\":\"images/cube_2048/193/548a527c3607dadb5a5f7fd391537f7e/193_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/193/548a527c3607dadb5a5f7fd391537f7e/193_u.jpg\"},{\"back\":\"images/cube_2048/194/1246e6295bbdb9980d8b1c657d4518c5/194_b.jpg\",\"derived_id\":1683683060,\"derived_id_str\":\"1683683060\",\"down\":\"images/cube_2048/194/1246e6295bbdb9980d8b1c657d4518c5/194_d.jpg\",\"front\":\"images/cube_2048/194/1246e6295bbdb9980d8b1c657d4518c5/194_f.jpg\",\"index\":194,\"left\":\"images/cube_2048/194/1246e6295bbdb9980d8b1c657d4518c5/194_l.jpg\",\"right\":\"images/cube_2048/194/1246e6295bbdb9980d8b1c657d4518c5/194_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/194/1246e6295bbdb9980d8b1c657d4518c5/194_u.jpg\"},{\"back\":\"images/cube_2048/195/acd99ff77c4e3e6d653c46b248ba1329/195_b.jpg\",\"derived_id\":1683683104,\"derived_id_str\":\"1683683104\",\"down\":\"images/cube_2048/195/acd99ff77c4e3e6d653c46b248ba1329/195_d.jpg\",\"front\":\"images/cube_2048/195/acd99ff77c4e3e6d653c46b248ba1329/195_f.jpg\",\"index\":195,\"left\":\"images/cube_2048/195/acd99ff77c4e3e6d653c46b248ba1329/195_l.jpg\",\"right\":\"images/cube_2048/195/acd99ff77c4e3e6d653c46b248ba1329/195_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/195/acd99ff77c4e3e6d653c46b248ba1329/195_u.jpg\"},{\"back\":\"images/cube_2048/196/31b065fdc4fc078ce540d0eb3737471e/196_b.jpg\",\"derived_id\":1683683186,\"derived_id_str\":\"1683683186\",\"down\":\"images/cube_2048/196/31b065fdc4fc078ce540d0eb3737471e/196_d.jpg\",\"front\":\"images/cube_2048/196/31b065fdc4fc078ce540d0eb3737471e/196_f.jpg\",\"index\":196,\"left\":\"images/cube_2048/196/31b065fdc4fc078ce540d0eb3737471e/196_l.jpg\",\"right\":\"images/cube_2048/196/31b065fdc4fc078ce540d0eb3737471e/196_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/196/31b065fdc4fc078ce540d0eb3737471e/196_u.jpg\"},{\"back\":\"images/cube_2048/197/4e9a3366f01270b3562d3e32572811fc/197_b.jpg\",\"derived_id\":1683683256,\"derived_id_str\":\"1683683256\",\"down\":\"images/cube_2048/197/4e9a3366f01270b3562d3e32572811fc/197_d.jpg\",\"front\":\"images/cube_2048/197/4e9a3366f01270b3562d3e32572811fc/197_f.jpg\",\"index\":197,\"left\":\"images/cube_2048/197/4e9a3366f01270b3562d3e32572811fc/197_l.jpg\",\"right\":\"images/cube_2048/197/4e9a3366f01270b3562d3e32572811fc/197_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/197/4e9a3366f01270b3562d3e32572811fc/197_u.jpg\"},{\"back\":\"images/cube_2048/198/1cb395efcf94c9dea94359a2f1bdbf35/198_b.jpg\",\"derived_id\":1683683294,\"derived_id_str\":\"1683683294\",\"down\":\"images/cube_2048/198/1cb395efcf94c9dea94359a2f1bdbf35/198_d.jpg\",\"front\":\"images/cube_2048/198/1cb395efcf94c9dea94359a2f1bdbf35/198_f.jpg\",\"index\":198,\"left\":\"images/cube_2048/198/1cb395efcf94c9dea94359a2f1bdbf35/198_l.jpg\",\"right\":\"images/cube_2048/198/1cb395efcf94c9dea94359a2f1bdbf35/198_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/198/1cb395efcf94c9dea94359a2f1bdbf35/198_u.jpg\"},{\"back\":\"images/cube_2048/199/c41589eeeedfb7ecbad8c5330708f0f1/199_b.jpg\",\"derived_id\":1683683355,\"derived_id_str\":\"1683683355\",\"down\":\"images/cube_2048/199/c41589eeeedfb7ecbad8c5330708f0f1/199_d.jpg\",\"front\":\"images/cube_2048/199/c41589eeeedfb7ecbad8c5330708f0f1/199_f.jpg\",\"index\":199,\"left\":\"images/cube_2048/199/c41589eeeedfb7ecbad8c5330708f0f1/199_l.jpg\",\"right\":\"images/cube_2048/199/c41589eeeedfb7ecbad8c5330708f0f1/199_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/199/c41589eeeedfb7ecbad8c5330708f0f1/199_u.jpg\"},{\"back\":\"images/cube_2048/200/8533a53b6d4aa9415dc1ea7aae1aab4c/200_b.jpg\",\"derived_id\":1683683393,\"derived_id_str\":\"1683683393\",\"down\":\"images/cube_2048/200/8533a53b6d4aa9415dc1ea7aae1aab4c/200_d.jpg\",\"front\":\"images/cube_2048/200/8533a53b6d4aa9415dc1ea7aae1aab4c/200_f.jpg\",\"index\":200,\"left\":\"images/cube_2048/200/8533a53b6d4aa9415dc1ea7aae1aab4c/200_l.jpg\",\"right\":\"images/cube_2048/200/8533a53b6d4aa9415dc1ea7aae1aab4c/200_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/200/8533a53b6d4aa9415dc1ea7aae1aab4c/200_u.jpg\"},{\"back\":\"images/cube_2048/201/280115ec8465d4fe1fd514a732becbe7/201_b.jpg\",\"derived_id\":1683683430,\"derived_id_str\":\"1683683430\",\"down\":\"images/cube_2048/201/280115ec8465d4fe1fd514a732becbe7/201_d.jpg\",\"front\":\"images/cube_2048/201/280115ec8465d4fe1fd514a732becbe7/201_f.jpg\",\"index\":201,\"left\":\"images/cube_2048/201/280115ec8465d4fe1fd514a732becbe7/201_l.jpg\",\"right\":\"images/cube_2048/201/280115ec8465d4fe1fd514a732becbe7/201_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/201/280115ec8465d4fe1fd514a732becbe7/201_u.jpg\"},{\"back\":\"images/cube_2048/202/8ff74a28ffae88eca17a78390d03289c/202_b.jpg\",\"derived_id\":1683683476,\"derived_id_str\":\"1683683476\",\"down\":\"images/cube_2048/202/8ff74a28ffae88eca17a78390d03289c/202_d.jpg\",\"front\":\"images/cube_2048/202/8ff74a28ffae88eca17a78390d03289c/202_f.jpg\",\"index\":202,\"left\":\"images/cube_2048/202/8ff74a28ffae88eca17a78390d03289c/202_l.jpg\",\"right\":\"images/cube_2048/202/8ff74a28ffae88eca17a78390d03289c/202_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/202/8ff74a28ffae88eca17a78390d03289c/202_u.jpg\"},{\"back\":\"images/cube_2048/203/efbf2f0bfe7b6c4be596af3c6069cbb3/203_b.jpg\",\"derived_id\":1683683564,\"derived_id_str\":\"1683683564\",\"down\":\"images/cube_2048/203/efbf2f0bfe7b6c4be596af3c6069cbb3/203_d.jpg\",\"front\":\"images/cube_2048/203/efbf2f0bfe7b6c4be596af3c6069cbb3/203_f.jpg\",\"index\":203,\"left\":\"images/cube_2048/203/efbf2f0bfe7b6c4be596af3c6069cbb3/203_l.jpg\",\"right\":\"images/cube_2048/203/efbf2f0bfe7b6c4be596af3c6069cbb3/203_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/203/efbf2f0bfe7b6c4be596af3c6069cbb3/203_u.jpg\"},{\"back\":\"images/cube_2048/204/d61754ac1c3f52898d3dd0cde2256484/204_b.jpg\",\"derived_id\":1683683622,\"derived_id_str\":\"1683683622\",\"down\":\"images/cube_2048/204/d61754ac1c3f52898d3dd0cde2256484/204_d.jpg\",\"front\":\"images/cube_2048/204/d61754ac1c3f52898d3dd0cde2256484/204_f.jpg\",\"index\":204,\"left\":\"images/cube_2048/204/d61754ac1c3f52898d3dd0cde2256484/204_l.jpg\",\"right\":\"images/cube_2048/204/d61754ac1c3f52898d3dd0cde2256484/204_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/204/d61754ac1c3f52898d3dd0cde2256484/204_u.jpg\"},{\"back\":\"images/cube_2048/205/b2d331b5db68255ef88d3fee4037c6cf/205_b.jpg\",\"derived_id\":1683683703,\"derived_id_str\":\"1683683703\",\"down\":\"images/cube_2048/205/b2d331b5db68255ef88d3fee4037c6cf/205_d.jpg\",\"front\":\"images/cube_2048/205/b2d331b5db68255ef88d3fee4037c6cf/205_f.jpg\",\"index\":205,\"left\":\"images/cube_2048/205/b2d331b5db68255ef88d3fee4037c6cf/205_l.jpg\",\"right\":\"images/cube_2048/205/b2d331b5db68255ef88d3fee4037c6cf/205_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/205/b2d331b5db68255ef88d3fee4037c6cf/205_u.jpg\"},{\"back\":\"images/cube_2048/206/d4dcbbb9b80dc599a9d738dfc959bba3/206_b.jpg\",\"derived_id\":1683683842,\"derived_id_str\":\"1683683842\",\"down\":\"images/cube_2048/206/d4dcbbb9b80dc599a9d738dfc959bba3/206_d.jpg\",\"front\":\"images/cube_2048/206/d4dcbbb9b80dc599a9d738dfc959bba3/206_f.jpg\",\"index\":206,\"left\":\"images/cube_2048/206/d4dcbbb9b80dc599a9d738dfc959bba3/206_l.jpg\",\"right\":\"images/cube_2048/206/d4dcbbb9b80dc599a9d738dfc959bba3/206_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/206/d4dcbbb9b80dc599a9d738dfc959bba3/206_u.jpg\"},{\"back\":\"images/cube_2048/207/4cbff80a504776ecf94fbab04b419178/207_b.jpg\",\"derived_id\":1683683884,\"derived_id_str\":\"1683683884\",\"down\":\"images/cube_2048/207/4cbff80a504776ecf94fbab04b419178/207_d.jpg\",\"front\":\"images/cube_2048/207/4cbff80a504776ecf94fbab04b419178/207_f.jpg\",\"index\":207,\"left\":\"images/cube_2048/207/4cbff80a504776ecf94fbab04b419178/207_l.jpg\",\"right\":\"images/cube_2048/207/4cbff80a504776ecf94fbab04b419178/207_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/207/4cbff80a504776ecf94fbab04b419178/207_u.jpg\"},{\"back\":\"images/cube_2048/208/eca40b9a22804ccc823c96688c1d887e/208_b.jpg\",\"derived_id\":1683683957,\"derived_id_str\":\"1683683957\",\"down\":\"images/cube_2048/208/eca40b9a22804ccc823c96688c1d887e/208_d.jpg\",\"front\":\"images/cube_2048/208/eca40b9a22804ccc823c96688c1d887e/208_f.jpg\",\"index\":208,\"left\":\"images/cube_2048/208/eca40b9a22804ccc823c96688c1d887e/208_l.jpg\",\"right\":\"images/cube_2048/208/eca40b9a22804ccc823c96688c1d887e/208_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/208/eca40b9a22804ccc823c96688c1d887e/208_u.jpg\"},{\"back\":\"images/cube_2048/209/701f0f647a64f9a0f904cff2ca48640b/209_b.jpg\",\"derived_id\":1683684008,\"derived_id_str\":\"1683684008\",\"down\":\"images/cube_2048/209/701f0f647a64f9a0f904cff2ca48640b/209_d.jpg\",\"front\":\"images/cube_2048/209/701f0f647a64f9a0f904cff2ca48640b/209_f.jpg\",\"index\":209,\"left\":\"images/cube_2048/209/701f0f647a64f9a0f904cff2ca48640b/209_l.jpg\",\"right\":\"images/cube_2048/209/701f0f647a64f9a0f904cff2ca48640b/209_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/209/701f0f647a64f9a0f904cff2ca48640b/209_u.jpg\"},{\"back\":\"images/cube_2048/210/e7d285c36ac0abcb066b7ab4af82df8a/210_b.jpg\",\"derived_id\":1683684069,\"derived_id_str\":\"1683684069\",\"down\":\"images/cube_2048/210/e7d285c36ac0abcb066b7ab4af82df8a/210_d.jpg\",\"front\":\"images/cube_2048/210/e7d285c36ac0abcb066b7ab4af82df8a/210_f.jpg\",\"index\":210,\"left\":\"images/cube_2048/210/e7d285c36ac0abcb066b7ab4af82df8a/210_l.jpg\",\"right\":\"images/cube_2048/210/e7d285c36ac0abcb066b7ab4af82df8a/210_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/210/e7d285c36ac0abcb066b7ab4af82df8a/210_u.jpg\"},{\"back\":\"images/cube_2048/211/0b1b832feee659cd0aa88baf23a286ec/211_b.jpg\",\"derived_id\":1683684120,\"derived_id_str\":\"1683684120\",\"down\":\"images/cube_2048/211/0b1b832feee659cd0aa88baf23a286ec/211_d.jpg\",\"front\":\"images/cube_2048/211/0b1b832feee659cd0aa88baf23a286ec/211_f.jpg\",\"index\":211,\"left\":\"images/cube_2048/211/0b1b832feee659cd0aa88baf23a286ec/211_l.jpg\",\"right\":\"images/cube_2048/211/0b1b832feee659cd0aa88baf23a286ec/211_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/211/0b1b832feee659cd0aa88baf23a286ec/211_u.jpg\"},{\"back\":\"images/cube_2048/212/1c921211998a46594abf0d3acfe1a6f1/212_b.jpg\",\"derived_id\":1683684164,\"derived_id_str\":\"1683684164\",\"down\":\"images/cube_2048/212/1c921211998a46594abf0d3acfe1a6f1/212_d.jpg\",\"front\":\"images/cube_2048/212/1c921211998a46594abf0d3acfe1a6f1/212_f.jpg\",\"index\":212,\"left\":\"images/cube_2048/212/1c921211998a46594abf0d3acfe1a6f1/212_l.jpg\",\"right\":\"images/cube_2048/212/1c921211998a46594abf0d3acfe1a6f1/212_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/212/1c921211998a46594abf0d3acfe1a6f1/212_u.jpg\"},{\"back\":\"images/cube_2048/213/b41e849f974b3efcf5390f0756a418b5/213_b.jpg\",\"derived_id\":1683684206,\"derived_id_str\":\"1683684206\",\"down\":\"images/cube_2048/213/b41e849f974b3efcf5390f0756a418b5/213_d.jpg\",\"front\":\"images/cube_2048/213/b41e849f974b3efcf5390f0756a418b5/213_f.jpg\",\"index\":213,\"left\":\"images/cube_2048/213/b41e849f974b3efcf5390f0756a418b5/213_l.jpg\",\"right\":\"images/cube_2048/213/b41e849f974b3efcf5390f0756a418b5/213_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/213/b41e849f974b3efcf5390f0756a418b5/213_u.jpg\"},{\"back\":\"images/cube_2048/214/0a70f2e3cf348284dc6db8816a342270/214_b.jpg\",\"derived_id\":1683684257,\"derived_id_str\":\"1683684257\",\"down\":\"images/cube_2048/214/0a70f2e3cf348284dc6db8816a342270/214_d.jpg\",\"front\":\"images/cube_2048/214/0a70f2e3cf348284dc6db8816a342270/214_f.jpg\",\"index\":214,\"left\":\"images/cube_2048/214/0a70f2e3cf348284dc6db8816a342270/214_l.jpg\",\"right\":\"images/cube_2048/214/0a70f2e3cf348284dc6db8816a342270/214_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/214/0a70f2e3cf348284dc6db8816a342270/214_u.jpg\"},{\"back\":\"images/cube_2048/215/dd0cb4cc4e47a7a25b86fcc2a782711b/215_b.jpg\",\"derived_id\":1683684301,\"derived_id_str\":\"1683684301\",\"down\":\"images/cube_2048/215/dd0cb4cc4e47a7a25b86fcc2a782711b/215_d.jpg\",\"front\":\"images/cube_2048/215/dd0cb4cc4e47a7a25b86fcc2a782711b/215_f.jpg\",\"index\":215,\"left\":\"images/cube_2048/215/dd0cb4cc4e47a7a25b86fcc2a782711b/215_l.jpg\",\"right\":\"images/cube_2048/215/dd0cb4cc4e47a7a25b86fcc2a782711b/215_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/215/dd0cb4cc4e47a7a25b86fcc2a782711b/215_u.jpg\"},{\"back\":\"images/cube_2048/216/00cf2a15304fdb3fdb8d7d96ac16d1f6/216_b.jpg\",\"derived_id\":1683684343,\"derived_id_str\":\"1683684343\",\"down\":\"images/cube_2048/216/00cf2a15304fdb3fdb8d7d96ac16d1f6/216_d.jpg\",\"front\":\"images/cube_2048/216/00cf2a15304fdb3fdb8d7d96ac16d1f6/216_f.jpg\",\"index\":216,\"left\":\"images/cube_2048/216/00cf2a15304fdb3fdb8d7d96ac16d1f6/216_l.jpg\",\"right\":\"images/cube_2048/216/00cf2a15304fdb3fdb8d7d96ac16d1f6/216_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/216/00cf2a15304fdb3fdb8d7d96ac16d1f6/216_u.jpg\"},{\"back\":\"images/cube_2048/217/9db721acf8c6a1796dcbf95015db05e9/217_b.jpg\",\"derived_id\":1683684383,\"derived_id_str\":\"1683684383\",\"down\":\"images/cube_2048/217/9db721acf8c6a1796dcbf95015db05e9/217_d.jpg\",\"front\":\"images/cube_2048/217/9db721acf8c6a1796dcbf95015db05e9/217_f.jpg\",\"index\":217,\"left\":\"images/cube_2048/217/9db721acf8c6a1796dcbf95015db05e9/217_l.jpg\",\"right\":\"images/cube_2048/217/9db721acf8c6a1796dcbf95015db05e9/217_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/217/9db721acf8c6a1796dcbf95015db05e9/217_u.jpg\"},{\"back\":\"images/cube_2048/218/8930e5412c316205bdeadd87bcb3f58e/218_b.jpg\",\"derived_id\":1683684449,\"derived_id_str\":\"1683684449\",\"down\":\"images/cube_2048/218/8930e5412c316205bdeadd87bcb3f58e/218_d.jpg\",\"front\":\"images/cube_2048/218/8930e5412c316205bdeadd87bcb3f58e/218_f.jpg\",\"index\":218,\"left\":\"images/cube_2048/218/8930e5412c316205bdeadd87bcb3f58e/218_l.jpg\",\"right\":\"images/cube_2048/218/8930e5412c316205bdeadd87bcb3f58e/218_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/218/8930e5412c316205bdeadd87bcb3f58e/218_u.jpg\"},{\"back\":\"images/cube_2048/219/18b1e480e67b973c9dac31cf9d88dc6b/219_b.jpg\",\"derived_id\":1683684513,\"derived_id_str\":\"1683684513\",\"down\":\"images/cube_2048/219/18b1e480e67b973c9dac31cf9d88dc6b/219_d.jpg\",\"front\":\"images/cube_2048/219/18b1e480e67b973c9dac31cf9d88dc6b/219_f.jpg\",\"index\":219,\"left\":\"images/cube_2048/219/18b1e480e67b973c9dac31cf9d88dc6b/219_l.jpg\",\"right\":\"images/cube_2048/219/18b1e480e67b973c9dac31cf9d88dc6b/219_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/219/18b1e480e67b973c9dac31cf9d88dc6b/219_u.jpg\"},{\"back\":\"images/cube_2048/220/98e4b442b52ef646c7106f8e7550d18d/220_b.jpg\",\"derived_id\":1683684557,\"derived_id_str\":\"1683684557\",\"down\":\"images/cube_2048/220/98e4b442b52ef646c7106f8e7550d18d/220_d.jpg\",\"front\":\"images/cube_2048/220/98e4b442b52ef646c7106f8e7550d18d/220_f.jpg\",\"index\":220,\"left\":\"images/cube_2048/220/98e4b442b52ef646c7106f8e7550d18d/220_l.jpg\",\"right\":\"images/cube_2048/220/98e4b442b52ef646c7106f8e7550d18d/220_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/220/98e4b442b52ef646c7106f8e7550d18d/220_u.jpg\"},{\"back\":\"images/cube_2048/221/9f25c514928abde9aa230cf878d3d01f/221_b.jpg\",\"derived_id\":1683684616,\"derived_id_str\":\"1683684616\",\"down\":\"images/cube_2048/221/9f25c514928abde9aa230cf878d3d01f/221_d.jpg\",\"front\":\"images/cube_2048/221/9f25c514928abde9aa230cf878d3d01f/221_f.jpg\",\"index\":221,\"left\":\"images/cube_2048/221/9f25c514928abde9aa230cf878d3d01f/221_l.jpg\",\"right\":\"images/cube_2048/221/9f25c514928abde9aa230cf878d3d01f/221_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/221/9f25c514928abde9aa230cf878d3d01f/221_u.jpg\"},{\"back\":\"images/cube_2048/222/fedf692bac6d7ccd29b8691eb1d8c7bf/222_b.jpg\",\"derived_id\":1683684668,\"derived_id_str\":\"1683684668\",\"down\":\"images/cube_2048/222/fedf692bac6d7ccd29b8691eb1d8c7bf/222_d.jpg\",\"front\":\"images/cube_2048/222/fedf692bac6d7ccd29b8691eb1d8c7bf/222_f.jpg\",\"index\":222,\"left\":\"images/cube_2048/222/fedf692bac6d7ccd29b8691eb1d8c7bf/222_l.jpg\",\"right\":\"images/cube_2048/222/fedf692bac6d7ccd29b8691eb1d8c7bf/222_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/222/fedf692bac6d7ccd29b8691eb1d8c7bf/222_u.jpg\"},{\"back\":\"images/cube_2048/223/82e706ae87d9eb1b228eedab27bc3cfd/223_b.jpg\",\"derived_id\":1683684708,\"derived_id_str\":\"1683684708\",\"down\":\"images/cube_2048/223/82e706ae87d9eb1b228eedab27bc3cfd/223_d.jpg\",\"front\":\"images/cube_2048/223/82e706ae87d9eb1b228eedab27bc3cfd/223_f.jpg\",\"index\":223,\"left\":\"images/cube_2048/223/82e706ae87d9eb1b228eedab27bc3cfd/223_l.jpg\",\"right\":\"images/cube_2048/223/82e706ae87d9eb1b228eedab27bc3cfd/223_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/223/82e706ae87d9eb1b228eedab27bc3cfd/223_u.jpg\"},{\"back\":\"images/cube_2048/224/d05cbf72316a15955a238bcd6ab8626c/224_b.jpg\",\"derived_id\":1683684780,\"derived_id_str\":\"1683684780\",\"down\":\"images/cube_2048/224/d05cbf72316a15955a238bcd6ab8626c/224_d.jpg\",\"front\":\"images/cube_2048/224/d05cbf72316a15955a238bcd6ab8626c/224_f.jpg\",\"index\":224,\"left\":\"images/cube_2048/224/d05cbf72316a15955a238bcd6ab8626c/224_l.jpg\",\"right\":\"images/cube_2048/224/d05cbf72316a15955a238bcd6ab8626c/224_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/224/d05cbf72316a15955a238bcd6ab8626c/224_u.jpg\"},{\"back\":\"images/cube_2048/225/c9da632c36c21801a423fffd93282000/225_b.jpg\",\"derived_id\":1683684891,\"derived_id_str\":\"1683684891\",\"down\":\"images/cube_2048/225/c9da632c36c21801a423fffd93282000/225_d.jpg\",\"front\":\"images/cube_2048/225/c9da632c36c21801a423fffd93282000/225_f.jpg\",\"index\":225,\"left\":\"images/cube_2048/225/c9da632c36c21801a423fffd93282000/225_l.jpg\",\"right\":\"images/cube_2048/225/c9da632c36c21801a423fffd93282000/225_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/225/c9da632c36c21801a423fffd93282000/225_u.jpg\"},{\"back\":\"images/cube_2048/226/54fc6ac1a253435b3aef705d1296f446/226_b.jpg\",\"derived_id\":1683684966,\"derived_id_str\":\"1683684966\",\"down\":\"images/cube_2048/226/54fc6ac1a253435b3aef705d1296f446/226_d.jpg\",\"front\":\"images/cube_2048/226/54fc6ac1a253435b3aef705d1296f446/226_f.jpg\",\"index\":226,\"left\":\"images/cube_2048/226/54fc6ac1a253435b3aef705d1296f446/226_l.jpg\",\"right\":\"images/cube_2048/226/54fc6ac1a253435b3aef705d1296f446/226_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/226/54fc6ac1a253435b3aef705d1296f446/226_u.jpg\"},{\"back\":\"images/cube_2048/227/7ff3a741ee573c908a7d4da933cdf988/227_b.jpg\",\"derived_id\":1683686604,\"derived_id_str\":\"1683686604\",\"down\":\"images/cube_2048/227/7ff3a741ee573c908a7d4da933cdf988/227_d.jpg\",\"front\":\"images/cube_2048/227/7ff3a741ee573c908a7d4da933cdf988/227_f.jpg\",\"index\":227,\"left\":\"images/cube_2048/227/7ff3a741ee573c908a7d4da933cdf988/227_l.jpg\",\"right\":\"images/cube_2048/227/7ff3a741ee573c908a7d4da933cdf988/227_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/227/7ff3a741ee573c908a7d4da933cdf988/227_u.jpg\"},{\"back\":\"images/cube_2048/228/022fb2212400d47a6e5e2a5fe9fd75f5/228_b.jpg\",\"derived_id\":1683686689,\"derived_id_str\":\"1683686689\",\"down\":\"images/cube_2048/228/022fb2212400d47a6e5e2a5fe9fd75f5/228_d.jpg\",\"front\":\"images/cube_2048/228/022fb2212400d47a6e5e2a5fe9fd75f5/228_f.jpg\",\"index\":228,\"left\":\"images/cube_2048/228/022fb2212400d47a6e5e2a5fe9fd75f5/228_l.jpg\",\"right\":\"images/cube_2048/228/022fb2212400d47a6e5e2a5fe9fd75f5/228_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/228/022fb2212400d47a6e5e2a5fe9fd75f5/228_u.jpg\"},{\"back\":\"images/cube_2048/229/bb77cee464e4d23a906b277d79100722/229_b.jpg\",\"derived_id\":1683686881,\"derived_id_str\":\"1683686881\",\"down\":\"images/cube_2048/229/bb77cee464e4d23a906b277d79100722/229_d.jpg\",\"front\":\"images/cube_2048/229/bb77cee464e4d23a906b277d79100722/229_f.jpg\",\"index\":229,\"left\":\"images/cube_2048/229/bb77cee464e4d23a906b277d79100722/229_l.jpg\",\"right\":\"images/cube_2048/229/bb77cee464e4d23a906b277d79100722/229_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/229/bb77cee464e4d23a906b277d79100722/229_u.jpg\"},{\"back\":\"images/cube_2048/230/1e822746d4ea405ee0a512317c02ef8f/230_b.jpg\",\"derived_id\":1683686931,\"derived_id_str\":\"1683686931\",\"down\":\"images/cube_2048/230/1e822746d4ea405ee0a512317c02ef8f/230_d.jpg\",\"front\":\"images/cube_2048/230/1e822746d4ea405ee0a512317c02ef8f/230_f.jpg\",\"index\":230,\"left\":\"images/cube_2048/230/1e822746d4ea405ee0a512317c02ef8f/230_l.jpg\",\"right\":\"images/cube_2048/230/1e822746d4ea405ee0a512317c02ef8f/230_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/230/1e822746d4ea405ee0a512317c02ef8f/230_u.jpg\"},{\"back\":\"images/cube_2048/231/0aa20a629a719e83b71c1edc1e1c3bfc/231_b.jpg\",\"derived_id\":1683687009,\"derived_id_str\":\"1683687009\",\"down\":\"images/cube_2048/231/0aa20a629a719e83b71c1edc1e1c3bfc/231_d.jpg\",\"front\":\"images/cube_2048/231/0aa20a629a719e83b71c1edc1e1c3bfc/231_f.jpg\",\"index\":231,\"left\":\"images/cube_2048/231/0aa20a629a719e83b71c1edc1e1c3bfc/231_l.jpg\",\"right\":\"images/cube_2048/231/0aa20a629a719e83b71c1edc1e1c3bfc/231_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/231/0aa20a629a719e83b71c1edc1e1c3bfc/231_u.jpg\"},{\"back\":\"images/cube_2048/232/7cda2d99351861cf5d62f5fa040578fe/232_b.jpg\",\"derived_id\":1683687054,\"derived_id_str\":\"1683687054\",\"down\":\"images/cube_2048/232/7cda2d99351861cf5d62f5fa040578fe/232_d.jpg\",\"front\":\"images/cube_2048/232/7cda2d99351861cf5d62f5fa040578fe/232_f.jpg\",\"index\":232,\"left\":\"images/cube_2048/232/7cda2d99351861cf5d62f5fa040578fe/232_l.jpg\",\"right\":\"images/cube_2048/232/7cda2d99351861cf5d62f5fa040578fe/232_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/232/7cda2d99351861cf5d62f5fa040578fe/232_u.jpg\"},{\"back\":\"images/cube_2048/233/f83e62becc5db9f6fe366059352e3ca2/233_b.jpg\",\"derived_id\":1683687109,\"derived_id_str\":\"1683687109\",\"down\":\"images/cube_2048/233/f83e62becc5db9f6fe366059352e3ca2/233_d.jpg\",\"front\":\"images/cube_2048/233/f83e62becc5db9f6fe366059352e3ca2/233_f.jpg\",\"index\":233,\"left\":\"images/cube_2048/233/f83e62becc5db9f6fe366059352e3ca2/233_l.jpg\",\"right\":\"images/cube_2048/233/f83e62becc5db9f6fe366059352e3ca2/233_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/233/f83e62becc5db9f6fe366059352e3ca2/233_u.jpg\"},{\"back\":\"images/cube_2048/234/a4a5e1f44b34f4b4213234a8265cc14f/234_b.jpg\",\"derived_id\":1683687176,\"derived_id_str\":\"1683687176\",\"down\":\"images/cube_2048/234/a4a5e1f44b34f4b4213234a8265cc14f/234_d.jpg\",\"front\":\"images/cube_2048/234/a4a5e1f44b34f4b4213234a8265cc14f/234_f.jpg\",\"index\":234,\"left\":\"images/cube_2048/234/a4a5e1f44b34f4b4213234a8265cc14f/234_l.jpg\",\"right\":\"images/cube_2048/234/a4a5e1f44b34f4b4213234a8265cc14f/234_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/234/a4a5e1f44b34f4b4213234a8265cc14f/234_u.jpg\"},{\"back\":\"images/cube_2048/235/1a2b9aadcb00f1effa6b0604d152969a/235_b.jpg\",\"derived_id\":1683687258,\"derived_id_str\":\"1683687258\",\"down\":\"images/cube_2048/235/1a2b9aadcb00f1effa6b0604d152969a/235_d.jpg\",\"front\":\"images/cube_2048/235/1a2b9aadcb00f1effa6b0604d152969a/235_f.jpg\",\"index\":235,\"left\":\"images/cube_2048/235/1a2b9aadcb00f1effa6b0604d152969a/235_l.jpg\",\"right\":\"images/cube_2048/235/1a2b9aadcb00f1effa6b0604d152969a/235_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/235/1a2b9aadcb00f1effa6b0604d152969a/235_u.jpg\"},{\"back\":\"images/cube_2048/236/27a1900b2552a625c40223e4768c5578/236_b.jpg\",\"derived_id\":1683687327,\"derived_id_str\":\"1683687327\",\"down\":\"images/cube_2048/236/27a1900b2552a625c40223e4768c5578/236_d.jpg\",\"front\":\"images/cube_2048/236/27a1900b2552a625c40223e4768c5578/236_f.jpg\",\"index\":236,\"left\":\"images/cube_2048/236/27a1900b2552a625c40223e4768c5578/236_l.jpg\",\"right\":\"images/cube_2048/236/27a1900b2552a625c40223e4768c5578/236_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/236/27a1900b2552a625c40223e4768c5578/236_u.jpg\"},{\"back\":\"images/cube_2048/237/792e372b331926f86112b08da79fc1cd/237_b.jpg\",\"derived_id\":1683687508,\"derived_id_str\":\"1683687508\",\"down\":\"images/cube_2048/237/792e372b331926f86112b08da79fc1cd/237_d.jpg\",\"front\":\"images/cube_2048/237/792e372b331926f86112b08da79fc1cd/237_f.jpg\",\"index\":237,\"left\":\"images/cube_2048/237/792e372b331926f86112b08da79fc1cd/237_l.jpg\",\"right\":\"images/cube_2048/237/792e372b331926f86112b08da79fc1cd/237_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/237/792e372b331926f86112b08da79fc1cd/237_u.jpg\"},{\"back\":\"images/cube_2048/238/886b28c964409b7104d4f093e3235365/238_b.jpg\",\"derived_id\":1683687620,\"derived_id_str\":\"1683687620\",\"down\":\"images/cube_2048/238/886b28c964409b7104d4f093e3235365/238_d.jpg\",\"front\":\"images/cube_2048/238/886b28c964409b7104d4f093e3235365/238_f.jpg\",\"index\":238,\"left\":\"images/cube_2048/238/886b28c964409b7104d4f093e3235365/238_l.jpg\",\"right\":\"images/cube_2048/238/886b28c964409b7104d4f093e3235365/238_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/238/886b28c964409b7104d4f093e3235365/238_u.jpg\"},{\"back\":\"images/cube_2048/239/b7f94beebb9ffb6867360d96fe36829a/239_b.jpg\",\"derived_id\":1683687682,\"derived_id_str\":\"1683687682\",\"down\":\"images/cube_2048/239/b7f94beebb9ffb6867360d96fe36829a/239_d.jpg\",\"front\":\"images/cube_2048/239/b7f94beebb9ffb6867360d96fe36829a/239_f.jpg\",\"index\":239,\"left\":\"images/cube_2048/239/b7f94beebb9ffb6867360d96fe36829a/239_l.jpg\",\"right\":\"images/cube_2048/239/b7f94beebb9ffb6867360d96fe36829a/239_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/239/b7f94beebb9ffb6867360d96fe36829a/239_u.jpg\"},{\"back\":\"images/cube_2048/240/a994b856f8db796be0b1d9dcc9b0a763/240_b.jpg\",\"derived_id\":1683687730,\"derived_id_str\":\"1683687730\",\"down\":\"images/cube_2048/240/a994b856f8db796be0b1d9dcc9b0a763/240_d.jpg\",\"front\":\"images/cube_2048/240/a994b856f8db796be0b1d9dcc9b0a763/240_f.jpg\",\"index\":240,\"left\":\"images/cube_2048/240/a994b856f8db796be0b1d9dcc9b0a763/240_l.jpg\",\"right\":\"images/cube_2048/240/a994b856f8db796be0b1d9dcc9b0a763/240_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/240/a994b856f8db796be0b1d9dcc9b0a763/240_u.jpg\"},{\"back\":\"images/cube_2048/241/f92e4ddae526a9d1aad1573acc8e4407/241_b.jpg\",\"derived_id\":1683687777,\"derived_id_str\":\"1683687777\",\"down\":\"images/cube_2048/241/f92e4ddae526a9d1aad1573acc8e4407/241_d.jpg\",\"front\":\"images/cube_2048/241/f92e4ddae526a9d1aad1573acc8e4407/241_f.jpg\",\"index\":241,\"left\":\"images/cube_2048/241/f92e4ddae526a9d1aad1573acc8e4407/241_l.jpg\",\"right\":\"images/cube_2048/241/f92e4ddae526a9d1aad1573acc8e4407/241_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/241/f92e4ddae526a9d1aad1573acc8e4407/241_u.jpg\"},{\"back\":\"images/cube_2048/242/e4368926da99fb9e9cca0f0ba8563d57/242_b.jpg\",\"derived_id\":1683687835,\"derived_id_str\":\"1683687835\",\"down\":\"images/cube_2048/242/e4368926da99fb9e9cca0f0ba8563d57/242_d.jpg\",\"front\":\"images/cube_2048/242/e4368926da99fb9e9cca0f0ba8563d57/242_f.jpg\",\"index\":242,\"left\":\"images/cube_2048/242/e4368926da99fb9e9cca0f0ba8563d57/242_l.jpg\",\"right\":\"images/cube_2048/242/e4368926da99fb9e9cca0f0ba8563d57/242_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/242/e4368926da99fb9e9cca0f0ba8563d57/242_u.jpg\"},{\"back\":\"images/cube_2048/243/098fd1af175842660a842939af0ba678/243_b.jpg\",\"derived_id\":1683687879,\"derived_id_str\":\"1683687879\",\"down\":\"images/cube_2048/243/098fd1af175842660a842939af0ba678/243_d.jpg\",\"front\":\"images/cube_2048/243/098fd1af175842660a842939af0ba678/243_f.jpg\",\"index\":243,\"left\":\"images/cube_2048/243/098fd1af175842660a842939af0ba678/243_l.jpg\",\"right\":\"images/cube_2048/243/098fd1af175842660a842939af0ba678/243_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/243/098fd1af175842660a842939af0ba678/243_u.jpg\"},{\"back\":\"images/cube_2048/244/0d7f437321c5d08d4b7e9e19321be827/244_b.jpg\",\"derived_id\":1683687921,\"derived_id_str\":\"1683687921\",\"down\":\"images/cube_2048/244/0d7f437321c5d08d4b7e9e19321be827/244_d.jpg\",\"front\":\"images/cube_2048/244/0d7f437321c5d08d4b7e9e19321be827/244_f.jpg\",\"index\":244,\"left\":\"images/cube_2048/244/0d7f437321c5d08d4b7e9e19321be827/244_l.jpg\",\"right\":\"images/cube_2048/244/0d7f437321c5d08d4b7e9e19321be827/244_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/244/0d7f437321c5d08d4b7e9e19321be827/244_u.jpg\"},{\"back\":\"images/cube_2048/245/3a54e5d4d8a6761405ef0a4900d50e37/245_b.jpg\",\"derived_id\":1683687968,\"derived_id_str\":\"1683687968\",\"down\":\"images/cube_2048/245/3a54e5d4d8a6761405ef0a4900d50e37/245_d.jpg\",\"front\":\"images/cube_2048/245/3a54e5d4d8a6761405ef0a4900d50e37/245_f.jpg\",\"index\":245,\"left\":\"images/cube_2048/245/3a54e5d4d8a6761405ef0a4900d50e37/245_l.jpg\",\"right\":\"images/cube_2048/245/3a54e5d4d8a6761405ef0a4900d50e37/245_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/245/3a54e5d4d8a6761405ef0a4900d50e37/245_u.jpg\"},{\"back\":\"images/cube_2048/246/8787e3eef9ccda51cf726c0c0183cc68/246_b.jpg\",\"derived_id\":1683688180,\"derived_id_str\":\"1683688180\",\"down\":\"images/cube_2048/246/8787e3eef9ccda51cf726c0c0183cc68/246_d.jpg\",\"front\":\"images/cube_2048/246/8787e3eef9ccda51cf726c0c0183cc68/246_f.jpg\",\"index\":246,\"left\":\"images/cube_2048/246/8787e3eef9ccda51cf726c0c0183cc68/246_l.jpg\",\"right\":\"images/cube_2048/246/8787e3eef9ccda51cf726c0c0183cc68/246_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/246/8787e3eef9ccda51cf726c0c0183cc68/246_u.jpg\"},{\"back\":\"images/cube_2048/247/289b0f4f87774638ef26b10e22a2badb/247_b.jpg\",\"derived_id\":1683688227,\"derived_id_str\":\"1683688227\",\"down\":\"images/cube_2048/247/289b0f4f87774638ef26b10e22a2badb/247_d.jpg\",\"front\":\"images/cube_2048/247/289b0f4f87774638ef26b10e22a2badb/247_f.jpg\",\"index\":247,\"left\":\"images/cube_2048/247/289b0f4f87774638ef26b10e22a2badb/247_l.jpg\",\"right\":\"images/cube_2048/247/289b0f4f87774638ef26b10e22a2badb/247_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/247/289b0f4f87774638ef26b10e22a2badb/247_u.jpg\"},{\"back\":\"images/cube_2048/248/dedada8ccc1108fa2e607f63278ed4e9/248_b.jpg\",\"derived_id\":1683688267,\"derived_id_str\":\"1683688267\",\"down\":\"images/cube_2048/248/dedada8ccc1108fa2e607f63278ed4e9/248_d.jpg\",\"front\":\"images/cube_2048/248/dedada8ccc1108fa2e607f63278ed4e9/248_f.jpg\",\"index\":248,\"left\":\"images/cube_2048/248/dedada8ccc1108fa2e607f63278ed4e9/248_l.jpg\",\"right\":\"images/cube_2048/248/dedada8ccc1108fa2e607f63278ed4e9/248_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/248/dedada8ccc1108fa2e607f63278ed4e9/248_u.jpg\"},{\"back\":\"images/cube_2048/249/3441bd813d592255b6998e94c9e96718/249_b.jpg\",\"derived_id\":1683688325,\"derived_id_str\":\"1683688325\",\"down\":\"images/cube_2048/249/3441bd813d592255b6998e94c9e96718/249_d.jpg\",\"front\":\"images/cube_2048/249/3441bd813d592255b6998e94c9e96718/249_f.jpg\",\"index\":249,\"left\":\"images/cube_2048/249/3441bd813d592255b6998e94c9e96718/249_l.jpg\",\"right\":\"images/cube_2048/249/3441bd813d592255b6998e94c9e96718/249_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/249/3441bd813d592255b6998e94c9e96718/249_u.jpg\"},{\"back\":\"images/cube_2048/250/09f273e05facb402c5117cc8a598ddae/250_b.jpg\",\"derived_id\":1683688374,\"derived_id_str\":\"1683688374\",\"down\":\"images/cube_2048/250/09f273e05facb402c5117cc8a598ddae/250_d.jpg\",\"front\":\"images/cube_2048/250/09f273e05facb402c5117cc8a598ddae/250_f.jpg\",\"index\":250,\"left\":\"images/cube_2048/250/09f273e05facb402c5117cc8a598ddae/250_l.jpg\",\"right\":\"images/cube_2048/250/09f273e05facb402c5117cc8a598ddae/250_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/250/09f273e05facb402c5117cc8a598ddae/250_u.jpg\"},{\"back\":\"images/cube_2048/251/40053ddded97f10895ca628f373b2b5b/251_b.jpg\",\"derived_id\":1683688446,\"derived_id_str\":\"1683688446\",\"down\":\"images/cube_2048/251/40053ddded97f10895ca628f373b2b5b/251_d.jpg\",\"front\":\"images/cube_2048/251/40053ddded97f10895ca628f373b2b5b/251_f.jpg\",\"index\":251,\"left\":\"images/cube_2048/251/40053ddded97f10895ca628f373b2b5b/251_l.jpg\",\"right\":\"images/cube_2048/251/40053ddded97f10895ca628f373b2b5b/251_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/251/40053ddded97f10895ca628f373b2b5b/251_u.jpg\"},{\"back\":\"images/cube_2048/252/a5165cffaf8d7530833a58c422224a4c/252_b.jpg\",\"derived_id\":1683688495,\"derived_id_str\":\"1683688495\",\"down\":\"images/cube_2048/252/a5165cffaf8d7530833a58c422224a4c/252_d.jpg\",\"front\":\"images/cube_2048/252/a5165cffaf8d7530833a58c422224a4c/252_f.jpg\",\"index\":252,\"left\":\"images/cube_2048/252/a5165cffaf8d7530833a58c422224a4c/252_l.jpg\",\"right\":\"images/cube_2048/252/a5165cffaf8d7530833a58c422224a4c/252_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/252/a5165cffaf8d7530833a58c422224a4c/252_u.jpg\"},{\"back\":\"images/cube_2048/253/92383fb29234ec9d530fe84e1440cbd9/253_b.jpg\",\"derived_id\":1683688551,\"derived_id_str\":\"1683688551\",\"down\":\"images/cube_2048/253/92383fb29234ec9d530fe84e1440cbd9/253_d.jpg\",\"front\":\"images/cube_2048/253/92383fb29234ec9d530fe84e1440cbd9/253_f.jpg\",\"index\":253,\"left\":\"images/cube_2048/253/92383fb29234ec9d530fe84e1440cbd9/253_l.jpg\",\"right\":\"images/cube_2048/253/92383fb29234ec9d530fe84e1440cbd9/253_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/253/92383fb29234ec9d530fe84e1440cbd9/253_u.jpg\"},{\"back\":\"images/cube_2048/254/505eb03df4da8a2da5184ffc9402de90/254_b.jpg\",\"derived_id\":1683688607,\"derived_id_str\":\"1683688607\",\"down\":\"images/cube_2048/254/505eb03df4da8a2da5184ffc9402de90/254_d.jpg\",\"front\":\"images/cube_2048/254/505eb03df4da8a2da5184ffc9402de90/254_f.jpg\",\"index\":254,\"left\":\"images/cube_2048/254/505eb03df4da8a2da5184ffc9402de90/254_l.jpg\",\"right\":\"images/cube_2048/254/505eb03df4da8a2da5184ffc9402de90/254_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/254/505eb03df4da8a2da5184ffc9402de90/254_u.jpg\"},{\"back\":\"images/cube_2048/255/f1d7f6595a82696ba6e54d5d53606331/255_b.jpg\",\"derived_id\":1683688649,\"derived_id_str\":\"1683688649\",\"down\":\"images/cube_2048/255/f1d7f6595a82696ba6e54d5d53606331/255_d.jpg\",\"front\":\"images/cube_2048/255/f1d7f6595a82696ba6e54d5d53606331/255_f.jpg\",\"index\":255,\"left\":\"images/cube_2048/255/f1d7f6595a82696ba6e54d5d53606331/255_l.jpg\",\"right\":\"images/cube_2048/255/f1d7f6595a82696ba6e54d5d53606331/255_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/255/f1d7f6595a82696ba6e54d5d53606331/255_u.jpg\"},{\"back\":\"images/cube_2048/256/db3b7939598765eea6e595abea723a59/256_b.jpg\",\"derived_id\":1683688696,\"derived_id_str\":\"1683688696\",\"down\":\"images/cube_2048/256/db3b7939598765eea6e595abea723a59/256_d.jpg\",\"front\":\"images/cube_2048/256/db3b7939598765eea6e595abea723a59/256_f.jpg\",\"index\":256,\"left\":\"images/cube_2048/256/db3b7939598765eea6e595abea723a59/256_l.jpg\",\"right\":\"images/cube_2048/256/db3b7939598765eea6e595abea723a59/256_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/256/db3b7939598765eea6e595abea723a59/256_u.jpg\"},{\"back\":\"images/cube_2048/257/92835de6e067a651f13f69977deff9db/257_b.jpg\",\"derived_id\":1683688742,\"derived_id_str\":\"1683688742\",\"down\":\"images/cube_2048/257/92835de6e067a651f13f69977deff9db/257_d.jpg\",\"front\":\"images/cube_2048/257/92835de6e067a651f13f69977deff9db/257_f.jpg\",\"index\":257,\"left\":\"images/cube_2048/257/92835de6e067a651f13f69977deff9db/257_l.jpg\",\"right\":\"images/cube_2048/257/92835de6e067a651f13f69977deff9db/257_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/257/92835de6e067a651f13f69977deff9db/257_u.jpg\"},{\"back\":\"images/cube_2048/258/cb0c8127a2249da165a49b172ed549ba/258_b.jpg\",\"derived_id\":1683688788,\"derived_id_str\":\"1683688788\",\"down\":\"images/cube_2048/258/cb0c8127a2249da165a49b172ed549ba/258_d.jpg\",\"front\":\"images/cube_2048/258/cb0c8127a2249da165a49b172ed549ba/258_f.jpg\",\"index\":258,\"left\":\"images/cube_2048/258/cb0c8127a2249da165a49b172ed549ba/258_l.jpg\",\"right\":\"images/cube_2048/258/cb0c8127a2249da165a49b172ed549ba/258_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/258/cb0c8127a2249da165a49b172ed549ba/258_u.jpg\"},{\"back\":\"images/cube_2048/259/b03538c7ce1b3d0afbd7c4e7648f1846/259_b.jpg\",\"derived_id\":1683689022,\"derived_id_str\":\"1683689022\",\"down\":\"images/cube_2048/259/b03538c7ce1b3d0afbd7c4e7648f1846/259_d.jpg\",\"front\":\"images/cube_2048/259/b03538c7ce1b3d0afbd7c4e7648f1846/259_f.jpg\",\"index\":259,\"left\":\"images/cube_2048/259/b03538c7ce1b3d0afbd7c4e7648f1846/259_l.jpg\",\"right\":\"images/cube_2048/259/b03538c7ce1b3d0afbd7c4e7648f1846/259_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/259/b03538c7ce1b3d0afbd7c4e7648f1846/259_u.jpg\"},{\"back\":\"images/cube_2048/260/81ba7431593d4c611a27e3539c468ce5/260_b.jpg\",\"derived_id\":1683689302,\"derived_id_str\":\"1683689302\",\"down\":\"images/cube_2048/260/81ba7431593d4c611a27e3539c468ce5/260_d.jpg\",\"front\":\"images/cube_2048/260/81ba7431593d4c611a27e3539c468ce5/260_f.jpg\",\"index\":260,\"left\":\"images/cube_2048/260/81ba7431593d4c611a27e3539c468ce5/260_l.jpg\",\"right\":\"images/cube_2048/260/81ba7431593d4c611a27e3539c468ce5/260_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/260/81ba7431593d4c611a27e3539c468ce5/260_u.jpg\"},{\"back\":\"images/cube_2048/261/b1ba071937bbe64630857b4e6658b937/261_b.jpg\",\"derived_id\":1683689407,\"derived_id_str\":\"1683689407\",\"down\":\"images/cube_2048/261/b1ba071937bbe64630857b4e6658b937/261_d.jpg\",\"front\":\"images/cube_2048/261/b1ba071937bbe64630857b4e6658b937/261_f.jpg\",\"index\":261,\"left\":\"images/cube_2048/261/b1ba071937bbe64630857b4e6658b937/261_l.jpg\",\"right\":\"images/cube_2048/261/b1ba071937bbe64630857b4e6658b937/261_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/261/b1ba071937bbe64630857b4e6658b937/261_u.jpg\"},{\"back\":\"images/cube_2048/262/e3275e83b69595a0214d748b06270f89/262_b.jpg\",\"derived_id\":1683689454,\"derived_id_str\":\"1683689454\",\"down\":\"images/cube_2048/262/e3275e83b69595a0214d748b06270f89/262_d.jpg\",\"front\":\"images/cube_2048/262/e3275e83b69595a0214d748b06270f89/262_f.jpg\",\"index\":262,\"left\":\"images/cube_2048/262/e3275e83b69595a0214d748b06270f89/262_l.jpg\",\"right\":\"images/cube_2048/262/e3275e83b69595a0214d748b06270f89/262_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/262/e3275e83b69595a0214d748b06270f89/262_u.jpg\"},{\"back\":\"images/cube_2048/263/3ba1c655182d1a1eb0cf89f73b6e2a9c/263_b.jpg\",\"derived_id\":1683689500,\"derived_id_str\":\"1683689500\",\"down\":\"images/cube_2048/263/3ba1c655182d1a1eb0cf89f73b6e2a9c/263_d.jpg\",\"front\":\"images/cube_2048/263/3ba1c655182d1a1eb0cf89f73b6e2a9c/263_f.jpg\",\"index\":263,\"left\":\"images/cube_2048/263/3ba1c655182d1a1eb0cf89f73b6e2a9c/263_l.jpg\",\"right\":\"images/cube_2048/263/3ba1c655182d1a1eb0cf89f73b6e2a9c/263_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/263/3ba1c655182d1a1eb0cf89f73b6e2a9c/263_u.jpg\"},{\"back\":\"images/cube_2048/264/433e4b4cd5bfac5f574913da70269446/264_b.jpg\",\"derived_id\":1683689560,\"derived_id_str\":\"1683689560\",\"down\":\"images/cube_2048/264/433e4b4cd5bfac5f574913da70269446/264_d.jpg\",\"front\":\"images/cube_2048/264/433e4b4cd5bfac5f574913da70269446/264_f.jpg\",\"index\":264,\"left\":\"images/cube_2048/264/433e4b4cd5bfac5f574913da70269446/264_l.jpg\",\"right\":\"images/cube_2048/264/433e4b4cd5bfac5f574913da70269446/264_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/264/433e4b4cd5bfac5f574913da70269446/264_u.jpg\"},{\"back\":\"images/cube_2048/265/7110d31c304911b9388a970946fa974d/265_b.jpg\",\"derived_id\":1683689613,\"derived_id_str\":\"1683689613\",\"down\":\"images/cube_2048/265/7110d31c304911b9388a970946fa974d/265_d.jpg\",\"front\":\"images/cube_2048/265/7110d31c304911b9388a970946fa974d/265_f.jpg\",\"index\":265,\"left\":\"images/cube_2048/265/7110d31c304911b9388a970946fa974d/265_l.jpg\",\"right\":\"images/cube_2048/265/7110d31c304911b9388a970946fa974d/265_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/265/7110d31c304911b9388a970946fa974d/265_u.jpg\"},{\"back\":\"images/cube_2048/266/eea6a197e477df46404d4bc16f64912e/266_b.jpg\",\"derived_id\":1683689673,\"derived_id_str\":\"1683689673\",\"down\":\"images/cube_2048/266/eea6a197e477df46404d4bc16f64912e/266_d.jpg\",\"front\":\"images/cube_2048/266/eea6a197e477df46404d4bc16f64912e/266_f.jpg\",\"index\":266,\"left\":\"images/cube_2048/266/eea6a197e477df46404d4bc16f64912e/266_l.jpg\",\"right\":\"images/cube_2048/266/eea6a197e477df46404d4bc16f64912e/266_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/266/eea6a197e477df46404d4bc16f64912e/266_u.jpg\"},{\"back\":\"images/cube_2048/267/b478258d2deab2c676f6ab5b9b3ddb46/267_b.jpg\",\"derived_id\":1683689725,\"derived_id_str\":\"1683689725\",\"down\":\"images/cube_2048/267/b478258d2deab2c676f6ab5b9b3ddb46/267_d.jpg\",\"front\":\"images/cube_2048/267/b478258d2deab2c676f6ab5b9b3ddb46/267_f.jpg\",\"index\":267,\"left\":\"images/cube_2048/267/b478258d2deab2c676f6ab5b9b3ddb46/267_l.jpg\",\"right\":\"images/cube_2048/267/b478258d2deab2c676f6ab5b9b3ddb46/267_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/267/b478258d2deab2c676f6ab5b9b3ddb46/267_u.jpg\"},{\"back\":\"images/cube_2048/268/b1a8319a1b68d167679201744c9eaba6/268_b.jpg\",\"derived_id\":1683689768,\"derived_id_str\":\"1683689768\",\"down\":\"images/cube_2048/268/b1a8319a1b68d167679201744c9eaba6/268_d.jpg\",\"front\":\"images/cube_2048/268/b1a8319a1b68d167679201744c9eaba6/268_f.jpg\",\"index\":268,\"left\":\"images/cube_2048/268/b1a8319a1b68d167679201744c9eaba6/268_l.jpg\",\"right\":\"images/cube_2048/268/b1a8319a1b68d167679201744c9eaba6/268_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/268/b1a8319a1b68d167679201744c9eaba6/268_u.jpg\"},{\"back\":\"images/cube_2048/269/56d802d2fdec74fbb310f73e91b2164f/269_b.jpg\",\"derived_id\":1683689816,\"derived_id_str\":\"1683689816\",\"down\":\"images/cube_2048/269/56d802d2fdec74fbb310f73e91b2164f/269_d.jpg\",\"front\":\"images/cube_2048/269/56d802d2fdec74fbb310f73e91b2164f/269_f.jpg\",\"index\":269,\"left\":\"images/cube_2048/269/56d802d2fdec74fbb310f73e91b2164f/269_l.jpg\",\"right\":\"images/cube_2048/269/56d802d2fdec74fbb310f73e91b2164f/269_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/269/56d802d2fdec74fbb310f73e91b2164f/269_u.jpg\"},{\"back\":\"images/cube_2048/270/4f429167d7e18555c4cf20e7d58ec4ba/270_b.jpg\",\"derived_id\":1683689874,\"derived_id_str\":\"1683689874\",\"down\":\"images/cube_2048/270/4f429167d7e18555c4cf20e7d58ec4ba/270_d.jpg\",\"front\":\"images/cube_2048/270/4f429167d7e18555c4cf20e7d58ec4ba/270_f.jpg\",\"index\":270,\"left\":\"images/cube_2048/270/4f429167d7e18555c4cf20e7d58ec4ba/270_l.jpg\",\"right\":\"images/cube_2048/270/4f429167d7e18555c4cf20e7d58ec4ba/270_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/270/4f429167d7e18555c4cf20e7d58ec4ba/270_u.jpg\"},{\"back\":\"images/cube_2048/271/956deef2412233e80e147d212b8c6592/271_b.jpg\",\"derived_id\":1683689921,\"derived_id_str\":\"1683689921\",\"down\":\"images/cube_2048/271/956deef2412233e80e147d212b8c6592/271_d.jpg\",\"front\":\"images/cube_2048/271/956deef2412233e80e147d212b8c6592/271_f.jpg\",\"index\":271,\"left\":\"images/cube_2048/271/956deef2412233e80e147d212b8c6592/271_l.jpg\",\"right\":\"images/cube_2048/271/956deef2412233e80e147d212b8c6592/271_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/271/956deef2412233e80e147d212b8c6592/271_u.jpg\"},{\"back\":\"images/cube_2048/272/0364cf54cebc8ecc0dcb477802f70bbb/272_b.jpg\",\"derived_id\":1683689967,\"derived_id_str\":\"1683689967\",\"down\":\"images/cube_2048/272/0364cf54cebc8ecc0dcb477802f70bbb/272_d.jpg\",\"front\":\"images/cube_2048/272/0364cf54cebc8ecc0dcb477802f70bbb/272_f.jpg\",\"index\":272,\"left\":\"images/cube_2048/272/0364cf54cebc8ecc0dcb477802f70bbb/272_l.jpg\",\"right\":\"images/cube_2048/272/0364cf54cebc8ecc0dcb477802f70bbb/272_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/272/0364cf54cebc8ecc0dcb477802f70bbb/272_u.jpg\"},{\"back\":\"images/cube_2048/273/6d43c34222afcb4d78cd993774773f99/273_b.jpg\",\"derived_id\":1683690045,\"derived_id_str\":\"1683690045\",\"down\":\"images/cube_2048/273/6d43c34222afcb4d78cd993774773f99/273_d.jpg\",\"front\":\"images/cube_2048/273/6d43c34222afcb4d78cd993774773f99/273_f.jpg\",\"index\":273,\"left\":\"images/cube_2048/273/6d43c34222afcb4d78cd993774773f99/273_l.jpg\",\"right\":\"images/cube_2048/273/6d43c34222afcb4d78cd993774773f99/273_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/273/6d43c34222afcb4d78cd993774773f99/273_u.jpg\"},{\"back\":\"images/cube_2048/274/014e7f238664cc13e570b9e2260b44c5/274_b.jpg\",\"derived_id\":1683690091,\"derived_id_str\":\"1683690091\",\"down\":\"images/cube_2048/274/014e7f238664cc13e570b9e2260b44c5/274_d.jpg\",\"front\":\"images/cube_2048/274/014e7f238664cc13e570b9e2260b44c5/274_f.jpg\",\"index\":274,\"left\":\"images/cube_2048/274/014e7f238664cc13e570b9e2260b44c5/274_l.jpg\",\"right\":\"images/cube_2048/274/014e7f238664cc13e570b9e2260b44c5/274_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/274/014e7f238664cc13e570b9e2260b44c5/274_u.jpg\"},{\"back\":\"images/cube_2048/275/591db10af991bd3b12fc7a48d04326a7/275_b.jpg\",\"derived_id\":1683690143,\"derived_id_str\":\"1683690143\",\"down\":\"images/cube_2048/275/591db10af991bd3b12fc7a48d04326a7/275_d.jpg\",\"front\":\"images/cube_2048/275/591db10af991bd3b12fc7a48d04326a7/275_f.jpg\",\"index\":275,\"left\":\"images/cube_2048/275/591db10af991bd3b12fc7a48d04326a7/275_l.jpg\",\"right\":\"images/cube_2048/275/591db10af991bd3b12fc7a48d04326a7/275_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/275/591db10af991bd3b12fc7a48d04326a7/275_u.jpg\"},{\"back\":\"images/cube_2048/276/ed89c90c7410146b238743e6dacf6ce0/276_b.jpg\",\"derived_id\":1683690189,\"derived_id_str\":\"1683690189\",\"down\":\"images/cube_2048/276/ed89c90c7410146b238743e6dacf6ce0/276_d.jpg\",\"front\":\"images/cube_2048/276/ed89c90c7410146b238743e6dacf6ce0/276_f.jpg\",\"index\":276,\"left\":\"images/cube_2048/276/ed89c90c7410146b238743e6dacf6ce0/276_l.jpg\",\"right\":\"images/cube_2048/276/ed89c90c7410146b238743e6dacf6ce0/276_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/276/ed89c90c7410146b238743e6dacf6ce0/276_u.jpg\"},{\"back\":\"images/cube_2048/277/b14e05553515d9405fc7df4697e4f52f/277_b.jpg\",\"derived_id\":1683690287,\"derived_id_str\":\"1683690287\",\"down\":\"images/cube_2048/277/b14e05553515d9405fc7df4697e4f52f/277_d.jpg\",\"front\":\"images/cube_2048/277/b14e05553515d9405fc7df4697e4f52f/277_f.jpg\",\"index\":277,\"left\":\"images/cube_2048/277/b14e05553515d9405fc7df4697e4f52f/277_l.jpg\",\"right\":\"images/cube_2048/277/b14e05553515d9405fc7df4697e4f52f/277_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/277/b14e05553515d9405fc7df4697e4f52f/277_u.jpg\"},{\"back\":\"images/cube_2048/278/bdf43e7a734d26b65a48898d3e7c0530/278_b.jpg\",\"derived_id\":1683690348,\"derived_id_str\":\"1683690348\",\"down\":\"images/cube_2048/278/bdf43e7a734d26b65a48898d3e7c0530/278_d.jpg\",\"front\":\"images/cube_2048/278/bdf43e7a734d26b65a48898d3e7c0530/278_f.jpg\",\"index\":278,\"left\":\"images/cube_2048/278/bdf43e7a734d26b65a48898d3e7c0530/278_l.jpg\",\"right\":\"images/cube_2048/278/bdf43e7a734d26b65a48898d3e7c0530/278_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/278/bdf43e7a734d26b65a48898d3e7c0530/278_u.jpg\"},{\"back\":\"images/cube_2048/279/81e37134f4929250e89b2c293f6cfa03/279_b.jpg\",\"derived_id\":1683690415,\"derived_id_str\":\"1683690415\",\"down\":\"images/cube_2048/279/81e37134f4929250e89b2c293f6cfa03/279_d.jpg\",\"front\":\"images/cube_2048/279/81e37134f4929250e89b2c293f6cfa03/279_f.jpg\",\"index\":279,\"left\":\"images/cube_2048/279/81e37134f4929250e89b2c293f6cfa03/279_l.jpg\",\"right\":\"images/cube_2048/279/81e37134f4929250e89b2c293f6cfa03/279_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/279/81e37134f4929250e89b2c293f6cfa03/279_u.jpg\"},{\"back\":\"images/cube_2048/280/6db5f3c0cc55be733fbfc6733dc1fa3e/280_b.jpg\",\"derived_id\":1683690789,\"derived_id_str\":\"1683690789\",\"down\":\"images/cube_2048/280/6db5f3c0cc55be733fbfc6733dc1fa3e/280_d.jpg\",\"front\":\"images/cube_2048/280/6db5f3c0cc55be733fbfc6733dc1fa3e/280_f.jpg\",\"index\":280,\"left\":\"images/cube_2048/280/6db5f3c0cc55be733fbfc6733dc1fa3e/280_l.jpg\",\"right\":\"images/cube_2048/280/6db5f3c0cc55be733fbfc6733dc1fa3e/280_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/280/6db5f3c0cc55be733fbfc6733dc1fa3e/280_u.jpg\"},{\"back\":\"images/cube_2048/281/c2299973ce844730e805c3b2e7dc4a31/281_b.jpg\",\"derived_id\":1683690835,\"derived_id_str\":\"1683690835\",\"down\":\"images/cube_2048/281/c2299973ce844730e805c3b2e7dc4a31/281_d.jpg\",\"front\":\"images/cube_2048/281/c2299973ce844730e805c3b2e7dc4a31/281_f.jpg\",\"index\":281,\"left\":\"images/cube_2048/281/c2299973ce844730e805c3b2e7dc4a31/281_l.jpg\",\"right\":\"images/cube_2048/281/c2299973ce844730e805c3b2e7dc4a31/281_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/281/c2299973ce844730e805c3b2e7dc4a31/281_u.jpg\"},{\"back\":\"images/cube_2048/282/7321a4f3f8aab5575867161aa9d350a9/282_b.jpg\",\"derived_id\":1683690889,\"derived_id_str\":\"1683690889\",\"down\":\"images/cube_2048/282/7321a4f3f8aab5575867161aa9d350a9/282_d.jpg\",\"front\":\"images/cube_2048/282/7321a4f3f8aab5575867161aa9d350a9/282_f.jpg\",\"index\":282,\"left\":\"images/cube_2048/282/7321a4f3f8aab5575867161aa9d350a9/282_l.jpg\",\"right\":\"images/cube_2048/282/7321a4f3f8aab5575867161aa9d350a9/282_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/282/7321a4f3f8aab5575867161aa9d350a9/282_u.jpg\"},{\"back\":\"images/cube_2048/283/2b15c3c8be87499e07a89c0a066ec458/283_b.jpg\",\"derived_id\":1683690936,\"derived_id_str\":\"1683690936\",\"down\":\"images/cube_2048/283/2b15c3c8be87499e07a89c0a066ec458/283_d.jpg\",\"front\":\"images/cube_2048/283/2b15c3c8be87499e07a89c0a066ec458/283_f.jpg\",\"index\":283,\"left\":\"images/cube_2048/283/2b15c3c8be87499e07a89c0a066ec458/283_l.jpg\",\"right\":\"images/cube_2048/283/2b15c3c8be87499e07a89c0a066ec458/283_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/283/2b15c3c8be87499e07a89c0a066ec458/283_u.jpg\"},{\"back\":\"images/cube_2048/284/2e6ee310961e55bb1d5917d1b8532c82/284_b.jpg\",\"derived_id\":1683691003,\"derived_id_str\":\"1683691003\",\"down\":\"images/cube_2048/284/2e6ee310961e55bb1d5917d1b8532c82/284_d.jpg\",\"front\":\"images/cube_2048/284/2e6ee310961e55bb1d5917d1b8532c82/284_f.jpg\",\"index\":284,\"left\":\"images/cube_2048/284/2e6ee310961e55bb1d5917d1b8532c82/284_l.jpg\",\"right\":\"images/cube_2048/284/2e6ee310961e55bb1d5917d1b8532c82/284_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/284/2e6ee310961e55bb1d5917d1b8532c82/284_u.jpg\"},{\"back\":\"images/cube_2048/285/22be313b17e41ed39c7fe690daa5df91/285_b.jpg\",\"derived_id\":1683691058,\"derived_id_str\":\"1683691058\",\"down\":\"images/cube_2048/285/22be313b17e41ed39c7fe690daa5df91/285_d.jpg\",\"front\":\"images/cube_2048/285/22be313b17e41ed39c7fe690daa5df91/285_f.jpg\",\"index\":285,\"left\":\"images/cube_2048/285/22be313b17e41ed39c7fe690daa5df91/285_l.jpg\",\"right\":\"images/cube_2048/285/22be313b17e41ed39c7fe690daa5df91/285_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/285/22be313b17e41ed39c7fe690daa5df91/285_u.jpg\"},{\"back\":\"images/cube_2048/286/7a50ea5991e6bce1f1e8e0fc6d95c900/286_b.jpg\",\"derived_id\":1683691104,\"derived_id_str\":\"1683691104\",\"down\":\"images/cube_2048/286/7a50ea5991e6bce1f1e8e0fc6d95c900/286_d.jpg\",\"front\":\"images/cube_2048/286/7a50ea5991e6bce1f1e8e0fc6d95c900/286_f.jpg\",\"index\":286,\"left\":\"images/cube_2048/286/7a50ea5991e6bce1f1e8e0fc6d95c900/286_l.jpg\",\"right\":\"images/cube_2048/286/7a50ea5991e6bce1f1e8e0fc6d95c900/286_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/286/7a50ea5991e6bce1f1e8e0fc6d95c900/286_u.jpg\"},{\"back\":\"images/cube_2048/287/a107de4167909a47c1e9b0b31575f068/287_b.jpg\",\"derived_id\":1683691183,\"derived_id_str\":\"1683691183\",\"down\":\"images/cube_2048/287/a107de4167909a47c1e9b0b31575f068/287_d.jpg\",\"front\":\"images/cube_2048/287/a107de4167909a47c1e9b0b31575f068/287_f.jpg\",\"index\":287,\"left\":\"images/cube_2048/287/a107de4167909a47c1e9b0b31575f068/287_l.jpg\",\"right\":\"images/cube_2048/287/a107de4167909a47c1e9b0b31575f068/287_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/287/a107de4167909a47c1e9b0b31575f068/287_u.jpg\"},{\"back\":\"images/cube_2048/288/6f93574101ba5c518ec267814207661a/288_b.jpg\",\"derived_id\":1683691255,\"derived_id_str\":\"1683691255\",\"down\":\"images/cube_2048/288/6f93574101ba5c518ec267814207661a/288_d.jpg\",\"front\":\"images/cube_2048/288/6f93574101ba5c518ec267814207661a/288_f.jpg\",\"index\":288,\"left\":\"images/cube_2048/288/6f93574101ba5c518ec267814207661a/288_l.jpg\",\"right\":\"images/cube_2048/288/6f93574101ba5c518ec267814207661a/288_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/288/6f93574101ba5c518ec267814207661a/288_u.jpg\"},{\"back\":\"images/cube_2048/289/990e8e8b0b66250fc3897027b1b64db0/289_b.jpg\",\"derived_id\":1683691305,\"derived_id_str\":\"1683691305\",\"down\":\"images/cube_2048/289/990e8e8b0b66250fc3897027b1b64db0/289_d.jpg\",\"front\":\"images/cube_2048/289/990e8e8b0b66250fc3897027b1b64db0/289_f.jpg\",\"index\":289,\"left\":\"images/cube_2048/289/990e8e8b0b66250fc3897027b1b64db0/289_l.jpg\",\"right\":\"images/cube_2048/289/990e8e8b0b66250fc3897027b1b64db0/289_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/289/990e8e8b0b66250fc3897027b1b64db0/289_u.jpg\"},{\"back\":\"images/cube_2048/290/05c13c37260baa610cbaaf7013ffd4b4/290_b.jpg\",\"derived_id\":1683691360,\"derived_id_str\":\"1683691360\",\"down\":\"images/cube_2048/290/05c13c37260baa610cbaaf7013ffd4b4/290_d.jpg\",\"front\":\"images/cube_2048/290/05c13c37260baa610cbaaf7013ffd4b4/290_f.jpg\",\"index\":290,\"left\":\"images/cube_2048/290/05c13c37260baa610cbaaf7013ffd4b4/290_l.jpg\",\"right\":\"images/cube_2048/290/05c13c37260baa610cbaaf7013ffd4b4/290_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/290/05c13c37260baa610cbaaf7013ffd4b4/290_u.jpg\"},{\"back\":\"images/cube_2048/291/85c9d481ad411b6c33df7e688d59c5b5/291_b.jpg\",\"derived_id\":1683691417,\"derived_id_str\":\"1683691417\",\"down\":\"images/cube_2048/291/85c9d481ad411b6c33df7e688d59c5b5/291_d.jpg\",\"front\":\"images/cube_2048/291/85c9d481ad411b6c33df7e688d59c5b5/291_f.jpg\",\"index\":291,\"left\":\"images/cube_2048/291/85c9d481ad411b6c33df7e688d59c5b5/291_l.jpg\",\"right\":\"images/cube_2048/291/85c9d481ad411b6c33df7e688d59c5b5/291_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/291/85c9d481ad411b6c33df7e688d59c5b5/291_u.jpg\"},{\"back\":\"images/cube_2048/292/ac0725277155715c729de80b3778f662/292_b.jpg\",\"derived_id\":1683691505,\"derived_id_str\":\"1683691505\",\"down\":\"images/cube_2048/292/ac0725277155715c729de80b3778f662/292_d.jpg\",\"front\":\"images/cube_2048/292/ac0725277155715c729de80b3778f662/292_f.jpg\",\"index\":292,\"left\":\"images/cube_2048/292/ac0725277155715c729de80b3778f662/292_l.jpg\",\"right\":\"images/cube_2048/292/ac0725277155715c729de80b3778f662/292_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/292/ac0725277155715c729de80b3778f662/292_u.jpg\"},{\"back\":\"images/cube_2048/293/4cc122c7e31c13316611e88abd53818d/293_b.jpg\",\"derived_id\":1683691552,\"derived_id_str\":\"1683691552\",\"down\":\"images/cube_2048/293/4cc122c7e31c13316611e88abd53818d/293_d.jpg\",\"front\":\"images/cube_2048/293/4cc122c7e31c13316611e88abd53818d/293_f.jpg\",\"index\":293,\"left\":\"images/cube_2048/293/4cc122c7e31c13316611e88abd53818d/293_l.jpg\",\"right\":\"images/cube_2048/293/4cc122c7e31c13316611e88abd53818d/293_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/293/4cc122c7e31c13316611e88abd53818d/293_u.jpg\"},{\"back\":\"images/cube_2048/294/30ece8e477cdbb585ddc0536b3b43338/294_b.jpg\",\"derived_id\":1683691767,\"derived_id_str\":\"1683691767\",\"down\":\"images/cube_2048/294/30ece8e477cdbb585ddc0536b3b43338/294_d.jpg\",\"front\":\"images/cube_2048/294/30ece8e477cdbb585ddc0536b3b43338/294_f.jpg\",\"index\":294,\"left\":\"images/cube_2048/294/30ece8e477cdbb585ddc0536b3b43338/294_l.jpg\",\"right\":\"images/cube_2048/294/30ece8e477cdbb585ddc0536b3b43338/294_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/294/30ece8e477cdbb585ddc0536b3b43338/294_u.jpg\"},{\"back\":\"images/cube_2048/295/f2766f521f5031b946cbc10a23b6786c/295_b.jpg\",\"derived_id\":1683692779,\"derived_id_str\":\"1683692779\",\"down\":\"images/cube_2048/295/f2766f521f5031b946cbc10a23b6786c/295_d.jpg\",\"front\":\"images/cube_2048/295/f2766f521f5031b946cbc10a23b6786c/295_f.jpg\",\"index\":295,\"left\":\"images/cube_2048/295/f2766f521f5031b946cbc10a23b6786c/295_l.jpg\",\"right\":\"images/cube_2048/295/f2766f521f5031b946cbc10a23b6786c/295_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/295/f2766f521f5031b946cbc10a23b6786c/295_u.jpg\"},{\"back\":\"images/cube_2048/296/efee55fb59be5161fea9cec6ec02f973/296_b.jpg\",\"derived_id\":1683692839,\"derived_id_str\":\"1683692839\",\"down\":\"images/cube_2048/296/efee55fb59be5161fea9cec6ec02f973/296_d.jpg\",\"front\":\"images/cube_2048/296/efee55fb59be5161fea9cec6ec02f973/296_f.jpg\",\"index\":296,\"left\":\"images/cube_2048/296/efee55fb59be5161fea9cec6ec02f973/296_l.jpg\",\"right\":\"images/cube_2048/296/efee55fb59be5161fea9cec6ec02f973/296_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/296/efee55fb59be5161fea9cec6ec02f973/296_u.jpg\"},{\"back\":\"images/cube_2048/297/a23a164d4b4746475fa50bfafdeb8b67/297_b.jpg\",\"derived_id\":1683692904,\"derived_id_str\":\"1683692904\",\"down\":\"images/cube_2048/297/a23a164d4b4746475fa50bfafdeb8b67/297_d.jpg\",\"front\":\"images/cube_2048/297/a23a164d4b4746475fa50bfafdeb8b67/297_f.jpg\",\"index\":297,\"left\":\"images/cube_2048/297/a23a164d4b4746475fa50bfafdeb8b67/297_l.jpg\",\"right\":\"images/cube_2048/297/a23a164d4b4746475fa50bfafdeb8b67/297_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/297/a23a164d4b4746475fa50bfafdeb8b67/297_u.jpg\"},{\"back\":\"images/cube_2048/298/fd95304ba7f46d86791173c5500a9a50/298_b.jpg\",\"derived_id\":1683692980,\"derived_id_str\":\"1683692980\",\"down\":\"images/cube_2048/298/fd95304ba7f46d86791173c5500a9a50/298_d.jpg\",\"front\":\"images/cube_2048/298/fd95304ba7f46d86791173c5500a9a50/298_f.jpg\",\"index\":298,\"left\":\"images/cube_2048/298/fd95304ba7f46d86791173c5500a9a50/298_l.jpg\",\"right\":\"images/cube_2048/298/fd95304ba7f46d86791173c5500a9a50/298_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/298/fd95304ba7f46d86791173c5500a9a50/298_u.jpg\"},{\"back\":\"images/cube_2048/299/0f05e0673c64aac66e4db00b35ed15f5/299_b.jpg\",\"derived_id\":1683693026,\"derived_id_str\":\"1683693026\",\"down\":\"images/cube_2048/299/0f05e0673c64aac66e4db00b35ed15f5/299_d.jpg\",\"front\":\"images/cube_2048/299/0f05e0673c64aac66e4db00b35ed15f5/299_f.jpg\",\"index\":299,\"left\":\"images/cube_2048/299/0f05e0673c64aac66e4db00b35ed15f5/299_l.jpg\",\"right\":\"images/cube_2048/299/0f05e0673c64aac66e4db00b35ed15f5/299_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/299/0f05e0673c64aac66e4db00b35ed15f5/299_u.jpg\"},{\"back\":\"images/cube_2048/300/0b131b13b571413003c2612780008355/300_b.jpg\",\"derived_id\":1683693078,\"derived_id_str\":\"1683693078\",\"down\":\"images/cube_2048/300/0b131b13b571413003c2612780008355/300_d.jpg\",\"front\":\"images/cube_2048/300/0b131b13b571413003c2612780008355/300_f.jpg\",\"index\":300,\"left\":\"images/cube_2048/300/0b131b13b571413003c2612780008355/300_l.jpg\",\"right\":\"images/cube_2048/300/0b131b13b571413003c2612780008355/300_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/300/0b131b13b571413003c2612780008355/300_u.jpg\"},{\"back\":\"images/cube_2048/301/bd9d89bb669a6983a7cc11998286b203/301_b.jpg\",\"derived_id\":1683693125,\"derived_id_str\":\"1683693125\",\"down\":\"images/cube_2048/301/bd9d89bb669a6983a7cc11998286b203/301_d.jpg\",\"front\":\"images/cube_2048/301/bd9d89bb669a6983a7cc11998286b203/301_f.jpg\",\"index\":301,\"left\":\"images/cube_2048/301/bd9d89bb669a6983a7cc11998286b203/301_l.jpg\",\"right\":\"images/cube_2048/301/bd9d89bb669a6983a7cc11998286b203/301_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/301/bd9d89bb669a6983a7cc11998286b203/301_u.jpg\"},{\"back\":\"images/cube_2048/302/7741745599ed00be0c5af02decc30f8c/302_b.jpg\",\"derived_id\":1683693172,\"derived_id_str\":\"1683693172\",\"down\":\"images/cube_2048/302/7741745599ed00be0c5af02decc30f8c/302_d.jpg\",\"front\":\"images/cube_2048/302/7741745599ed00be0c5af02decc30f8c/302_f.jpg\",\"index\":302,\"left\":\"images/cube_2048/302/7741745599ed00be0c5af02decc30f8c/302_l.jpg\",\"right\":\"images/cube_2048/302/7741745599ed00be0c5af02decc30f8c/302_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/302/7741745599ed00be0c5af02decc30f8c/302_u.jpg\"},{\"back\":\"images/cube_2048/303/afe550e2d3a79cb2b8b859a191923ac5/303_b.jpg\",\"derived_id\":1683693228,\"derived_id_str\":\"1683693228\",\"down\":\"images/cube_2048/303/afe550e2d3a79cb2b8b859a191923ac5/303_d.jpg\",\"front\":\"images/cube_2048/303/afe550e2d3a79cb2b8b859a191923ac5/303_f.jpg\",\"index\":303,\"left\":\"images/cube_2048/303/afe550e2d3a79cb2b8b859a191923ac5/303_l.jpg\",\"right\":\"images/cube_2048/303/afe550e2d3a79cb2b8b859a191923ac5/303_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/303/afe550e2d3a79cb2b8b859a191923ac5/303_u.jpg\"},{\"back\":\"images/cube_2048/304/646d0faec005b14523f54cc9c1f3c04d/304_b.jpg\",\"derived_id\":1683693349,\"derived_id_str\":\"1683693349\",\"down\":\"images/cube_2048/304/646d0faec005b14523f54cc9c1f3c04d/304_d.jpg\",\"front\":\"images/cube_2048/304/646d0faec005b14523f54cc9c1f3c04d/304_f.jpg\",\"index\":304,\"left\":\"images/cube_2048/304/646d0faec005b14523f54cc9c1f3c04d/304_l.jpg\",\"right\":\"images/cube_2048/304/646d0faec005b14523f54cc9c1f3c04d/304_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/304/646d0faec005b14523f54cc9c1f3c04d/304_u.jpg\"},{\"back\":\"images/cube_2048/305/a21a0652901c04c7ff5fb4daddaf7a9e/305_b.jpg\",\"derived_id\":1683693399,\"derived_id_str\":\"1683693399\",\"down\":\"images/cube_2048/305/a21a0652901c04c7ff5fb4daddaf7a9e/305_d.jpg\",\"front\":\"images/cube_2048/305/a21a0652901c04c7ff5fb4daddaf7a9e/305_f.jpg\",\"index\":305,\"left\":\"images/cube_2048/305/a21a0652901c04c7ff5fb4daddaf7a9e/305_l.jpg\",\"right\":\"images/cube_2048/305/a21a0652901c04c7ff5fb4daddaf7a9e/305_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/305/a21a0652901c04c7ff5fb4daddaf7a9e/305_u.jpg\"},{\"back\":\"images/cube_2048/306/ccea5133971fd45af96f552a504e9d34/306_b.jpg\",\"derived_id\":1683693456,\"derived_id_str\":\"1683693456\",\"down\":\"images/cube_2048/306/ccea5133971fd45af96f552a504e9d34/306_d.jpg\",\"front\":\"images/cube_2048/306/ccea5133971fd45af96f552a504e9d34/306_f.jpg\",\"index\":306,\"left\":\"images/cube_2048/306/ccea5133971fd45af96f552a504e9d34/306_l.jpg\",\"right\":\"images/cube_2048/306/ccea5133971fd45af96f552a504e9d34/306_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/306/ccea5133971fd45af96f552a504e9d34/306_u.jpg\"},{\"back\":\"images/cube_2048/307/ed069e51b99001dc50210de7a3a5a179/307_b.jpg\",\"derived_id\":1683693506,\"derived_id_str\":\"1683693506\",\"down\":\"images/cube_2048/307/ed069e51b99001dc50210de7a3a5a179/307_d.jpg\",\"front\":\"images/cube_2048/307/ed069e51b99001dc50210de7a3a5a179/307_f.jpg\",\"index\":307,\"left\":\"images/cube_2048/307/ed069e51b99001dc50210de7a3a5a179/307_l.jpg\",\"right\":\"images/cube_2048/307/ed069e51b99001dc50210de7a3a5a179/307_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/307/ed069e51b99001dc50210de7a3a5a179/307_u.jpg\"},{\"back\":\"images/cube_2048/308/0b2aa01a7923a96ef011b9113f0e9d00/308_b.jpg\",\"derived_id\":1683693625,\"derived_id_str\":\"1683693625\",\"down\":\"images/cube_2048/308/0b2aa01a7923a96ef011b9113f0e9d00/308_d.jpg\",\"front\":\"images/cube_2048/308/0b2aa01a7923a96ef011b9113f0e9d00/308_f.jpg\",\"index\":308,\"left\":\"images/cube_2048/308/0b2aa01a7923a96ef011b9113f0e9d00/308_l.jpg\",\"right\":\"images/cube_2048/308/0b2aa01a7923a96ef011b9113f0e9d00/308_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/308/0b2aa01a7923a96ef011b9113f0e9d00/308_u.jpg\"},{\"back\":\"images/cube_2048/309/18e9c0d01e9cbfb09bab90c8cb8943bd/309_b.jpg\",\"derived_id\":1683693681,\"derived_id_str\":\"1683693681\",\"down\":\"images/cube_2048/309/18e9c0d01e9cbfb09bab90c8cb8943bd/309_d.jpg\",\"front\":\"images/cube_2048/309/18e9c0d01e9cbfb09bab90c8cb8943bd/309_f.jpg\",\"index\":309,\"left\":\"images/cube_2048/309/18e9c0d01e9cbfb09bab90c8cb8943bd/309_l.jpg\",\"right\":\"images/cube_2048/309/18e9c0d01e9cbfb09bab90c8cb8943bd/309_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/309/18e9c0d01e9cbfb09bab90c8cb8943bd/309_u.jpg\"},{\"back\":\"images/cube_2048/310/bf9a6398dfe377554947402add19be81/310_b.jpg\",\"derived_id\":1683693748,\"derived_id_str\":\"1683693748\",\"down\":\"images/cube_2048/310/bf9a6398dfe377554947402add19be81/310_d.jpg\",\"front\":\"images/cube_2048/310/bf9a6398dfe377554947402add19be81/310_f.jpg\",\"index\":310,\"left\":\"images/cube_2048/310/bf9a6398dfe377554947402add19be81/310_l.jpg\",\"right\":\"images/cube_2048/310/bf9a6398dfe377554947402add19be81/310_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/310/bf9a6398dfe377554947402add19be81/310_u.jpg\"},{\"back\":\"images/cube_2048/311/70589656ec36e3084822aa2839c9b3ea/311_b.jpg\",\"derived_id\":1683693799,\"derived_id_str\":\"1683693799\",\"down\":\"images/cube_2048/311/70589656ec36e3084822aa2839c9b3ea/311_d.jpg\",\"front\":\"images/cube_2048/311/70589656ec36e3084822aa2839c9b3ea/311_f.jpg\",\"index\":311,\"left\":\"images/cube_2048/311/70589656ec36e3084822aa2839c9b3ea/311_l.jpg\",\"right\":\"images/cube_2048/311/70589656ec36e3084822aa2839c9b3ea/311_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/311/70589656ec36e3084822aa2839c9b3ea/311_u.jpg\"},{\"back\":\"images/cube_2048/312/0a0924d871594dab755e817810e8242c/312_b.jpg\",\"derived_id\":1683693851,\"derived_id_str\":\"1683693851\",\"down\":\"images/cube_2048/312/0a0924d871594dab755e817810e8242c/312_d.jpg\",\"front\":\"images/cube_2048/312/0a0924d871594dab755e817810e8242c/312_f.jpg\",\"index\":312,\"left\":\"images/cube_2048/312/0a0924d871594dab755e817810e8242c/312_l.jpg\",\"right\":\"images/cube_2048/312/0a0924d871594dab755e817810e8242c/312_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/312/0a0924d871594dab755e817810e8242c/312_u.jpg\"},{\"back\":\"images/cube_2048/313/4ad0fecf250a2fbb354b060ca74e7447/313_b.jpg\",\"derived_id\":1683693945,\"derived_id_str\":\"1683693945\",\"down\":\"images/cube_2048/313/4ad0fecf250a2fbb354b060ca74e7447/313_d.jpg\",\"front\":\"images/cube_2048/313/4ad0fecf250a2fbb354b060ca74e7447/313_f.jpg\",\"index\":313,\"left\":\"images/cube_2048/313/4ad0fecf250a2fbb354b060ca74e7447/313_l.jpg\",\"right\":\"images/cube_2048/313/4ad0fecf250a2fbb354b060ca74e7447/313_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/313/4ad0fecf250a2fbb354b060ca74e7447/313_u.jpg\"},{\"back\":\"images/cube_2048/314/4f0671859318c8bc8deb314a3d4e141c/314_b.jpg\",\"derived_id\":1683693995,\"derived_id_str\":\"1683693995\",\"down\":\"images/cube_2048/314/4f0671859318c8bc8deb314a3d4e141c/314_d.jpg\",\"front\":\"images/cube_2048/314/4f0671859318c8bc8deb314a3d4e141c/314_f.jpg\",\"index\":314,\"left\":\"images/cube_2048/314/4f0671859318c8bc8deb314a3d4e141c/314_l.jpg\",\"right\":\"images/cube_2048/314/4f0671859318c8bc8deb314a3d4e141c/314_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/314/4f0671859318c8bc8deb314a3d4e141c/314_u.jpg\"},{\"back\":\"images/cube_2048/315/08ddce39c3b924d8fee951dd198c84ae/315_b.jpg\",\"derived_id\":1683694046,\"derived_id_str\":\"1683694046\",\"down\":\"images/cube_2048/315/08ddce39c3b924d8fee951dd198c84ae/315_d.jpg\",\"front\":\"images/cube_2048/315/08ddce39c3b924d8fee951dd198c84ae/315_f.jpg\",\"index\":315,\"left\":\"images/cube_2048/315/08ddce39c3b924d8fee951dd198c84ae/315_l.jpg\",\"right\":\"images/cube_2048/315/08ddce39c3b924d8fee951dd198c84ae/315_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/315/08ddce39c3b924d8fee951dd198c84ae/315_u.jpg\"},{\"back\":\"images/cube_2048/316/21a0ddec4e4e3313311d7b593ea524c2/316_b.jpg\",\"derived_id\":1683694222,\"derived_id_str\":\"1683694222\",\"down\":\"images/cube_2048/316/21a0ddec4e4e3313311d7b593ea524c2/316_d.jpg\",\"front\":\"images/cube_2048/316/21a0ddec4e4e3313311d7b593ea524c2/316_f.jpg\",\"index\":316,\"left\":\"images/cube_2048/316/21a0ddec4e4e3313311d7b593ea524c2/316_l.jpg\",\"right\":\"images/cube_2048/316/21a0ddec4e4e3313311d7b593ea524c2/316_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/316/21a0ddec4e4e3313311d7b593ea524c2/316_u.jpg\"},{\"back\":\"images/cube_2048/317/bd71db4059a12389cf7273041822bc2c/317_b.jpg\",\"derived_id\":1683694289,\"derived_id_str\":\"1683694289\",\"down\":\"images/cube_2048/317/bd71db4059a12389cf7273041822bc2c/317_d.jpg\",\"front\":\"images/cube_2048/317/bd71db4059a12389cf7273041822bc2c/317_f.jpg\",\"index\":317,\"left\":\"images/cube_2048/317/bd71db4059a12389cf7273041822bc2c/317_l.jpg\",\"right\":\"images/cube_2048/317/bd71db4059a12389cf7273041822bc2c/317_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/317/bd71db4059a12389cf7273041822bc2c/317_u.jpg\"},{\"back\":\"images/cube_2048/318/e07fcf10dfdcf8f9674a5cfc2d58eea2/318_b.jpg\",\"derived_id\":1683694344,\"derived_id_str\":\"1683694344\",\"down\":\"images/cube_2048/318/e07fcf10dfdcf8f9674a5cfc2d58eea2/318_d.jpg\",\"front\":\"images/cube_2048/318/e07fcf10dfdcf8f9674a5cfc2d58eea2/318_f.jpg\",\"index\":318,\"left\":\"images/cube_2048/318/e07fcf10dfdcf8f9674a5cfc2d58eea2/318_l.jpg\",\"right\":\"images/cube_2048/318/e07fcf10dfdcf8f9674a5cfc2d58eea2/318_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/318/e07fcf10dfdcf8f9674a5cfc2d58eea2/318_u.jpg\"},{\"back\":\"images/cube_2048/319/d6b2cb0a14f0c7834de8014c497faf47/319_b.jpg\",\"derived_id\":1683694403,\"derived_id_str\":\"1683694403\",\"down\":\"images/cube_2048/319/d6b2cb0a14f0c7834de8014c497faf47/319_d.jpg\",\"front\":\"images/cube_2048/319/d6b2cb0a14f0c7834de8014c497faf47/319_f.jpg\",\"index\":319,\"left\":\"images/cube_2048/319/d6b2cb0a14f0c7834de8014c497faf47/319_l.jpg\",\"right\":\"images/cube_2048/319/d6b2cb0a14f0c7834de8014c497faf47/319_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/319/d6b2cb0a14f0c7834de8014c497faf47/319_u.jpg\"},{\"back\":\"images/cube_2048/320/a500031da182c7feedb3216b1021b41c/320_b.jpg\",\"derived_id\":1683694478,\"derived_id_str\":\"1683694478\",\"down\":\"images/cube_2048/320/a500031da182c7feedb3216b1021b41c/320_d.jpg\",\"front\":\"images/cube_2048/320/a500031da182c7feedb3216b1021b41c/320_f.jpg\",\"index\":320,\"left\":\"images/cube_2048/320/a500031da182c7feedb3216b1021b41c/320_l.jpg\",\"right\":\"images/cube_2048/320/a500031da182c7feedb3216b1021b41c/320_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/320/a500031da182c7feedb3216b1021b41c/320_u.jpg\"},{\"back\":\"images/cube_2048/321/5526a0d8fe10e40545831f2f746e3ba2/321_b.jpg\",\"derived_id\":1683694531,\"derived_id_str\":\"1683694531\",\"down\":\"images/cube_2048/321/5526a0d8fe10e40545831f2f746e3ba2/321_d.jpg\",\"front\":\"images/cube_2048/321/5526a0d8fe10e40545831f2f746e3ba2/321_f.jpg\",\"index\":321,\"left\":\"images/cube_2048/321/5526a0d8fe10e40545831f2f746e3ba2/321_l.jpg\",\"right\":\"images/cube_2048/321/5526a0d8fe10e40545831f2f746e3ba2/321_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/321/5526a0d8fe10e40545831f2f746e3ba2/321_u.jpg\"},{\"back\":\"images/cube_2048/322/ffbfe66af8b216dbb3020f724a9e6bfc/322_b.jpg\",\"derived_id\":1683694583,\"derived_id_str\":\"1683694583\",\"down\":\"images/cube_2048/322/ffbfe66af8b216dbb3020f724a9e6bfc/322_d.jpg\",\"front\":\"images/cube_2048/322/ffbfe66af8b216dbb3020f724a9e6bfc/322_f.jpg\",\"index\":322,\"left\":\"images/cube_2048/322/ffbfe66af8b216dbb3020f724a9e6bfc/322_l.jpg\",\"right\":\"images/cube_2048/322/ffbfe66af8b216dbb3020f724a9e6bfc/322_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/322/ffbfe66af8b216dbb3020f724a9e6bfc/322_u.jpg\"},{\"back\":\"images/cube_2048/323/26e4805d82b273a8ba3790ea71cb17e8/323_b.jpg\",\"derived_id\":1683694662,\"derived_id_str\":\"1683694662\",\"down\":\"images/cube_2048/323/26e4805d82b273a8ba3790ea71cb17e8/323_d.jpg\",\"front\":\"images/cube_2048/323/26e4805d82b273a8ba3790ea71cb17e8/323_f.jpg\",\"index\":323,\"left\":\"images/cube_2048/323/26e4805d82b273a8ba3790ea71cb17e8/323_l.jpg\",\"right\":\"images/cube_2048/323/26e4805d82b273a8ba3790ea71cb17e8/323_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/323/26e4805d82b273a8ba3790ea71cb17e8/323_u.jpg\"},{\"back\":\"images/cube_2048/324/02e0d4c591c7003df768fbc274352632/324_b.jpg\",\"derived_id\":1683694721,\"derived_id_str\":\"1683694721\",\"down\":\"images/cube_2048/324/02e0d4c591c7003df768fbc274352632/324_d.jpg\",\"front\":\"images/cube_2048/324/02e0d4c591c7003df768fbc274352632/324_f.jpg\",\"index\":324,\"left\":\"images/cube_2048/324/02e0d4c591c7003df768fbc274352632/324_l.jpg\",\"right\":\"images/cube_2048/324/02e0d4c591c7003df768fbc274352632/324_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/324/02e0d4c591c7003df768fbc274352632/324_u.jpg\"},{\"back\":\"images/cube_2048/325/63c582e32604bb262b20853176c5360e/325_b.jpg\",\"derived_id\":1683694974,\"derived_id_str\":\"1683694974\",\"down\":\"images/cube_2048/325/63c582e32604bb262b20853176c5360e/325_d.jpg\",\"front\":\"images/cube_2048/325/63c582e32604bb262b20853176c5360e/325_f.jpg\",\"index\":325,\"left\":\"images/cube_2048/325/63c582e32604bb262b20853176c5360e/325_l.jpg\",\"right\":\"images/cube_2048/325/63c582e32604bb262b20853176c5360e/325_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/325/63c582e32604bb262b20853176c5360e/325_u.jpg\"},{\"back\":\"images/cube_2048/326/118c821bc920f9a25cdf561806d3b27e/326_b.jpg\",\"derived_id\":1683695027,\"derived_id_str\":\"1683695027\",\"down\":\"images/cube_2048/326/118c821bc920f9a25cdf561806d3b27e/326_d.jpg\",\"front\":\"images/cube_2048/326/118c821bc920f9a25cdf561806d3b27e/326_f.jpg\",\"index\":326,\"left\":\"images/cube_2048/326/118c821bc920f9a25cdf561806d3b27e/326_l.jpg\",\"right\":\"images/cube_2048/326/118c821bc920f9a25cdf561806d3b27e/326_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/326/118c821bc920f9a25cdf561806d3b27e/326_u.jpg\"},{\"back\":\"images/cube_2048/327/a68bee6b215005790c2fa7749aad3c8a/327_b.jpg\",\"derived_id\":1683695086,\"derived_id_str\":\"1683695086\",\"down\":\"images/cube_2048/327/a68bee6b215005790c2fa7749aad3c8a/327_d.jpg\",\"front\":\"images/cube_2048/327/a68bee6b215005790c2fa7749aad3c8a/327_f.jpg\",\"index\":327,\"left\":\"images/cube_2048/327/a68bee6b215005790c2fa7749aad3c8a/327_l.jpg\",\"right\":\"images/cube_2048/327/a68bee6b215005790c2fa7749aad3c8a/327_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/327/a68bee6b215005790c2fa7749aad3c8a/327_u.jpg\"},{\"back\":\"images/cube_2048/328/34d9d1ee6cfac93e51cbbe7cf868d2c8/328_b.jpg\",\"derived_id\":1683695137,\"derived_id_str\":\"1683695137\",\"down\":\"images/cube_2048/328/34d9d1ee6cfac93e51cbbe7cf868d2c8/328_d.jpg\",\"front\":\"images/cube_2048/328/34d9d1ee6cfac93e51cbbe7cf868d2c8/328_f.jpg\",\"index\":328,\"left\":\"images/cube_2048/328/34d9d1ee6cfac93e51cbbe7cf868d2c8/328_l.jpg\",\"right\":\"images/cube_2048/328/34d9d1ee6cfac93e51cbbe7cf868d2c8/328_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/328/34d9d1ee6cfac93e51cbbe7cf868d2c8/328_u.jpg\"},{\"back\":\"images/cube_2048/329/71bf2ca1353d1198206978a418ef497c/329_b.jpg\",\"derived_id\":1683695195,\"derived_id_str\":\"1683695195\",\"down\":\"images/cube_2048/329/71bf2ca1353d1198206978a418ef497c/329_d.jpg\",\"front\":\"images/cube_2048/329/71bf2ca1353d1198206978a418ef497c/329_f.jpg\",\"index\":329,\"left\":\"images/cube_2048/329/71bf2ca1353d1198206978a418ef497c/329_l.jpg\",\"right\":\"images/cube_2048/329/71bf2ca1353d1198206978a418ef497c/329_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/329/71bf2ca1353d1198206978a418ef497c/329_u.jpg\"},{\"back\":\"images/cube_2048/330/20a7a20c4c63939ee52d19e8691026ac/330_b.jpg\",\"derived_id\":1683695252,\"derived_id_str\":\"1683695252\",\"down\":\"images/cube_2048/330/20a7a20c4c63939ee52d19e8691026ac/330_d.jpg\",\"front\":\"images/cube_2048/330/20a7a20c4c63939ee52d19e8691026ac/330_f.jpg\",\"index\":330,\"left\":\"images/cube_2048/330/20a7a20c4c63939ee52d19e8691026ac/330_l.jpg\",\"right\":\"images/cube_2048/330/20a7a20c4c63939ee52d19e8691026ac/330_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/330/20a7a20c4c63939ee52d19e8691026ac/330_u.jpg\"},{\"back\":\"images/cube_2048/331/0cf00bc104aa521494626850e09ecacf/331_b.jpg\",\"derived_id\":1683695317,\"derived_id_str\":\"1683695317\",\"down\":\"images/cube_2048/331/0cf00bc104aa521494626850e09ecacf/331_d.jpg\",\"front\":\"images/cube_2048/331/0cf00bc104aa521494626850e09ecacf/331_f.jpg\",\"index\":331,\"left\":\"images/cube_2048/331/0cf00bc104aa521494626850e09ecacf/331_l.jpg\",\"right\":\"images/cube_2048/331/0cf00bc104aa521494626850e09ecacf/331_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/331/0cf00bc104aa521494626850e09ecacf/331_u.jpg\"},{\"back\":\"images/cube_2048/332/7a2afe0e5f536305b77537f575643742/332_b.jpg\",\"derived_id\":1683695369,\"derived_id_str\":\"1683695369\",\"down\":\"images/cube_2048/332/7a2afe0e5f536305b77537f575643742/332_d.jpg\",\"front\":\"images/cube_2048/332/7a2afe0e5f536305b77537f575643742/332_f.jpg\",\"index\":332,\"left\":\"images/cube_2048/332/7a2afe0e5f536305b77537f575643742/332_l.jpg\",\"right\":\"images/cube_2048/332/7a2afe0e5f536305b77537f575643742/332_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/332/7a2afe0e5f536305b77537f575643742/332_u.jpg\"},{\"back\":\"images/cube_2048/333/9a35261fc6bded16fec8e0a10854fb92/333_b.jpg\",\"derived_id\":1683695496,\"derived_id_str\":\"1683695496\",\"down\":\"images/cube_2048/333/9a35261fc6bded16fec8e0a10854fb92/333_d.jpg\",\"front\":\"images/cube_2048/333/9a35261fc6bded16fec8e0a10854fb92/333_f.jpg\",\"index\":333,\"left\":\"images/cube_2048/333/9a35261fc6bded16fec8e0a10854fb92/333_l.jpg\",\"right\":\"images/cube_2048/333/9a35261fc6bded16fec8e0a10854fb92/333_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/333/9a35261fc6bded16fec8e0a10854fb92/333_u.jpg\"},{\"back\":\"images/cube_2048/334/7aee81a1a4fda2a15856db3d0f29f66e/334_b.jpg\",\"derived_id\":1683695622,\"derived_id_str\":\"1683695622\",\"down\":\"images/cube_2048/334/7aee81a1a4fda2a15856db3d0f29f66e/334_d.jpg\",\"front\":\"images/cube_2048/334/7aee81a1a4fda2a15856db3d0f29f66e/334_f.jpg\",\"index\":334,\"left\":\"images/cube_2048/334/7aee81a1a4fda2a15856db3d0f29f66e/334_l.jpg\",\"right\":\"images/cube_2048/334/7aee81a1a4fda2a15856db3d0f29f66e/334_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/334/7aee81a1a4fda2a15856db3d0f29f66e/334_u.jpg\"},{\"back\":\"images/cube_2048/335/bf6809c28596db0c5c5c4d352e94c42e/335_b.jpg\",\"derived_id\":1683695685,\"derived_id_str\":\"1683695685\",\"down\":\"images/cube_2048/335/bf6809c28596db0c5c5c4d352e94c42e/335_d.jpg\",\"front\":\"images/cube_2048/335/bf6809c28596db0c5c5c4d352e94c42e/335_f.jpg\",\"index\":335,\"left\":\"images/cube_2048/335/bf6809c28596db0c5c5c4d352e94c42e/335_l.jpg\",\"right\":\"images/cube_2048/335/bf6809c28596db0c5c5c4d352e94c42e/335_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/335/bf6809c28596db0c5c5c4d352e94c42e/335_u.jpg\"},{\"back\":\"images/cube_2048/336/8e9b48c5de97aa558f6de9eb0d519424/336_b.jpg\",\"derived_id\":1683695793,\"derived_id_str\":\"1683695793\",\"down\":\"images/cube_2048/336/8e9b48c5de97aa558f6de9eb0d519424/336_d.jpg\",\"front\":\"images/cube_2048/336/8e9b48c5de97aa558f6de9eb0d519424/336_f.jpg\",\"index\":336,\"left\":\"images/cube_2048/336/8e9b48c5de97aa558f6de9eb0d519424/336_l.jpg\",\"right\":\"images/cube_2048/336/8e9b48c5de97aa558f6de9eb0d519424/336_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/336/8e9b48c5de97aa558f6de9eb0d519424/336_u.jpg\"},{\"back\":\"images/cube_2048/337/c75e742a5a6dee6f9aed5fac2a8ef153/337_b.jpg\",\"derived_id\":1683695881,\"derived_id_str\":\"1683695881\",\"down\":\"images/cube_2048/337/c75e742a5a6dee6f9aed5fac2a8ef153/337_d.jpg\",\"front\":\"images/cube_2048/337/c75e742a5a6dee6f9aed5fac2a8ef153/337_f.jpg\",\"index\":337,\"left\":\"images/cube_2048/337/c75e742a5a6dee6f9aed5fac2a8ef153/337_l.jpg\",\"right\":\"images/cube_2048/337/c75e742a5a6dee6f9aed5fac2a8ef153/337_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/337/c75e742a5a6dee6f9aed5fac2a8ef153/337_u.jpg\"},{\"back\":\"images/cube_2048/338/676f257dd167ecaff6bb8590370a5d3e/338_b.jpg\",\"derived_id\":1683695980,\"derived_id_str\":\"1683695980\",\"down\":\"images/cube_2048/338/676f257dd167ecaff6bb8590370a5d3e/338_d.jpg\",\"front\":\"images/cube_2048/338/676f257dd167ecaff6bb8590370a5d3e/338_f.jpg\",\"index\":338,\"left\":\"images/cube_2048/338/676f257dd167ecaff6bb8590370a5d3e/338_l.jpg\",\"right\":\"images/cube_2048/338/676f257dd167ecaff6bb8590370a5d3e/338_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/338/676f257dd167ecaff6bb8590370a5d3e/338_u.jpg\"},{\"back\":\"images/cube_2048/339/e062b75e0f857473bbfe7cfe3cfd8a20/339_b.jpg\",\"derived_id\":1683696031,\"derived_id_str\":\"1683696031\",\"down\":\"images/cube_2048/339/e062b75e0f857473bbfe7cfe3cfd8a20/339_d.jpg\",\"front\":\"images/cube_2048/339/e062b75e0f857473bbfe7cfe3cfd8a20/339_f.jpg\",\"index\":339,\"left\":\"images/cube_2048/339/e062b75e0f857473bbfe7cfe3cfd8a20/339_l.jpg\",\"right\":\"images/cube_2048/339/e062b75e0f857473bbfe7cfe3cfd8a20/339_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/339/e062b75e0f857473bbfe7cfe3cfd8a20/339_u.jpg\"},{\"back\":\"images/cube_2048/340/2a4b12559b57b4c9dcb761e9a8699134/340_b.jpg\",\"derived_id\":1683696154,\"derived_id_str\":\"1683696154\",\"down\":\"images/cube_2048/340/2a4b12559b57b4c9dcb761e9a8699134/340_d.jpg\",\"front\":\"images/cube_2048/340/2a4b12559b57b4c9dcb761e9a8699134/340_f.jpg\",\"index\":340,\"left\":\"images/cube_2048/340/2a4b12559b57b4c9dcb761e9a8699134/340_l.jpg\",\"right\":\"images/cube_2048/340/2a4b12559b57b4c9dcb761e9a8699134/340_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/340/2a4b12559b57b4c9dcb761e9a8699134/340_u.jpg\"},{\"back\":\"images/cube_2048/341/b7370a4c01ea107513aee8ead8875c54/341_b.jpg\",\"derived_id\":1683696210,\"derived_id_str\":\"1683696210\",\"down\":\"images/cube_2048/341/b7370a4c01ea107513aee8ead8875c54/341_d.jpg\",\"front\":\"images/cube_2048/341/b7370a4c01ea107513aee8ead8875c54/341_f.jpg\",\"index\":341,\"left\":\"images/cube_2048/341/b7370a4c01ea107513aee8ead8875c54/341_l.jpg\",\"right\":\"images/cube_2048/341/b7370a4c01ea107513aee8ead8875c54/341_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/341/b7370a4c01ea107513aee8ead8875c54/341_u.jpg\"},{\"back\":\"images/cube_2048/342/1a4c731300d69e00b7ed7e14d9e4599e/342_b.jpg\",\"derived_id\":1683696317,\"derived_id_str\":\"1683696317\",\"down\":\"images/cube_2048/342/1a4c731300d69e00b7ed7e14d9e4599e/342_d.jpg\",\"front\":\"images/cube_2048/342/1a4c731300d69e00b7ed7e14d9e4599e/342_f.jpg\",\"index\":342,\"left\":\"images/cube_2048/342/1a4c731300d69e00b7ed7e14d9e4599e/342_l.jpg\",\"right\":\"images/cube_2048/342/1a4c731300d69e00b7ed7e14d9e4599e/342_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/342/1a4c731300d69e00b7ed7e14d9e4599e/342_u.jpg\"},{\"back\":\"images/cube_2048/343/95cdee7f6d16e9fcca112687d960e058/343_b.jpg\",\"derived_id\":1683707262,\"derived_id_str\":\"1683707262\",\"down\":\"images/cube_2048/343/95cdee7f6d16e9fcca112687d960e058/343_d.jpg\",\"front\":\"images/cube_2048/343/95cdee7f6d16e9fcca112687d960e058/343_f.jpg\",\"index\":343,\"left\":\"images/cube_2048/343/95cdee7f6d16e9fcca112687d960e058/343_l.jpg\",\"right\":\"images/cube_2048/343/95cdee7f6d16e9fcca112687d960e058/343_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/343/95cdee7f6d16e9fcca112687d960e058/343_u.jpg\"},{\"back\":\"images/cube_2048/344/5b7d06450acce0cb47074da282d29dd8/344_b.jpg\",\"derived_id\":1683707393,\"derived_id_str\":\"1683707393\",\"down\":\"images/cube_2048/344/5b7d06450acce0cb47074da282d29dd8/344_d.jpg\",\"front\":\"images/cube_2048/344/5b7d06450acce0cb47074da282d29dd8/344_f.jpg\",\"index\":344,\"left\":\"images/cube_2048/344/5b7d06450acce0cb47074da282d29dd8/344_l.jpg\",\"right\":\"images/cube_2048/344/5b7d06450acce0cb47074da282d29dd8/344_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/344/5b7d06450acce0cb47074da282d29dd8/344_u.jpg\"},{\"back\":\"images/cube_2048/345/702db5c2ac6fbf73d9979a34e182a18d/345_b.jpg\",\"derived_id\":1683707457,\"derived_id_str\":\"1683707457\",\"down\":\"images/cube_2048/345/702db5c2ac6fbf73d9979a34e182a18d/345_d.jpg\",\"front\":\"images/cube_2048/345/702db5c2ac6fbf73d9979a34e182a18d/345_f.jpg\",\"index\":345,\"left\":\"images/cube_2048/345/702db5c2ac6fbf73d9979a34e182a18d/345_l.jpg\",\"right\":\"images/cube_2048/345/702db5c2ac6fbf73d9979a34e182a18d/345_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/345/702db5c2ac6fbf73d9979a34e182a18d/345_u.jpg\"}]},\"picture_url\":\"http://vrlab-public.ljcdn.com/release/screenshot/auto3d-light-vEY8ZpGAj0dV7R9K-copy/e29ec44ea241f57161a2aab89ddc0a37/1683686156_47/pc0_I0JwY0Uo6.jpg\",\"project_id\":\"auto3d-light-vEY8ZpGAj0dV7R9K-copy\",\"resource_code\":\"8oevE2A7l9TLd3Xs7D\",\"title_picture_url\":\"http://vrlab-public.ljcdn.com/release/screenshot/auto3d-light-vEY8ZpGAj0dV7R9K-copy/e29ec44ea241f57161a2aab89ddc0a37/1683686156_47/pc1_NcfoM084l.jpg\"}" \ No newline at end of file diff --git a/open-works/real/Vpvvo60O/work.json b/open-works/real/Vpvvo60O/work.json new file mode 100644 index 000000000..d2e49c545 --- /dev/null +++ b/open-works/real/Vpvvo60O/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"m69yxVsx1GkUD6PB1H+fUHZFP4OEFyzkN6KEDr4FMbPkjQOs3QkRaETb8xcaSWvwc9gS8uc+KewNHNuFD1D6tE7hA7FCfR9S9ZBvcsuEfF7WYNEGdd9MMHD6clOmmNv9ncTvkuf6oj136n/R1VdtXHwXf5kE7kV/rCsLHzk9ahM=\",\"allow_hosts\":[\"share.3dvr.pro\",\"rsvr.cn\",\"realsee.com\",\"realsee.cn\",\"rushivr.cn\",\"rushivr.com\"],\"base_url\":\"https://vr-public.realsee-cdn.cn/release/auto3dhd/935c1f75ec30cfd3edbf1332b6c1370d/\",\"basic_code\":\"80V07p9b8gE4X3ogrm\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2023-12-13 23:29:59\",\"expire_at\":\"1718865957065\",\"from_type\":\"vr\",\"initial\":{\"derivedId\":1702361990,\"distance\":0,\"fov\":93,\"heading\":0,\"latitude\":-0.011005265744017546,\"longitude\":0.0022062837528933343,\"mode\":\"Panorama\",\"offset\":{\"x\":10.3439092285,\"y\":-0.4288075163,\"z\":23.8841704061},\"panoIndex\":269,\"pano_index\":269,\"workCode\":\"goQ54pkOPWsJ2RKuMomesh_logic_mosaic\"},\"is_active\":true,\"model\":{\"file_url\":\"model/060a2e4447ca9d1b159cc654d548038f/auto3d-light-XlDNZQLwNYrVAgxK.at3d\",\"layers\":[],\"material_base_url\":\"materials/060a2e4447ca9d1b159cc654d548038f/\",\"material_textures\":[\"texture_0.jpg\",\"texture_1.jpg\",\"texture_2.jpg\",\"texture_3.jpg\",\"texture_4.jpg\",\"texture_5.jpg\",\"texture_6.jpg\",\"texture_7.jpg\",\"texture_8.jpg\",\"texture_9.jpg\",\"texture_10.jpg\",\"texture_11.jpg\",\"texture_12.jpg\",\"texture_13.jpg\"],\"tiles\":{},\"type\":0},\"name\":\"女讲解员(点击讲解员打开音频)\",\"observers\":[{\"accessible_nodes\":[1,2,3,4,5,6,7,8,9,26,27,28,29,30,31,37,195,196,197,198,199,200,201,202,203,238,239,240,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":0,\"offset_point_count\":0,\"position\":[0.0285707533,0.0113218159,0.378432052],\"quaternion\":{\"w\":-0.01573970790885323,\"x\":-0.017232731742078723,\"y\":-0.9996154560879899,\"z\":0.014974462213279867},\"standing_position\":[0.0285707533,-1.2411415248592774,0.378432052],\"visible_nodes\":[1,2,3,4,5,6,7,8,9,26,27,28,29,30,31,37,195,196,197,198,199,200,201,202,203,238,239,240,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,2,3,4,5,6,7,34,35,36,37,195,196,197,198,199,200,201,202,203,204,205,206,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":1,\"offset_point_count\":0,\"position\":[3.3170068381,0.0143699511,0.3837935703],\"quaternion\":{\"w\":0.27162837363393566,\"x\":-0.015600441385600577,\"y\":-0.9622086374976063,\"z\":0.011366213208647613},\"standing_position\":[3.3170068381,-1.2513655559114136,0.3837935703],\"visible_nodes\":[0,2,3,4,5,6,7,34,35,36,37,195,196,197,198,199,200,201,202,203,204,205,206,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,3,4,5,6,7,195,196,197,198,199,200,201,202,203,204,205,206,207,208,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":2,\"offset_point_count\":0,\"position\":[7.0046588634,0.0036775756,0.546447037],\"quaternion\":{\"w\":-0.7084382132967362,\"x\":-0.012888943484828948,\"y\":-0.7056497443491353,\"z\":-0.0027588762209438534},\"standing_position\":[7.0046588634,-1.2899383616329712,0.546447037],\"visible_nodes\":[0,1,3,4,5,6,7,195,196,197,198,199,200,201,202,203,204,205,206,207,208,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,4,5,6,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":3,\"offset_point_count\":0,\"position\":[11.1155235129,0.0006211301,0.5687175651],\"quaternion\":{\"w\":-0.7062499281872341,\"x\":-0.012194401763212572,\"y\":-0.7077578951873303,\"z\":-0.011878439268804972},\"standing_position\":[11.1155235129,-1.3030378321497558,0.5687175651],\"visible_nodes\":[0,1,2,4,5,6,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,5,6,7,38,39,40,195,196,197,198,200,201,202,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307],\"floor_index\":0,\"index\":4,\"offset_point_count\":0,\"position\":[-3.441630257,0.0226429235,0.3791978672],\"quaternion\":{\"w\":0.6982984147943622,\"x\":-0.007540124078486335,\"y\":-0.7156983351769095,\"z\":0.009917836539672126},\"standing_position\":[-3.441630257,-1.2470040787201537,0.3791978672],\"visible_nodes\":[0,1,2,3,5,6,7,38,39,40,195,196,197,198,200,201,202,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307]},{\"accessible_nodes\":[0,1,2,3,4,6,7,8,26,38,39,40,195,196,197,198,199,200,201,202,203,238,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307],\"floor_index\":0,\"index\":5,\"offset_point_count\":0,\"position\":[-2.2137535478,0.0214939033,0.459659943],\"quaternion\":{\"w\":0.7179058863849382,\"x\":-0.010744425531856682,\"y\":-0.6958865067128404,\"z\":0.015416400370623981},\"standing_position\":[-2.2137535478,-1.250014909604358,0.459659943],\"visible_nodes\":[0,1,2,3,4,6,7,8,26,38,39,40,195,196,197,198,199,200,201,202,203,238,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307]},{\"accessible_nodes\":[0,1,2,3,4,5,7,195,196,197,198,200,201,202,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307],\"floor_index\":0,\"index\":6,\"offset_point_count\":0,\"position\":[-3.7078033271,0.0349383722,1.5828116716],\"quaternion\":{\"w\":-0.9999087292223225,\"x\":-0.0005215056732283595,\"y\":0.00832227678067388,\"z\":-0.010630191425838298},\"standing_position\":[-3.7078033271,-1.218005381996167,1.5828116716],\"visible_nodes\":[0,1,2,3,4,5,7,195,196,197,198,200,201,202,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307]},{\"accessible_nodes\":[0,1,2,4,5,6,195,196,200,201,291,292,293,294,295,296,297,298,299,300,301,302,303,306],\"floor_index\":0,\"index\":7,\"offset_point_count\":0,\"position\":[-4.8151572078,0.04355611,1.672700398],\"quaternion\":{\"w\":-0.9999105116959217,\"x\":0.0005357872966965274,\"y\":-0.0026615200999199526,\"z\":-0.0130995358552479},\"standing_position\":[-4.8151572078,-1.2463741144186402,1.672700398],\"visible_nodes\":[0,1,2,4,5,6,195,196,200,201,291,292,293,294,295,296,297,298,299,300,301,302,303,306]},{\"accessible_nodes\":[0,5,9,23,24,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,294,295,296,297,298,299,302,303],\"floor_index\":0,\"index\":8,\"offset_point_count\":0,\"position\":[-0.1891659045,0.0763865011,4.3866044985],\"quaternion\":{\"w\":0.0016328760970864386,\"x\":-0.016536001253602738,\"y\":-0.9997468748013169,\"z\":0.015168412207353816},\"standing_position\":[-0.1891659045,-1.2202202779985107,4.3866044985],\"visible_nodes\":[0,5,9,23,24,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,294,295,296,297,298,299,302,303]},{\"accessible_nodes\":[0,8,12,14,15,16,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,296,297,298,302,304],\"floor_index\":0,\"index\":9,\"offset_point_count\":0,\"position\":[-0.2081491153,0.0969320923,7.2084931471],\"quaternion\":{\"w\":-0.6738240646205449,\"x\":-0.01925296700399982,\"y\":-0.7386380562562425,\"z\":-0.002067616354267727},\"standing_position\":[-0.2081491153,-1.2070325225681642,7.2084931471],\"visible_nodes\":[0,8,12,14,15,16,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,296,297,298,302,304]},{\"accessible_nodes\":[11,12,13,14,15,16,17,18,20,22,23,24,241,304],\"floor_index\":0,\"index\":10,\"offset_point_count\":0,\"position\":[5.5287861378,0.0402335128,4.3686380618],\"quaternion\":{\"w\":0.3467548222522421,\"x\":-0.02020228908572327,\"y\":-0.9376726577676241,\"z\":0.011088175136462958},\"standing_position\":[5.5287861378,-1.2161900797674439,4.3686380618],\"visible_nodes\":[11,12,13,14,15,16,17,18,20,22,23,24,241,304]},{\"accessible_nodes\":[10,12,13,14,15,16,17,18,20,22,23,24,241,304],\"floor_index\":0,\"index\":11,\"offset_point_count\":0,\"position\":[4.9168461078,0.0465903377,5.603433607],\"quaternion\":{\"w\":0.7294778521695534,\"x\":-0.012459345158252208,\"y\":-0.6837369975546154,\"z\":0.01451020602290514},\"standing_position\":[4.9168461078,-1.1946267986830565,5.603433607],\"visible_nodes\":[10,12,13,14,15,16,17,18,20,22,23,24,241,304]},{\"accessible_nodes\":[9,10,11,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,239,304,305],\"floor_index\":0,\"index\":12,\"offset_point_count\":0,\"position\":[10.2569593736,0.0158634441,7.353308996],\"quaternion\":{\"w\":0.006239917400771895,\"x\":-0.018585260204406973,\"y\":-0.9997903376458486,\"z\":0.005910354278792085},\"standing_position\":[10.2569593736,-1.293423150290869,7.353308996],\"visible_nodes\":[9,10,11,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,239,304,305]},{\"accessible_nodes\":[10,11,12,14,15,16,17,18,19,20,22,24,25,26,34,35,36,238,239,240,269,304,305],\"floor_index\":0,\"index\":13,\"offset_point_count\":0,\"position\":[10.3656808649,0.0182202959,10.042743991],\"quaternion\":{\"w\":-0.029939241810199545,\"x\":-0.02100319657331775,\"y\":-0.9993258693614411,\"z\":0.0032115975613149273},\"standing_position\":[10.3656808649,-1.248423466688501,10.042743991],\"visible_nodes\":[10,11,12,14,15,16,17,18,19,20,22,24,25,26,34,35,36,238,239,240,269,304,305]},{\"accessible_nodes\":[9,10,11,12,13,15,16,17,18,19,20,22,23,24,26,27,28,29,30,31,32,33,34,239,241,304],\"floor_index\":0,\"index\":14,\"offset_point_count\":0,\"position\":[7.7570754982,0.0263296863,7.3531649647],\"quaternion\":{\"w\":0.7275630892290044,\"x\":-0.013673387191268968,\"y\":-0.6858240824912756,\"z\":0.010503214539847676},\"standing_position\":[7.7570754982,-1.2632261017401611,7.3531649647],\"visible_nodes\":[9,10,11,12,13,15,16,17,18,19,20,22,23,24,26,27,28,29,30,31,32,33,34,239,241,304]},{\"accessible_nodes\":[9,10,11,12,13,14,16,17,18,19,20,22,23,24,26,27,28,29,30,31,32,33,34,35,238,239,240,241,304],\"floor_index\":0,\"index\":15,\"offset_point_count\":0,\"position\":[5.4802450228,0.046947537,7.3507442038],\"quaternion\":{\"w\":0.7180022305209676,\"x\":-0.015346104100970304,\"y\":-0.6957113841241926,\"z\":0.014931981152037062},\"standing_position\":[5.4802450228,-1.2555441278864745,7.3507442038],\"visible_nodes\":[9,10,11,12,13,14,16,17,18,19,20,22,23,24,26,27,28,29,30,31,32,33,34,35,238,239,240,241,304]},{\"accessible_nodes\":[9,10,11,12,13,14,15,17,18,19,20,22,24,26,27,28,29,239,304],\"floor_index\":0,\"index\":16,\"offset_point_count\":0,\"position\":[13.0190699261,0.0048739887,7.2741637637],\"quaternion\":{\"w\":-0.6748433343318033,\"x\":-0.014147976911486768,\"y\":-0.737764089191118,\"z\":-0.009510917484060716},\"standing_position\":[13.0190699261,-1.2931621097802246,7.2741637637],\"visible_nodes\":[9,10,11,12,13,14,15,17,18,19,20,22,24,26,27,28,29,239,304]},{\"accessible_nodes\":[10,11,12,13,14,15,16,18,19,20,26,27,304],\"floor_index\":0,\"index\":17,\"offset_point_count\":0,\"position\":[15.7698592822,0.002760945,7.3015231395],\"quaternion\":{\"w\":-0.6842284374766208,\"x\":-0.012410108381935838,\"y\":-0.7291302578929227,\"z\":-0.006819204828186019},\"standing_position\":[15.7698592822,-1.3000306504589845,7.3015231395],\"visible_nodes\":[10,11,12,13,14,15,16,18,19,20,26,27,304]},{\"accessible_nodes\":[10,11,12,13,14,15,16,17,19,24,26,304],\"floor_index\":0,\"index\":18,\"offset_point_count\":0,\"position\":[15.8418624822,0.0006474706,4.6841924791],\"quaternion\":{\"w\":-0.38047428389137433,\"x\":-0.018095889342288278,\"y\":-0.9246081794333209,\"z\":-0.0034018553966585654},\"standing_position\":[15.8418624822,-1.2662063387566895,4.6841924791],\"visible_nodes\":[10,11,12,13,14,15,16,17,19,24,26,304]},{\"accessible_nodes\":[12,13,14,15,16,17,18,22,23,24,304],\"floor_index\":0,\"index\":19,\"offset_point_count\":0,\"position\":[13.5934209383,0.7250440003,3.746618702],\"quaternion\":{\"w\":-0.04535226664496579,\"x\":-0.016828969499989774,\"y\":-0.9988270642483613,\"z\":0.002110313462106993},\"standing_position\":[13.5934209383,-0.5670693038381835,3.746618702],\"visible_nodes\":[12,13,14,15,16,17,18,22,23,24,304]},{\"accessible_nodes\":[10,11,12,13,14,15,16,17,21,304],\"floor_index\":0,\"index\":20,\"offset_point_count\":0,\"position\":[18.9542595589,-0.005850156,7.3307613109],\"quaternion\":{\"w\":-0.7470038352002727,\"x\":-0.01083043168239987,\"y\":-0.6646906961888364,\"z\":-0.007365479956423333},\"standing_position\":[18.9542595589,-1.3149996597078857,7.3307613109],\"visible_nodes\":[10,11,12,13,14,15,16,17,21,304]},{\"accessible_nodes\":[20],\"floor_index\":0,\"index\":21,\"offset_point_count\":0,\"position\":[20.0432147251,-0.037130271,3.0579040893],\"quaternion\":{\"w\":0.005538388405192927,\"x\":-0.021044216340161608,\"y\":-0.9997562232739539,\"z\":0.0037364728151099507},\"standing_position\":[20.0432147251,-1.3553306208077394,3.0579040893],\"visible_nodes\":[20]},{\"accessible_nodes\":[10,11,12,13,14,15,16,19,23,24,44,238,304],\"floor_index\":0,\"index\":22,\"offset_point_count\":0,\"position\":[12.438847386,0.0065342485,10.9082948498],\"quaternion\":{\"w\":-0.9990432973099814,\"x\":0.0006991724001159761,\"y\":-0.03655451763034922,\"z\":-0.023995176399809158},\"standing_position\":[12.438847386,-1.2876331509064332,10.9082948498],\"visible_nodes\":[10,11,12,13,14,15,16,19,23,24,44,238,304]},{\"accessible_nodes\":[8,10,11,12,14,15,19,22,24,26,37,238,241],\"floor_index\":0,\"index\":23,\"offset_point_count\":0,\"position\":[9.2812968323,0.0210690385,11.2171259649],\"quaternion\":{\"w\":-0.9996924315008091,\"x\":-0.002968254166479202,\"y\":-0.019466582832666154,\"z\":-0.015075941909827091},\"standing_position\":[9.2812968323,-1.2372753733499755,11.2171259649],\"visible_nodes\":[8,10,11,12,14,15,19,22,24,26,37,238,241]},{\"accessible_nodes\":[8,10,11,12,13,14,15,16,18,19,22,23,25,37,43,44,45,238,241,242,243,244,269,304,305],\"floor_index\":0,\"index\":24,\"offset_point_count\":0,\"position\":[10.3140285055,0.0130219267,12.5652603045],\"quaternion\":{\"w\":-0.0026507050594932703,\"x\":-0.017989665571822848,\"y\":-0.9998329653872191,\"z\":0.0018403902838785569},\"standing_position\":[10.3140285055,-1.2683421565901,12.5652603045],\"visible_nodes\":[8,10,11,12,13,14,15,16,18,19,22,23,25,37,43,44,45,238,241,242,243,244,269,304,305]},{\"accessible_nodes\":[12,13,24,43,44,45,46,241,242,243,244,256,257,268,269,305],\"floor_index\":0,\"index\":25,\"offset_point_count\":0,\"position\":[10.3373299387,-0.4595964814,16.8444710207],\"quaternion\":{\"w\":0.6546662629613411,\"x\":-0.0066702751536264196,\"y\":-0.75559443709903,\"z\":0.02108644521149628},\"standing_position\":[10.3373299387,-1.6817435885243286,16.8444710207],\"visible_nodes\":[12,13,24,43,44,45,46,241,242,243,244,256,257,268,269,305]},{\"accessible_nodes\":[0,5,8,9,12,13,14,15,16,17,18,23,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,293,294,295,296,302,303,304],\"floor_index\":0,\"index\":26,\"offset_point_count\":0,\"position\":[2.5758728524,0.0901813179,7.2467387338],\"quaternion\":{\"w\":-0.9997888535335848,\"x\":0.0013476038667946002,\"y\":0.014929626462872594,\"z\":-0.01405484090499312},\"standing_position\":[2.5758728524,-1.2080041498200318,7.2467387338],\"visible_nodes\":[0,5,8,9,12,13,14,15,16,17,18,23,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,293,294,295,296,302,303,304]},{\"accessible_nodes\":[0,8,9,12,14,15,16,17,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,295,296,297,302,303,304],\"floor_index\":0,\"index\":27,\"offset_point_count\":0,\"position\":[1.0843277233,0.0964446772,7.7229900864],\"quaternion\":{\"w\":-0.9998655694017071,\"x\":-0.0011387846875068693,\"y\":0.0023890027300663853,\"z\":-0.01618143908053684},\"standing_position\":[1.0843277233,-1.20967583766969,7.7229900864],\"visible_nodes\":[0,8,9,12,14,15,16,17,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,295,296,297,302,303,304]},{\"accessible_nodes\":[0,8,9,12,14,15,16,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,296,297,302],\"floor_index\":0,\"index\":28,\"offset_point_count\":0,\"position\":[0.2613393639,0.0954998494,7.6733752352],\"quaternion\":{\"w\":-0.9998272481533997,\"x\":-0.001952440262660752,\"y\":-0.00864695905314385,\"z\":-0.01633682799220324},\"standing_position\":[0.2613393639,-1.2068062066226442,7.6733752352],\"visible_nodes\":[0,8,9,12,14,15,16,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,296,297,302]},{\"accessible_nodes\":[0,8,9,12,14,15,16,26,27,28,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,297,298,302],\"floor_index\":0,\"index\":29,\"offset_point_count\":0,\"position\":[-1.1001042146,0.1011086911,7.5934867845],\"quaternion\":{\"w\":-0.9997403298231996,\"x\":0.0014515262930891557,\"y\":-0.0166869013656278,\"z\":-0.015450350370212257},\"standing_position\":[-1.1001042146,-1.2062806874476684,7.5934867845],\"visible_nodes\":[0,8,9,12,14,15,16,26,27,28,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,297,298,302]},{\"accessible_nodes\":[0,8,9,12,14,15,26,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,297,298,299],\"floor_index\":0,\"index\":30,\"offset_point_count\":0,\"position\":[-2.0138600554,0.1054991142,7.5732995338],\"quaternion\":{\"w\":-0.9997716074934314,\"x\":-0.0035572038136953863,\"y\":-0.012022500474018427,\"z\":-0.017307184406228186},\"standing_position\":[-2.0138600554,-1.2034637077604493,7.5732995338],\"visible_nodes\":[0,8,9,12,14,15,26,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,238,239,240,297,298,299]},{\"accessible_nodes\":[0,8,9,12,14,15,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,238,239,240,297,298,299,300],\"floor_index\":0,\"index\":31,\"offset_point_count\":0,\"position\":[-2.8002115705,0.1063468485,7.5860892623],\"quaternion\":{\"w\":-0.9997470555720581,\"x\":0.0005785624441464623,\"y\":0.013984129757701884,\"z\":-0.017604950424113974},\"standing_position\":[-2.8002115705,-1.2059825630066527,7.5860892623],\"visible_nodes\":[0,8,9,12,14,15,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,238,239,240,297,298,299,300]},{\"accessible_nodes\":[8,9,12,14,15,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,238,239,240,298,299,300],\"floor_index\":0,\"index\":32,\"offset_point_count\":0,\"position\":[-3.6180182448,0.1093158523,7.646577371],\"quaternion\":{\"w\":-0.9997541528295845,\"x\":-0.0018038257654603618,\"y\":-0.015350275071691418,\"z\":-0.015898087274771523},\"standing_position\":[-3.6180182448,-1.1949267586313965,7.646577371],\"visible_nodes\":[8,9,12,14,15,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,238,239,240,298,299,300]},{\"accessible_nodes\":[8,9,12,14,15,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,42,238,239,240,298,299,300],\"floor_index\":0,\"index\":33,\"offset_point_count\":0,\"position\":[-3.450837454,0.1051388519,7.0911509384],\"quaternion\":{\"w\":0.7273756391025958,\"x\":-0.012692062983850007,\"y\":-0.6860527666841669,\"z\":0.009756665157625603},\"standing_position\":[-3.450837454,-1.2042967541028076,7.0911509384],\"visible_nodes\":[8,9,12,14,15,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,42,238,239,240,298,299,300]},{\"accessible_nodes\":[1,8,9,12,13,14,15,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,238,239,240,298,299,300],\"floor_index\":0,\"index\":34,\"offset_point_count\":0,\"position\":[-3.3261254914,0.0950932748,5.912052013],\"quaternion\":{\"w\":0.6989481856155242,\"x\":-0.013931589636649937,\"y\":-0.714870243435828,\"z\":0.015423348294661266},\"standing_position\":[-3.3261254914,-1.2018810265381958,5.912052013],\"visible_nodes\":[1,8,9,12,13,14,15,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,238,239,240,298,299,300]},{\"accessible_nodes\":[1,8,9,13,15,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,238,239,240,300,301,306],\"floor_index\":0,\"index\":35,\"offset_point_count\":0,\"position\":[-3.4031372316,0.0894261004,4.985894144],\"quaternion\":{\"w\":0.7173052097249472,\"x\":-0.016133466091642807,\"y\":-0.6964483661586119,\"z\":0.013138518940707998},\"standing_position\":[-3.4031372316,-1.2034470437497802,4.985894144],\"visible_nodes\":[1,8,9,13,15,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,238,239,240,300,301,306]},{\"accessible_nodes\":[1,8,9,13,26,27,28,29,30,31,32,33,34,35,37,38,39,40,41,42,238,239,240,299,300,301,306],\"floor_index\":0,\"index\":36,\"offset_point_count\":0,\"position\":[-2.4318392689,0.0813522381,4.4995948188],\"quaternion\":{\"w\":0.21644069442073335,\"x\":-0.01999157406955786,\"y\":-0.9760264865642736,\"z\":0.011227657062438208},\"standing_position\":[-2.4318392689,-1.212776418287329,4.4995948188],\"visible_nodes\":[1,8,9,13,26,27,28,29,30,31,32,33,34,35,37,38,39,40,41,42,238,239,240,299,300,301,306]},{\"accessible_nodes\":[0,1,8,9,23,24,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,238,239,240,297,298,299,300,301,306],\"floor_index\":0,\"index\":37,\"offset_point_count\":0,\"position\":[-1.4401341255,0.0769662124,4.0461879547],\"quaternion\":{\"w\":0.23719923295577636,\"x\":-0.01959124600703466,\"y\":-0.9712053903140159,\"z\":0.010620583326524873},\"standing_position\":[-1.4401341255,-1.2221266764320924,4.0461879547],\"visible_nodes\":[0,1,8,9,23,24,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,238,239,240,297,298,299,300,301,306]},{\"accessible_nodes\":[4,5,8,9,26,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,238,239,240,292,293,294,295,296,302,303],\"floor_index\":0,\"index\":38,\"offset_point_count\":0,\"position\":[2.3621944449,0.0783174532,5.4013188876],\"quaternion\":{\"w\":-0.7320147782840535,\"x\":-0.011046115017658566,\"y\":-0.6811703855130521,\"z\":-0.006265271018477312},\"standing_position\":[2.3621944449,-1.2178942663129395,5.4013188876],\"visible_nodes\":[4,5,8,9,26,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,238,239,240,292,293,294,295,296,302,303]},{\"accessible_nodes\":[4,5,8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,238,239,240,291,292,293,294,295,302,303],\"floor_index\":0,\"index\":39,\"offset_point_count\":0,\"position\":[2.3688529694,0.0737190774,4.8258063722],\"quaternion\":{\"w\":-0.739973423831169,\"x\":-0.01171769999689815,\"y\":-0.6725008343860994,\"z\":-0.006682462563934679},\"standing_position\":[2.3688529694,-1.2238844105684448,4.8258063722],\"visible_nodes\":[4,5,8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,238,239,240,291,292,293,294,295,302,303]},{\"accessible_nodes\":[4,5,8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,238,239,240,291,292,293],\"floor_index\":0,\"index\":40,\"offset_point_count\":0,\"position\":[2.3726369426,0.0678090234,4.2866472855],\"quaternion\":{\"w\":-0.742087911138852,\"x\":-0.011058203770083099,\"y\":-0.6701925515290363,\"z\":-0.00501917832020878},\"standing_position\":[2.3726369426,-1.2294967989724366,4.2866472855],\"visible_nodes\":[4,5,8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,238,239,240,291,292,293]},{\"accessible_nodes\":[8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42,238,239,240],\"floor_index\":0,\"index\":41,\"offset_point_count\":0,\"position\":[2.3658584564,0.0687273395,3.5623093004],\"quaternion\":{\"w\":-0.7485387458050964,\"x\":-0.014973541791036478,\"y\":-0.6626470452661809,\"z\":-0.01909011466265351},\"standing_position\":[2.3658584564,-1.2370398390354613,3.5623093004],\"visible_nodes\":[8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42,238,239,240]},{\"accessible_nodes\":[8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,238,239,240],\"floor_index\":0,\"index\":42,\"offset_point_count\":0,\"position\":[1.7054181651,0.0679374838,3.4357712584],\"quaternion\":{\"w\":-0.044339531406320125,\"x\":-0.019803861865587646,\"y\":-0.9988099156746493,\"z\":0.004534902216044437},\"standing_position\":[1.7054181651,-1.2385201549405396,3.4357712584],\"visible_nodes\":[8,9,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,238,239,240]},{\"accessible_nodes\":[24,25,44,45,46,47,241,242,243,256,268,269,305],\"floor_index\":0,\"index\":43,\"offset_point_count\":0,\"position\":[6.4890731551,-0.5154273483,16.8921063436],\"quaternion\":{\"w\":0.6643525636075802,\"x\":-0.0012987444176255202,\"y\":-0.7470125660087653,\"z\":0.024621346931644857},\"standing_position\":[6.4890731551,-1.7604359361372193,16.8921063436],\"visible_nodes\":[24,25,44,45,46,47,241,242,243,256,268,269,305]},{\"accessible_nodes\":[22,24,25,43,45,46,47,48,241,242,256,268,269,305],\"floor_index\":0,\"index\":44,\"offset_point_count\":0,\"position\":[2.9036727006,-0.5810297785,16.884470924],\"quaternion\":{\"w\":0.6671133873862518,\"x\":0.0015710351102814148,\"y\":-0.7444334422230103,\"z\":0.027858756570728158},\"standing_position\":[2.9036727006,-1.8894829807476197,16.884470924],\"visible_nodes\":[22,24,25,43,45,46,47,48,241,242,256,268,269,305]},{\"accessible_nodes\":[24,25,43,44,46,47,48,49,93,241,255,256,269,305],\"floor_index\":0,\"index\":45,\"offset_point_count\":0,\"position\":[-0.7284500525,-0.6573118018,16.9154122704],\"quaternion\":{\"w\":0.6627553645190276,\"x\":-0.001298525867937033,\"y\":-0.7482193839877447,\"z\":0.03035447328155838},\"standing_position\":[-0.7284500525,-1.9615154312937135,16.9154122704],\"visible_nodes\":[24,25,43,44,46,47,48,49,93,241,255,256,269,305]},{\"accessible_nodes\":[25,43,44,45,47,48,49,50,51,92,93,255],\"floor_index\":0,\"index\":46,\"offset_point_count\":0,\"position\":[-4.348008102,-0.718357151,16.9205082706],\"quaternion\":{\"w\":0.6611849041051602,\"x\":-0.0053226259783960535,\"y\":-0.7496648912013955,\"z\":0.02843840934825465},\"standing_position\":[-4.348008102,-2.02038831040094,16.9205082706],\"visible_nodes\":[25,43,44,45,47,48,49,50,51,92,93,255]},{\"accessible_nodes\":[43,44,45,46,48,49,50,51,52,53,69,70,92,93,255],\"floor_index\":0,\"index\":47,\"offset_point_count\":0,\"position\":[-8.0005824171,-0.7778563038,16.8925489931],\"quaternion\":{\"w\":0.6845684755600353,\"x\":-0.004626595413689193,\"y\":-0.7283272090379432,\"z\":0.029733372831979268},\"standing_position\":[-8.0005824171,-2.0800858274587526,16.8925489931],\"visible_nodes\":[43,44,45,46,48,49,50,51,52,53,69,70,92,93,255]},{\"accessible_nodes\":[44,45,46,47,49,50,51,52,53,69,70,91,92,93,254,255],\"floor_index\":0,\"index\":48,\"offset_point_count\":0,\"position\":[-11.9826415713,-0.8401666541,16.894436827],\"quaternion\":{\"w\":0.7093319391666453,\"x\":-0.010090995995635909,\"y\":-0.7041677430129841,\"z\":0.029902534067954033},\"standing_position\":[-11.9826415713,-2.1591187376876464,16.894436827],\"visible_nodes\":[44,45,46,47,49,50,51,52,53,69,70,91,92,93,254,255]},{\"accessible_nodes\":[45,46,47,48,50,51,52,53,69,70,91,92,93,254,255],\"floor_index\":0,\"index\":49,\"offset_point_count\":0,\"position\":[-15.0731485288,-1.603441804,16.8808310199],\"quaternion\":{\"w\":-0.2322599856017166,\"x\":-0.018360907295860183,\"y\":-0.9724463890749968,\"z\":0.00813612659153998},\"standing_position\":[-15.0731485288,-2.8841176920615235,16.8808310199],\"visible_nodes\":[45,46,47,48,50,51,52,53,69,70,91,92,93,254,255]},{\"accessible_nodes\":[46,47,48,49,51,52,53,69,70,71,90,91,92,93,254],\"floor_index\":0,\"index\":50,\"offset_point_count\":0,\"position\":[-18.1523123199,-1.612781522,16.8458772081],\"quaternion\":{\"w\":0.002368056978860154,\"x\":-0.015009698011176442,\"y\":-0.9997650694788252,\"z\":0.015456620556923163},\"standing_position\":[-18.1523123199,-2.9197497341276852,16.8458772081],\"visible_nodes\":[46,47,48,49,51,52,53,69,70,71,90,91,92,93,254]},{\"accessible_nodes\":[46,47,48,49,50,52,53,59,69,70,71,91,92,93],\"floor_index\":0,\"index\":51,\"offset_point_count\":0,\"position\":[-18.2552693942,-1.6627930619,12.7466622831],\"quaternion\":{\"w\":-0.4829899496492025,\"x\":-0.006813296201432898,\"y\":-0.8755988802813763,\"z\":0.0009425329264181879},\"standing_position\":[-18.2552693942,-2.9411145664928955,12.7466622831],\"visible_nodes\":[46,47,48,49,50,52,53,59,69,70,71,91,92,93]},{\"accessible_nodes\":[47,48,49,50,51,53,61,63,64,69,70,71,91,92,93],\"floor_index\":0,\"index\":52,\"offset_point_count\":0,\"position\":[-18.3096617915,-1.6469876946,9.739319511],\"quaternion\":{\"w\":-0.04182769047803314,\"x\":-0.013168192682320985,\"y\":-0.9990276811230007,\"z\":-0.0045536070080522415},\"standing_position\":[-18.3096617915,-2.9435199678925414,9.739319511],\"visible_nodes\":[47,48,49,50,51,53,61,63,64,69,70,71,91,92,93]},{\"accessible_nodes\":[47,48,49,50,51,52,69,70],\"floor_index\":0,\"index\":53,\"offset_point_count\":0,\"position\":[-18.1429746343,-1.2684401977,6.8795193144],\"quaternion\":{\"w\":0.03566005658741916,\"x\":-0.014187650278876536,\"y\":-0.9992265383160117,\"z\":0.008567150462623926},\"standing_position\":[-18.1429746343,-2.5175698506769897,6.8795193144],\"visible_nodes\":[47,48,49,50,51,52,69,70]},{\"accessible_nodes\":[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69],\"floor_index\":0,\"index\":54,\"offset_point_count\":0,\"position\":[-18.2420379611,-1.2621177115,3.4383902034],\"quaternion\":{\"w\":0.025401028603343916,\"x\":-0.00962837898580978,\"y\":-0.9995766695706738,\"z\":0.010419390895221113},\"standing_position\":[-18.2420379611,-2.56606754441626,3.4383902034],\"visible_nodes\":[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69]},{\"accessible_nodes\":[54,56,57,58,59,60,61,62,63,64,65,66,67,68],\"floor_index\":0,\"index\":55,\"offset_point_count\":0,\"position\":[-18.2101527887,-1.254081585,-0.2652021563],\"quaternion\":{\"w\":0.013967830284440094,\"x\":-0.009638086803649734,\"y\":-0.9997987511744552,\"z\":0.010698792244374051},\"standing_position\":[-18.2101527887,-2.551195122788391,-0.2652021563],\"visible_nodes\":[54,56,57,58,59,60,61,62,63,64,65,66,67,68]},{\"accessible_nodes\":[54,55,57,58,59,60,61,62,63,64,65,66,67,68,345],\"floor_index\":0,\"index\":56,\"offset_point_count\":0,\"position\":[-14.6878353622,-1.2343211619,-0.2635957548],\"quaternion\":{\"w\":-0.6690712561748609,\"x\":-0.01171535668965546,\"y\":-0.7430840524631113,\"z\":-0.00570048665552571},\"standing_position\":[-14.6878353622,-2.535456940327124,-0.2635957548],\"visible_nodes\":[54,55,57,58,59,60,61,62,63,64,65,66,67,68,345]},{\"accessible_nodes\":[54,55,56,58,59,60,61,62,63,64,65,66,67,68],\"floor_index\":0,\"index\":57,\"offset_point_count\":0,\"position\":[-14.7139970542,-1.2430924641,2.1453091025],\"quaternion\":{\"w\":-0.9911005436760693,\"x\":-0.011316779989241792,\"y\":-0.13191437554869415,\"z\":-0.013792764253056332},\"standing_position\":[-14.7139970542,-2.537425445209619,2.1453091025],\"visible_nodes\":[54,55,56,58,59,60,61,62,63,64,65,66,67,68]},{\"accessible_nodes\":[54,55,56,57,59,60,61,62,63,64,65,66,67,68],\"floor_index\":0,\"index\":58,\"offset_point_count\":0,\"position\":[-14.7561900398,-1.2463670212,4.5691630225],\"quaternion\":{\"w\":-0.8140332251821217,\"x\":-0.015806625543064463,\"y\":-0.5805158507741197,\"z\":-0.010070050787079343},\"standing_position\":[-14.7561900398,-2.539669676420032,4.5691630225],\"visible_nodes\":[54,55,56,57,59,60,61,62,63,64,65,66,67,68]},{\"accessible_nodes\":[51,54,55,56,57,58,60,61,62,63,64,65,66,67,68,345],\"floor_index\":0,\"index\":59,\"offset_point_count\":0,\"position\":[-16.4001734116,-1.2464300428,-1.5015737211],\"quaternion\":{\"w\":-0.30001677569831453,\"x\":-0.012688101069226273,\"y\":-0.9538456549935109,\"z\":0.002722652675938205},\"standing_position\":[-16.4001734116,-2.5261564288702516,-1.5015737211],\"visible_nodes\":[51,54,55,56,57,58,60,61,62,63,64,65,66,67,68,345]},{\"accessible_nodes\":[54,55,56,57,58,59,61,62,63,64,65,66,67,68,345],\"floor_index\":0,\"index\":60,\"offset_point_count\":0,\"position\":[-14.4969270127,-0.4463821898,-1.5438249938],\"quaternion\":{\"w\":-0.7275202088079501,\"x\":-0.01886029833801616,\"y\":-0.6857826235404335,\"z\":-0.007799241576561456},\"standing_position\":[-14.4969270127,-1.7353080759541748,-1.5438249938],\"visible_nodes\":[54,55,56,57,58,59,61,62,63,64,65,66,67,68,345]},{\"accessible_nodes\":[52,54,55,56,57,58,59,60,62,63,64,65,67,68,343,344,345],\"floor_index\":0,\"index\":61,\"offset_point_count\":0,\"position\":[-14.4522496364,-0.4385462799,-2.9393709161],\"quaternion\":{\"w\":0.18129975686087282,\"x\":-0.01369879256934306,\"y\":-0.9832793461041476,\"z\":0.010220996113484546},\"standing_position\":[-14.4522496364,-1.739764074318335,-2.9393709161],\"visible_nodes\":[52,54,55,56,57,58,59,60,62,63,64,65,67,68,343,344,345]},{\"accessible_nodes\":[54,55,56,57,58,59,60,61,63,64,65,66,67,68,69],\"floor_index\":0,\"index\":62,\"offset_point_count\":0,\"position\":[-16.4948125413,-1.2581960772,5.1086965067],\"quaternion\":{\"w\":-0.9749686133666048,\"x\":-0.010233132880605345,\"y\":-0.2216135559009584,\"z\":-0.014795870351342005},\"standing_position\":[-16.4948125413,-2.5533227537594483,5.1086965067],\"visible_nodes\":[54,55,56,57,58,59,60,61,63,64,65,66,67,68,69]},{\"accessible_nodes\":[52,54,55,56,57,58,59,60,61,62,64,65,66,67,68],\"floor_index\":0,\"index\":63,\"offset_point_count\":0,\"position\":[-16.4029303743,-1.2585777436,3.9437804628],\"quaternion\":{\"w\":-0.9743206609607536,\"x\":-0.013000516521439366,\"y\":-0.22423730456928126,\"z\":-0.01574380616118112},\"standing_position\":[-16.4029303743,-2.5457291994792115,3.9437804628],\"visible_nodes\":[52,54,55,56,57,58,59,60,61,62,64,65,66,67,68]},{\"accessible_nodes\":[52,54,55,56,57,58,59,60,61,62,63,65,66,67,68],\"floor_index\":0,\"index\":64,\"offset_point_count\":0,\"position\":[-16.3966279454,-1.253399062,2.7118762443],\"quaternion\":{\"w\":-0.9619078942133701,\"x\":-0.012415997022008844,\"y\":-0.2725663483502324,\"z\":-0.016930203840688687},\"standing_position\":[-16.3966279454,-2.5476512192113034,2.7118762443],\"visible_nodes\":[52,54,55,56,57,58,59,60,61,62,63,65,66,67,68]},{\"accessible_nodes\":[54,55,56,57,58,59,60,61,62,63,64,66,67,68,70],\"floor_index\":0,\"index\":65,\"offset_point_count\":0,\"position\":[-16.4112530757,-1.2512039892,1.5128230394],\"quaternion\":{\"w\":-0.9799634830696499,\"x\":-0.01142095707478983,\"y\":-0.19794283710693458,\"z\":-0.018967521260870184},\"standing_position\":[-16.4112530757,-2.5459210626405517,1.5128230394],\"visible_nodes\":[54,55,56,57,58,59,60,61,62,63,64,66,67,68,70]},{\"accessible_nodes\":[54,55,56,57,58,59,60,62,63,64,65,67,68],\"floor_index\":0,\"index\":66,\"offset_point_count\":0,\"position\":[-21.4664574163,-1.2512204958,-1.5183647483],\"quaternion\":{\"w\":0.7252428110775125,\"x\":-0.0034830515858662978,\"y\":-0.6883464444594742,\"z\":0.013780628673761569},\"standing_position\":[-21.4664574163,-2.5502114606895265,-1.5183647483],\"visible_nodes\":[54,55,56,57,58,59,60,62,63,64,65,67,68]},{\"accessible_nodes\":[54,55,56,57,58,59,60,61,62,63,64,65,66,68],\"floor_index\":0,\"index\":67,\"offset_point_count\":0,\"position\":[-21.5306082087,-1.2585444474,0.912544146],\"quaternion\":{\"w\":0.711117329169402,\"x\":-0.003723256355470385,\"y\":-0.7028584524283676,\"z\":0.016978732714630455},\"standing_position\":[-21.5306082087,-2.5164024853486087,0.912544146],\"visible_nodes\":[54,55,56,57,58,59,60,61,62,63,64,65,66,68]},{\"accessible_nodes\":[54,55,56,57,58,59,60,61,62,63,64,65,66,67],\"floor_index\":0,\"index\":68,\"offset_point_count\":0,\"position\":[-21.5210234373,-1.258721179,2.4894815251],\"quaternion\":{\"w\":0.695476283780473,\"x\":-0.004693441245011258,\"y\":-0.7183763733239005,\"z\":0.015036506803557878},\"standing_position\":[-21.5210234373,-2.525584644309143,2.4894815251],\"visible_nodes\":[54,55,56,57,58,59,60,61,62,63,64,65,66,67]},{\"accessible_nodes\":[47,48,49,50,51,52,53,54,62,70,71,90,91,92,93,96,254],\"floor_index\":0,\"index\":69,\"offset_point_count\":0,\"position\":[-22.2459011109,-1.6283161359,16.8791953395],\"quaternion\":{\"w\":0.6881394395390914,\"x\":-0.013408097115593907,\"y\":-0.725325780098157,\"z\":0.01366921340319427},\"standing_position\":[-22.2459011109,-2.956757517354468,16.8791953395],\"visible_nodes\":[47,48,49,50,51,52,53,54,62,70,71,90,91,92,93,96,254]},{\"accessible_nodes\":[47,48,49,50,51,52,53,65,69,71,90,91,92,93],\"floor_index\":0,\"index\":70,\"offset_point_count\":0,\"position\":[-22.3743146683,-1.67132999,12.8069491789],\"quaternion\":{\"w\":0.7311701189678748,\"x\":-0.0003116454885110557,\"y\":-0.6820061827798923,\"z\":0.016053866814479654},\"standing_position\":[-22.3743146683,-2.978806033701172,12.8069491789],\"visible_nodes\":[47,48,49,50,51,52,53,65,69,71,90,91,92,93]},{\"accessible_nodes\":[50,51,52,69,70,72,73,74],\"floor_index\":0,\"index\":71,\"offset_point_count\":0,\"position\":[-29.4880266451,-1.7828817781,10.0852013003],\"quaternion\":{\"w\":0.7142477367248767,\"x\":-0.001663608050748561,\"y\":-0.6993599240376874,\"z\":0.02725985396751545},\"standing_position\":[-29.4880266451,-3.072012227395044,10.0852013003],\"visible_nodes\":[50,51,52,69,70,72,73,74]},{\"accessible_nodes\":[71,73,74,75,76,88,90],\"floor_index\":0,\"index\":72,\"offset_point_count\":0,\"position\":[-37.2436266783,-1.8056084243,10.5468068761],\"quaternion\":{\"w\":0.6939545469711719,\"x\":-0.007818134872993706,\"y\":-0.7197087497731287,\"z\":0.019628525086645414},\"standing_position\":[-37.2436266783,-3.026437791937634,10.5468068761],\"visible_nodes\":[71,73,74,75,76,88,90]},{\"accessible_nodes\":[71,72,74,76,87,88,89],\"floor_index\":0,\"index\":73,\"offset_point_count\":0,\"position\":[-44.2962129539,-1.8153607425,8.4563437905],\"quaternion\":{\"w\":0.6750181343006378,\"x\":-0.005739774015807711,\"y\":-0.737697936946417,\"z\":0.010923697961467109},\"standing_position\":[-44.2962129539,-2.6123147782589724,8.4563437905],\"visible_nodes\":[71,72,74,76,87,88,89]},{\"accessible_nodes\":[71,72,73,75,76,77,88,90],\"floor_index\":0,\"index\":74,\"offset_point_count\":0,\"position\":[-37.2393726564,-1.7967908012,15.1841559437],\"quaternion\":{\"w\":-0.7514187368341411,\"x\":-0.004851839573667925,\"y\":-0.6597584743677037,\"z\":-0.008068276963174272},\"standing_position\":[-37.2393726564,-3.088199816855518,15.1841559437],\"visible_nodes\":[71,72,73,75,76,77,88,90]},{\"accessible_nodes\":[72,74,76,77,90,91,94,95],\"floor_index\":0,\"index\":75,\"offset_point_count\":0,\"position\":[-37.2442200371,-1.7396092159,22.6044968809],\"quaternion\":{\"w\":-0.996113050750265,\"x\":-0.0015631497838796756,\"y\":0.0867562400019856,\"z\":-0.015155906890918721},\"standing_position\":[-37.2442200371,-3.043600295230444,22.6044968809],\"visible_nodes\":[72,74,76,77,90,91,94,95]},{\"accessible_nodes\":[72,73,74,75,77,78,79,90,94],\"floor_index\":0,\"index\":76,\"offset_point_count\":0,\"position\":[-43.9648526186,-1.8088343524,22.7154593452],\"quaternion\":{\"w\":0.6869848196794316,\"x\":-0.010108116315912677,\"y\":-0.7264840866977059,\"z\":0.013059681793068552},\"standing_position\":[-43.9648526186,-3.102337040807898,22.7154593452],\"visible_nodes\":[72,73,74,75,77,78,79,90,94]},{\"accessible_nodes\":[74,75,76,78,79,80,94],\"floor_index\":0,\"index\":77,\"offset_point_count\":0,\"position\":[-48.2496631744,-2.7326581821,22.5888664842],\"quaternion\":{\"w\":-0.9503053732485154,\"x\":0.0017531604018030853,\"y\":0.310219789000294,\"z\":-0.026082686047822736},\"standing_position\":[-48.2496631744,-4.024455343202295,22.5888664842],\"visible_nodes\":[74,75,76,78,79,80,94]},{\"accessible_nodes\":[76,77,79,80],\"floor_index\":0,\"index\":78,\"offset_point_count\":0,\"position\":[-52.4002801096,-3.1848639114,22.5102549042],\"quaternion\":{\"w\":-0.9707922254401299,\"x\":0.000035305288919531896,\"y\":-0.23949622074856497,\"z\":-0.014283347725321395},\"standing_position\":[-52.4002801096,-4.553599105606238,22.5102549042],\"visible_nodes\":[76,77,79,80]},{\"accessible_nodes\":[76,77,78,80,81],\"floor_index\":0,\"index\":79,\"offset_point_count\":0,\"position\":[-55.8943395216,-4.0680821236,22.4818878937],\"quaternion\":{\"w\":-0.9820161846680532,\"x\":0.0035318691577088334,\"y\":-0.18832237066185722,\"z\":-0.012900529108165632},\"standing_position\":[-55.8943395216,-5.403355627857202,22.4818878937],\"visible_nodes\":[76,77,78,80,81]},{\"accessible_nodes\":[77,78,79,81,82,83,86],\"floor_index\":0,\"index\":80,\"offset_point_count\":0,\"position\":[-62.8674335579,-4.5390105155,22.3908262013],\"quaternion\":{\"w\":-0.9539215250611551,\"x\":0.004601377586818373,\"y\":0.2992897039216061,\"z\":-0.020933811744860063},\"standing_position\":[-62.8674335579,-5.790972104359558,22.3908262013],\"visible_nodes\":[77,78,79,81,82,83,86]},{\"accessible_nodes\":[79,80,82,83,85],\"floor_index\":0,\"index\":81,\"offset_point_count\":0,\"position\":[-68.9270336494,-4.6213088594,22.4261220129],\"quaternion\":{\"w\":-0.947862648554631,\"x\":0.004675156423514867,\"y\":0.3176936696568692,\"z\":-0.02460232997424203},\"standing_position\":[-68.9270336494,-5.871423300317969,22.4261220129],\"visible_nodes\":[79,80,82,83,85]},{\"accessible_nodes\":[80,81,83,84],\"floor_index\":0,\"index\":82,\"offset_point_count\":0,\"position\":[-74.9648191905,-4.7193529888,22.4705863054],\"quaternion\":{\"w\":-0.7195502827136074,\"x\":0.004699991539621909,\"y\":-0.6944011648715748,\"z\":-0.0056853269042687745},\"standing_position\":[-74.9648191905,-6.034426359733533,22.4705863054],\"visible_nodes\":[80,81,83,84]},{\"accessible_nodes\":[80,81,82,84,85,86],\"floor_index\":0,\"index\":83,\"offset_point_count\":0,\"position\":[-74.9025066619,-4.8556035078,15.3028397144],\"quaternion\":{\"w\":-0.7228741990714611,\"x\":0.006171066636839134,\"y\":-0.6907302255584303,\"z\":-0.017509020204266253},\"standing_position\":[-74.9025066619,-6.157120040697949,15.3028397144],\"visible_nodes\":[80,81,82,84,85,86]},{\"accessible_nodes\":[82,83,85,86],\"floor_index\":0,\"index\":84,\"offset_point_count\":0,\"position\":[-74.9214250372,-5.0049335469,8.1702605518],\"quaternion\":{\"w\":-0.7325885035019069,\"x\":0.01166371691183777,\"y\":-0.6805458165693181,\"z\":-0.005952627620902169},\"standing_position\":[-74.9214250372,-6.309573720812049,8.1702605518],\"visible_nodes\":[82,83,85,86]},{\"accessible_nodes\":[81,83,84,86,87],\"floor_index\":0,\"index\":85,\"offset_point_count\":0,\"position\":[-68.9015093798,-4.8092062754,8.1481648909],\"quaternion\":{\"w\":-0.6761895012836424,\"x\":0.009883912104306856,\"y\":-0.7365614518999756,\"z\":-0.012136481554853184},\"standing_position\":[-68.9015093798,-6.097573189195471,8.1481648909],\"visible_nodes\":[81,83,84,86,87]},{\"accessible_nodes\":[80,83,84,85,87,88,89],\"floor_index\":0,\"index\":86,\"offset_point_count\":0,\"position\":[-62.813837739,-4.606068813,8.1183249024],\"quaternion\":{\"w\":-0.6953345439742481,\"x\":0.009336749081948467,\"y\":-0.7184820825880072,\"z\":-0.014359458468104809},\"standing_position\":[-62.813837739,-5.917917930279053,8.1183249024],\"visible_nodes\":[80,83,84,85,87,88,89]},{\"accessible_nodes\":[73,85,86,88,89],\"floor_index\":0,\"index\":87,\"offset_point_count\":0,\"position\":[-55.7447805774,-3.8547489879,8.4111252068],\"quaternion\":{\"w\":-0.28790689779192696,\"x\":-0.006460445780189413,\"y\":-0.9576325667760053,\"z\":-0.002783502402151886},\"standing_position\":[-55.7447805774,-5.138951086746435,8.4111252068],\"visible_nodes\":[73,85,86,88,89]},{\"accessible_nodes\":[72,73,74,86,87,89],\"floor_index\":0,\"index\":88,\"offset_point_count\":0,\"position\":[-48.1582124606,-2.2879355426,8.4671237564],\"quaternion\":{\"w\":-0.2902054542065692,\"x\":-0.005365129000111444,\"y\":-0.9569351920323549,\"z\":-0.005200767869587993},\"standing_position\":[-48.1582124606,-3.590983557240808,8.4671237564],\"visible_nodes\":[72,73,74,86,87,89]},{\"accessible_nodes\":[73,86,87,88],\"floor_index\":0,\"index\":89,\"offset_point_count\":0,\"position\":[-52.2558769479,-2.8338417611,8.5059010138],\"quaternion\":{\"w\":-0.3005836119446963,\"x\":-0.00017680772708267636,\"y\":-0.9537529992744452,\"z\":-0.0021627109184128948},\"standing_position\":[-52.2558769479,-4.148727019774622,8.5059010138],\"visible_nodes\":[73,86,87,88]},{\"accessible_nodes\":[50,69,70,72,74,75,76,91,92,94,95,96,97],\"floor_index\":0,\"index\":90,\"offset_point_count\":0,\"position\":[-30.0751502044,-1.6790651711,23.3718714807],\"quaternion\":{\"w\":-0.7044243225979087,\"x\":-0.001286679524940497,\"y\":-0.709762343534792,\"z\":-0.004704669359281462},\"standing_position\":[-30.0751502044,-2.987695518351892,23.3718714807],\"visible_nodes\":[50,69,70,72,74,75,76,91,92,94,95,96,97]},{\"accessible_nodes\":[48,49,50,51,52,69,70,75,90,92,93,95,96,97,98,254],\"floor_index\":0,\"index\":91,\"offset_point_count\":0,\"position\":[-22.8515815521,-1.6239449646,23.3008968902],\"quaternion\":{\"w\":-0.6733908254032208,\"x\":-0.0005705265841251251,\"y\":-0.7392514857949222,\"z\":-0.007191071275675004},\"standing_position\":[-22.8515815521,-2.9466527368549436,23.3008968902],\"visible_nodes\":[48,49,50,51,52,69,70,75,90,92,93,95,96,97,98,254]},{\"accessible_nodes\":[46,47,48,49,50,51,52,69,70,90,91,93,96,97,98,254,255],\"floor_index\":0,\"index\":92,\"offset_point_count\":0,\"position\":[-16.7586262252,-1.5814050786,23.2585957394],\"quaternion\":{\"w\":-0.9752538458011842,\"x\":-0.00323644271036636,\"y\":0.2204474276883072,\"z\":-0.016504341863709353},\"standing_position\":[-16.7586262252,-2.8771850220661865,23.2585957394],\"visible_nodes\":[46,47,48,49,50,51,52,69,70,90,91,93,96,97,98,254,255]},{\"accessible_nodes\":[45,46,47,48,49,50,51,52,69,70,91,92,96,98,254,255],\"floor_index\":0,\"index\":93,\"offset_point_count\":0,\"position\":[-13.5030436043,-0.7994313803,23.2235434527],\"quaternion\":{\"w\":0.6767293425084491,\"x\":0.0006947249060177877,\"y\":-0.7359682884132984,\"z\":0.019687376281168387},\"standing_position\":[-13.5030436043,-2.129422244100049,23.2235434527],\"visible_nodes\":[45,46,47,48,49,50,51,52,69,70,91,92,96,98,254,255]},{\"accessible_nodes\":[75,76,77,90,95,96,97],\"floor_index\":0,\"index\":94,\"offset_point_count\":0,\"position\":[-36.0323966468,-1.6718242496,30.9638885057],\"quaternion\":{\"w\":-0.9999000653940373,\"x\":0.006792622818084778,\"y\":-0.009826398322244304,\"z\":-0.007560514707058123},\"standing_position\":[-36.0323966468,-2.9735753863797854,30.9638885057],\"visible_nodes\":[75,76,77,90,95,96,97]},{\"accessible_nodes\":[75,90,91,94,96,97,98],\"floor_index\":0,\"index\":95,\"offset_point_count\":0,\"position\":[-31.057387027,-1.6485621773,31.2873343454],\"quaternion\":{\"w\":-0.9999400119132147,\"x\":0.001865748972711294,\"y\":-0.00728264894717701,\"z\":-0.007965838155390583},\"standing_position\":[-31.057387027,-2.9445957981343507,31.2873343454],\"visible_nodes\":[75,90,91,94,96,97,98]},{\"accessible_nodes\":[69,90,91,92,93,94,95,97,98,254],\"floor_index\":0,\"index\":96,\"offset_point_count\":0,\"position\":[-23.3658507368,-1.6318492385,31.4220764565],\"quaternion\":{\"w\":-0.7125696587258243,\"x\":-0.004595004041331395,\"y\":-0.7015707866637549,\"z\":-0.004668908843221029},\"standing_position\":[-23.3658507368,-2.918636986836792,31.4220764565],\"visible_nodes\":[69,90,91,92,93,94,95,97,98,254]},{\"accessible_nodes\":[90,91,92,94,95,96,98,254],\"floor_index\":0,\"index\":97,\"offset_point_count\":0,\"position\":[-23.1997774403,-1.6275718498,35.1887594701],\"quaternion\":{\"w\":-0.9721301948813236,\"x\":0.004553739661939438,\"y\":0.23267154334467793,\"z\":-0.028391909818591198},\"standing_position\":[-23.1997774403,-2.892900137878308,35.1887594701],\"visible_nodes\":[90,91,92,94,95,96,98,254]},{\"accessible_nodes\":[91,92,93,95,96,97,254,255,261,262],\"floor_index\":0,\"index\":98,\"offset_point_count\":0,\"position\":[-17.8759778354,-0.7644749,35.3728930537],\"quaternion\":{\"w\":-0.2942708799613431,\"x\":-0.009423412772128369,\"y\":-0.9556664334641036,\"z\":0.004185266019548177},\"standing_position\":[-17.8759778354,-2.071223767034912,35.3728930537],\"visible_nodes\":[91,92,93,95,96,97,254,255,261,262]},{\"accessible_nodes\":[100,252,253],\"floor_index\":0,\"index\":99,\"offset_point_count\":0,\"position\":[39.2279984492,2.9009282863,25.8169956217],\"quaternion\":{\"w\":-0.9996905118210335,\"x\":-0.02000024443923038,\"y\":-0.00910586005604661,\"z\":-0.011659937287758052},\"standing_position\":[39.2279984492,1.717421082244214,25.8169956217],\"visible_nodes\":[100,252,253]},{\"accessible_nodes\":[99,101,102,103,104,252,253],\"floor_index\":1,\"index\":100,\"offset_point_count\":0,\"position\":[39.2049353908,3.854253251,28.3523586901],\"quaternion\":{\"w\":-0.999771293296622,\"x\":-0.009249462739131086,\"y\":0.007948896966020648,\"z\":-0.017567685497436102},\"standing_position\":[39.2049353908,2.552587468071533,28.3523586901],\"visible_nodes\":[99,101,102,103,104,252,253]},{\"accessible_nodes\":[100,102,103,104,105,106],\"floor_index\":1,\"index\":101,\"offset_point_count\":0,\"position\":[42.9503867697,3.8580032101,28.231877836],\"quaternion\":{\"w\":-0.9994289648719412,\"x\":-0.00464989722966,\"y\":0.028774067628393015,\"z\":-0.017093147187493146},\"standing_position\":[42.9503867697,2.5660141220415285,28.231877836],\"visible_nodes\":[100,102,103,104,105,106]},{\"accessible_nodes\":[100,101,103,104,105,106],\"floor_index\":1,\"index\":102,\"offset_point_count\":0,\"position\":[42.9496823516,4.6425842161,25.5630860136],\"quaternion\":{\"w\":0.8395097114551109,\"x\":-0.008702679324139907,\"y\":-0.5427599908108556,\"z\":0.023649525927332424},\"standing_position\":[42.9496823516,3.389245163899683,25.5630860136],\"visible_nodes\":[100,101,103,104,105,106]},{\"accessible_nodes\":[100,101,102,104,105,106],\"floor_index\":1,\"index\":103,\"offset_point_count\":0,\"position\":[42.9857438372,5.4075981598,23.6049358033],\"quaternion\":{\"w\":0.8589286000260729,\"x\":-0.0018639004921065978,\"y\":-0.5115571239118853,\"z\":0.023398607487796007},\"standing_position\":[42.9857438372,4.214049122820325,23.6049358033],\"visible_nodes\":[100,101,102,104,105,106]},{\"accessible_nodes\":[100,101,102,103,105,106,107,108],\"floor_index\":1,\"index\":104,\"offset_point_count\":0,\"position\":[42.9422194036,6.2872054208,21.654465212],\"quaternion\":{\"w\":0.8488388063275122,\"x\":0.0012661854476012876,\"y\":-0.5284980776455105,\"z\":0.012683042869071777},\"standing_position\":[42.9422194036,5.066550337143689,21.654465212],\"visible_nodes\":[100,101,102,103,105,106,107,108]},{\"accessible_nodes\":[101,102,103,104,106,107,108,109,110,111,112],\"floor_index\":1,\"index\":105,\"offset_point_count\":0,\"position\":[42.8438197904,6.8783803819,19.4390750787],\"quaternion\":{\"w\":-0.5470390852456777,\"x\":-0.016919454867228585,\"y\":-0.8369235895080267,\"z\":-0.004569089428161278},\"standing_position\":[42.8438197904,5.5537155507385005,19.4390750787],\"visible_nodes\":[101,102,103,104,106,107,108,109,110,111,112]},{\"accessible_nodes\":[101,102,103,104,105,107,108,109,110,111,112],\"floor_index\":1,\"index\":106,\"offset_point_count\":0,\"position\":[42.6793577708,6.8903775955,14.9382204701],\"quaternion\":{\"w\":-0.9675563461757667,\"x\":-0.0013504124128422004,\"y\":0.2525315997520349,\"z\":-0.0077900252835826096},\"standing_position\":[42.6793577708,5.588174297884949,14.9382204701],\"visible_nodes\":[101,102,103,104,105,107,108,109,110,111,112]},{\"accessible_nodes\":[104,105,106,108,109,110],\"floor_index\":1,\"index\":107,\"offset_point_count\":0,\"position\":[38.4652652276,6.9299954897,15.0686778736],\"quaternion\":{\"w\":-0.9841734067226161,\"x\":-0.004250659941047426,\"y\":0.17709901937446318,\"z\":-0.004535936624081347},\"standing_position\":[38.4652652276,5.6403412347866695,15.0686778736],\"visible_nodes\":[104,105,106,108,109,110]},{\"accessible_nodes\":[104,105,106,107,109,110,111,112,113],\"floor_index\":1,\"index\":108,\"offset_point_count\":0,\"position\":[47.0439566517,7.5531687061,14.9647148231],\"quaternion\":{\"w\":-0.9849770176760471,\"x\":0.0064537317225920356,\"y\":0.17166411816281704,\"z\":0.017608365945350677},\"standing_position\":[47.0439566517,6.346462539832605,14.9647148231],\"visible_nodes\":[104,105,106,107,109,110,111,112,113]},{\"accessible_nodes\":[105,106,107,108,110,111,112,113,114],\"floor_index\":1,\"index\":109,\"offset_point_count\":0,\"position\":[49.101827919,8.4279759579,14.9293014351],\"quaternion\":{\"w\":-0.982822768916146,\"x\":0.00816426074341854,\"y\":0.18389391675298106,\"z\":0.013258096461653837},\"standing_position\":[49.101827919,7.23214585116477,14.9293014351],\"visible_nodes\":[105,106,107,108,110,111,112,113,114]},{\"accessible_nodes\":[105,106,107,108,109,111,112,113,114,115],\"floor_index\":1,\"index\":110,\"offset_point_count\":0,\"position\":[51.1264966689,9.3397754977,14.9181397064],\"quaternion\":{\"w\":0.6657832842136349,\"x\":-0.024854186900716817,\"y\":-0.7457248349760117,\"z\":0.0030591439603502705},\"standing_position\":[51.1264966689,8.091719920421863,14.9181397064],\"visible_nodes\":[105,106,107,108,109,111,112,113,114,115]},{\"accessible_nodes\":[105,106,108,109,110,112,113,114,115,116],\"floor_index\":1,\"index\":111,\"offset_point_count\":0,\"position\":[53.1636983167,10.2528499968,14.9465872523],\"quaternion\":{\"w\":0.6615020139289466,\"x\":-0.029635133606443754,\"y\":-0.7493557569172334,\"z\":-0.0016715313299958772},\"standing_position\":[53.1636983167,9.020397127384717,14.9465872523],\"visible_nodes\":[105,106,108,109,110,112,113,114,115,116]},{\"accessible_nodes\":[105,106,108,109,110,111,113,114,115,116,117],\"floor_index\":1,\"index\":112,\"offset_point_count\":0,\"position\":[55.1783634367,11.134601184,14.9360164855],\"quaternion\":{\"w\":0.6708893844882584,\"x\":-0.02344196078291212,\"y\":-0.7411671291449723,\"z\":0.005403233754605364},\"standing_position\":[55.1783634367,9.914918013681396,14.9360164855],\"visible_nodes\":[105,106,108,109,110,111,113,114,115,116,117]},{\"accessible_nodes\":[108,109,110,111,112,114,115,116,117,118],\"floor_index\":1,\"index\":113,\"offset_point_count\":0,\"position\":[58.4004490043,11.5703950142,14.8570118695],\"quaternion\":{\"w\":-0.7327986199782722,\"x\":0.0015254940661885616,\"y\":-0.6802806369433133,\"z\":-0.014903368476802266},\"standing_position\":[58.4004490043,10.315076491746693,14.8570118695],\"visible_nodes\":[108,109,110,111,112,114,115,116,117,118]},{\"accessible_nodes\":[109,110,111,112,113,115,116,117,118,119],\"floor_index\":1,\"index\":114,\"offset_point_count\":0,\"position\":[61.4602765276,12.3967015543,14.855898461],\"quaternion\":{\"w\":-0.30419358539941344,\"x\":-0.01927544173245654,\"y\":-0.9523539605367324,\"z\":-0.010800638839368961},\"standing_position\":[61.4602765276,11.16584513569038,14.855898461],\"visible_nodes\":[109,110,111,112,113,115,116,117,118,119]},{\"accessible_nodes\":[110,111,112,113,114,116,117,118,119,120],\"floor_index\":1,\"index\":115,\"offset_point_count\":0,\"position\":[63.3938610238,13.3564643521,14.8418720947],\"quaternion\":{\"w\":-0.29649484253239095,\"x\":-0.00921590158276703,\"y\":-0.9549864759251829,\"z\":-0.0025896535839462905},\"standing_position\":[63.3938610238,12.094086374728784,14.8418720947],\"visible_nodes\":[110,111,112,113,114,116,117,118,119,120]},{\"accessible_nodes\":[111,112,113,114,115,117,118,119,120,121],\"floor_index\":1,\"index\":116,\"offset_point_count\":0,\"position\":[65.3149014866,14.3116992282,14.8285594178],\"quaternion\":{\"w\":-0.31095786297022254,\"x\":-0.007931832365813152,\"y\":-0.9503518042677669,\"z\":-0.008587293871965433},\"standing_position\":[65.3149014866,13.020843701275867,14.8285594178],\"visible_nodes\":[111,112,113,114,115,117,118,119,120,121]},{\"accessible_nodes\":[112,113,114,115,116,118,119,120,121],\"floor_index\":1,\"index\":117,\"offset_point_count\":0,\"position\":[67.3862871158,15.2693520168,14.7141349786],\"quaternion\":{\"w\":-0.30905765041258393,\"x\":-0.02263293110540303,\"y\":-0.9507621295176834,\"z\":-0.004742595371659702},\"standing_position\":[67.3862871158,13.924101529472424,14.7141349786],\"visible_nodes\":[112,113,114,115,116,118,119,120,121]},{\"accessible_nodes\":[113,114,115,116,117,119,120,121,122],\"floor_index\":1,\"index\":118,\"offset_point_count\":0,\"position\":[71.632102852,15.3290425388,14.7567304911],\"quaternion\":{\"w\":-0.6965510288605453,\"x\":-0.003536194250660299,\"y\":-0.7174881652856722,\"z\":-0.0038590448720467957},\"standing_position\":[71.632102852,14.060950144924877,14.7567304911],\"visible_nodes\":[113,114,115,116,117,119,120,121,122]},{\"accessible_nodes\":[114,115,116,117,118,120,121,122],\"floor_index\":1,\"index\":119,\"offset_point_count\":0,\"position\":[73.8490277704,16.2074134286,14.7799163271],\"quaternion\":{\"w\":0.6637436576127265,\"x\":-0.0004216043618730189,\"y\":-0.747835182727451,\"z\":0.013664504306591732},\"standing_position\":[73.8490277704,14.943480127628014,14.7799163271],\"visible_nodes\":[114,115,116,117,118,120,121,122]},{\"accessible_nodes\":[115,116,117,118,119,121,122,123,124],\"floor_index\":1,\"index\":120,\"offset_point_count\":0,\"position\":[75.8329158971,17.1331511225,14.7330983276],\"quaternion\":{\"w\":-0.977275932145062,\"x\":-0.012486038383465223,\"y\":-0.21143477742919467,\"z\":-0.008437192024059853},\"standing_position\":[75.8329158971,15.881633707453307,14.7330983276],\"visible_nodes\":[115,116,117,118,119,121,122,123,124]},{\"accessible_nodes\":[116,117,118,119,120,122,123,124,125],\"floor_index\":1,\"index\":121,\"offset_point_count\":0,\"position\":[78.055845146,18.2071054572,14.7655750801],\"quaternion\":{\"w\":-0.29007074139409905,\"x\":0.01265236105691328,\"y\":-0.9568299422964355,\"z\":-0.013241761691310616},\"standing_position\":[78.055845146,16.877283632172535,14.7655750801],\"visible_nodes\":[116,117,118,119,120,122,123,124,125]},{\"accessible_nodes\":[118,119,120,121,123,124,125,126,127],\"floor_index\":1,\"index\":122,\"offset_point_count\":0,\"position\":[82.9353074443,18.2555699652,14.0291760806],\"quaternion\":{\"w\":-0.6045909072824525,\"x\":-0.010528179665155981,\"y\":-0.7964265301959749,\"z\":-0.007985878463183403},\"standing_position\":[82.9353074443,16.968007833318286,14.0291760806],\"visible_nodes\":[118,119,120,121,123,124,125,126,127]},{\"accessible_nodes\":[120,121,122,124,125,126,127],\"floor_index\":1,\"index\":123,\"offset_point_count\":0,\"position\":[87.3399215978,18.2739960714,16.8015516308],\"quaternion\":{\"w\":-0.9050335826227666,\"x\":-0.011069277944325412,\"y\":-0.42508865147312175,\"z\":-0.00955634831244149},\"standing_position\":[87.3399215978,17.026769833149267,16.8015516308],\"visible_nodes\":[120,121,122,124,125,126,127]},{\"accessible_nodes\":[120,121,122,123,125,126,127],\"floor_index\":1,\"index\":124,\"offset_point_count\":0,\"position\":[88.9198110444,18.9841305845,18.0147659956],\"quaternion\":{\"w\":-0.9972383476506507,\"x\":-0.0024965681783751213,\"y\":0.07028011720078013,\"z\":-0.023877819335866243},\"standing_position\":[88.9198110444,17.718096100590394,18.0147659956],\"visible_nodes\":[120,121,122,123,125,126,127]},{\"accessible_nodes\":[121,122,123,124,126,127,128],\"floor_index\":1,\"index\":125,\"offset_point_count\":0,\"position\":[90.843571845,19.8981649755,19.2144763652],\"quaternion\":{\"w\":-0.9956930706548077,\"x\":-0.006919921362382066,\"y\":0.0922463087340725,\"z\":-0.0061678400513134665},\"standing_position\":[90.843571845,18.64005743250836,19.2144763652],\"visible_nodes\":[121,122,123,124,126,127,128]},{\"accessible_nodes\":[122,123,124,125,127,128],\"floor_index\":1,\"index\":126,\"offset_point_count\":0,\"position\":[92.7088006314,20.8045379845,20.4178827515],\"quaternion\":{\"w\":-0.9948836481091645,\"x\":-0.0043145246764865995,\"y\":0.09975687113123619,\"z\":-0.0153778499667544},\"standing_position\":[92.7088006314,19.506077143321107,20.4178827515],\"visible_nodes\":[122,123,124,125,127,128]},{\"accessible_nodes\":[122,123,124,125,126,128,129,130,131,132,133],\"floor_index\":1,\"index\":127,\"offset_point_count\":0,\"position\":[94.5624553092,21.7192445034,21.7488130076],\"quaternion\":{\"w\":-0.9939945633654139,\"x\":-0.005122932119225294,\"y\":0.10804035545868533,\"z\":-0.01660858696661805},\"standing_position\":[94.5624553092,20.318290376088292,21.7488130076],\"visible_nodes\":[122,123,124,125,126,128,129,130,131,132,133]},{\"accessible_nodes\":[125,126,127,129,130,131,132,133,134],\"floor_index\":1,\"index\":128,\"offset_point_count\":0,\"position\":[97.8690428002,21.7469206654,21.5222660584],\"quaternion\":{\"w\":-0.9969214005627525,\"x\":-0.009741209808033122,\"y\":-0.07625256485324582,\"z\":-0.015439439048365707},\"standing_position\":[97.8690428002,20.48784812320945,21.5222660584],\"visible_nodes\":[125,126,127,129,130,131,132,133,134]},{\"accessible_nodes\":[127,128,130,131,132,133,134,135],\"floor_index\":1,\"index\":129,\"offset_point_count\":0,\"position\":[99.4307704013,22.5004018889,20.2205578697],\"quaternion\":{\"w\":-0.845239817527711,\"x\":-0.012625333424343145,\"y\":-0.5342369938519795,\"z\":-0.0010422300990152618},\"standing_position\":[99.4307704013,21.273201976828773,20.2205578697],\"visible_nodes\":[127,128,130,131,132,133,134,135]},{\"accessible_nodes\":[127,128,129,131,132,133,134,135,136],\"floor_index\":1,\"index\":130,\"offset_point_count\":0,\"position\":[100.7150163593,23.2858690036,18.9970165154],\"quaternion\":{\"w\":-0.8468090351550428,\"x\":-0.008475050492167603,\"y\":-0.5315846264471914,\"z\":-0.0161374241714497},\"standing_position\":[100.7150163593,22.023252369231102,18.9970165154],\"visible_nodes\":[127,128,129,131,132,133,134,135,136]},{\"accessible_nodes\":[127,128,129,130,132,133,134,135,136,137],\"floor_index\":1,\"index\":131,\"offset_point_count\":0,\"position\":[102.1403297734,24.0750022742,17.8040881691],\"quaternion\":{\"w\":-0.850943857495914,\"x\":-0.008020644556082953,\"y\":-0.5251807470766612,\"z\":-0.0039247404088465},\"standing_position\":[102.1403297734,22.830917677566088,17.8040881691],\"visible_nodes\":[127,128,129,130,132,133,134,135,136,137]},{\"accessible_nodes\":[127,128,129,130,131,133,134,135,136,137,138],\"floor_index\":1,\"index\":132,\"offset_point_count\":0,\"position\":[103.5093122059,24.8792651737,16.58291345],\"quaternion\":{\"w\":-0.8524422100174227,\"x\":-0.011966210410713558,\"y\":-0.5226790404253838,\"z\":-0.0023893527450107315},\"standing_position\":[103.5093122059,23.62974272611394,16.58291345],\"visible_nodes\":[127,128,129,130,131,133,134,135,136,137,138]},{\"accessible_nodes\":[127,128,129,130,131,132,134,135,136,137,138],\"floor_index\":1,\"index\":133,\"offset_point_count\":0,\"position\":[104.5209473043,25.3588641577,15.6910837406],\"quaternion\":{\"w\":-0.8635861585342546,\"x\":-0.015916637048565545,\"y\":-0.5036339099484863,\"z\":-0.017846347857949633},\"standing_position\":[104.5209473043,24.0345050983662,15.6910837406],\"visible_nodes\":[127,128,129,130,131,132,134,135,136,137,138]},{\"accessible_nodes\":[128,129,130,131,132,133,135,136,137,138,139,140],\"floor_index\":1,\"index\":134,\"offset_point_count\":0,\"position\":[107.1849012833,25.4306853539,13.1671228674],\"quaternion\":{\"w\":-0.4693832067856625,\"x\":-0.005838094809610346,\"y\":-0.8828591206698836,\"z\":-0.014321135053128764},\"standing_position\":[107.1849012833,24.236512256289526,13.1671228674],\"visible_nodes\":[128,129,130,131,132,133,135,136,137,138,139,140]},{\"accessible_nodes\":[129,130,131,132,133,134,136,137,138,139,140,141],\"floor_index\":1,\"index\":135,\"offset_point_count\":0,\"position\":[108.7484913105,26.1913167349,11.8910968687],\"quaternion\":{\"w\":0.05259319830110481,\"x\":-0.021955688883157316,\"y\":-0.9983746110929504,\"z\":-0.0001978048097433946},\"standing_position\":[108.7484913105,24.94516469155741,11.8910968687],\"visible_nodes\":[129,130,131,132,133,134,136,137,138,139,140,141]},{\"accessible_nodes\":[130,131,132,133,134,135,137,138,139,140,141,142],\"floor_index\":1,\"index\":136,\"offset_point_count\":0,\"position\":[110.1051619773,26.9732910476,10.6661311737],\"quaternion\":{\"w\":0.04740714546655205,\"x\":-0.018593062634432254,\"y\":-0.998700924914461,\"z\":-0.0018229500239581834},\"standing_position\":[110.1051619773,25.73019564965078,10.6661311737],\"visible_nodes\":[130,131,132,133,134,135,137,138,139,140,141,142]},{\"accessible_nodes\":[131,132,133,134,135,136,138,139,140,141,142,143],\"floor_index\":1,\"index\":137,\"offset_point_count\":0,\"position\":[111.7318472264,27.9353019272,9.2692692293],\"quaternion\":{\"w\":0.03197157562389409,\"x\":-0.006395840596926276,\"y\":-0.9994348323927879,\"z\":-0.008180914037611323},\"standing_position\":[111.7318472264,26.66349974023406,9.2692692293],\"visible_nodes\":[131,132,133,134,135,136,138,139,140,141,142,143]},{\"accessible_nodes\":[132,133,134,135,136,137,139,140,141,142,143,144],\"floor_index\":1,\"index\":138,\"offset_point_count\":0,\"position\":[113.6674640232,29.0047062029,7.5555841131],\"quaternion\":{\"w\":0.08707178737068384,\"x\":0.002701567023175665,\"y\":-0.9961572309379679,\"z\":-0.009054095498064524},\"standing_position\":[113.6674640232,27.695890246784277,7.5555841131],\"visible_nodes\":[132,133,134,135,136,137,139,140,141,142,143,144]},{\"accessible_nodes\":[134,135,136,137,138,140,141,142,143,144,145,146],\"floor_index\":1,\"index\":139,\"offset_point_count\":0,\"position\":[116.3023065496,29.0706020792,5.1649627525],\"quaternion\":{\"w\":-0.45011099235334695,\"x\":-0.001155800753292694,\"y\":-0.892938810655579,\"z\":-0.007683691752587879},\"standing_position\":[116.3023065496,27.802444358634204,5.1649627525],\"visible_nodes\":[134,135,136,137,138,140,141,142,143,144,145,146]},{\"accessible_nodes\":[134,135,136,137,138,139,141,142,143,144,145,146,147],\"floor_index\":1,\"index\":140,\"offset_point_count\":0,\"position\":[117.5576457048,29.8726038578,4.044462805],\"quaternion\":{\"w\":0.05552568739536916,\"x\":-0.014327383183573655,\"y\":-0.9983257439082697,\"z\":0.007571868697292346},\"standing_position\":[117.5576457048,28.697819435879225,4.044462805],\"visible_nodes\":[134,135,136,137,138,139,141,142,143,144,145,146,147]},{\"accessible_nodes\":[135,136,137,138,139,140,142,143,144,145,146,147,148,270],\"floor_index\":1,\"index\":141,\"offset_point_count\":0,\"position\":[118.7924254111,30.8757260307,2.940505013],\"quaternion\":{\"w\":0.05741596436836892,\"x\":-0.016207528376552763,\"y\":-0.9981519574819258,\"z\":0.011549581843312543},\"standing_position\":[118.7924254111,29.682954357497486,2.940505013],\"visible_nodes\":[135,136,137,138,139,140,142,143,144,145,146,147,148,270]},{\"accessible_nodes\":[136,137,138,139,140,141,143,144,145,146,147,148,270],\"floor_index\":1,\"index\":142,\"offset_point_count\":0,\"position\":[120.0356497173,31.8738055437,1.8095535356],\"quaternion\":{\"w\":0.054724466613673986,\"x\":-0.01750707864802306,\"y\":-0.9983037433817425,\"z\":0.009400579344929414},\"standing_position\":[120.0356497173,30.7067551820667,1.8095535356],\"visible_nodes\":[136,137,138,139,140,141,143,144,145,146,147,148,270]},{\"accessible_nodes\":[137,138,139,140,141,142,144,145,146,147,148,149,152,270],\"floor_index\":1,\"index\":143,\"offset_point_count\":0,\"position\":[121.2457647949,32.8501297187,0.6460915275],\"quaternion\":{\"w\":0.043462665028000745,\"x\":-0.021872552847642134,\"y\":-0.9987737520705077,\"z\":0.00914222996556634},\"standing_position\":[121.2457647949,31.669563884654593,0.6460915275],\"visible_nodes\":[137,138,139,140,141,142,144,145,146,147,148,149,152,270]},{\"accessible_nodes\":[138,139,140,141,142,143,145,146,147,148,149,152,270],\"floor_index\":1,\"index\":144,\"offset_point_count\":0,\"position\":[123.1578257847,33.0566120378,-1.0224347223],\"quaternion\":{\"w\":-0.9990665842049768,\"x\":-0.004347612730393194,\"y\":-0.04165791485571399,\"z\":-0.010567720327070672},\"standing_position\":[123.1578257847,31.83943548121278,-1.0224347223],\"visible_nodes\":[138,139,140,141,142,143,145,146,147,148,149,152,270]},{\"accessible_nodes\":[139,140,141,142,143,144,146,147,148,149,152,270],\"floor_index\":1,\"index\":145,\"offset_point_count\":0,\"position\":[124.4540667398,33.8700302534,-2.0084432077],\"quaternion\":{\"w\":-0.8348498453534963,\"x\":-0.0091516166283506,\"y\":-0.5501349930244395,\"z\":-0.01713105682150506},\"standing_position\":[124.4540667398,32.65853616522709,-2.0084432077],\"visible_nodes\":[139,140,141,142,143,144,146,147,148,149,152,270]},{\"accessible_nodes\":[139,140,141,142,143,144,145,147,148,149,152,270],\"floor_index\":1,\"index\":146,\"offset_point_count\":0,\"position\":[125.7208907098,34.8348764517,-3.1514640314],\"quaternion\":{\"w\":-0.8519048949710097,\"x\":-0.011469954515091134,\"y\":-0.5232133368187397,\"z\":-0.01934668525757927},\"standing_position\":[125.7208907098,33.654704365937974,-3.1514640314],\"visible_nodes\":[139,140,141,142,143,144,145,147,148,149,152,270]},{\"accessible_nodes\":[140,141,142,143,144,145,146,148,149,152,270],\"floor_index\":1,\"index\":147,\"offset_point_count\":0,\"position\":[126.9339267158,35.8215002371,-4.2164338551],\"quaternion\":{\"w\":-0.839483972534079,\"x\":-0.0057020622546354255,\"y\":-0.5425597287165719,\"z\":-0.02937834436718139},\"standing_position\":[126.9339267158,34.63402682077157,-4.2164338551],\"visible_nodes\":[140,141,142,143,144,145,146,148,149,152,270]},{\"accessible_nodes\":[141,142,143,144,145,146,147,149,152,153,270],\"floor_index\":1,\"index\":148,\"offset_point_count\":0,\"position\":[128.169035099,36.8009487258,-5.2974210403],\"quaternion\":{\"w\":-0.8500435750932648,\"x\":-0.011147466309515651,\"y\":-0.5257393866261115,\"z\":-0.029995863732414394},\"standing_position\":[128.169035099,35.4658759699864,-5.2974210403],\"visible_nodes\":[141,142,143,144,145,146,147,149,152,153,270]},{\"accessible_nodes\":[143,144,145,146,147,148,150,151,152,153,154,155,270],\"active\":false,\"floor_index\":1,\"index\":149,\"offset_point_count\":0,\"position\":[130.066395473,36.9698508301,-8.4236405764],\"quaternion\":{\"w\":-0.44773540336076195,\"x\":0.0020539675214402606,\"y\":-0.8934339057675167,\"z\":-0.036119881299196153},\"standing_position\":[130.066395473,35.713825992606104,-8.4236405764],\"visible_nodes\":[143,144,145,146,147,148,150,151,152,153,154,155,270]},{\"accessible_nodes\":[149,151,152,153,154,155,270],\"floor_index\":1,\"index\":150,\"offset_point_count\":0,\"position\":[132.9974398676,37.1313530779,-9.6229136684],\"quaternion\":{\"w\":-0.45320626907111244,\"x\":0.0005114599111525384,\"y\":-0.8909115163555806,\"z\":-0.029672986502790658},\"standing_position\":[132.9974398676,35.826221284877846,-9.6229136684],\"visible_nodes\":[149,151,152,153,154,155,270]},{\"accessible_nodes\":[149,150,152,153],\"floor_index\":1,\"index\":151,\"offset_point_count\":0,\"position\":[128.5736751576,37.0385801744,-12.0497899156],\"quaternion\":{\"w\":0.3316552618354439,\"x\":0.015650366262450404,\"y\":-0.9432626992519104,\"z\":-0.003915807047102855},\"standing_position\":[128.5736751576,35.75247156138578,-12.0497899156],\"visible_nodes\":[149,150,152,153]},{\"accessible_nodes\":[143,144,145,146,147,148,149,150,151,153,154,155,270],\"floor_index\":1,\"index\":152,\"offset_point_count\":0,\"position\":[132.2982943435,36.9562053611,-5.8411813677],\"quaternion\":{\"w\":-0.4436328880047252,\"x\":0.000349658316487778,\"y\":-0.8957082106495396,\"z\":-0.029942274231863082},\"standing_position\":[132.2982943435,35.68813525936202,-5.8411813677],\"visible_nodes\":[143,144,145,146,147,148,149,150,151,153,154,155,270]},{\"accessible_nodes\":[148,149,150,151,152,270],\"floor_index\":1,\"index\":153,\"offset_point_count\":0,\"position\":[135.7777329601,36.9710908685,-1.9683484502],\"quaternion\":{\"w\":-0.45150750262736467,\"x\":-0.0018641390669924367,\"y\":-0.891797105932734,\"z\":-0.02890366581537677},\"standing_position\":[135.7777329601,35.67592926361871,-1.9683484502],\"visible_nodes\":[148,149,150,151,152,270]},{\"accessible_nodes\":[149,150,152,155,156,270],\"floor_index\":1,\"index\":154,\"offset_point_count\":0,\"position\":[136.6644850039,37.3494650963,-12.9062209527],\"quaternion\":{\"w\":-0.41500675691717054,\"x\":0.0006480399899960142,\"y\":-0.9095662830987086,\"z\":-0.021404401456784322},\"standing_position\":[136.6644850039,36.056784475152845,-12.9062209527],\"visible_nodes\":[149,150,152,155,156,270]},{\"accessible_nodes\":[149,150,152,154,156,181,184],\"floor_index\":1,\"index\":155,\"offset_point_count\":0,\"position\":[141.4185374173,37.5998180805,-16.9588293615],\"quaternion\":{\"w\":-0.45265528676769856,\"x\":-0.002044584521238776,\"y\":-0.891381528162885,\"z\":-0.02319444502357006},\"standing_position\":[141.4185374173,36.29626104219281,-16.9588293615],\"visible_nodes\":[149,150,152,154,156,181,184]},{\"accessible_nodes\":[154,155,157,158,180,181,182,183,184,185,186,271,276],\"floor_index\":1,\"index\":156,\"offset_point_count\":0,\"position\":[144.9536484824,37.7271395368,-20.343346128],\"quaternion\":{\"w\":-0.43482049938193845,\"x\":-0.009495627238160213,\"y\":-0.900355641135768,\"z\":-0.014166363870292627},\"standing_position\":[144.9536484824,36.439342443408584,-20.343346128],\"visible_nodes\":[154,155,157,158,180,181,182,183,184,185,186,271,276]},{\"accessible_nodes\":[156,175,178,179,180,181,182,183,184,185],\"floor_index\":1,\"index\":157,\"offset_point_count\":0,\"position\":[139.9721429125,37.7783007245,-25.6454167255],\"quaternion\":{\"w\":0.40197949233212693,\"x\":0.004581516806516994,\"y\":-0.9156302818823764,\"z\":-0.0035615089567546825},\"standing_position\":[139.9721429125,36.49290545987445,-25.6454167255],\"visible_nodes\":[156,175,178,179,180,181,182,183,184,185]},{\"accessible_nodes\":[156,159,160,184,185,186,187,188,277,278,288,289,290],\"floor_index\":1,\"index\":158,\"offset_point_count\":0,\"position\":[153.5578958084,37.6322317221,-10.753476228],\"quaternion\":{\"w\":-0.9009744688114086,\"x\":-0.01150297248563806,\"y\":-0.4333044692875947,\"z\":-0.0189716919754114},\"standing_position\":[153.5578958084,36.328655252678615,-10.753476228],\"visible_nodes\":[156,159,160,184,185,186,187,188,277,278,288,289,290]},{\"accessible_nodes\":[158,160,161,162,185,186,187,188,189,193,277,278,288,289,290],\"floor_index\":1,\"index\":159,\"offset_point_count\":0,\"position\":[157.4346397209,37.5868079917,-6.8943629691],\"quaternion\":{\"w\":-0.9306165484908379,\"x\":-0.008194240218881169,\"y\":-0.36546380166089254,\"z\":-0.017941677054934022},\"standing_position\":[157.4346397209,36.290862466530626,-6.8943629691],\"visible_nodes\":[158,160,161,162,185,186,187,188,189,193,277,278,288,289,290]},{\"accessible_nodes\":[158,159,161,162,163,186,187,188,189,190,193,194,278,288,289],\"floor_index\":1,\"index\":160,\"offset_point_count\":0,\"position\":[161.5985533821,37.5351636796,-2.442152449],\"quaternion\":{\"w\":-0.24771764769188087,\"x\":-0.012103859462576758,\"y\":-0.9687550414191403,\"z\":-0.0017701160011387824},\"standing_position\":[161.5985533821,36.27879146623635,-2.442152449],\"visible_nodes\":[158,159,161,162,163,186,187,188,189,190,193,194,278,288,289]},{\"accessible_nodes\":[159,160,162,187,188,189,190,191,192,193,278,288,289],\"floor_index\":1,\"index\":161,\"offset_point_count\":0,\"position\":[164.90314363,37.4949860329,0.9559196918],\"quaternion\":{\"w\":-0.3711178009055907,\"x\":-0.009878336288996795,\"y\":-0.9285078789245679,\"z\":-0.006864044742820824},\"standing_position\":[164.90314363,36.23606667464652,0.9559196918],\"visible_nodes\":[159,160,162,187,188,189,190,191,192,193,278,288,289]},{\"accessible_nodes\":[159,160,161,163,164,187,188,189,193,194,278,279,280],\"floor_index\":1,\"index\":162,\"offset_point_count\":0,\"position\":[168.0237562825,37.7051466208,-8.5272553162],\"quaternion\":{\"w\":-0.45727664179182415,\"x\":-0.012484108746463033,\"y\":-0.889129861043931,\"z\":-0.013795292861493336},\"standing_position\":[168.0237562825,36.39160878472517,-8.5272553162],\"visible_nodes\":[159,160,161,163,164,187,188,189,193,194,278,279,280]},{\"accessible_nodes\":[160,162,164,165,194,278,279,280],\"floor_index\":1,\"index\":163,\"offset_point_count\":0,\"position\":[172.0492582801,37.8211067505,-12.3504637266],\"quaternion\":{\"w\":-0.3319834297055911,\"x\":-0.011690595049067203,\"y\":-0.9431038115446252,\"z\":-0.014336424219148781},\"standing_position\":[172.0492582801,36.54623134804944,-12.3504637266],\"visible_nodes\":[160,162,164,165,194,278,279,280]},{\"accessible_nodes\":[162,163,165,166,169,194,278,279,280],\"floor_index\":1,\"index\":164,\"offset_point_count\":0,\"position\":[176.1189805291,37.8906758764,-16.2059784585],\"quaternion\":{\"w\":-0.32695738219571713,\"x\":-0.011291181202258008,\"y\":-0.9449177445550485,\"z\":-0.010091357586358011},\"standing_position\":[176.1189805291,36.62692317750169,-16.2059784585],\"visible_nodes\":[162,163,165,166,169,194,278,279,280]},{\"accessible_nodes\":[163,164,166,167,169,170,171,279,280,282,283,287],\"floor_index\":1,\"index\":165,\"offset_point_count\":0,\"position\":[180.1599887396,37.9747941444,-19.9792523437],\"quaternion\":{\"w\":-0.30614700964872754,\"x\":-0.012796762780649286,\"y\":-0.9518195917031756,\"z\":-0.01223585714301181},\"standing_position\":[180.1599887396,36.69113409019315,-19.9792523437],\"visible_nodes\":[163,164,166,167,169,170,171,279,280,282,283,287]},{\"accessible_nodes\":[164,165,167,168,169,170,171,280,286,287],\"floor_index\":1,\"index\":166,\"offset_point_count\":0,\"position\":[184.8003875419,38.0060302419,-24.2977106754],\"quaternion\":{\"w\":-0.18197516936126842,\"x\":-0.01213085887950187,\"y\":-0.983219444185783,\"z\":-0.0041718804731294724},\"standing_position\":[184.8003875419,36.73053852742246,-24.2977106754],\"visible_nodes\":[164,165,167,168,169,170,171,280,286,287]},{\"accessible_nodes\":[165,166,168,169,170,171],\"floor_index\":1,\"index\":167,\"offset_point_count\":0,\"position\":[188.7873286,38.0489833756,-28.0348901974],\"quaternion\":{\"w\":-0.04823192119909851,\"x\":-0.009047412443049664,\"y\":-0.9987946064006353,\"z\":-0.0010771806016024086},\"standing_position\":[188.7873286,36.77082268433871,-28.0348901974],\"visible_nodes\":[165,166,168,169,170,171]},{\"accessible_nodes\":[166,167,169],\"floor_index\":1,\"index\":168,\"offset_point_count\":0,\"position\":[192.8029746531,38.1295916043,-31.7767766136],\"quaternion\":{\"w\":-0.006385337696135369,\"x\":0.003911941617680146,\"y\":-0.9999545449044172,\"z\":-0.005901889195937397},\"standing_position\":[192.8029746531,36.86970545870827,-31.7767766136],\"visible_nodes\":[166,167,169]},{\"accessible_nodes\":[164,165,166,167,168,170,171,172,280,281,282,286,287],\"floor_index\":1,\"index\":169,\"offset_point_count\":0,\"position\":[180.2733873205,37.9038840449,-29.0725243485],\"quaternion\":{\"w\":-0.9155389177828543,\"x\":-0.013348403751743681,\"y\":-0.4016857495152645,\"z\":-0.016089399793809418},\"standing_position\":[180.2733873205,36.60215436579234,-29.0725243485],\"visible_nodes\":[164,165,166,167,168,170,171,172,280,281,282,286,287]},{\"accessible_nodes\":[165,166,167,169,171,280,281,282,283,286,287],\"floor_index\":1,\"index\":170,\"offset_point_count\":0,\"position\":[174.9009200486,37.8394350139,-26.5212801741],\"quaternion\":{\"w\":-0.8179883715098676,\"x\":-0.0247959543593327,\"y\":-0.5745781526911722,\"z\":-0.011837704310793335},\"standing_position\":[174.9009200486,36.59838918126603,-26.5212801741],\"visible_nodes\":[165,166,167,169,171,280,281,282,283,286,287]},{\"accessible_nodes\":[165,166,167,169,170,172,173,281,282,283,286],\"floor_index\":1,\"index\":171,\"offset_point_count\":0,\"position\":[176.5307238781,37.9430547663,-33.0999331955],\"quaternion\":{\"w\":0.5550534250149513,\"x\":-0.004439634974412866,\"y\":-0.8316729182196568,\"z\":0.014701771672659828},\"standing_position\":[176.5307238781,36.682346315028944,-33.0999331955],\"visible_nodes\":[165,166,167,169,170,172,173,281,282,283,286]},{\"accessible_nodes\":[169,171,173,275,287],\"floor_index\":1,\"index\":172,\"offset_point_count\":0,\"position\":[170.2352531622,38.0824051038,-33.6197870085],\"quaternion\":{\"w\":0.7398535877278817,\"x\":-0.01906810495297109,\"y\":-0.672433055441209,\"z\":-0.009319981780026985},\"standing_position\":[170.2352531622,36.77691806709498,-33.6197870085],\"visible_nodes\":[169,171,173,275,287]},{\"accessible_nodes\":[171,172,174,183,271,272,273,275,281,282,283],\"floor_index\":1,\"index\":173,\"offset_point_count\":0,\"position\":[163.6088637696,38.1662416485,-34.0805417803],\"quaternion\":{\"w\":0.8108241623472107,\"x\":0.005627545210222212,\"y\":-0.5850084365417306,\"z\":0.017252180600441813},\"standing_position\":[163.6088637696,36.85370147496942,-34.0805417803],\"visible_nodes\":[171,172,174,183,271,272,273,275,281,282,283]},{\"accessible_nodes\":[173,175,176,177,178,179,181,182,183,184,271,272,273],\"floor_index\":1,\"index\":174,\"offset_point_count\":0,\"position\":[151.8887339557,38.1204153151,-36.8229622042],\"quaternion\":{\"w\":0.8305766557006764,\"x\":0.0005722537302443732,\"y\":-0.5567708573327091,\"z\":0.012178013514360903},\"standing_position\":[151.8887339557,36.81228755421285,-36.8229622042],\"visible_nodes\":[173,175,176,177,178,179,181,182,183,184,271,272,273]},{\"accessible_nodes\":[157,174,176,177,178,179,180,181,182,183,184,271],\"floor_index\":1,\"index\":175,\"offset_point_count\":0,\"position\":[144.444643283,38.0619843935,-37.2963173189],\"quaternion\":{\"w\":-0.9275301754120995,\"x\":-0.0009924992462816559,\"y\":0.373522799348357,\"z\":-0.012942450141491585},\"standing_position\":[144.444643283,36.74414107551446,-37.2963173189],\"visible_nodes\":[157,174,176,177,178,179,180,181,182,183,184,271]},{\"accessible_nodes\":[174,175,177,178,179,180,181,182],\"floor_index\":1,\"index\":176,\"offset_point_count\":0,\"position\":[140.6985170651,38.0613280423,-41.2192391964],\"quaternion\":{\"w\":0.5124454905206367,\"x\":-0.0019577342578947416,\"y\":-0.858707453895097,\"z\":-0.0041587451393384255},\"standing_position\":[140.6985170651,36.82194196060444,-41.2192391964],\"visible_nodes\":[174,175,177,178,179,180,181,182]},{\"accessible_nodes\":[174,175,176,178,179,180,181,182],\"floor_index\":1,\"index\":177,\"offset_point_count\":0,\"position\":[141.4336145169,38.1095100535,-43.5394695131],\"quaternion\":{\"w\":0.5356953114674099,\"x\":0.015999815074497787,\"y\":-0.8442068290857401,\"z\":-0.009453513463807066},\"standing_position\":[141.4336145169,36.88170420060999,-43.5394695131],\"visible_nodes\":[174,175,176,178,179,180,181,182]},{\"accessible_nodes\":[157,174,175,176,177,179,180,181,182],\"floor_index\":1,\"index\":178,\"offset_point_count\":0,\"position\":[139.3040232448,37.9964766039,-38.1387791352],\"quaternion\":{\"w\":0.5332716864644271,\"x\":0.0005666982563683354,\"y\":-0.8459415034593113,\"z\":-0.001989969451925445},\"standing_position\":[139.3040232448,36.7299708856688,-38.1387791352],\"visible_nodes\":[157,174,175,176,177,179,180,181,182]},{\"accessible_nodes\":[157,174,175,176,177,178,180,181,182],\"floor_index\":1,\"index\":179,\"offset_point_count\":0,\"position\":[137.821466722,37.9348770864,-35.4922229415],\"quaternion\":{\"w\":0.5420547126192333,\"x\":0.0016330837718476934,\"y\":-0.8403414593038951,\"z\":0.0005033364358227206},\"standing_position\":[137.821466722,36.64939158034226,-35.4922229415],\"visible_nodes\":[157,174,175,176,177,178,180,181,182]},{\"accessible_nodes\":[156,157,175,176,177,178,179,181,182],\"floor_index\":1,\"index\":180,\"offset_point_count\":0,\"position\":[136.1129674824,37.8531721195,-32.1869041949],\"quaternion\":{\"w\":0.536741719489803,\"x\":0.002142799496735713,\"y\":-0.8437403279001188,\"z\":0.0024482717688049434},\"standing_position\":[136.1129674824,36.56126731240924,-32.1869041949],\"visible_nodes\":[156,157,175,176,177,178,179,181,182]},{\"accessible_nodes\":[155,156,157,174,175,176,177,178,179,180,182,183,184,271,272],\"floor_index\":1,\"index\":181,\"offset_point_count\":0,\"position\":[143.9735094224,37.9303330544,-29.3740438287],\"quaternion\":{\"w\":-0.34014057785250473,\"x\":-0.007163310106384204,\"y\":-0.9402117945441867,\"z\":-0.015964199914420968},\"standing_position\":[143.9735094224,36.614047682619606,-29.3740438287],\"visible_nodes\":[155,156,157,174,175,176,177,178,179,180,182,183,184,271,272]},{\"accessible_nodes\":[156,157,174,175,176,177,178,179,180,181,183,184,271,272,273],\"floor_index\":1,\"index\":182,\"offset_point_count\":0,\"position\":[148.0466128792,38.0544641885,-33.2474224988],\"quaternion\":{\"w\":-0.3268637230464312,\"x\":-0.01225222194820504,\"y\":-0.9449903188128437,\"z\":-0.0018129949756016531},\"standing_position\":[148.0466128792,36.713984576149535,-33.2474224988],\"visible_nodes\":[156,157,174,175,176,177,178,179,180,181,183,184,271,272,273]},{\"accessible_nodes\":[156,157,173,174,175,181,182,184,185,271,272,273,274,275,276,283],\"floor_index\":1,\"index\":183,\"offset_point_count\":0,\"position\":[153.0078712798,37.9949305323,-27.9771573549],\"quaternion\":{\"w\":-0.9299173947050351,\"x\":-0.014039915721913435,\"y\":-0.3669739546954538,\"z\":-0.019663071530993222},\"standing_position\":[153.0078712798,36.67256286414815,-27.9771573549],\"visible_nodes\":[156,157,173,174,175,181,182,184,185,271,272,273,274,275,276,283]},{\"accessible_nodes\":[155,156,157,158,174,175,181,182,183,185,271,272,273,274],\"floor_index\":1,\"index\":184,\"offset_point_count\":0,\"position\":[149.1586146537,37.8615657882,-24.2435448429],\"quaternion\":{\"w\":-0.893866353517124,\"x\":-0.010679355182616937,\"y\":0.44813107756418796,\"z\":-0.008211622795867363},\"standing_position\":[149.1586146537,36.56928284924278,-24.2435448429],\"visible_nodes\":[155,156,157,158,174,175,181,182,183,185,271,272,273,274]},{\"accessible_nodes\":[156,157,158,159,183,184,186,187,277,288,289],\"floor_index\":1,\"index\":185,\"offset_point_count\":0,\"position\":[150.060809878,37.7046261413,-14.7539417831],\"quaternion\":{\"w\":0.32010686620092466,\"x\":-0.0015451293090586876,\"y\":-0.9473762107922069,\"z\":-0.002742627237628399},\"standing_position\":[150.060809878,36.41763871740321,-14.7539417831],\"visible_nodes\":[156,157,158,159,183,184,186,187,277,288,289]},{\"accessible_nodes\":[156,158,159,160,185,187,188,276,277,288,289,290],\"floor_index\":1,\"index\":186,\"offset_point_count\":0,\"position\":[151.1095469807,37.5962700795,-9.1721675584],\"quaternion\":{\"w\":-0.9190615972963945,\"x\":-0.012722411924724505,\"y\":0.39381575338880714,\"z\":-0.008548273285611328},\"standing_position\":[151.1095469807,36.32516347873859,-9.1721675584],\"visible_nodes\":[156,158,159,160,185,187,188,276,277,288,289,290]},{\"accessible_nodes\":[158,159,160,161,162,185,186,188,189,277,278,288,289,290],\"floor_index\":1,\"index\":187,\"offset_point_count\":0,\"position\":[154.6836011427,37.5401838817,-5.3103002283],\"quaternion\":{\"w\":-0.9159945391622157,\"x\":-0.012992716404057488,\"y\":0.40091533720919403,\"z\":-0.007217057381200527},\"standing_position\":[154.6836011427,36.2404465474486,-5.3103002283],\"visible_nodes\":[158,159,160,161,162,185,186,188,189,277,278,288,289,290]},{\"accessible_nodes\":[158,159,160,161,162,186,187,189,190,193,288,289,290],\"floor_index\":1,\"index\":188,\"offset_point_count\":0,\"position\":[158.0135285412,37.4939631001,-1.1528015782],\"quaternion\":{\"w\":-0.9180255729145022,\"x\":-0.011914553170098529,\"y\":0.3962397185953748,\"z\":-0.009009790025501131},\"standing_position\":[158.0135285412,36.257879592562155,-1.1528015782],\"visible_nodes\":[158,159,160,161,162,186,187,189,190,193,288,289,290]},{\"accessible_nodes\":[159,160,161,162,187,188,190,191,192,193,288],\"floor_index\":1,\"index\":189,\"offset_point_count\":0,\"position\":[161.2905126164,37.4291960091,2.9801792064],\"quaternion\":{\"w\":-0.9204440199979572,\"x\":-0.010244176500838071,\"y\":0.39067703041929497,\"z\":-0.007022878045331199},\"standing_position\":[161.2905126164,36.147322306097074,2.9801792064],\"visible_nodes\":[159,160,161,162,187,188,190,191,192,193,288]},{\"accessible_nodes\":[160,161,188,189,191,192,193,194],\"floor_index\":1,\"index\":190,\"offset_point_count\":0,\"position\":[164.9214265224,37.3695155029,6.985545266],\"quaternion\":{\"w\":-0.90862876738798,\"x\":-0.017379511294140105,\"y\":0.4172076497090828,\"z\":-0.005430715933840818},\"standing_position\":[164.9214265224,36.092775428742286,6.985545266],\"visible_nodes\":[160,161,188,189,191,192,193,194]},{\"accessible_nodes\":[161,189,190,192,193,194],\"floor_index\":1,\"index\":191,\"offset_point_count\":0,\"position\":[168.7634437398,37.3156341959,11.2288130117],\"quaternion\":{\"w\":-0.9493145562588831,\"x\":-0.013227327330242337,\"y\":-0.313914634259261,\"z\":-0.009193121676541554},\"standing_position\":[168.7634437398,36.04847056159977,11.2288130117],\"visible_nodes\":[161,189,190,192,193,194]},{\"accessible_nodes\":[161,189,190,191,193,194],\"floor_index\":1,\"index\":192,\"offset_point_count\":0,\"position\":[174.0390051545,37.4496606189,6.3587755104],\"quaternion\":{\"w\":-0.4106792359367896,\"x\":-0.007258642126409796,\"y\":-0.9116220823071367,\"z\":-0.015331546834218765},\"standing_position\":[174.0390051545,36.161922772525486,6.3587755104],\"visible_nodes\":[161,189,190,191,193,194]},{\"accessible_nodes\":[159,160,161,162,188,189,190,191,192,194,278],\"floor_index\":1,\"index\":193,\"offset_point_count\":0,\"position\":[169.7877355524,37.5183581545,1.601870833],\"quaternion\":{\"w\":0.33086179902332313,\"x\":-0.004396217304352804,\"y\":-0.9435523969420034,\"z\":-0.014832985264368052},\"standing_position\":[169.7877355524,36.251511259282104,1.601870833],\"visible_nodes\":[159,160,161,162,188,189,190,191,192,194,278]},{\"accessible_nodes\":[160,162,163,164,190,191,192,193,278,279],\"floor_index\":1,\"index\":194,\"offset_point_count\":0,\"position\":[173.8160668146,37.6167796013,-2.23794414],\"quaternion\":{\"w\":0.34328637684349506,\"x\":0.00014731112521010147,\"y\":-0.9392294696185804,\"z\":-0.001563705779585813},\"standing_position\":[173.8160668146,36.34267619820857,-2.23794414],\"visible_nodes\":[160,162,163,164,190,191,192,193,278,279]},{\"accessible_nodes\":[0,1,2,4,5,6,7,196,197,200,201,291,292,293,294,295,296,297,298,299,300,301,302,303,306],\"floor_index\":0,\"index\":195,\"offset_point_count\":0,\"position\":[-4.8612799359,0.0357150872,0.9319316615],\"quaternion\":{\"w\":0.7165002252402334,\"x\":-0.004636612701096081,\"y\":-0.697425121195817,\"z\":0.014287385623441498},\"standing_position\":[-4.8612799359,-1.2464584271661499,0.9319316615],\"visible_nodes\":[0,1,2,4,5,6,7,196,197,200,201,291,292,293,294,295,296,297,298,299,300,301,302,303,306]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,195,197,198,199,200,201,202,203,204,205,206,208,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":196,\"offset_point_count\":0,\"position\":[8.1956459656,0.0040742618,1.4507386682],\"quaternion\":{\"w\":-0.9996120265508014,\"x\":-0.0039459578768878895,\"y\":0.025873767059649957,\"z\":-0.00952753843194782},\"standing_position\":[8.1956459656,-1.289449884280017,1.4507386682],\"visible_nodes\":[0,1,2,3,4,5,6,7,195,197,198,199,200,201,202,203,204,205,206,208,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,195,196,198,199,200,201,202,203,204,205,206,208,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":197,\"offset_point_count\":0,\"position\":[9.636389379,-0.0015015094,1.5494925793],\"quaternion\":{\"w\":-0.9219446988024824,\"x\":-0.011560996677831649,\"y\":-0.3871136771419971,\"z\":-0.005226535719830944},\"standing_position\":[9.636389379,-1.2920847623067993,1.5494925793],\"visible_nodes\":[0,1,2,3,4,5,6,195,196,198,199,200,201,202,203,204,205,206,208,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,196,197,199,200,201,202,203,204,205,206,208,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":198,\"offset_point_count\":0,\"position\":[10.881497913,-0.0002997126,1.4098225908],\"quaternion\":{\"w\":-0.8846856278503681,\"x\":-0.010958256096638775,\"y\":-0.4660529462899066,\"z\":-0.0024305921304778365},\"standing_position\":[10.881497913,-1.2978877033608032,1.4098225908],\"visible_nodes\":[0,1,2,3,4,5,6,196,197,199,200,201,202,203,204,205,206,208,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,5,196,197,198,200,201,202,203,204,205,206,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":199,\"offset_point_count\":0,\"position\":[12.419059145,-0.0059703625,1.4849877221],\"quaternion\":{\"w\":-0.8782183261012037,\"x\":-0.006246862894965136,\"y\":-0.478208979240321,\"z\":-0.0031177856845182894},\"standing_position\":[12.419059145,-1.29747164614563,1.4849877221],\"visible_nodes\":[0,1,2,3,5,196,197,198,200,201,202,203,204,205,206,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,195,196,197,198,199,201,202,203,204,205,206,207,208,209,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":200,\"offset_point_count\":0,\"position\":[8.304224504,0.0001266358,-0.2024232031],\"quaternion\":{\"w\":0.49641482283164146,\"x\":-0.003966495399557375,\"y\":-0.8680056960066564,\"z\":0.01107710662986981},\"standing_position\":[8.304224504,-1.3093878867524902,-0.2024232031],\"visible_nodes\":[0,1,2,3,4,5,6,7,195,196,197,198,199,201,202,203,204,205,206,207,208,209,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,195,196,197,198,199,200,202,203,204,205,206,207,208,209,210,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":201,\"offset_point_count\":0,\"position\":[9.6043295842,0.000539324,-0.2017503006],\"quaternion\":{\"w\":0.4293199403805571,\"x\":-0.004665193337969012,\"y\":-0.9030907177437935,\"z\":0.009475246347762508},\"standing_position\":[9.6043295842,-1.3024512317632446,-0.2017503006],\"visible_nodes\":[0,1,2,3,4,5,6,7,195,196,197,198,199,200,202,203,204,205,206,207,208,209,210,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,196,197,198,199,200,201,203,204,205,206,207,208,209,210,293,294,295,296,297,298,299,300,302,303,306,307,308],\"floor_index\":0,\"index\":202,\"offset_point_count\":0,\"position\":[10.9519155805,-0.0007717015,-0.2027230966],\"quaternion\":{\"w\":0.45418368724102165,\"x\":-0.009030123965136935,\"y\":-0.8907843464890928,\"z\":0.01178486958305417},\"standing_position\":[10.9519155805,-1.3033071161957397,-0.2027230966],\"visible_nodes\":[0,1,2,3,4,5,6,196,197,198,199,200,201,203,204,205,206,207,208,209,210,293,294,295,296,297,298,299,300,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,5,196,197,198,199,200,201,202,204,205,206,207,208,209,210,213,295,296,297,298,302,303,306,307,308],\"floor_index\":0,\"index\":203,\"offset_point_count\":0,\"position\":[12.1914262119,-0.006525327,-0.2721183111],\"quaternion\":{\"w\":0.4229625520065519,\"x\":-0.004678990362829201,\"y\":-0.9060960209878421,\"z\":0.00841352414470253},\"standing_position\":[12.1914262119,-1.3121299040645142,-0.2721183111],\"visible_nodes\":[0,1,2,3,5,196,197,198,199,200,201,202,204,205,206,207,208,209,210,213,295,296,297,298,302,303,306,307,308]},{\"accessible_nodes\":[1,2,3,196,197,198,199,200,201,202,203,205,206,207,208,209,210,213,306,307,308],\"floor_index\":0,\"index\":204,\"offset_point_count\":0,\"position\":[15.2359423789,0.1424684692,-0.505180661],\"quaternion\":{\"w\":0.010615117507102666,\"x\":-0.010530868448850542,\"y\":-0.9998761617945494,\"z\":0.004907258006025273},\"standing_position\":[15.2359423789,-1.3215052914048584,-0.505180661],\"visible_nodes\":[1,2,3,196,197,198,199,200,201,202,203,205,206,207,208,209,210,213,306,307,308]},{\"accessible_nodes\":[1,2,3,196,197,198,199,200,201,202,203,204,206,207,208,209,210,213,306,307,308],\"floor_index\":0,\"index\":205,\"offset_point_count\":0,\"position\":[16.5853643553,0.1321576393,-0.5634430517],\"quaternion\":{\"w\":-0.999567731196841,\"x\":-0.0007663232076157894,\"y\":0.02917328515105653,\"z\":-0.0035613114188246956},\"standing_position\":[16.5853643553,-1.3282853805669435,-0.5634430517],\"visible_nodes\":[1,2,3,196,197,198,199,200,201,202,203,204,206,207,208,209,210,213,306,307,308]},{\"accessible_nodes\":[1,2,3,196,197,198,199,200,201,202,203,204,205,207,208,209,210,213,307,308],\"floor_index\":0,\"index\":206,\"offset_point_count\":0,\"position\":[17.8791200312,0.1236646349,-0.6054659597],\"quaternion\":{\"w\":0.47996007217805825,\"x\":-0.018300393478009342,\"y\":-0.8770260155491398,\"z\":0.011348690059972827},\"standing_position\":[17.8791200312,-1.3454663579894044,-0.6054659597],\"visible_nodes\":[1,2,3,196,197,198,199,200,201,202,203,204,205,207,208,209,210,213,307,308]},{\"accessible_nodes\":[2,3,200,201,202,203,204,205,206,208,209,210,213,307,308],\"floor_index\":0,\"index\":207,\"offset_point_count\":0,\"position\":[21.2181044672,0.1027078447,-0.0792868224],\"quaternion\":{\"w\":-0.9739751495546486,\"x\":0.0014316573945830037,\"y\":-0.22649280749192507,\"z\":-0.00844787154350113},\"standing_position\":[21.2181044672,-1.3452758970602539,-0.0792868224],\"visible_nodes\":[2,3,200,201,202,203,204,205,206,208,209,210,213,307,308]},{\"accessible_nodes\":[2,3,196,197,198,200,201,202,203,204,205,206,207,209,210,213,307,308],\"floor_index\":0,\"index\":208,\"offset_point_count\":0,\"position\":[18.7930339443,0.11277068,-0.6147606372],\"quaternion\":{\"w\":-0.582408886351141,\"x\":-0.01408945857874982,\"y\":-0.8127722677201775,\"z\":-0.0016177370060719116},\"standing_position\":[18.7930339443,-1.3503739799960328,-0.6147606372],\"visible_nodes\":[2,3,196,197,198,200,201,202,203,204,205,206,207,209,210,213,307,308]},{\"accessible_nodes\":[3,200,201,202,203,204,205,206,207,208,210,211,212,213,214,215,307,308],\"floor_index\":0,\"index\":209,\"offset_point_count\":0,\"position\":[22.9430732576,0.8526661983,-0.0681879703],\"quaternion\":{\"w\":-0.7427741864588312,\"x\":-0.0002544907177808355,\"y\":-0.6694240225559581,\"z\":-0.012566671782826165},\"standing_position\":[22.9430732576,-0.5916045317186157,-0.0681879703],\"visible_nodes\":[3,200,201,202,203,204,205,206,207,208,210,211,212,213,214,215,307,308]},{\"accessible_nodes\":[3,201,202,203,204,205,206,207,208,209,211,212,213,214,215,307,308],\"floor_index\":0,\"index\":210,\"offset_point_count\":0,\"position\":[24.4077434709,1.6060214127,-0.0686341133],\"quaternion\":{\"w\":-0.7465751147386137,\"x\":0.0026500204631856004,\"y\":-0.6651616561032363,\"z\":-0.013362136735405098},\"standing_position\":[24.4077434709,0.20062960037547617,-0.0686341133],\"visible_nodes\":[3,201,202,203,204,205,206,207,208,209,211,212,213,214,215,307,308]},{\"accessible_nodes\":[209,210,212,213,214,215,325],\"floor_index\":0,\"index\":211,\"offset_point_count\":0,\"position\":[24.0633818192,2.9322000018,-1.5624308692],\"quaternion\":{\"w\":0.6598097350079398,\"x\":-0.024889056454017577,\"y\":-0.751010475609362,\"z\":0.0038618662378135213},\"standing_position\":[24.0633818192,1.5219830742716187,-1.5624308692],\"visible_nodes\":[209,210,212,213,214,215,325]},{\"accessible_nodes\":[209,210,211,213,214,215],\"floor_index\":0,\"index\":212,\"offset_point_count\":0,\"position\":[26.0818358664,2.1661254834,-1.4644993263],\"quaternion\":{\"w\":-0.9778690194115979,\"x\":-0.005950425424563755,\"y\":-0.20870247216012724,\"z\":-0.013418324529695548},\"standing_position\":[26.0818358664,0.6907288502518067,-1.4644993263],\"visible_nodes\":[209,210,211,213,214,215]},{\"accessible_nodes\":[203,204,205,206,207,208,209,210,211,212,214,215,308],\"floor_index\":0,\"index\":213,\"offset_point_count\":0,\"position\":[26.1052316902,2.1742079715,-0.0921149967],\"quaternion\":{\"w\":-0.979104459659438,\"x\":-0.006966010503488421,\"y\":-0.20271189995808608,\"z\":-0.0146224957242865},\"standing_position\":[26.1052316902,0.6990873078571167,-0.0921149967],\"visible_nodes\":[203,204,205,206,207,208,209,210,211,212,214,215,308]},{\"accessible_nodes\":[209,210,211,212,213,215,218,232,233,234,309,318,320,325,330],\"floor_index\":0,\"index\":214,\"offset_point_count\":0,\"position\":[22.4990995951,3.6957903177,-1.5793114506],\"quaternion\":{\"w\":-0.9593542309673732,\"x\":0.005837038597675651,\"y\":0.2807513933653148,\"z\":-0.02800077881338245},\"standing_position\":[22.4990995951,2.3159991771436648,-1.5793114506],\"visible_nodes\":[209,210,211,212,213,215,218,232,233,234,309,318,320,325,330]},{\"accessible_nodes\":[209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,232,233,234,235,309,318,319,320,330],\"floor_index\":1,\"index\":215,\"offset_point_count\":0,\"position\":[21.2298384275,4.2807014755,-1.5759347534],\"quaternion\":{\"w\":-0.9506407814995105,\"x\":0.007419906958834408,\"y\":0.30884134908128935,\"z\":-0.02905289375597259},\"standing_position\":[21.2298384275,2.8169352582682494,-1.5759347534],\"visible_nodes\":[209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,232,233,234,235,309,318,319,320,330]},{\"accessible_nodes\":[215,217,218,219,221,222,223,224,225,226,227,228,232,233,234,235,309,310,311,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330],\"floor_index\":1,\"index\":216,\"offset_point_count\":0,\"position\":[18.7702016932,4.3203839837,1.2271716441],\"quaternion\":{\"w\":-0.9612005072824297,\"x\":0.004775855079372276,\"y\":0.27520417225214205,\"z\":-0.01826032809181901},\"standing_position\":[18.7702016932,2.8783464013025393,1.2271716441],\"visible_nodes\":[215,217,218,219,221,222,223,224,225,226,227,228,232,233,234,235,309,310,311,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330]},{\"accessible_nodes\":[215,216,218,219,220,221,222,223,224,225,226,232,233,234,235,309,310,311,318,319,320,330],\"floor_index\":1,\"index\":217,\"offset_point_count\":0,\"position\":[23.6503452221,4.3069588862,5.8798261109],\"quaternion\":{\"w\":-0.8972548377133445,\"x\":-0.011531307260898285,\"y\":-0.4412131234465143,\"z\":-0.011478887565820446},\"standing_position\":[23.6503452221,2.8600989304123416,5.8798261109],\"visible_nodes\":[215,216,218,219,220,221,222,223,224,225,226,232,233,234,235,309,310,311,318,319,320,330]},{\"accessible_nodes\":[214,215,216,217,219,220,221,222,223,224,225,226,232,233,234,235,309,310,311,312,313,314,318,319,320,321,325,326,327,330],\"floor_index\":1,\"index\":218,\"offset_point_count\":0,\"position\":[23.4811758647,4.2909737612,2.7578173973],\"quaternion\":{\"w\":-0.9100523723940288,\"x\":-0.006249384016261388,\"y\":-0.4144342188876806,\"z\":0.0031468908679028},\"standing_position\":[23.4811758647,2.8335079933395875,2.7578173973],\"visible_nodes\":[214,215,216,217,219,220,221,222,223,224,225,226,232,233,234,235,309,310,311,312,313,314,318,319,320,321,325,326,327,330]},{\"accessible_nodes\":[215,216,217,218,220,221,222,223,224,225,232,233,234,236,309,318,319,330],\"floor_index\":1,\"index\":219,\"offset_point_count\":0,\"position\":[21.8604899925,4.3271921051,5.8253864436],\"quaternion\":{\"w\":0.7009807291346223,\"x\":-0.009649560185471945,\"y\":-0.7131027676639602,\"z\":0.004164868073264336},\"standing_position\":[21.8604899925,2.867493070409143,5.8253864436],\"visible_nodes\":[215,216,217,218,220,221,222,223,224,225,232,233,234,236,309,318,319,330]},{\"accessible_nodes\":[215,217,218,219,221,222,223,224,225,232,233,309,318,319,330],\"floor_index\":1,\"index\":220,\"offset_point_count\":0,\"position\":[21.9815146144,4.3313763327,7.4760384415],\"quaternion\":{\"w\":0.703706256225576,\"x\":-0.0018423260115696615,\"y\":-0.7103771220626408,\"z\":0.012587901337582131},\"standing_position\":[21.9815146144,2.8863152450916623,7.4760384415],\"visible_nodes\":[215,217,218,219,221,222,223,224,225,232,233,309,318,319,330]},{\"accessible_nodes\":[215,216,217,218,219,220,222,223,224,225,232,233,234,236,309,310,318,319,330],\"floor_index\":1,\"index\":221,\"offset_point_count\":0,\"position\":[24.0389061941,4.3259285721,7.7849542588],\"quaternion\":{\"w\":-0.999763449421912,\"x\":0.0011419451027742061,\"y\":-0.021719594207565578,\"z\":-0.000019677029612727355},\"standing_position\":[24.0389061941,2.8693134817298214,7.7849542588],\"visible_nodes\":[215,216,217,218,219,220,222,223,224,225,232,233,234,236,309,310,318,319,330]},{\"accessible_nodes\":[215,216,217,218,219,220,221,223,224,225,232,233,234,309,310,311,318,319,330],\"floor_index\":1,\"index\":222,\"offset_point_count\":0,\"position\":[25.6414322304,4.3179720763,7.9870391016],\"quaternion\":{\"w\":-0.47270040779513633,\"x\":-0.016668565271342115,\"y\":-0.8810115199445465,\"z\":0.009756286558592463},\"standing_position\":[25.6414322304,2.856939685705518,7.9870391016],\"visible_nodes\":[215,216,217,218,219,220,221,223,224,225,232,233,234,309,310,311,318,319,330]},{\"accessible_nodes\":[215,216,217,218,219,220,221,222,224,225,226,232,233,234,309,310,311,318,319,320,330],\"floor_index\":1,\"index\":223,\"offset_point_count\":0,\"position\":[25.3683305171,4.2986816957,6.6246095201],\"quaternion\":{\"w\":-0.7248625318834346,\"x\":-0.012570828250408717,\"y\":-0.6887681783989443,\"z\":-0.003831519018684076},\"standing_position\":[25.3683305171,2.8494892909529907,6.6246095201],\"visible_nodes\":[215,216,217,218,219,220,221,222,224,225,226,232,233,234,309,310,311,318,319,320,330]},{\"accessible_nodes\":[215,216,217,218,219,220,221,222,223,225,226,232,233,234,235,309,310,311,318,319,320,330],\"floor_index\":1,\"index\":224,\"offset_point_count\":0,\"position\":[25.3860730688,4.2953704973,5.7725832665],\"quaternion\":{\"w\":-0.7092804817556644,\"x\":-0.011627474474914117,\"y\":-0.7048250497286542,\"z\":0.002765739882188543},\"standing_position\":[25.3860730688,2.8445406337517216,5.7725832665],\"visible_nodes\":[215,216,217,218,219,220,221,222,223,225,226,232,233,234,235,309,310,311,318,319,320,330]},{\"accessible_nodes\":[215,216,217,218,219,220,221,222,223,224,226,232,233,234,235,309,310,311,318,319,320,330],\"floor_index\":1,\"index\":225,\"offset_point_count\":0,\"position\":[25.4062707906,4.2855923664,4.9411165022],\"quaternion\":{\"w\":0.7066001787261283,\"x\":-0.006568328621656009,\"y\":-0.7074729764097001,\"z\":0.012451190813963765},\"standing_position\":[25.4062707906,2.8396825086500614,4.9411165022],\"visible_nodes\":[215,216,217,218,219,220,221,222,223,224,226,232,233,234,235,309,310,311,318,319,320,330]},{\"accessible_nodes\":[216,217,218,223,224,225,227,228,229,232,233,234,236,309,310,311,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330],\"floor_index\":1,\"index\":226,\"offset_point_count\":0,\"position\":[14.2568112481,4.356849574,0.4041284741],\"quaternion\":{\"w\":-0.6983302400998479,\"x\":-0.01036981951333322,\"y\":-0.7156999878789996,\"z\":-0.0009327125699390048},\"standing_position\":[14.2568112481,2.912488721758484,0.4041284741],\"visible_nodes\":[216,217,218,223,224,225,227,228,229,232,233,234,236,309,310,311,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330]},{\"accessible_nodes\":[216,226,228,229,236,309,310,311,312,313,314,315,316,318,320,321,325,326,327,328,329,330],\"floor_index\":1,\"index\":227,\"offset_point_count\":0,\"position\":[8.593489165,4.3891476482,0.2755773271],\"quaternion\":{\"w\":0.707271421609786,\"x\":-0.012956585346727023,\"y\":-0.7067800450458402,\"z\":0.00782502224527485},\"standing_position\":[8.593489165,2.9509744733419065,0.2755773271],\"visible_nodes\":[216,226,228,229,236,309,310,311,312,313,314,315,316,318,320,321,325,326,327,328,329,330]},{\"accessible_nodes\":[216,226,227,229,230,236,310,311,312,313,314,315,316,320,321,325,326,327,328,329,335],\"floor_index\":1,\"index\":228,\"offset_point_count\":0,\"position\":[4.5982966411,4.4291757643,1.4909315445],\"quaternion\":{\"w\":0.6788497114157094,\"x\":-0.014982476738139298,\"y\":-0.7340350091787176,\"z\":0.011454258100587396},\"standing_position\":[4.5982966411,2.972068339563977,1.4909315445],\"visible_nodes\":[216,226,227,229,230,236,310,311,312,313,314,315,316,320,321,325,326,327,328,329,335]},{\"accessible_nodes\":[226,227,228,230,231,236,310,311,312,313,314,315,317,320,321,322,323,325,326,327,328,331,332,333,334],\"floor_index\":1,\"index\":229,\"offset_point_count\":0,\"position\":[2.1393970742,4.4487956666,1.5251752469],\"quaternion\":{\"w\":0.7017353974189119,\"x\":-0.014612155291546702,\"y\":-0.7122259784647005,\"z\":0.009384697346210799},\"standing_position\":[2.1393970742,2.9913279913909543,1.5251752469],\"visible_nodes\":[226,227,228,230,231,236,310,311,312,313,314,315,317,320,321,322,323,325,326,327,328,331,332,333,334]},{\"accessible_nodes\":[228,229,231,317,322,323,331,332,333,334],\"floor_index\":1,\"index\":230,\"offset_point_count\":0,\"position\":[2.9480207114,4.4318595779,0.5143173797],\"quaternion\":{\"w\":-0.96291865715646,\"x\":-0.010721266716844341,\"y\":-0.26943803614332057,\"z\":-0.008709697166701847},\"standing_position\":[2.9480207114,2.9751277816353516,0.5143173797],\"visible_nodes\":[228,229,231,317,322,323,331,332,333,334]},{\"accessible_nodes\":[229,230,237,315,316,317,322,323,329,331,332,333,334,335],\"floor_index\":1,\"index\":231,\"offset_point_count\":0,\"position\":[1.9726010385,4.4674301006,3.1506478203],\"quaternion\":{\"w\":-0.9282477322891772,\"x\":-0.00999671074026301,\"y\":-0.3718167019636511,\"z\":-0.00292461961453435},\"standing_position\":[1.9726010385,3.027559981505151,3.1506478203],\"visible_nodes\":[229,230,237,315,316,317,322,323,329,331,332,333,334,335]},{\"accessible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,233,234,235,309,310,311,312,318,319,320,325,326,330],\"floor_index\":1,\"index\":232,\"offset_point_count\":0,\"position\":[25.3392569022,4.2809604301,3.4790177769],\"quaternion\":{\"w\":-0.3076244017049883,\"x\":-0.021553396373947004,\"y\":-0.9512637043033861,\"z\":0.00020841053233003752},\"standing_position\":[25.3392569022,2.829229463532007,3.4790177769],\"visible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,233,234,235,309,310,311,312,318,319,320,325,326,330]},{\"accessible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,232,234,235,309,311,312,318,319,320,325,326,330],\"floor_index\":1,\"index\":233,\"offset_point_count\":0,\"position\":[25.3328717761,4.277450282,2.4151635744],\"quaternion\":{\"w\":-0.3276487609871554,\"x\":-0.01788947105466236,\"y\":-0.9446239913055353,\"z\":0.003430931942053375},\"standing_position\":[25.3328717761,2.836048919580872,2.4151635744],\"visible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,232,234,235,309,311,312,318,319,320,325,326,330]},{\"accessible_nodes\":[214,215,216,217,218,219,221,222,223,224,225,226,232,233,235,236,309,310,311,312,318,319,320,330],\"floor_index\":1,\"index\":234,\"offset_point_count\":0,\"position\":[20.5848694312,4.3197766346,4.0326793131],\"quaternion\":{\"w\":-0.9995917018463089,\"x\":-0.0015433725811753523,\"y\":0.02372572299389346,\"z\":-0.01584732380805177},\"standing_position\":[20.5848694312,2.8514474433921144,4.0326793131],\"visible_nodes\":[214,215,216,217,218,219,221,222,223,224,225,226,232,233,235,236,309,310,311,312,318,319,320,330]},{\"accessible_nodes\":[215,216,217,218,224,225,232,233,234,236,309,318,319,330],\"floor_index\":1,\"index\":235,\"offset_point_count\":0,\"position\":[18.4160853851,4.3247667616,4.1563009624],\"quaternion\":{\"w\":0.6999466436257484,\"x\":-0.011031107640733681,\"y\":-0.7139906146792128,\"z\":0.013054229787302868},\"standing_position\":[18.4160853851,2.907338864146692,4.1563009624],\"visible_nodes\":[215,216,217,218,224,225,232,233,234,236,309,318,319,330]},{\"accessible_nodes\":[219,221,226,227,228,229,234,235,310,311,312,313,314,315,316,320,321,325,326,327,328,329],\"floor_index\":1,\"index\":236,\"offset_point_count\":0,\"position\":[16.107680494,4.3303156072,-0.9062820486],\"quaternion\":{\"w\":-0.6950487650172096,\"x\":-0.016619722902648886,\"y\":-0.7187595843187067,\"z\":-0.003957143893525833},\"standing_position\":[16.107680494,2.872171657691333,-0.9062820486],\"visible_nodes\":[219,221,226,227,228,229,234,235,310,311,312,313,314,315,316,320,321,325,326,327,328,329]},{\"accessible_nodes\":[231,317,321,322,323,324,331,332,333,334,335,336],\"floor_index\":1,\"index\":237,\"offset_point_count\":0,\"position\":[-3.9407800652,4.5085006661,3.073953661],\"quaternion\":{\"w\":0.01077770133604755,\"x\":-0.015317578274505032,\"y\":-0.9998178335076846,\"z\":0.0036759671630440813},\"standing_position\":[-3.9407800652,3.0627957291187986,3.073953661],\"visible_nodes\":[231,317,321,322,323,324,331,332,333,334,335,336]},{\"accessible_nodes\":[0,5,8,9,13,15,22,23,24,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,239,240,294,295,296,297,302,303],\"floor_index\":0,\"index\":238,\"offset_point_count\":0,\"position\":[0.6125674273,0.0848381824,5.7407712081],\"quaternion\":{\"w\":-0.9998187710530344,\"x\":0.0016464264301281873,\"y\":-0.00343002972067428,\"z\":-0.018653397885656148},\"standing_position\":[0.6125674273,-1.2129367285268189,5.7407712081],\"visible_nodes\":[0,5,8,9,13,15,22,23,24,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,239,240,294,295,296,297,302,303]},{\"accessible_nodes\":[0,8,9,12,13,14,15,16,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,240,297,298,299,302,304],\"floor_index\":0,\"index\":239,\"offset_point_count\":0,\"position\":[-1.1023351141,0.0968096289,6.1598102398],\"quaternion\":{\"w\":-0.956782780729252,\"x\":0.005600169137571712,\"y\":0.29038033062033125,\"z\":-0.014649648235011867},\"standing_position\":[-1.1023351141,-1.2129949298539673,6.1598102398],\"visible_nodes\":[0,8,9,12,13,14,15,16,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,240,297,298,299,302,304]},{\"accessible_nodes\":[0,8,9,13,15,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,296,297,298,299,302,304],\"floor_index\":0,\"index\":240,\"offset_point_count\":0,\"position\":[-0.6163916414,0.0901926632,5.6717591595],\"quaternion\":{\"w\":-0.9169557210547301,\"x\":-0.008660067212259677,\"y\":-0.3988949213428468,\"z\":-0.00022491604039803458},\"standing_position\":[-0.6163916414,-1.2147072677539794,5.6717591595],\"visible_nodes\":[0,8,9,13,15,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,238,239,296,297,298,299,302,304]},{\"accessible_nodes\":[10,11,14,15,23,24,25,43,44,45,242,243,244,245,257,268,269,305],\"floor_index\":0,\"index\":241,\"offset_point_count\":0,\"position\":[13.545942614,-0.3984995802,16.745493312],\"quaternion\":{\"w\":-0.30505308930168956,\"x\":-0.005423746652372056,\"y\":-0.9523088477484603,\"z\":0.004588484224767276},\"standing_position\":[13.545942614,-1.6251963098600342,16.745493312],\"visible_nodes\":[10,11,14,15,23,24,25,43,44,45,242,243,244,245,257,268,269,305]},{\"accessible_nodes\":[24,25,43,44,241,243,244,245,246,247,248,257,268,269,305],\"floor_index\":0,\"index\":242,\"offset_point_count\":0,\"position\":[17.1702317181,-0.3450850385,16.7217540351],\"quaternion\":{\"w\":-0.31457066768395164,\"x\":-0.004899964939117566,\"y\":-0.94921385311741,\"z\":0.00378766659187748},\"standing_position\":[17.1702317181,-1.6374417680074462,16.7217540351],\"visible_nodes\":[24,25,43,44,241,243,244,245,246,247,248,257,268,269,305]},{\"accessible_nodes\":[24,25,43,241,242,244,245,246,247,248,249,250,257,258,305],\"floor_index\":0,\"index\":243,\"offset_point_count\":0,\"position\":[20.7925538127,-0.2982656014,16.6687596882],\"quaternion\":{\"w\":-0.27545393127670226,\"x\":-0.006520348329595203,\"y\":-0.9612681153169494,\"z\":0.006799064559470126},\"standing_position\":[20.7925538127,-1.6066828024421753,16.6687596882],\"visible_nodes\":[24,25,43,241,242,244,245,246,247,248,249,250,257,258,305]},{\"accessible_nodes\":[24,25,241,242,243,245,246,248,249,250,257,258],\"floor_index\":0,\"index\":244,\"offset_point_count\":0,\"position\":[24.400384547,-0.2416648826,16.6636940681],\"quaternion\":{\"w\":-0.271036914459175,\"x\":-0.006877584596204785,\"y\":-0.9625181024531435,\"z\":0.0071128238601968485},\"standing_position\":[24.400384547,-1.5386007985469605,16.6636940681],\"visible_nodes\":[24,25,241,242,243,245,246,248,249,250,257,258]},{\"accessible_nodes\":[241,242,243,244,246,248,250,258],\"floor_index\":0,\"index\":245,\"offset_point_count\":0,\"position\":[28.01844706,-0.1922836579,16.6302364893],\"quaternion\":{\"w\":-0.25927531830249195,\"x\":-0.004114065831786533,\"y\":-0.9657719060549442,\"z\":0.006633946933879454},\"standing_position\":[28.01844706,-1.486278323045874,16.6302364893],\"visible_nodes\":[241,242,243,244,246,248,250,258]},{\"accessible_nodes\":[242,243,244,245,247],\"floor_index\":0,\"index\":246,\"offset_point_count\":0,\"position\":[31.6349414149,-0.1173108051,16.649803081],\"quaternion\":{\"w\":-0.2519358628169944,\"x\":-0.00867093707657327,\"y\":-0.967685926088625,\"z\":0.006089692291815368},\"standing_position\":[31.6349414149,-1.4076615998921753,16.649803081],\"visible_nodes\":[242,243,244,245,247]},{\"accessible_nodes\":[242,243,246,248,252],\"floor_index\":0,\"index\":247,\"offset_point_count\":0,\"position\":[31.7454577759,-0.1188850502,19.5706786293],\"quaternion\":{\"w\":-0.27031146603067463,\"x\":-0.007245537700928015,\"y\":-0.9627353707795305,\"z\":0.0044518935629525355},\"standing_position\":[31.7454577759,-1.4061124423966553,19.5706786293],\"visible_nodes\":[242,243,246,248,252]},{\"accessible_nodes\":[242,243,244,245,247,249,250,251,252,253,257,258,259],\"floor_index\":0,\"index\":248,\"offset_point_count\":0,\"position\":[28.3025168728,-0.1633511068,22.0427534313],\"quaternion\":{\"w\":-0.9629276411807898,\"x\":0.0020330060809132513,\"y\":0.2686746159428467,\"z\":-0.024086832652927635},\"standing_position\":[28.3025168728,-1.454778838313977,22.0427534313],\"visible_nodes\":[242,243,244,245,247,249,250,251,252,253,257,258,259]},{\"accessible_nodes\":[243,244,248,250,251,252,253,258],\"floor_index\":0,\"index\":249,\"offset_point_count\":0,\"position\":[31.3610164277,-0.1297470285,22.0584326609],\"quaternion\":{\"w\":-0.9623836682815228,\"x\":-0.00014975152815856283,\"y\":0.2705794789618415,\"z\":-0.02458451107368432},\"standing_position\":[31.3610164277,-1.399990792423645,22.0584326609],\"visible_nodes\":[243,244,248,250,251,252,253,258]},{\"accessible_nodes\":[243,244,245,248,249,251,252,253],\"floor_index\":0,\"index\":250,\"offset_point_count\":0,\"position\":[33.3712004862,0.6274779658,22.1542012456],\"quaternion\":{\"w\":-0.9710514483795387,\"x\":-0.009851644797980797,\"y\":-0.23860246288870274,\"z\":-0.005558273028691669},\"standing_position\":[33.3712004862,-0.5956025500615112,22.1542012456],\"visible_nodes\":[243,244,245,248,249,251,252,253]},{\"accessible_nodes\":[248,249,250,252,253],\"floor_index\":0,\"index\":251,\"offset_point_count\":0,\"position\":[35.5093825685,1.5620467483,22.0771056976],\"quaternion\":{\"w\":-0.9648047552225268,\"x\":-0.007716394596627891,\"y\":-0.26244780221527647,\"z\":-0.014607965574080641},\"standing_position\":[35.5093825685,0.3588942109541138,22.0771056976],\"visible_nodes\":[248,249,250,252,253]},{\"accessible_nodes\":[99,100,247,248,249,250,251,253],\"floor_index\":0,\"index\":252,\"offset_point_count\":0,\"position\":[36.5844552056,2.0334627074,22.027085686],\"quaternion\":{\"w\":-0.9745334686274248,\"x\":0.0009530572113732959,\"y\":-0.22356030848468783,\"z\":-0.01744702449670336},\"standing_position\":[36.5844552056,0.8366265934702515,22.027085686],\"visible_nodes\":[99,100,247,248,249,250,251,253]},{\"accessible_nodes\":[99,100,248,249,250,251,252],\"floor_index\":0,\"index\":253,\"offset_point_count\":0,\"position\":[39.1143765815,2.349764476,22.056829817],\"quaternion\":{\"w\":0.6602949043275851,\"x\":0.001700887568670882,\"y\":-0.7507321462745551,\"z\":0.020223522497793234},\"standing_position\":[39.1143765815,1.0869888164388426,22.056829817],\"visible_nodes\":[99,100,248,249,250,251,252]},{\"accessible_nodes\":[48,49,50,69,91,92,93,96,97,98,255,261],\"floor_index\":0,\"index\":254,\"offset_point_count\":0,\"position\":[-16.1504338402,-0.8019494169,29.4864519428],\"quaternion\":{\"w\":-0.7196792052352636,\"x\":-0.006881489533839398,\"y\":-0.6942669100209228,\"z\":-0.0028185722907937065},\"standing_position\":[-16.1504338402,-2.061422025466284,29.4864519428],\"visible_nodes\":[48,49,50,69,91,92,93,96,97,98,255,261]},{\"accessible_nodes\":[45,46,47,48,49,92,93,98,254,256,262],\"floor_index\":0,\"index\":255,\"offset_point_count\":0,\"position\":[-7.4583648884,-0.7239142993,29.5242723433],\"quaternion\":{\"w\":-0.6175929222296684,\"x\":-0.009224918138525053,\"y\":-0.7864376616744648,\"z\":-0.00311249068971108},\"standing_position\":[-7.4583648884,-2.0294617751148194,29.5242723433],\"visible_nodes\":[45,46,47,48,49,92,93,98,254,256,262]},{\"accessible_nodes\":[25,43,44,45,255,257,263,268,269,305],\"floor_index\":0,\"index\":256,\"offset_point_count\":0,\"position\":[4.6316543763,-0.5341429912,29.4909246623],\"quaternion\":{\"w\":0.5375030852607521,\"x\":-0.003986284779033501,\"y\":-0.842989264759641,\"z\":0.021062820361137963},\"standing_position\":[4.6316543763,-1.8041664563565551,29.4909246623],\"visible_nodes\":[25,43,44,45,255,257,263,268,269,305]},{\"accessible_nodes\":[25,241,242,243,244,248,256,258,259,260,264,268,269,305],\"floor_index\":0,\"index\":257,\"offset_point_count\":0,\"position\":[16.6650468759,-0.3054608759,29.4348851481],\"quaternion\":{\"w\":-0.3204301644652566,\"x\":-0.006407262863755361,\"y\":-0.9472484318276806,\"z\":-0.001965985835845297},\"standing_position\":[16.6650468759,-1.6054609474255737,29.4348851481],\"visible_nodes\":[25,241,242,243,244,248,256,258,259,260,264,268,269,305]},{\"accessible_nodes\":[243,244,245,248,249,257,259,260],\"floor_index\":0,\"index\":258,\"offset_point_count\":0,\"position\":[27.5771992291,-0.1207879016,28.3760014071],\"quaternion\":{\"w\":-0.19373316552910896,\"x\":-0.00645395662690303,\"y\":-0.981032286242405,\"z\":0.0012084496266080932},\"standing_position\":[27.5771992291,-1.4263906905251709,28.3760014071],\"visible_nodes\":[243,244,245,248,249,257,259,260]},{\"accessible_nodes\":[248,257,258,260,265],\"floor_index\":0,\"index\":259,\"offset_point_count\":0,\"position\":[27.5653418659,-0.0720949714,32.0572892982],\"quaternion\":{\"w\":-0.27978821045912367,\"x\":-0.0037583368867342695,\"y\":-0.9600251411030859,\"z\":0.007494040095380777},\"standing_position\":[27.5653418659,-1.3871068303401246,32.0572892982],\"visible_nodes\":[248,257,258,260,265]},{\"accessible_nodes\":[257,258,259,264,265,266,267,268],\"floor_index\":0,\"index\":260,\"offset_point_count\":0,\"position\":[22.8219180654,-0.0601422938,37.684160598],\"quaternion\":{\"w\":-0.6963642742793676,\"x\":-0.0018534566761465169,\"y\":-0.7176394744577531,\"z\":-0.008182108473668705},\"standing_position\":[22.8219180654,-1.372884288657788,37.684160598],\"visible_nodes\":[257,258,259,264,265,266,267,268]},{\"accessible_nodes\":[98,254,262],\"floor_index\":0,\"index\":261,\"offset_point_count\":0,\"position\":[-17.5921607743,-0.7411062483,43.6007151649],\"quaternion\":{\"w\":-0.9566521024384989,\"x\":-0.0038601238011050135,\"y\":0.29100247251889255,\"z\":-0.010927733288154355},\"standing_position\":[-17.5921607743,-2.0088221792387206,43.6007151649],\"visible_nodes\":[98,254,262]},{\"accessible_nodes\":[98,255,261,263],\"floor_index\":0,\"index\":262,\"offset_point_count\":0,\"position\":[-7.3609499977,-0.5181616073,43.5993377242],\"quaternion\":{\"w\":-0.18413210032705582,\"x\":0.00037449529740328047,\"y\":-0.9828839041565387,\"z\":0.005870293760636444},\"standing_position\":[-7.3609499977,-1.8583207850801515,43.5993377242],\"visible_nodes\":[98,255,261,263]},{\"accessible_nodes\":[256,262,264,267],\"floor_index\":0,\"index\":263,\"offset_point_count\":0,\"position\":[4.7620215011,-0.3287989009,43.548775422],\"quaternion\":{\"w\":-0.09331652839673768,\"x\":-0.005658859353214209,\"y\":-0.9955328977738506,\"z\":0.01320046547872635},\"standing_position\":[4.7620215011,-1.6572138178921876,43.548775422],\"visible_nodes\":[256,262,264,267]},{\"accessible_nodes\":[257,260,263,265,266,267],\"floor_index\":0,\"index\":264,\"offset_point_count\":0,\"position\":[16.9141583996,-0.0974760214,43.1051009002],\"quaternion\":{\"w\":-0.7404186687419095,\"x\":0.0031938656655892163,\"y\":-0.6720976708968719,\"z\":-0.007396956893729184},\"standing_position\":[16.9141583996,-1.4014420667796386,43.1051009002],\"visible_nodes\":[257,260,263,265,266,267]},{\"accessible_nodes\":[259,260,264,266,267],\"floor_index\":0,\"index\":265,\"offset_point_count\":0,\"position\":[23.0295277072,0.0397579117,43.0582138542],\"quaternion\":{\"w\":-0.7284969471895427,\"x\":0.00610837540307367,\"y\":-0.6849558555118717,\"z\":-0.009505874572214811},\"standing_position\":[23.0295277072,-1.264672692281018,43.0582138542],\"visible_nodes\":[259,260,264,266,267]},{\"accessible_nodes\":[260,264,265,267],\"floor_index\":0,\"index\":266,\"offset_point_count\":0,\"position\":[23.045678914,0.1176739632,49.3294951721],\"quaternion\":{\"w\":-0.7450644682547097,\"x\":0.009036782585032498,\"y\":-0.666906727398967,\"z\":-0.005717657572404109},\"standing_position\":[23.045678914,-1.1878631414066285,49.3294951721],\"visible_nodes\":[260,264,265,267]},{\"accessible_nodes\":[260,263,264,265,266],\"floor_index\":0,\"index\":267,\"offset_point_count\":0,\"position\":[16.973227331,-0.0009773431,49.3522197844],\"quaternion\":{\"w\":-0.7384918572195209,\"x\":0.012107223004640559,\"y\":-0.6740857128733704,\"z\":-0.009573072647531662},\"standing_position\":[16.973227331,-1.3220242915329223,49.3522197844],\"visible_nodes\":[260,263,264,265,266]},{\"accessible_nodes\":[25,43,44,241,242,256,257,260,269,305],\"floor_index\":0,\"index\":268,\"offset_point_count\":0,\"position\":[10.3804726113,-0.4212417697,29.423414455],\"quaternion\":{\"w\":0.4986799553787428,\"x\":0.0046113828662707424,\"y\":-0.8665377427729274,\"z\":0.02023308170501059},\"standing_position\":[10.3804726113,-1.7010772322701904,29.423414455],\"visible_nodes\":[25,43,44,241,242,256,257,260,269,305]},{\"accessible_nodes\":[13,24,25,43,44,45,241,242,256,257,268,305],\"floor_index\":0,\"index\":269,\"offset_point_count\":0,\"position\":[10.3439092285,-0.4288075163,23.8841704061],\"quaternion\":{\"w\":-0.6843905257336584,\"x\":-0.008760029287020854,\"y\":-0.729004203725877,\"z\":-0.00925964883398425},\"standing_position\":[10.3439092285,-1.7413797571294678,23.8841704061],\"visible_nodes\":[13,24,25,43,44,45,241,242,256,257,268,305]},{\"accessible_nodes\":[141,142,143,144,145,146,147,148,149,150,152,153,154],\"floor_index\":1,\"index\":270,\"offset_point_count\":0,\"position\":[127.4783850561,36.804004185,-6.0832799695],\"quaternion\":{\"w\":0.6644383862261697,\"x\":0.01848874500647488,\"y\":-0.7469450006024541,\"z\":0.015904819351382153},\"standing_position\":[127.4783850561,35.45142196873718,-6.0832799695],\"visible_nodes\":[141,142,143,144,145,146,147,148,149,150,152,153,154]},{\"accessible_nodes\":[156,173,174,175,181,182,183,184,272,273,274,275],\"floor_index\":1,\"index\":271,\"offset_point_count\":0,\"position\":[154.9212785021,38.0518235392,-31.068352432],\"quaternion\":{\"w\":-0.9297771228902117,\"x\":-0.006935560782518246,\"y\":-0.367728745451583,\"z\":-0.015555369420191416},\"standing_position\":[154.9212785021,36.74369208282488,-31.068352432],\"visible_nodes\":[156,173,174,175,181,182,183,184,272,273,274,275]},{\"accessible_nodes\":[173,174,181,182,183,184,271,273,274,275,276,283],\"floor_index\":1,\"index\":272,\"offset_point_count\":0,\"position\":[158.7179499316,38.0009165701,-27.091169879],\"quaternion\":{\"w\":-0.12761768286703956,\"x\":-0.009705017569518037,\"y\":-0.991773967028274,\"z\":-0.001984432759308121},\"standing_position\":[158.7179499316,36.72101864186209,-27.091169879],\"visible_nodes\":[173,174,181,182,183,184,271,273,274,275,276,283]},{\"accessible_nodes\":[173,174,182,183,184,271,272,274,275,276,277,281,283],\"floor_index\":1,\"index\":273,\"offset_point_count\":0,\"position\":[160.0012843269,38.6909502086,-25.9138454459],\"quaternion\":{\"w\":0.40897672252902606,\"x\":-0.006544459309679249,\"y\":-0.9125173627663202,\"z\":-0.0026968764928915695},\"standing_position\":[160.0012843269,37.455178433354334,-25.9138454459],\"visible_nodes\":[173,174,182,183,184,271,272,274,275,276,277,281,283]},{\"accessible_nodes\":[183,184,271,272,273,275,276,281,283,287,290],\"floor_index\":1,\"index\":274,\"offset_point_count\":0,\"position\":[161.2076797677,39.5905974523,-24.5755583777],\"quaternion\":{\"w\":0.3916610543677877,\"x\":0.00020415871264188349,\"y\":-0.9201064582019843,\"z\":0.0023837753288746275},\"standing_position\":[161.2076797677,38.4081342832021,-24.5755583777],\"visible_nodes\":[183,184,271,272,273,275,276,281,283,287,290]},{\"accessible_nodes\":[172,173,183,271,272,273,274,276,283,286,287,289,290],\"floor_index\":1,\"index\":275,\"offset_point_count\":0,\"position\":[162.3819662126,40.501035296,-23.1997035943],\"quaternion\":{\"w\":0.3879198445970502,\"x\":0.004672255551949692,\"y\":-0.9216697486084698,\"z\":0.004608546289398166},\"standing_position\":[162.3819662126,39.14845272210931,-23.1997035943],\"visible_nodes\":[172,173,183,271,272,273,274,276,283,286,287,289,290]},{\"accessible_nodes\":[156,183,186,272,273,274,275,277,278,283,290],\"floor_index\":1,\"index\":276,\"offset_point_count\":0,\"position\":[159.4776146696,40.3759354256,-19.2841531573],\"quaternion\":{\"w\":-0.9907045183983971,\"x\":-0.015542029423558257,\"y\":-0.13358111047978646,\"z\":-0.020471674978113027},\"standing_position\":[159.4776146696,38.990674128374046,-19.2841531573],\"visible_nodes\":[156,183,186,272,273,274,275,277,278,283,290]},{\"accessible_nodes\":[158,159,185,186,187,273,276,278,279,288,289,290],\"floor_index\":1,\"index\":277,\"offset_point_count\":0,\"position\":[162.9703920167,40.3075925888,-15.5051794048],\"quaternion\":{\"w\":-0.9384461572860747,\"x\":-0.015148304742502616,\"y\":-0.3448816365085697,\"z\":-0.01208286046776721},\"standing_position\":[162.9703920167,39.03144307746272,-15.5051794048],\"visible_nodes\":[158,159,185,186,187,273,276,278,279,288,289,290]},{\"accessible_nodes\":[158,159,160,161,162,163,164,187,193,194,276,277,279,280,287,288,290],\"floor_index\":1,\"index\":278,\"offset_point_count\":0,\"position\":[166.2690780107,40.2845790588,-11.8430905232],\"quaternion\":{\"w\":-0.918654556960885,\"x\":-0.009811894315116093,\"y\":-0.3946358116094733,\"z\":-0.015495415515155452},\"standing_position\":[166.2690780107,39.01994647613551,-11.8430905232],\"visible_nodes\":[158,159,160,161,162,163,164,187,193,194,276,277,279,280,287,288,290]},{\"accessible_nodes\":[162,163,164,165,194,277,278,280,281,284,285,286,287,288,289,290],\"floor_index\":1,\"index\":279,\"offset_point_count\":0,\"position\":[169.8659083437,40.3939273361,-15.1546879701],\"quaternion\":{\"w\":-0.9167994374725587,\"x\":-0.008898243025202751,\"y\":-0.3990094665726159,\"z\":-0.013822384081010369},\"standing_position\":[169.8659083437,39.12945973909225,-15.1546879701],\"visible_nodes\":[162,163,164,165,194,277,278,280,281,284,285,286,287,288,289,290]},{\"accessible_nodes\":[162,163,164,165,166,169,170,278,279,281,282,283,286,287,290],\"floor_index\":1,\"index\":280,\"offset_point_count\":0,\"position\":[173.4307341312,40.4862676018,-18.4129464833],\"quaternion\":{\"w\":-0.9245569988648618,\"x\":-0.0037926769569698944,\"y\":-0.38058963588185674,\"z\":-0.018207155638503194},\"standing_position\":[173.4307341312,39.16814819509987,-18.4129464833],\"visible_nodes\":[162,163,164,165,166,169,170,278,279,281,282,283,286,287,290]},{\"accessible_nodes\":[169,170,171,173,273,274,279,280,282,283,286,287],\"floor_index\":1,\"index\":281,\"offset_point_count\":0,\"position\":[170.0556001244,40.5789512767,-22.078352667],\"quaternion\":{\"w\":-0.9285293964921089,\"x\":-0.015470176554740965,\"y\":-0.37067679938329773,\"z\":-0.013876018706220307},\"standing_position\":[170.0556001244,39.23617652789782,-22.078352667],\"visible_nodes\":[169,170,171,173,273,274,279,280,282,283,286,287]},{\"accessible_nodes\":[165,169,170,171,173,280,281,283,286,287],\"floor_index\":1,\"index\":282,\"offset_point_count\":0,\"position\":[169.0111807527,40.8088823253,-21.1352617254],\"quaternion\":{\"w\":-0.9301357985799709,\"x\":-0.01006958351060039,\"y\":0.36693636469111324,\"z\":-0.010183513433695305},\"standing_position\":[169.0111807527,39.44951733888032,-21.1352617254],\"visible_nodes\":[165,169,170,171,173,280,281,283,286,287]},{\"accessible_nodes\":[165,170,171,173,183,272,273,274,275,276,280,281,282,287],\"floor_index\":1,\"index\":283,\"offset_point_count\":0,\"position\":[166.68830624,40.597556306,-25.7688934673],\"quaternion\":{\"w\":0.8121203839629558,\"x\":0.005225792929835643,\"y\":-0.5833682975830963,\"z\":0.010705249455401673},\"standing_position\":[166.68830624,39.300430728073366,-25.7688934673],\"visible_nodes\":[165,170,171,173,183,272,273,274,275,276,280,281,282,287]},{\"accessible_nodes\":[279,285],\"floor_index\":1,\"index\":284,\"offset_point_count\":0,\"position\":[166.5371128337,40.6871662491,-18.651015826],\"quaternion\":{\"w\":0.8171204023474681,\"x\":0.009897011734395333,\"y\":-0.5761162462993037,\"z\":0.017503371176866997},\"standing_position\":[166.5371128337,39.360871469322475,-18.651015826],\"visible_nodes\":[279,285]},{\"accessible_nodes\":[279,284],\"floor_index\":1,\"index\":285,\"offset_point_count\":0,\"position\":[165.2737637742,40.6456176331,-20.0076994501],\"quaternion\":{\"w\":0.8088204878518244,\"x\":0.007358684281230853,\"y\":-0.5877210021132476,\"z\":0.018419876797109987},\"standing_position\":[165.2737637742,39.36579540276095,-20.0076994501],\"visible_nodes\":[279,284]},{\"accessible_nodes\":[166,169,170,171,275,279,280,281,282,287],\"floor_index\":1,\"index\":286,\"offset_point_count\":0,\"position\":[173.1934179924,38.6470503023,-25.146517008],\"quaternion\":{\"w\":-0.9901356571828933,\"x\":0.001142960882976219,\"y\":-0.13781474438385422,\"z\":-0.025242231045501426},\"standing_position\":[173.1934179924,37.422132413658645,-25.146517008],\"visible_nodes\":[166,169,170,171,275,279,280,281,282,287]},{\"accessible_nodes\":[165,166,169,170,172,274,275,278,279,280,281,282,283,286],\"floor_index\":1,\"index\":287,\"offset_point_count\":0,\"position\":[172.0949749572,39.5302517573,-24.1292521947],\"quaternion\":{\"w\":-0.9914823755619663,\"x\":-0.0034763183995544316,\"y\":-0.13001520057473112,\"z\":-0.006830943385313556},\"standing_position\":[172.0949749572,38.36484147707234,-24.1292521947],\"visible_nodes\":[165,166,169,170,172,274,275,278,279,280,281,282,283,286]},{\"accessible_nodes\":[158,159,160,161,185,186,187,188,189,277,278,279,289,290],\"floor_index\":1,\"index\":288,\"offset_point_count\":0,\"position\":[158.0672430861,37.6943069329,-11.3503014276],\"quaternion\":{\"w\":-0.9940916138867685,\"x\":-0.013165584003700045,\"y\":-0.10691503282021056,\"z\":-0.013330654403357069},\"standing_position\":[158.0672430861,36.39304491183524,-11.3503014276],\"visible_nodes\":[158,159,160,161,185,186,187,188,189,277,278,279,289,290]},{\"accessible_nodes\":[158,159,160,161,185,186,187,188,275,277,279,288,290],\"floor_index\":1,\"index\":289,\"offset_point_count\":0,\"position\":[159.4410177874,38.453893144,-12.4624841597],\"quaternion\":{\"w\":-0.814088121163644,\"x\":-0.01652689391008764,\"y\":-0.5804642392085838,\"z\":-0.006975656554692509},\"standing_position\":[159.4410177874,37.22927542434973,-12.4624841597],\"visible_nodes\":[158,159,160,161,185,186,187,188,275,277,279,288,290]},{\"accessible_nodes\":[158,159,186,187,188,274,275,276,277,278,279,280,288,289],\"floor_index\":1,\"index\":290,\"offset_point_count\":0,\"position\":[160.5460150158,39.2320776011,-13.4498727211],\"quaternion\":{\"w\":-0.8188024884474621,\"x\":-0.012372020045174717,\"y\":-0.5734378904249352,\"z\":-0.0240500283993795},\"standing_position\":[160.5460150158,38.077413561488186,-13.4498727211],\"visible_nodes\":[158,159,186,187,188,274,275,276,277,278,279,280,288,289]},{\"accessible_nodes\":[0,1,2,4,5,6,7,39,40,195,196,197,200,201,292,293,294,295,296,297,298,299,300,301,302,303,306],\"floor_index\":0,\"index\":291,\"offset_point_count\":0,\"position\":[-4.9035104284,0.0230710409,-0.2109100498],\"quaternion\":{\"w\":0.7213062172048491,\"x\":-0.0050895842348383236,\"y\":-0.692465987865108,\"z\":0.013501585260273192},\"standing_position\":[-4.9035104284,-1.2737749912426393,-0.2109100498],\"visible_nodes\":[0,1,2,4,5,6,7,39,40,195,196,197,200,201,292,293,294,295,296,297,298,299,300,301,302,303,306]},{\"accessible_nodes\":[0,1,2,4,5,6,7,38,39,40,195,196,197,200,201,291,293,294,295,296,297,298,299,300,301,302,303,306],\"floor_index\":0,\"index\":292,\"offset_point_count\":0,\"position\":[-4.8353973797,0.0181449924,-0.8015128897],\"quaternion\":{\"w\":-0.999820540884713,\"x\":-0.0024006102363891726,\"y\":-0.007095794905075864,\"z\":-0.01740036765458496},\"standing_position\":[-4.8353973797,-1.2851930584422853,-0.8015128897],\"visible_nodes\":[0,1,2,4,5,6,7,38,39,40,195,196,197,200,201,291,293,294,295,296,297,298,299,300,301,302,303,306]},{\"accessible_nodes\":[0,1,2,4,5,6,7,26,38,39,40,195,196,197,198,200,201,202,291,292,294,295,296,297,298,299,300,301,302,303,306,307],\"floor_index\":0,\"index\":293,\"offset_point_count\":0,\"position\":[-3.8992591158,0.009656738,-0.8524060431],\"quaternion\":{\"w\":0.010386754525830962,\"x\":-0.018414925303155597,\"y\":-0.9997209666576969,\"z\":0.01053540105316849},\"standing_position\":[-3.8992591158,-1.2826592219304198,-0.8524060431],\"visible_nodes\":[0,1,2,4,5,6,7,26,38,39,40,195,196,197,198,200,201,202,291,292,294,295,296,297,298,299,300,301,302,303,306,307]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,26,38,39,195,196,197,198,200,201,202,238,291,292,293,295,296,297,298,299,300,301,302,303,306,307],\"floor_index\":0,\"index\":294,\"offset_point_count\":0,\"position\":[-3.1003052423,0.0101095322,-0.906447818],\"quaternion\":{\"w\":-0.009691675335727972,\"x\":-0.013573475393002951,\"y\":-0.9997927875565016,\"z\":0.011671081768371616},\"standing_position\":[-3.1003052423,-1.2782776471746948,-0.906447818],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,26,38,39,195,196,197,198,200,201,202,238,291,292,293,295,296,297,298,299,300,301,302,303,306,307]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,26,27,38,39,195,196,197,198,199,200,201,202,203,238,291,292,293,294,296,297,298,299,300,301,302,303,306,307],\"floor_index\":0,\"index\":295,\"offset_point_count\":0,\"position\":[-2.3946918348,0.0127179215,-0.7514094909],\"quaternion\":{\"w\":-0.9999571517945156,\"x\":0.002000857708162224,\"y\":0.0014852679160649268,\"z\":-0.008915442935730893},\"standing_position\":[-2.3946918348,-1.2677871396495972,-0.7514094909],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,26,27,38,39,195,196,197,198,199,200,201,202,203,238,291,292,293,294,296,297,298,299,300,301,302,303,306,307]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,26,27,28,38,195,196,197,198,199,200,201,202,203,238,240,291,292,293,294,295,297,298,299,300,301,302,303,306,307],\"floor_index\":0,\"index\":296,\"offset_point_count\":0,\"position\":[-1.6663138995,0.0129191941,-0.7314185292],\"quaternion\":{\"w\":0.021760225871855596,\"x\":-0.01150597328747554,\"y\":-0.9995809144211388,\"z\":0.015234851081384428},\"standing_position\":[-1.6663138995,-1.2669905358575806,-0.7314185292],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,26,27,28,38,195,196,197,198,199,200,201,202,203,238,240,291,292,293,294,295,297,298,299,300,301,302,303,306,307]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,27,28,29,30,31,37,195,196,197,198,199,200,201,202,203,238,239,240,291,292,293,294,295,296,298,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":297,\"offset_point_count\":0,\"position\":[0.0691748315,0.0004004588,-0.5896776524],\"quaternion\":{\"w\":-0.0022006669015382733,\"x\":-0.010853850498065736,\"y\":-0.9998823645059453,\"z\":0.010611698337376798},\"standing_position\":[0.0691748315,-1.2685244927533448,-0.5896776524],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,27,28,29,30,31,37,195,196,197,198,199,200,201,202,203,238,239,240,291,292,293,294,295,296,298,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,29,30,31,32,33,34,37,195,196,197,198,199,200,201,202,203,239,240,291,292,293,294,295,296,297,299,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":298,\"offset_point_count\":0,\"position\":[1.6660740555,0.0070096779,-0.7865049622],\"quaternion\":{\"w\":-0.008939453366033944,\"x\":-0.010466495730942769,\"y\":-0.9998649088501906,\"z\":0.008983468087033274},\"standing_position\":[1.6660740555,-1.281396336542444,-0.7865049622],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,29,30,31,32,33,34,37,195,196,197,198,199,200,201,202,203,239,240,291,292,293,294,295,296,297,299,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,30,31,32,33,34,36,37,195,196,197,198,199,200,201,202,239,240,291,292,293,294,295,296,297,298,300,301,302,303,306,307,308],\"floor_index\":0,\"index\":299,\"offset_point_count\":0,\"position\":[2.8144094981,0.0052750295,-0.8927655875],\"quaternion\":{\"w\":0.000007654436330815766,\"x\":-0.008717160532291613,\"y\":-0.9999005373035861,\"z\":0.011087224790273508},\"standing_position\":[2.8144094981,-1.272343378703125,-0.8927655875],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,30,31,32,33,34,36,37,195,196,197,198,199,200,201,202,239,240,291,292,293,294,295,296,297,298,300,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,31,32,33,34,35,36,37,195,196,197,198,199,200,201,202,291,292,293,294,295,296,297,298,299,301,302,303,306,307,308],\"floor_index\":0,\"index\":300,\"offset_point_count\":0,\"position\":[3.6241526713,0.0058588547,-0.8991338923],\"quaternion\":{\"w\":-0.000802863828349858,\"x\":-0.00962678086908404,\"y\":-0.9999049298933373,\"z\":0.009839292272565959},\"standing_position\":[3.6241526713,-1.2650781112423828,-0.8991338923],\"visible_nodes\":[0,1,2,3,4,5,6,7,31,32,33,34,35,36,37,195,196,197,198,199,200,201,202,291,292,293,294,295,296,297,298,299,301,302,303,306,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,35,36,37,195,196,197,198,199,200,201,291,292,293,294,295,296,297,298,299,300,302,303,306],\"floor_index\":0,\"index\":301,\"offset_point_count\":0,\"position\":[5.2770732594,0.0058802655,-0.8259715752],\"quaternion\":{\"w\":-0.0010348685213880902,\"x\":-0.01048171708451511,\"y\":-0.9999066341414082,\"z\":0.008705495396052238},\"standing_position\":[5.2770732594,-1.2768946597319335,-0.8259715752],\"visible_nodes\":[0,1,2,3,4,5,6,7,35,36,37,195,196,197,198,199,200,201,291,292,293,294,295,296,297,298,299,300,302,303,306]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,26,27,28,29,38,39,195,196,197,198,199,200,201,202,203,238,239,240,291,292,293,294,295,296,297,298,299,300,301,303,306,307],\"floor_index\":0,\"index\":302,\"offset_point_count\":0,\"position\":[-1.1305719765,0.0230436017,0.4647226076],\"quaternion\":{\"w\":-0.18649512764482631,\"x\":-0.012635451038159693,\"y\":-0.9823108718094288,\"z\":0.011192134323779548},\"standing_position\":[-1.1305719765,-1.2599889348066529,0.4647226076],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,26,27,28,29,38,39,195,196,197,198,199,200,201,202,203,238,239,240,291,292,293,294,295,296,297,298,299,300,301,303,306,307]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,26,27,38,39,195,196,197,198,199,200,201,202,203,238,291,292,293,294,295,296,297,298,299,300,301,302,306,307],\"floor_index\":0,\"index\":303,\"offset_point_count\":0,\"position\":[-1.9282720654,0.0252559612,0.4704434482],\"quaternion\":{\"w\":-0.20226000733744912,\"x\":-0.008277816983549615,\"y\":-0.979248256648946,\"z\":0.009758023473740746},\"standing_position\":[-1.9282720654,-1.2605287601745117,0.4704434482],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,26,27,38,39,195,196,197,198,199,200,201,202,203,238,291,292,293,294,295,296,297,298,299,300,301,302,306,307]},{\"accessible_nodes\":[9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,239,240],\"floor_index\":0,\"index\":304,\"offset_point_count\":0,\"position\":[11.5695924811,0.0104465297,9.0700808262],\"quaternion\":{\"w\":0.10680406057080105,\"x\":-0.009501776284581561,\"y\":-0.9941881961932559,\"z\":0.009614542333735428},\"standing_position\":[11.5695924811,-1.292016644166272,9.0700808262],\"visible_nodes\":[9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,239,240]},{\"accessible_nodes\":[12,13,24,25,43,44,45,241,242,243,256,257,268,269],\"floor_index\":0,\"index\":305,\"offset_point_count\":0,\"position\":[11.5678143607,-0.4090234017,21.5752777063],\"quaternion\":{\"w\":-0.8748375278015913,\"x\":-0.003408218618024605,\"y\":0.4837236491367972,\"z\":-0.025673239814529136},\"standing_position\":[11.5678143607,-1.7247092699632447,21.5752777063],\"visible_nodes\":[12,13,24,25,43,44,45,241,242,243,256,257,268,269]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,35,36,37,195,196,197,198,199,200,201,202,203,204,205,291,292,293,294,295,296,297,298,299,300,301,302,303,307,308],\"floor_index\":0,\"index\":306,\"offset_point_count\":0,\"position\":[2.5319243502,0.0358899427,1.3939875507],\"quaternion\":{\"w\":-0.9417112068596188,\"x\":0.0011721724950912154,\"y\":0.3361460529185235,\"z\":-0.013581605625838794},\"standing_position\":[2.5319243502,-1.2454973864015626,1.3939875507],\"visible_nodes\":[0,1,2,3,4,5,6,7,35,36,37,195,196,197,198,199,200,201,202,203,204,205,291,292,293,294,295,296,297,298,299,300,301,302,303,307,308]},{\"accessible_nodes\":[0,1,2,3,4,5,6,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,293,294,295,296,297,298,299,300,302,303,306,308],\"floor_index\":0,\"index\":307,\"offset_point_count\":0,\"position\":[10.2307297471,0.0031186845,-0.2419711268],\"quaternion\":{\"w\":0.08791515179427177,\"x\":-0.0148469068814299,\"y\":-0.9959899370350084,\"z\":0.007385171678437931},\"standing_position\":[10.2307297471,-1.3004457447831421,-0.2419711268],\"visible_nodes\":[0,1,2,3,4,5,6,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,293,294,295,296,297,298,299,300,302,303,306,308]},{\"accessible_nodes\":[0,1,2,3,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,213,297,298,299,300,306,307],\"floor_index\":0,\"index\":308,\"offset_point_count\":0,\"position\":[14.9143908566,-0.0240457157,0.3470811156],\"quaternion\":{\"w\":0.4921971349522512,\"x\":-0.014712726839278064,\"y\":-0.8703154972479807,\"z\":0.008743641758721712},\"standing_position\":[14.9143908566,-1.3218988279207642,0.3470811156],\"visible_nodes\":[0,1,2,3,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,213,297,298,299,300,306,307]},{\"accessible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,227,232,233,234,235,311,312,313,314,318,319,320,321,325,326,327,330],\"floor_index\":1,\"index\":309,\"offset_point_count\":0,\"position\":[23.0351669404,4.2937549147,1.7808649547],\"quaternion\":{\"w\":0.27655598762872996,\"x\":-0.012157555440519933,\"y\":-0.9608696322342589,\"z\":0.009926197404972014},\"standing_position\":[23.0351669404,2.8360616955151245,1.7808649547],\"visible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,227,232,233,234,235,311,312,313,314,318,319,320,321,325,326,327,330]},{\"accessible_nodes\":[216,217,218,221,222,223,224,225,226,227,228,229,232,234,236,311,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330],\"floor_index\":1,\"index\":310,\"offset_point_count\":0,\"position\":[14.9132897249,4.3461432438,-0.6824505046],\"quaternion\":{\"w\":-0.46817605705961474,\"x\":-0.014068995210315797,\"y\":-0.8835150779556623,\"z\":0.0037881392559189053},\"standing_position\":[14.9132897249,2.8923547248943606,-0.6824505046],\"visible_nodes\":[216,217,218,221,222,223,224,225,226,227,228,229,232,234,236,311,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330]},{\"accessible_nodes\":[216,217,218,222,223,224,225,226,227,228,229,232,233,234,236,309,310,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330],\"floor_index\":1,\"index\":311,\"offset_point_count\":0,\"position\":[13.4915888926,4.3618780877,-0.7059051563],\"quaternion\":{\"w\":-0.47597430387329553,\"x\":-0.011750427409478582,\"y\":-0.8793794080770825,\"z\":0.0014987188270441855},\"standing_position\":[13.4915888926,2.9147584940797,-0.7059051563],\"visible_nodes\":[216,217,218,222,223,224,225,226,227,228,229,232,233,234,236,309,310,312,313,314,315,316,318,319,320,321,325,326,327,328,329,330]},{\"accessible_nodes\":[216,218,226,227,228,229,232,233,234,236,309,310,311,313,314,315,316,318,319,320,321,325,326,327,328,329,330],\"floor_index\":1,\"index\":312,\"offset_point_count\":0,\"position\":[11.2607619362,4.3768502826,-0.8265469121],\"quaternion\":{\"w\":-0.4811349656613281,\"x\":-0.009362631694532737,\"y\":-0.8765962757877768,\"z\":0.0006747034425495119},\"standing_position\":[11.2607619362,2.935533320357874,-0.8265469121],\"visible_nodes\":[216,218,226,227,228,229,232,233,234,236,309,310,311,313,314,315,316,318,319,320,321,325,326,327,328,329,330]},{\"accessible_nodes\":[216,218,226,227,228,229,236,309,310,311,312,314,315,316,318,319,320,321,325,326,327,328,329,330,335],\"floor_index\":1,\"index\":313,\"offset_point_count\":0,\"position\":[10.2189168632,4.377882758,-0.8820782674],\"quaternion\":{\"w\":-0.45726841194282075,\"x\":-0.009466370592965555,\"y\":-0.88927750792427,\"z\":-0.0012252145031117643},\"standing_position\":[10.2189168632,2.9402114542509157,-0.8820782674],\"visible_nodes\":[216,218,226,227,228,229,236,309,310,311,312,314,315,316,318,319,320,321,325,326,327,328,329,330,335]},{\"accessible_nodes\":[216,218,226,227,228,229,236,309,310,311,312,313,315,316,318,320,321,325,326,327,328,329,330,335],\"floor_index\":1,\"index\":314,\"offset_point_count\":0,\"position\":[8.9410035386,4.3846095109,-0.8402293414],\"quaternion\":{\"w\":-0.45135615901191384,\"x\":-0.011472776669594181,\"y\":-0.8922688242620607,\"z\":-0.0015291612660885358},\"standing_position\":[8.9410035386,2.9442040228857786,-0.8402293414],\"visible_nodes\":[216,218,226,227,228,229,236,309,310,311,312,313,315,316,318,320,321,325,326,327,328,329,330,335]},{\"accessible_nodes\":[216,226,227,228,229,231,236,310,311,312,313,314,316,320,321,323,325,326,327,328,329,330,334,335],\"floor_index\":1,\"index\":315,\"offset_point_count\":0,\"position\":[6.82495504,4.4013089596,-0.9550729592],\"quaternion\":{\"w\":-0.9972702371599185,\"x\":-0.004678475653988484,\"y\":-0.07218537826318,\"z\":-0.014814085665559616},\"standing_position\":[6.82495504,2.9649062811103146,-0.9550729592],\"visible_nodes\":[216,226,227,228,229,231,236,310,311,312,313,314,316,320,321,323,325,326,327,328,329,330,334,335]},{\"accessible_nodes\":[216,226,227,228,231,236,310,311,312,313,314,315,320,321,322,325,326,327,328,329,334],\"floor_index\":1,\"index\":316,\"offset_point_count\":0,\"position\":[5.4229817632,4.4093714372,-1.0105745548],\"quaternion\":{\"w\":-0.9995727165394221,\"x\":-0.0037283497371779464,\"y\":-0.026219360849237736,\"z\":-0.012370483603042926},\"standing_position\":[5.4229817632,2.9900587216696044,-1.0105745548],\"visible_nodes\":[216,226,227,228,231,236,310,311,312,313,314,315,320,321,322,325,326,327,328,329,334]},{\"accessible_nodes\":[229,230,231,237,322,323,331,332,333,334,335,337],\"floor_index\":1,\"index\":317,\"offset_point_count\":0,\"position\":[2.404869523,4.4826000135,4.8464973641],\"quaternion\":{\"w\":-0.9636138289662515,\"x\":-0.00034249905416369796,\"y\":0.2670657746278703,\"z\":-0.011141963151896665},\"standing_position\":[2.404869523,3.0472474496419677,4.8464973641],\"visible_nodes\":[229,230,231,237,322,323,331,332,333,334,335,337]},{\"accessible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,227,232,233,234,235,309,310,311,312,313,314,319,320,325,330],\"floor_index\":1,\"index\":318,\"offset_point_count\":0,\"position\":[23.1373597532,4.299537624,3.4604864499],\"quaternion\":{\"w\":-0.9950888015649658,\"x\":-0.006210627323190232,\"y\":-0.09832133815206281,\"z\":-0.009623905409184494},\"standing_position\":[23.1373597532,2.8336031090006104,3.4604864499],\"visible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,227,232,233,234,235,309,310,311,312,313,314,319,320,325,330]},{\"accessible_nodes\":[215,216,217,218,219,220,221,222,223,224,225,226,232,233,234,235,309,310,311,312,313,318,320,330],\"floor_index\":1,\"index\":319,\"offset_point_count\":0,\"position\":[23.0334456677,4.30601405,4.5254377174],\"quaternion\":{\"w\":0.5286536411447111,\"x\":-0.013563784634654252,\"y\":-0.8485931957805224,\"z\":0.015196694616598625},\"standing_position\":[23.0334456677,2.852686513417053,4.5254377174],\"visible_nodes\":[215,216,217,218,219,220,221,222,223,224,225,226,232,233,234,235,309,310,311,312,313,318,320,330]},{\"accessible_nodes\":[214,215,216,217,218,223,224,225,226,227,228,229,232,233,234,236,309,310,311,312,313,314,315,316,318,319,321,325,326,327,328,329,330],\"floor_index\":1,\"index\":320,\"offset_point_count\":0,\"position\":[15.5155154526,4.3514986337,1.2821309269],\"quaternion\":{\"w\":-0.509400497544094,\"x\":-0.012267871138338902,\"y\":-0.8604134801361495,\"z\":0.00701966088332829},\"standing_position\":[15.5155154526,2.90209952004491,1.2821309269],\"visible_nodes\":[214,215,216,217,218,223,224,225,226,227,228,229,232,233,234,236,309,310,311,312,313,314,315,316,318,319,321,325,326,327,328,329,330]},{\"accessible_nodes\":[216,218,226,227,228,229,236,237,309,310,311,312,313,314,315,316,320,325,326,327,328,329,330],\"floor_index\":1,\"index\":321,\"offset_point_count\":0,\"position\":[10.2501870524,4.3897528815,1.3066822721],\"quaternion\":{\"w\":-0.40960175488986006,\"x\":-0.014070522010258659,\"y\":-0.9121261503761418,\"z\":0.00736943710826419},\"standing_position\":[10.2501870524,2.938212292167419,1.3066822721],\"visible_nodes\":[216,218,226,227,228,229,236,237,309,310,311,312,313,314,315,316,320,325,326,327,328,329,330]},{\"accessible_nodes\":[229,230,231,237,316,317,323,329,331,332,333,334,335,336],\"floor_index\":1,\"index\":322,\"offset_point_count\":0,\"position\":[-0.7682259878,4.5166161081,6.3053724406],\"quaternion\":{\"w\":0.8269923768211193,\"x\":-0.007166023699962442,\"y\":-0.5620271601977969,\"z\":0.01255897926270309},\"standing_position\":[-0.7682259878,3.12310385910708,6.3053724406],\"visible_nodes\":[229,230,231,237,316,317,323,329,331,332,333,334,335,336]},{\"accessible_nodes\":[229,230,231,237,315,317,322,324,331,332,333,334,335,336],\"floor_index\":1,\"index\":323,\"offset_point_count\":0,\"position\":[-2.8888839551,4.5261834517,6.3467916725],\"quaternion\":{\"w\":-0.927843412556774,\"x\":-0.009075996456982678,\"y\":-0.3727585426262181,\"z\":-0.0086773826715155},\"standing_position\":[-2.8888839551,3.0712730541703976,6.3467916725],\"visible_nodes\":[229,230,231,237,315,317,322,324,331,332,333,334,335,336]},{\"accessible_nodes\":[237,323,335,336,337],\"floor_index\":1,\"index\":324,\"offset_point_count\":0,\"position\":[-3.0262254546,4.4903752675,1.4932261433],\"quaternion\":{\"w\":-0.38579024479758633,\"x\":-0.015049865403735879,\"y\":-0.9224386183914896,\"z\":0.006810570101623649},\"standing_position\":[-3.0262254546,3.0320311655941774,1.4932261433],\"visible_nodes\":[237,323,335,336,337]},{\"accessible_nodes\":[211,214,216,218,226,227,228,229,232,233,236,309,310,311,312,313,314,315,316,318,320,321,326,327,328,329,330],\"floor_index\":1,\"index\":325,\"offset_point_count\":0,\"position\":[13.1523938642,4.3689568497,1.3210251483],\"quaternion\":{\"w\":-0.9943113557508031,\"x\":-0.0019981675895673246,\"y\":-0.10588571715094273,\"z\":-0.01136442089758448},\"standing_position\":[13.1523938642,2.917813942557361,1.3210251483],\"visible_nodes\":[211,214,216,218,226,227,228,229,232,233,236,309,310,311,312,313,314,315,316,318,320,321,326,327,328,329,330]},{\"accessible_nodes\":[216,218,226,227,228,229,232,233,236,309,310,311,312,313,314,315,316,320,321,325,327,328,329,330],\"floor_index\":1,\"index\":326,\"offset_point_count\":0,\"position\":[11.1131618409,4.3814355344,1.2395240538],\"quaternion\":{\"w\":-0.9960967666597458,\"x\":-0.001587705761061088,\"y\":-0.08746491361693201,\"z\":-0.011772830203358892},\"standing_position\":[11.1131618409,2.9322949856939458,1.2395240538],\"visible_nodes\":[216,218,226,227,228,229,232,233,236,309,310,311,312,313,314,315,316,320,321,325,327,328,329,330]},{\"accessible_nodes\":[216,218,226,227,228,229,236,309,310,311,312,313,314,315,316,320,321,325,326,328,329,330],\"floor_index\":1,\"index\":327,\"offset_point_count\":0,\"position\":[9.3736413726,4.3889960278,1.188222903],\"quaternion\":{\"w\":-0.9951898127744274,\"x\":-0.0016814126094549173,\"y\":-0.09719728315479148,\"z\":-0.01212837701418053},\"standing_position\":[9.3736413726,2.9446090687240725,1.188222903],\"visible_nodes\":[216,218,226,227,228,229,236,309,310,311,312,313,314,315,316,320,321,325,326,328,329,330]},{\"accessible_nodes\":[216,226,227,228,229,236,310,311,312,313,314,315,316,320,321,325,326,327,329,330],\"floor_index\":1,\"index\":328,\"offset_point_count\":0,\"position\":[7.5707797852,4.4010468693,1.215689604],\"quaternion\":{\"w\":-0.9997172469253494,\"x\":-0.0024779354438655395,\"y\":-0.01956462950914805,\"z\":-0.01328575563825577},\"standing_position\":[7.5707797852,2.9572054119330566,1.215689604],\"visible_nodes\":[216,226,227,228,229,236,310,311,312,313,314,315,316,320,321,325,326,327,329,330]},{\"accessible_nodes\":[216,226,227,228,231,236,310,311,312,313,314,315,316,320,321,322,325,326,327,328],\"floor_index\":1,\"index\":329,\"offset_point_count\":0,\"position\":[4.7739922393,4.4147229842,-0.5157958974],\"quaternion\":{\"w\":0.7629610968962989,\"x\":-0.011572986012450553,\"y\":-0.646140707934425,\"z\":0.016081546979477102},\"standing_position\":[4.7739922393,2.9991414002232544,-0.5157958974],\"visible_nodes\":[216,226,227,228,231,236,310,311,312,313,314,315,316,320,321,322,325,326,327,328]},{\"accessible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,227,232,233,234,235,309,310,311,312,313,314,315,318,319,320,321,325,326,327,328],\"floor_index\":1,\"index\":330,\"offset_point_count\":0,\"position\":[20.7671272495,4.2998328454,1.4577487989],\"quaternion\":{\"w\":-0.17837936617392094,\"x\":-0.021882976381952687,\"y\":-0.9836975132758037,\"z\":0.0064140027954214356},\"standing_position\":[20.7671272495,2.846049452493811,1.4577487989],\"visible_nodes\":[214,215,216,217,218,219,220,221,222,223,224,225,226,227,232,233,234,235,309,310,311,312,313,314,315,318,319,320,321,325,326,327,328]},{\"accessible_nodes\":[229,230,231,237,317,322,323,332,333,334,335,337],\"floor_index\":1,\"index\":331,\"offset_point_count\":0,\"position\":[2.5211505087,4.4905037514,6.069494713],\"quaternion\":{\"w\":-0.6912532595869304,\"x\":-0.010178058771829616,\"y\":-0.7225407629158372,\"z\":-0.00042914367730427066},\"standing_position\":[2.5211505087,3.0502616993217533,6.069494713],\"visible_nodes\":[229,230,231,237,317,322,323,332,333,334,335,337]},{\"accessible_nodes\":[229,230,231,237,317,322,323,331,333,334,335],\"floor_index\":1,\"index\":332,\"offset_point_count\":0,\"position\":[2.0122585095,4.5037995798,7.2572390777],\"quaternion\":{\"w\":-0.7087258213281573,\"x\":-0.015042601979265012,\"y\":-0.7053208224630831,\"z\":-0.0019919058182540374},\"standing_position\":[2.0122585095,3.0536258441814086,7.2572390777],\"visible_nodes\":[229,230,231,237,317,322,323,331,333,334,335]},{\"accessible_nodes\":[229,230,231,237,317,322,323,331,332,334,335],\"floor_index\":1,\"index\":333,\"offset_point_count\":0,\"position\":[1.1425793573,4.5134068398,7.3402416053],\"quaternion\":{\"w\":-0.7609010910393915,\"x\":-0.011456862858090814,\"y\":-0.648765182673978,\"z\":-0.0014169306931840987},\"standing_position\":[1.1425793573,3.0562535194875,7.3402416053],\"visible_nodes\":[229,230,231,237,317,322,323,331,332,334,335]},{\"accessible_nodes\":[229,230,231,237,315,316,317,322,323,331,332,333,335],\"floor_index\":1,\"index\":334,\"offset_point_count\":0,\"position\":[-0.3566424063,4.4966310576,4.6866004161],\"quaternion\":{\"w\":-0.019760386047320222,\"x\":-0.01577856732530536,\"y\":-0.9996515795641,\"z\":0.0075685821987089424},\"standing_position\":[-0.3566424063,3.0348174885310915,4.6866004161],\"visible_nodes\":[229,230,231,237,315,316,317,322,323,331,332,333,335]},{\"accessible_nodes\":[228,231,237,313,314,315,317,322,323,324,331,332,333,334,336],\"floor_index\":1,\"index\":335,\"offset_point_count\":0,\"position\":[-2.4583086505,4.5150472934,4.7322607348],\"quaternion\":{\"w\":-0.03636012093765755,\"x\":-0.0182188867827847,\"y\":-0.9991332822376602,\"z\":0.008871194196583469},\"standing_position\":[-2.4583086505,3.0514370019189823,4.7322607348],\"visible_nodes\":[228,231,237,313,314,315,317,322,323,324,331,332,333,334,336]},{\"accessible_nodes\":[237,322,323,324,335,337,338,339,340],\"floor_index\":1,\"index\":336,\"offset_point_count\":0,\"position\":[-3.9086980365,4.4818310787,0.0223380614],\"quaternion\":{\"w\":-0.04632114797967438,\"x\":-0.01687143603624229,\"y\":-0.9987370540838064,\"z\":0.009695498640413492},\"standing_position\":[-3.9086980365,3.0132859994687378,0.0223380614],\"visible_nodes\":[237,322,323,324,335,337,338,339,340]},{\"accessible_nodes\":[317,324,331,336,338,339,340],\"floor_index\":1,\"index\":337,\"offset_point_count\":0,\"position\":[-7.8049617839,4.5160870143,-0.4573886119],\"quaternion\":{\"w\":-0.09476065982035907,\"x\":-0.023148393586472693,\"y\":-0.9952112989586683,\"z\":-0.0062481721786180455},\"standing_position\":[-7.8049617839,2.9818514176432007,-0.4573886119],\"visible_nodes\":[317,324,331,336,338,339,340]},{\"accessible_nodes\":[336,337,339,340],\"floor_index\":1,\"index\":338,\"offset_point_count\":0,\"position\":[-9.9502865275,3.4148353871,-0.4468361689],\"quaternion\":{\"w\":-0.1210320896334768,\"x\":-0.016709602507021387,\"y\":-0.9925019696328062,\"z\":0.00344423520516017},\"standing_position\":[-9.9502865275,2.0625474985730836,-0.4468361689],\"visible_nodes\":[336,337,339,340]},{\"accessible_nodes\":[336,337,338,340,341,342,343],\"floor_index\":1,\"index\":339,\"offset_point_count\":0,\"position\":[-12.0328906831,2.4939512197,-0.4366643133],\"quaternion\":{\"w\":-0.9913304754848405,\"x\":-0.0023632269035754323,\"y\":0.130363005522245,\"z\":-0.016241623200502757},\"standing_position\":[-12.0328906831,1.0873182002526733,-0.4366643133],\"visible_nodes\":[336,337,338,340,341,342,343]},{\"accessible_nodes\":[336,337,338,339,341,342,343],\"floor_index\":1,\"index\":340,\"offset_point_count\":0,\"position\":[-14.3690169673,2.538078821,-0.4796450178],\"quaternion\":{\"w\":-0.13571932630715589,\"x\":-0.008499671302375597,\"y\":-0.9907048990996259,\"z\":0.003438451276556736},\"standing_position\":[-14.3690169673,1.0899861219490967,-0.4796450178],\"visible_nodes\":[336,337,338,339,341,342,343]},{\"accessible_nodes\":[339,340,342,343,344,345],\"floor_index\":1,\"index\":341,\"offset_point_count\":0,\"position\":[-17.4245458204,2.5353839555,-1.1253215389],\"quaternion\":{\"w\":-0.1210687198028825,\"x\":-0.008627821978477763,\"y\":-0.9925791927977333,\"z\":0.007380499060585235},\"standing_position\":[-17.4245458204,1.0800411858771972,-1.1253215389],\"visible_nodes\":[339,340,342,343,344,345]},{\"accessible_nodes\":[339,340,341,343],\"floor_index\":1,\"index\":342,\"offset_point_count\":0,\"position\":[-21.0379241977,2.5351054976,-1.1193912821],\"quaternion\":{\"w\":-0.1302252947944907,\"x\":-0.008873809860257742,\"y\":-0.9914177324669959,\"z\":0.007314906459211977},\"standing_position\":[-21.0379241977,1.0705012390627076,-1.1193912821],\"visible_nodes\":[339,340,341,343]},{\"accessible_nodes\":[61,339,340,341,342,344,345],\"floor_index\":1,\"index\":343,\"offset_point_count\":0,\"position\":[-20.9635976926,2.5363083351,-2.9615222209],\"quaternion\":{\"w\":-0.9923061675082948,\"x\":-0.004135830335817896,\"y\":0.12263280181011557,\"z\":-0.016509413940393625},\"standing_position\":[-20.9635976926,1.0741203296526125,-2.9615222209],\"visible_nodes\":[61,339,340,341,342,344,345]},{\"accessible_nodes\":[61,341,343,345],\"floor_index\":0,\"index\":344,\"offset_point_count\":0,\"position\":[-18.5403745026,1.5431640258,-2.9705131466],\"quaternion\":{\"w\":-0.9891041989598467,\"x\":-0.003756008091874269,\"y\":0.14592063955625698,\"z\":-0.01912963605846358},\"standing_position\":[-18.5403745026,0.18678296710706777,-2.9705131466],\"visible_nodes\":[61,341,343,345]},{\"accessible_nodes\":[56,59,60,61,341,343,344],\"floor_index\":0,\"index\":345,\"offset_point_count\":0,\"position\":[-16.584322031,0.6540865562,-3.0188217771],\"quaternion\":{\"w\":0.7901463979609045,\"x\":-0.013997765734827928,\"y\":-0.6127228453795402,\"z\":-0.006591442575473477},\"standing_position\":[-16.584322031,-0.7798389532528198,-3.0188217771],\"visible_nodes\":[56,59,60,61,341,343,344]}],\"panorama\":{\"count\":346,\"list\":[{\"back\":\"images/cube_2048/0/7277960a4f1ab7c1af1c5eb75cb87601/0_b.jpg\",\"derived_id\":1702263242,\"derived_id_str\":\"1702263242\",\"down\":\"images/cube_2048/0/7277960a4f1ab7c1af1c5eb75cb87601/0_d.jpg\",\"front\":\"images/cube_2048/0/7277960a4f1ab7c1af1c5eb75cb87601/0_f.jpg\",\"index\":0,\"left\":\"images/cube_2048/0/7277960a4f1ab7c1af1c5eb75cb87601/0_l.jpg\",\"right\":\"images/cube_2048/0/7277960a4f1ab7c1af1c5eb75cb87601/0_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/0/7277960a4f1ab7c1af1c5eb75cb87601/0_u.jpg\"},{\"back\":\"images/cube_2048/1/bbf6d5cf848dac0b2676b2dc2a0df712/1_b.jpg\",\"derived_id\":1702264095,\"derived_id_str\":\"1702264095\",\"down\":\"images/cube_2048/1/bbf6d5cf848dac0b2676b2dc2a0df712/1_d.jpg\",\"front\":\"images/cube_2048/1/bbf6d5cf848dac0b2676b2dc2a0df712/1_f.jpg\",\"index\":1,\"left\":\"images/cube_2048/1/bbf6d5cf848dac0b2676b2dc2a0df712/1_l.jpg\",\"right\":\"images/cube_2048/1/bbf6d5cf848dac0b2676b2dc2a0df712/1_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/1/bbf6d5cf848dac0b2676b2dc2a0df712/1_u.jpg\"},{\"back\":\"images/cube_2048/2/a93b96ff9eb961b0fa0ad300b4b41a5b/2_b.jpg\",\"derived_id\":1702264154,\"derived_id_str\":\"1702264154\",\"down\":\"images/cube_2048/2/a93b96ff9eb961b0fa0ad300b4b41a5b/2_d.jpg\",\"front\":\"images/cube_2048/2/a93b96ff9eb961b0fa0ad300b4b41a5b/2_f.jpg\",\"index\":2,\"left\":\"images/cube_2048/2/a93b96ff9eb961b0fa0ad300b4b41a5b/2_l.jpg\",\"right\":\"images/cube_2048/2/a93b96ff9eb961b0fa0ad300b4b41a5b/2_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/2/a93b96ff9eb961b0fa0ad300b4b41a5b/2_u.jpg\"},{\"back\":\"images/cube_2048/3/316f5c2fadfaf03ab1ae1c87d5b91899/3_b.jpg\",\"derived_id\":1702264214,\"derived_id_str\":\"1702264214\",\"down\":\"images/cube_2048/3/316f5c2fadfaf03ab1ae1c87d5b91899/3_d.jpg\",\"front\":\"images/cube_2048/3/316f5c2fadfaf03ab1ae1c87d5b91899/3_f.jpg\",\"index\":3,\"left\":\"images/cube_2048/3/316f5c2fadfaf03ab1ae1c87d5b91899/3_l.jpg\",\"right\":\"images/cube_2048/3/316f5c2fadfaf03ab1ae1c87d5b91899/3_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/3/316f5c2fadfaf03ab1ae1c87d5b91899/3_u.jpg\"},{\"back\":\"images/cube_2048/4/c79f52a66709ad2b5c704c1487b6a258/4_b.jpg\",\"derived_id\":1702264542,\"derived_id_str\":\"1702264542\",\"down\":\"images/cube_2048/4/c79f52a66709ad2b5c704c1487b6a258/4_d.jpg\",\"front\":\"images/cube_2048/4/c79f52a66709ad2b5c704c1487b6a258/4_f.jpg\",\"index\":4,\"left\":\"images/cube_2048/4/c79f52a66709ad2b5c704c1487b6a258/4_l.jpg\",\"right\":\"images/cube_2048/4/c79f52a66709ad2b5c704c1487b6a258/4_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/4/c79f52a66709ad2b5c704c1487b6a258/4_u.jpg\"},{\"back\":\"images/cube_2048/5/2ce35e91133d850495dabedeea2d052c/5_b.jpg\",\"derived_id\":1702264652,\"derived_id_str\":\"1702264652\",\"down\":\"images/cube_2048/5/2ce35e91133d850495dabedeea2d052c/5_d.jpg\",\"front\":\"images/cube_2048/5/2ce35e91133d850495dabedeea2d052c/5_f.jpg\",\"index\":5,\"left\":\"images/cube_2048/5/2ce35e91133d850495dabedeea2d052c/5_l.jpg\",\"right\":\"images/cube_2048/5/2ce35e91133d850495dabedeea2d052c/5_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/5/2ce35e91133d850495dabedeea2d052c/5_u.jpg\"},{\"back\":\"images/cube_2048/6/b97b29ecdaf2fdd2594e6fc5597b4178/6_b.jpg\",\"derived_id\":1702264735,\"derived_id_str\":\"1702264735\",\"down\":\"images/cube_2048/6/b97b29ecdaf2fdd2594e6fc5597b4178/6_d.jpg\",\"front\":\"images/cube_2048/6/b97b29ecdaf2fdd2594e6fc5597b4178/6_f.jpg\",\"index\":6,\"left\":\"images/cube_2048/6/b97b29ecdaf2fdd2594e6fc5597b4178/6_l.jpg\",\"right\":\"images/cube_2048/6/b97b29ecdaf2fdd2594e6fc5597b4178/6_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/6/b97b29ecdaf2fdd2594e6fc5597b4178/6_u.jpg\"},{\"back\":\"images/cube_2048/7/7fde0dcacf67fec6056e834eb7d86abb/7_b.jpg\",\"derived_id\":1702264805,\"derived_id_str\":\"1702264805\",\"down\":\"images/cube_2048/7/7fde0dcacf67fec6056e834eb7d86abb/7_d.jpg\",\"front\":\"images/cube_2048/7/7fde0dcacf67fec6056e834eb7d86abb/7_f.jpg\",\"index\":7,\"left\":\"images/cube_2048/7/7fde0dcacf67fec6056e834eb7d86abb/7_l.jpg\",\"right\":\"images/cube_2048/7/7fde0dcacf67fec6056e834eb7d86abb/7_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/7/7fde0dcacf67fec6056e834eb7d86abb/7_u.jpg\"},{\"back\":\"images/cube_2048/8/c0e91d49e8f89b027cd0843a38711b03/8_b.jpg\",\"derived_id\":1702266338,\"derived_id_str\":\"1702266338\",\"down\":\"images/cube_2048/8/c0e91d49e8f89b027cd0843a38711b03/8_d.jpg\",\"front\":\"images/cube_2048/8/c0e91d49e8f89b027cd0843a38711b03/8_f.jpg\",\"index\":8,\"left\":\"images/cube_2048/8/c0e91d49e8f89b027cd0843a38711b03/8_l.jpg\",\"right\":\"images/cube_2048/8/c0e91d49e8f89b027cd0843a38711b03/8_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/8/c0e91d49e8f89b027cd0843a38711b03/8_u.jpg\"},{\"back\":\"images/cube_2048/9/8f05baaab97df0336e87661e622daf23/9_b.jpg\",\"derived_id\":1702266396,\"derived_id_str\":\"1702266396\",\"down\":\"images/cube_2048/9/8f05baaab97df0336e87661e622daf23/9_d.jpg\",\"front\":\"images/cube_2048/9/8f05baaab97df0336e87661e622daf23/9_f.jpg\",\"index\":9,\"left\":\"images/cube_2048/9/8f05baaab97df0336e87661e622daf23/9_l.jpg\",\"right\":\"images/cube_2048/9/8f05baaab97df0336e87661e622daf23/9_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/9/8f05baaab97df0336e87661e622daf23/9_u.jpg\"},{\"back\":\"images/cube_2048/10/3ddcfe92a03aed32fda5f835e14521b1/10_b.jpg\",\"derived_id\":1702266660,\"derived_id_str\":\"1702266660\",\"down\":\"images/cube_2048/10/3ddcfe92a03aed32fda5f835e14521b1/10_d.jpg\",\"front\":\"images/cube_2048/10/3ddcfe92a03aed32fda5f835e14521b1/10_f.jpg\",\"index\":10,\"left\":\"images/cube_2048/10/3ddcfe92a03aed32fda5f835e14521b1/10_l.jpg\",\"right\":\"images/cube_2048/10/3ddcfe92a03aed32fda5f835e14521b1/10_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/10/3ddcfe92a03aed32fda5f835e14521b1/10_u.jpg\"},{\"back\":\"images/cube_2048/11/cd724476885df25196af5b1022ffe7d8/11_b.jpg\",\"derived_id\":1702266713,\"derived_id_str\":\"1702266713\",\"down\":\"images/cube_2048/11/cd724476885df25196af5b1022ffe7d8/11_d.jpg\",\"front\":\"images/cube_2048/11/cd724476885df25196af5b1022ffe7d8/11_f.jpg\",\"index\":11,\"left\":\"images/cube_2048/11/cd724476885df25196af5b1022ffe7d8/11_l.jpg\",\"right\":\"images/cube_2048/11/cd724476885df25196af5b1022ffe7d8/11_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/11/cd724476885df25196af5b1022ffe7d8/11_u.jpg\"},{\"back\":\"images/cube_2048/12/8edf4c63bc820f2115742e20ceda4b14/12_b.jpg\",\"derived_id\":1702266879,\"derived_id_str\":\"1702266879\",\"down\":\"images/cube_2048/12/8edf4c63bc820f2115742e20ceda4b14/12_d.jpg\",\"front\":\"images/cube_2048/12/8edf4c63bc820f2115742e20ceda4b14/12_f.jpg\",\"index\":12,\"left\":\"images/cube_2048/12/8edf4c63bc820f2115742e20ceda4b14/12_l.jpg\",\"right\":\"images/cube_2048/12/8edf4c63bc820f2115742e20ceda4b14/12_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/12/8edf4c63bc820f2115742e20ceda4b14/12_u.jpg\"},{\"back\":\"images/cube_2048/13/149214e2c732594f558d578002f36072/13_b.jpg\",\"derived_id\":1702266938,\"derived_id_str\":\"1702266938\",\"down\":\"images/cube_2048/13/149214e2c732594f558d578002f36072/13_d.jpg\",\"front\":\"images/cube_2048/13/149214e2c732594f558d578002f36072/13_f.jpg\",\"index\":13,\"left\":\"images/cube_2048/13/149214e2c732594f558d578002f36072/13_l.jpg\",\"right\":\"images/cube_2048/13/149214e2c732594f558d578002f36072/13_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/13/149214e2c732594f558d578002f36072/13_u.jpg\"},{\"back\":\"images/cube_2048/14/6d9891f20a627a4a20fe86104329f248/14_b.jpg\",\"derived_id\":1702267087,\"derived_id_str\":\"1702267087\",\"down\":\"images/cube_2048/14/6d9891f20a627a4a20fe86104329f248/14_d.jpg\",\"front\":\"images/cube_2048/14/6d9891f20a627a4a20fe86104329f248/14_f.jpg\",\"index\":14,\"left\":\"images/cube_2048/14/6d9891f20a627a4a20fe86104329f248/14_l.jpg\",\"right\":\"images/cube_2048/14/6d9891f20a627a4a20fe86104329f248/14_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/14/6d9891f20a627a4a20fe86104329f248/14_u.jpg\"},{\"back\":\"images/cube_2048/15/17629e3b8ce41c8ab4e38aecaa0ba1a8/15_b.jpg\",\"derived_id\":1702267143,\"derived_id_str\":\"1702267143\",\"down\":\"images/cube_2048/15/17629e3b8ce41c8ab4e38aecaa0ba1a8/15_d.jpg\",\"front\":\"images/cube_2048/15/17629e3b8ce41c8ab4e38aecaa0ba1a8/15_f.jpg\",\"index\":15,\"left\":\"images/cube_2048/15/17629e3b8ce41c8ab4e38aecaa0ba1a8/15_l.jpg\",\"right\":\"images/cube_2048/15/17629e3b8ce41c8ab4e38aecaa0ba1a8/15_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/15/17629e3b8ce41c8ab4e38aecaa0ba1a8/15_u.jpg\"},{\"back\":\"images/cube_2048/16/0341c5a6bcf0f65b6c90bf125cdb8ea6/16_b.jpg\",\"derived_id\":1702267228,\"derived_id_str\":\"1702267228\",\"down\":\"images/cube_2048/16/0341c5a6bcf0f65b6c90bf125cdb8ea6/16_d.jpg\",\"front\":\"images/cube_2048/16/0341c5a6bcf0f65b6c90bf125cdb8ea6/16_f.jpg\",\"index\":16,\"left\":\"images/cube_2048/16/0341c5a6bcf0f65b6c90bf125cdb8ea6/16_l.jpg\",\"right\":\"images/cube_2048/16/0341c5a6bcf0f65b6c90bf125cdb8ea6/16_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/16/0341c5a6bcf0f65b6c90bf125cdb8ea6/16_u.jpg\"},{\"back\":\"images/cube_2048/17/28f2b8c019baf0f483e3232e219263f7/17_b.jpg\",\"derived_id\":1702267290,\"derived_id_str\":\"1702267290\",\"down\":\"images/cube_2048/17/28f2b8c019baf0f483e3232e219263f7/17_d.jpg\",\"front\":\"images/cube_2048/17/28f2b8c019baf0f483e3232e219263f7/17_f.jpg\",\"index\":17,\"left\":\"images/cube_2048/17/28f2b8c019baf0f483e3232e219263f7/17_l.jpg\",\"right\":\"images/cube_2048/17/28f2b8c019baf0f483e3232e219263f7/17_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/17/28f2b8c019baf0f483e3232e219263f7/17_u.jpg\"},{\"back\":\"images/cube_2048/18/7f88e7ebc8f665d9e3ef4bdc36ed6437/18_b.jpg\",\"derived_id\":1702267351,\"derived_id_str\":\"1702267351\",\"down\":\"images/cube_2048/18/7f88e7ebc8f665d9e3ef4bdc36ed6437/18_d.jpg\",\"front\":\"images/cube_2048/18/7f88e7ebc8f665d9e3ef4bdc36ed6437/18_f.jpg\",\"index\":18,\"left\":\"images/cube_2048/18/7f88e7ebc8f665d9e3ef4bdc36ed6437/18_l.jpg\",\"right\":\"images/cube_2048/18/7f88e7ebc8f665d9e3ef4bdc36ed6437/18_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/18/7f88e7ebc8f665d9e3ef4bdc36ed6437/18_u.jpg\"},{\"back\":\"images/cube_2048/19/3977c8ad67fdcea6494dbc9f4e88e721/19_b.jpg\",\"derived_id\":1702267428,\"derived_id_str\":\"1702267428\",\"down\":\"images/cube_2048/19/3977c8ad67fdcea6494dbc9f4e88e721/19_d.jpg\",\"front\":\"images/cube_2048/19/3977c8ad67fdcea6494dbc9f4e88e721/19_f.jpg\",\"index\":19,\"left\":\"images/cube_2048/19/3977c8ad67fdcea6494dbc9f4e88e721/19_l.jpg\",\"right\":\"images/cube_2048/19/3977c8ad67fdcea6494dbc9f4e88e721/19_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/19/3977c8ad67fdcea6494dbc9f4e88e721/19_u.jpg\"},{\"back\":\"images/cube_2048/20/fcb1a0f1ba97ee2f0475e7486689f36e/20_b.jpg\",\"derived_id\":1702267506,\"derived_id_str\":\"1702267506\",\"down\":\"images/cube_2048/20/fcb1a0f1ba97ee2f0475e7486689f36e/20_d.jpg\",\"front\":\"images/cube_2048/20/fcb1a0f1ba97ee2f0475e7486689f36e/20_f.jpg\",\"index\":20,\"left\":\"images/cube_2048/20/fcb1a0f1ba97ee2f0475e7486689f36e/20_l.jpg\",\"right\":\"images/cube_2048/20/fcb1a0f1ba97ee2f0475e7486689f36e/20_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/20/fcb1a0f1ba97ee2f0475e7486689f36e/20_u.jpg\"},{\"back\":\"images/cube_2048/21/e21857da7addf445c198d06b9a1b9170/21_b.jpg\",\"derived_id\":1702267566,\"derived_id_str\":\"1702267566\",\"down\":\"images/cube_2048/21/e21857da7addf445c198d06b9a1b9170/21_d.jpg\",\"front\":\"images/cube_2048/21/e21857da7addf445c198d06b9a1b9170/21_f.jpg\",\"index\":21,\"left\":\"images/cube_2048/21/e21857da7addf445c198d06b9a1b9170/21_l.jpg\",\"right\":\"images/cube_2048/21/e21857da7addf445c198d06b9a1b9170/21_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/21/e21857da7addf445c198d06b9a1b9170/21_u.jpg\"},{\"back\":\"images/cube_2048/22/3eaf8ab9e71c67cd321093edd0361afb/22_b.jpg\",\"derived_id\":1702267701,\"derived_id_str\":\"1702267701\",\"down\":\"images/cube_2048/22/3eaf8ab9e71c67cd321093edd0361afb/22_d.jpg\",\"front\":\"images/cube_2048/22/3eaf8ab9e71c67cd321093edd0361afb/22_f.jpg\",\"index\":22,\"left\":\"images/cube_2048/22/3eaf8ab9e71c67cd321093edd0361afb/22_l.jpg\",\"right\":\"images/cube_2048/22/3eaf8ab9e71c67cd321093edd0361afb/22_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/22/3eaf8ab9e71c67cd321093edd0361afb/22_u.jpg\"},{\"back\":\"images/cube_2048/23/757365176f961f201609319a162cffd0/23_b.jpg\",\"derived_id\":1702267762,\"derived_id_str\":\"1702267762\",\"down\":\"images/cube_2048/23/757365176f961f201609319a162cffd0/23_d.jpg\",\"front\":\"images/cube_2048/23/757365176f961f201609319a162cffd0/23_f.jpg\",\"index\":23,\"left\":\"images/cube_2048/23/757365176f961f201609319a162cffd0/23_l.jpg\",\"right\":\"images/cube_2048/23/757365176f961f201609319a162cffd0/23_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/23/757365176f961f201609319a162cffd0/23_u.jpg\"},{\"back\":\"images/cube_2048/24/627820e118c5bbf5a262610ec907565c/24_b.jpg\",\"derived_id\":1702267895,\"derived_id_str\":\"1702267895\",\"down\":\"images/cube_2048/24/627820e118c5bbf5a262610ec907565c/24_d.jpg\",\"front\":\"images/cube_2048/24/627820e118c5bbf5a262610ec907565c/24_f.jpg\",\"index\":24,\"left\":\"images/cube_2048/24/627820e118c5bbf5a262610ec907565c/24_l.jpg\",\"right\":\"images/cube_2048/24/627820e118c5bbf5a262610ec907565c/24_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/24/627820e118c5bbf5a262610ec907565c/24_u.jpg\"},{\"back\":\"images/cube_2048/25/9f535d4b2916907566605dfb87b9d2d9/25_b.jpg\",\"derived_id\":1702267962,\"derived_id_str\":\"1702267962\",\"down\":\"images/cube_2048/25/9f535d4b2916907566605dfb87b9d2d9/25_d.jpg\",\"front\":\"images/cube_2048/25/9f535d4b2916907566605dfb87b9d2d9/25_f.jpg\",\"index\":25,\"left\":\"images/cube_2048/25/9f535d4b2916907566605dfb87b9d2d9/25_l.jpg\",\"right\":\"images/cube_2048/25/9f535d4b2916907566605dfb87b9d2d9/25_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/25/9f535d4b2916907566605dfb87b9d2d9/25_u.jpg\"},{\"back\":\"images/cube_2048/26/144ba759bd1278ca03d814cf1f96081c/26_b.jpg\",\"derived_id\":1702268039,\"derived_id_str\":\"1702268039\",\"down\":\"images/cube_2048/26/144ba759bd1278ca03d814cf1f96081c/26_d.jpg\",\"front\":\"images/cube_2048/26/144ba759bd1278ca03d814cf1f96081c/26_f.jpg\",\"index\":26,\"left\":\"images/cube_2048/26/144ba759bd1278ca03d814cf1f96081c/26_l.jpg\",\"right\":\"images/cube_2048/26/144ba759bd1278ca03d814cf1f96081c/26_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/26/144ba759bd1278ca03d814cf1f96081c/26_u.jpg\"},{\"back\":\"images/cube_2048/27/5b9cc7f211538b29c69e93e9d617d653/27_b.jpg\",\"derived_id\":1702268310,\"derived_id_str\":\"1702268310\",\"down\":\"images/cube_2048/27/5b9cc7f211538b29c69e93e9d617d653/27_d.jpg\",\"front\":\"images/cube_2048/27/5b9cc7f211538b29c69e93e9d617d653/27_f.jpg\",\"index\":27,\"left\":\"images/cube_2048/27/5b9cc7f211538b29c69e93e9d617d653/27_l.jpg\",\"right\":\"images/cube_2048/27/5b9cc7f211538b29c69e93e9d617d653/27_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/27/5b9cc7f211538b29c69e93e9d617d653/27_u.jpg\"},{\"back\":\"images/cube_2048/28/c315d5f0287bd3bf2760b0da2a6557ee/28_b.jpg\",\"derived_id\":1702268510,\"derived_id_str\":\"1702268510\",\"down\":\"images/cube_2048/28/c315d5f0287bd3bf2760b0da2a6557ee/28_d.jpg\",\"front\":\"images/cube_2048/28/c315d5f0287bd3bf2760b0da2a6557ee/28_f.jpg\",\"index\":28,\"left\":\"images/cube_2048/28/c315d5f0287bd3bf2760b0da2a6557ee/28_l.jpg\",\"right\":\"images/cube_2048/28/c315d5f0287bd3bf2760b0da2a6557ee/28_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/28/c315d5f0287bd3bf2760b0da2a6557ee/28_u.jpg\"},{\"back\":\"images/cube_2048/29/1a3d0699ae42dc86b37749724d48bab0/29_b.jpg\",\"derived_id\":1702268571,\"derived_id_str\":\"1702268571\",\"down\":\"images/cube_2048/29/1a3d0699ae42dc86b37749724d48bab0/29_d.jpg\",\"front\":\"images/cube_2048/29/1a3d0699ae42dc86b37749724d48bab0/29_f.jpg\",\"index\":29,\"left\":\"images/cube_2048/29/1a3d0699ae42dc86b37749724d48bab0/29_l.jpg\",\"right\":\"images/cube_2048/29/1a3d0699ae42dc86b37749724d48bab0/29_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/29/1a3d0699ae42dc86b37749724d48bab0/29_u.jpg\"},{\"back\":\"images/cube_2048/30/906ac906d2acb3b296fd2c54a1a5254f/30_b.jpg\",\"derived_id\":1702268682,\"derived_id_str\":\"1702268682\",\"down\":\"images/cube_2048/30/906ac906d2acb3b296fd2c54a1a5254f/30_d.jpg\",\"front\":\"images/cube_2048/30/906ac906d2acb3b296fd2c54a1a5254f/30_f.jpg\",\"index\":30,\"left\":\"images/cube_2048/30/906ac906d2acb3b296fd2c54a1a5254f/30_l.jpg\",\"right\":\"images/cube_2048/30/906ac906d2acb3b296fd2c54a1a5254f/30_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/30/906ac906d2acb3b296fd2c54a1a5254f/30_u.jpg\"},{\"back\":\"images/cube_2048/31/ad544651e802595f9bab744d70958aa3/31_b.jpg\",\"derived_id\":1702268775,\"derived_id_str\":\"1702268775\",\"down\":\"images/cube_2048/31/ad544651e802595f9bab744d70958aa3/31_d.jpg\",\"front\":\"images/cube_2048/31/ad544651e802595f9bab744d70958aa3/31_f.jpg\",\"index\":31,\"left\":\"images/cube_2048/31/ad544651e802595f9bab744d70958aa3/31_l.jpg\",\"right\":\"images/cube_2048/31/ad544651e802595f9bab744d70958aa3/31_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/31/ad544651e802595f9bab744d70958aa3/31_u.jpg\"},{\"back\":\"images/cube_2048/32/c4f4d1ce942a45558ac1d0873f5749f1/32_b.jpg\",\"derived_id\":1702268838,\"derived_id_str\":\"1702268838\",\"down\":\"images/cube_2048/32/c4f4d1ce942a45558ac1d0873f5749f1/32_d.jpg\",\"front\":\"images/cube_2048/32/c4f4d1ce942a45558ac1d0873f5749f1/32_f.jpg\",\"index\":32,\"left\":\"images/cube_2048/32/c4f4d1ce942a45558ac1d0873f5749f1/32_l.jpg\",\"right\":\"images/cube_2048/32/c4f4d1ce942a45558ac1d0873f5749f1/32_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/32/c4f4d1ce942a45558ac1d0873f5749f1/32_u.jpg\"},{\"back\":\"images/cube_2048/33/fc8e41bc2b874fe53c63cbe3d9fd4c00/33_b.jpg\",\"derived_id\":1702268950,\"derived_id_str\":\"1702268950\",\"down\":\"images/cube_2048/33/fc8e41bc2b874fe53c63cbe3d9fd4c00/33_d.jpg\",\"front\":\"images/cube_2048/33/fc8e41bc2b874fe53c63cbe3d9fd4c00/33_f.jpg\",\"index\":33,\"left\":\"images/cube_2048/33/fc8e41bc2b874fe53c63cbe3d9fd4c00/33_l.jpg\",\"right\":\"images/cube_2048/33/fc8e41bc2b874fe53c63cbe3d9fd4c00/33_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/33/fc8e41bc2b874fe53c63cbe3d9fd4c00/33_u.jpg\"},{\"back\":\"images/cube_2048/34/ada90fc72fba23167e55793651915352/34_b.jpg\",\"derived_id\":1702269011,\"derived_id_str\":\"1702269011\",\"down\":\"images/cube_2048/34/ada90fc72fba23167e55793651915352/34_d.jpg\",\"front\":\"images/cube_2048/34/ada90fc72fba23167e55793651915352/34_f.jpg\",\"index\":34,\"left\":\"images/cube_2048/34/ada90fc72fba23167e55793651915352/34_l.jpg\",\"right\":\"images/cube_2048/34/ada90fc72fba23167e55793651915352/34_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/34/ada90fc72fba23167e55793651915352/34_u.jpg\"},{\"back\":\"images/cube_2048/35/b214f44ca7c3e08d2ad6cedaa8681a63/35_b.jpg\",\"derived_id\":1702269129,\"derived_id_str\":\"1702269129\",\"down\":\"images/cube_2048/35/b214f44ca7c3e08d2ad6cedaa8681a63/35_d.jpg\",\"front\":\"images/cube_2048/35/b214f44ca7c3e08d2ad6cedaa8681a63/35_f.jpg\",\"index\":35,\"left\":\"images/cube_2048/35/b214f44ca7c3e08d2ad6cedaa8681a63/35_l.jpg\",\"right\":\"images/cube_2048/35/b214f44ca7c3e08d2ad6cedaa8681a63/35_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/35/b214f44ca7c3e08d2ad6cedaa8681a63/35_u.jpg\"},{\"back\":\"images/cube_2048/36/32472254b85b6606f738a1f4285234b7/36_b.jpg\",\"derived_id\":1702269184,\"derived_id_str\":\"1702269184\",\"down\":\"images/cube_2048/36/32472254b85b6606f738a1f4285234b7/36_d.jpg\",\"front\":\"images/cube_2048/36/32472254b85b6606f738a1f4285234b7/36_f.jpg\",\"index\":36,\"left\":\"images/cube_2048/36/32472254b85b6606f738a1f4285234b7/36_l.jpg\",\"right\":\"images/cube_2048/36/32472254b85b6606f738a1f4285234b7/36_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/36/32472254b85b6606f738a1f4285234b7/36_u.jpg\"},{\"back\":\"images/cube_2048/37/f69b67acf3e91350411bbefeb3fb21fb/37_b.jpg\",\"derived_id\":1702269241,\"derived_id_str\":\"1702269241\",\"down\":\"images/cube_2048/37/f69b67acf3e91350411bbefeb3fb21fb/37_d.jpg\",\"front\":\"images/cube_2048/37/f69b67acf3e91350411bbefeb3fb21fb/37_f.jpg\",\"index\":37,\"left\":\"images/cube_2048/37/f69b67acf3e91350411bbefeb3fb21fb/37_l.jpg\",\"right\":\"images/cube_2048/37/f69b67acf3e91350411bbefeb3fb21fb/37_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/37/f69b67acf3e91350411bbefeb3fb21fb/37_u.jpg\"},{\"back\":\"images/cube_2048/38/a41d411a6bec2d6f7d34f2bd17d81d23/38_b.jpg\",\"derived_id\":1702269325,\"derived_id_str\":\"1702269325\",\"down\":\"images/cube_2048/38/a41d411a6bec2d6f7d34f2bd17d81d23/38_d.jpg\",\"front\":\"images/cube_2048/38/a41d411a6bec2d6f7d34f2bd17d81d23/38_f.jpg\",\"index\":38,\"left\":\"images/cube_2048/38/a41d411a6bec2d6f7d34f2bd17d81d23/38_l.jpg\",\"right\":\"images/cube_2048/38/a41d411a6bec2d6f7d34f2bd17d81d23/38_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/38/a41d411a6bec2d6f7d34f2bd17d81d23/38_u.jpg\"},{\"back\":\"images/cube_2048/39/45a30bba27cac50243f9c1e60ffe8f71/39_b.jpg\",\"derived_id\":1702269384,\"derived_id_str\":\"1702269384\",\"down\":\"images/cube_2048/39/45a30bba27cac50243f9c1e60ffe8f71/39_d.jpg\",\"front\":\"images/cube_2048/39/45a30bba27cac50243f9c1e60ffe8f71/39_f.jpg\",\"index\":39,\"left\":\"images/cube_2048/39/45a30bba27cac50243f9c1e60ffe8f71/39_l.jpg\",\"right\":\"images/cube_2048/39/45a30bba27cac50243f9c1e60ffe8f71/39_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/39/45a30bba27cac50243f9c1e60ffe8f71/39_u.jpg\"},{\"back\":\"images/cube_2048/40/80df505ea4f24c33d7276bc0886b84b4/40_b.jpg\",\"derived_id\":1702269439,\"derived_id_str\":\"1702269439\",\"down\":\"images/cube_2048/40/80df505ea4f24c33d7276bc0886b84b4/40_d.jpg\",\"front\":\"images/cube_2048/40/80df505ea4f24c33d7276bc0886b84b4/40_f.jpg\",\"index\":40,\"left\":\"images/cube_2048/40/80df505ea4f24c33d7276bc0886b84b4/40_l.jpg\",\"right\":\"images/cube_2048/40/80df505ea4f24c33d7276bc0886b84b4/40_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/40/80df505ea4f24c33d7276bc0886b84b4/40_u.jpg\"},{\"back\":\"images/cube_2048/41/4f909c4ba9df9524c3f42a419bee02ab/41_b.jpg\",\"derived_id\":1702269503,\"derived_id_str\":\"1702269503\",\"down\":\"images/cube_2048/41/4f909c4ba9df9524c3f42a419bee02ab/41_d.jpg\",\"front\":\"images/cube_2048/41/4f909c4ba9df9524c3f42a419bee02ab/41_f.jpg\",\"index\":41,\"left\":\"images/cube_2048/41/4f909c4ba9df9524c3f42a419bee02ab/41_l.jpg\",\"right\":\"images/cube_2048/41/4f909c4ba9df9524c3f42a419bee02ab/41_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/41/4f909c4ba9df9524c3f42a419bee02ab/41_u.jpg\"},{\"back\":\"images/cube_2048/42/eda0ae9a1988f9acc450cea0628843be/42_b.jpg\",\"derived_id\":1702269562,\"derived_id_str\":\"1702269562\",\"down\":\"images/cube_2048/42/eda0ae9a1988f9acc450cea0628843be/42_d.jpg\",\"front\":\"images/cube_2048/42/eda0ae9a1988f9acc450cea0628843be/42_f.jpg\",\"index\":42,\"left\":\"images/cube_2048/42/eda0ae9a1988f9acc450cea0628843be/42_l.jpg\",\"right\":\"images/cube_2048/42/eda0ae9a1988f9acc450cea0628843be/42_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/42/eda0ae9a1988f9acc450cea0628843be/42_u.jpg\"},{\"back\":\"images/cube_2048/43/05aebcd9839619513111ae58e1c2c033/43_b.jpg\",\"derived_id\":1702269792,\"derived_id_str\":\"1702269792\",\"down\":\"images/cube_2048/43/05aebcd9839619513111ae58e1c2c033/43_d.jpg\",\"front\":\"images/cube_2048/43/05aebcd9839619513111ae58e1c2c033/43_f.jpg\",\"index\":43,\"left\":\"images/cube_2048/43/05aebcd9839619513111ae58e1c2c033/43_l.jpg\",\"right\":\"images/cube_2048/43/05aebcd9839619513111ae58e1c2c033/43_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/43/05aebcd9839619513111ae58e1c2c033/43_u.jpg\"},{\"back\":\"images/cube_2048/44/fc525950b96fe0c44932877587a99ab9/44_b.jpg\",\"derived_id\":1702269832,\"derived_id_str\":\"1702269832\",\"down\":\"images/cube_2048/44/fc525950b96fe0c44932877587a99ab9/44_d.jpg\",\"front\":\"images/cube_2048/44/fc525950b96fe0c44932877587a99ab9/44_f.jpg\",\"index\":44,\"left\":\"images/cube_2048/44/fc525950b96fe0c44932877587a99ab9/44_l.jpg\",\"right\":\"images/cube_2048/44/fc525950b96fe0c44932877587a99ab9/44_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/44/fc525950b96fe0c44932877587a99ab9/44_u.jpg\"},{\"back\":\"images/cube_2048/45/320124286ee374df96b4c29425c255b3/45_b.jpg\",\"derived_id\":1702269950,\"derived_id_str\":\"1702269950\",\"down\":\"images/cube_2048/45/320124286ee374df96b4c29425c255b3/45_d.jpg\",\"front\":\"images/cube_2048/45/320124286ee374df96b4c29425c255b3/45_f.jpg\",\"index\":45,\"left\":\"images/cube_2048/45/320124286ee374df96b4c29425c255b3/45_l.jpg\",\"right\":\"images/cube_2048/45/320124286ee374df96b4c29425c255b3/45_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/45/320124286ee374df96b4c29425c255b3/45_u.jpg\"},{\"back\":\"images/cube_2048/46/8f6a0dd4a3a49f04d76a9dc60723b1e0/46_b.jpg\",\"derived_id\":1702269992,\"derived_id_str\":\"1702269992\",\"down\":\"images/cube_2048/46/8f6a0dd4a3a49f04d76a9dc60723b1e0/46_d.jpg\",\"front\":\"images/cube_2048/46/8f6a0dd4a3a49f04d76a9dc60723b1e0/46_f.jpg\",\"index\":46,\"left\":\"images/cube_2048/46/8f6a0dd4a3a49f04d76a9dc60723b1e0/46_l.jpg\",\"right\":\"images/cube_2048/46/8f6a0dd4a3a49f04d76a9dc60723b1e0/46_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/46/8f6a0dd4a3a49f04d76a9dc60723b1e0/46_u.jpg\"},{\"back\":\"images/cube_2048/47/2f624fd65fa82424eabec37c49a6b7d4/47_b.jpg\",\"derived_id\":1702270030,\"derived_id_str\":\"1702270030\",\"down\":\"images/cube_2048/47/2f624fd65fa82424eabec37c49a6b7d4/47_d.jpg\",\"front\":\"images/cube_2048/47/2f624fd65fa82424eabec37c49a6b7d4/47_f.jpg\",\"index\":47,\"left\":\"images/cube_2048/47/2f624fd65fa82424eabec37c49a6b7d4/47_l.jpg\",\"right\":\"images/cube_2048/47/2f624fd65fa82424eabec37c49a6b7d4/47_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/47/2f624fd65fa82424eabec37c49a6b7d4/47_u.jpg\"},{\"back\":\"images/cube_2048/48/afb27bcb753beffd68d6cc414c90eb83/48_b.jpg\",\"derived_id\":1702270752,\"derived_id_str\":\"1702270752\",\"down\":\"images/cube_2048/48/afb27bcb753beffd68d6cc414c90eb83/48_d.jpg\",\"front\":\"images/cube_2048/48/afb27bcb753beffd68d6cc414c90eb83/48_f.jpg\",\"index\":48,\"left\":\"images/cube_2048/48/afb27bcb753beffd68d6cc414c90eb83/48_l.jpg\",\"right\":\"images/cube_2048/48/afb27bcb753beffd68d6cc414c90eb83/48_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/48/afb27bcb753beffd68d6cc414c90eb83/48_u.jpg\"},{\"back\":\"images/cube_2048/49/c75b282c39e885c7d725173c305c160e/49_b.jpg\",\"derived_id\":1702270839,\"derived_id_str\":\"1702270839\",\"down\":\"images/cube_2048/49/c75b282c39e885c7d725173c305c160e/49_d.jpg\",\"front\":\"images/cube_2048/49/c75b282c39e885c7d725173c305c160e/49_f.jpg\",\"index\":49,\"left\":\"images/cube_2048/49/c75b282c39e885c7d725173c305c160e/49_l.jpg\",\"right\":\"images/cube_2048/49/c75b282c39e885c7d725173c305c160e/49_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/49/c75b282c39e885c7d725173c305c160e/49_u.jpg\"},{\"back\":\"images/cube_2048/50/4dc53d4bfa0864f83eff586f38a2f49d/50_b.jpg\",\"derived_id\":1702271336,\"derived_id_str\":\"1702271336\",\"down\":\"images/cube_2048/50/4dc53d4bfa0864f83eff586f38a2f49d/50_d.jpg\",\"front\":\"images/cube_2048/50/4dc53d4bfa0864f83eff586f38a2f49d/50_f.jpg\",\"index\":50,\"left\":\"images/cube_2048/50/4dc53d4bfa0864f83eff586f38a2f49d/50_l.jpg\",\"right\":\"images/cube_2048/50/4dc53d4bfa0864f83eff586f38a2f49d/50_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/50/4dc53d4bfa0864f83eff586f38a2f49d/50_u.jpg\"},{\"back\":\"images/cube_2048/51/2578020da131ccd4a53a061814c11707/51_b.jpg\",\"derived_id\":1702271465,\"derived_id_str\":\"1702271465\",\"down\":\"images/cube_2048/51/2578020da131ccd4a53a061814c11707/51_d.jpg\",\"front\":\"images/cube_2048/51/2578020da131ccd4a53a061814c11707/51_f.jpg\",\"index\":51,\"left\":\"images/cube_2048/51/2578020da131ccd4a53a061814c11707/51_l.jpg\",\"right\":\"images/cube_2048/51/2578020da131ccd4a53a061814c11707/51_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/51/2578020da131ccd4a53a061814c11707/51_u.jpg\"},{\"back\":\"images/cube_2048/52/d23b5b8fb22e6f7ae7df33bbce5fafa9/52_b.jpg\",\"derived_id\":1702271526,\"derived_id_str\":\"1702271526\",\"down\":\"images/cube_2048/52/d23b5b8fb22e6f7ae7df33bbce5fafa9/52_d.jpg\",\"front\":\"images/cube_2048/52/d23b5b8fb22e6f7ae7df33bbce5fafa9/52_f.jpg\",\"index\":52,\"left\":\"images/cube_2048/52/d23b5b8fb22e6f7ae7df33bbce5fafa9/52_l.jpg\",\"right\":\"images/cube_2048/52/d23b5b8fb22e6f7ae7df33bbce5fafa9/52_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/52/d23b5b8fb22e6f7ae7df33bbce5fafa9/52_u.jpg\"},{\"back\":\"images/cube_2048/53/368139d34baa5108cd6bb330dcc7fa4a/53_b.jpg\",\"derived_id\":1702271602,\"derived_id_str\":\"1702271602\",\"down\":\"images/cube_2048/53/368139d34baa5108cd6bb330dcc7fa4a/53_d.jpg\",\"front\":\"images/cube_2048/53/368139d34baa5108cd6bb330dcc7fa4a/53_f.jpg\",\"index\":53,\"left\":\"images/cube_2048/53/368139d34baa5108cd6bb330dcc7fa4a/53_l.jpg\",\"right\":\"images/cube_2048/53/368139d34baa5108cd6bb330dcc7fa4a/53_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/53/368139d34baa5108cd6bb330dcc7fa4a/53_u.jpg\"},{\"back\":\"images/cube_2048/54/70d3c15eef42dfa3331b0eee37979a1d/54_b.jpg\",\"derived_id\":1702271752,\"derived_id_str\":\"1702271752\",\"down\":\"images/cube_2048/54/70d3c15eef42dfa3331b0eee37979a1d/54_d.jpg\",\"front\":\"images/cube_2048/54/70d3c15eef42dfa3331b0eee37979a1d/54_f.jpg\",\"index\":54,\"left\":\"images/cube_2048/54/70d3c15eef42dfa3331b0eee37979a1d/54_l.jpg\",\"right\":\"images/cube_2048/54/70d3c15eef42dfa3331b0eee37979a1d/54_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/54/70d3c15eef42dfa3331b0eee37979a1d/54_u.jpg\"},{\"back\":\"images/cube_2048/55/74abd22e382c2254704874a8efb60813/55_b.jpg\",\"derived_id\":1702271844,\"derived_id_str\":\"1702271844\",\"down\":\"images/cube_2048/55/74abd22e382c2254704874a8efb60813/55_d.jpg\",\"front\":\"images/cube_2048/55/74abd22e382c2254704874a8efb60813/55_f.jpg\",\"index\":55,\"left\":\"images/cube_2048/55/74abd22e382c2254704874a8efb60813/55_l.jpg\",\"right\":\"images/cube_2048/55/74abd22e382c2254704874a8efb60813/55_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/55/74abd22e382c2254704874a8efb60813/55_u.jpg\"},{\"back\":\"images/cube_2048/56/4e51273213409b9c9ae49641e107e399/56_b.jpg\",\"derived_id\":1702271959,\"derived_id_str\":\"1702271959\",\"down\":\"images/cube_2048/56/4e51273213409b9c9ae49641e107e399/56_d.jpg\",\"front\":\"images/cube_2048/56/4e51273213409b9c9ae49641e107e399/56_f.jpg\",\"index\":56,\"left\":\"images/cube_2048/56/4e51273213409b9c9ae49641e107e399/56_l.jpg\",\"right\":\"images/cube_2048/56/4e51273213409b9c9ae49641e107e399/56_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/56/4e51273213409b9c9ae49641e107e399/56_u.jpg\"},{\"back\":\"images/cube_2048/57/b1e884f359dfd850b9afef0b3f65708c/57_b.jpg\",\"derived_id\":1702272009,\"derived_id_str\":\"1702272009\",\"down\":\"images/cube_2048/57/b1e884f359dfd850b9afef0b3f65708c/57_d.jpg\",\"front\":\"images/cube_2048/57/b1e884f359dfd850b9afef0b3f65708c/57_f.jpg\",\"index\":57,\"left\":\"images/cube_2048/57/b1e884f359dfd850b9afef0b3f65708c/57_l.jpg\",\"right\":\"images/cube_2048/57/b1e884f359dfd850b9afef0b3f65708c/57_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/57/b1e884f359dfd850b9afef0b3f65708c/57_u.jpg\"},{\"back\":\"images/cube_2048/58/19360f5e44c645207bb636853dc33816/58_b.jpg\",\"derived_id\":1702272110,\"derived_id_str\":\"1702272110\",\"down\":\"images/cube_2048/58/19360f5e44c645207bb636853dc33816/58_d.jpg\",\"front\":\"images/cube_2048/58/19360f5e44c645207bb636853dc33816/58_f.jpg\",\"index\":58,\"left\":\"images/cube_2048/58/19360f5e44c645207bb636853dc33816/58_l.jpg\",\"right\":\"images/cube_2048/58/19360f5e44c645207bb636853dc33816/58_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/58/19360f5e44c645207bb636853dc33816/58_u.jpg\"},{\"back\":\"images/cube_2048/59/0110ba543412fb14a8ff465f34cfd35e/59_b.jpg\",\"derived_id\":1702272158,\"derived_id_str\":\"1702272158\",\"down\":\"images/cube_2048/59/0110ba543412fb14a8ff465f34cfd35e/59_d.jpg\",\"front\":\"images/cube_2048/59/0110ba543412fb14a8ff465f34cfd35e/59_f.jpg\",\"index\":59,\"left\":\"images/cube_2048/59/0110ba543412fb14a8ff465f34cfd35e/59_l.jpg\",\"right\":\"images/cube_2048/59/0110ba543412fb14a8ff465f34cfd35e/59_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/59/0110ba543412fb14a8ff465f34cfd35e/59_u.jpg\"},{\"back\":\"images/cube_2048/60/1997ac7ac089991e80d6df53f3a33f24/60_b.jpg\",\"derived_id\":1702272205,\"derived_id_str\":\"1702272205\",\"down\":\"images/cube_2048/60/1997ac7ac089991e80d6df53f3a33f24/60_d.jpg\",\"front\":\"images/cube_2048/60/1997ac7ac089991e80d6df53f3a33f24/60_f.jpg\",\"index\":60,\"left\":\"images/cube_2048/60/1997ac7ac089991e80d6df53f3a33f24/60_l.jpg\",\"right\":\"images/cube_2048/60/1997ac7ac089991e80d6df53f3a33f24/60_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/60/1997ac7ac089991e80d6df53f3a33f24/60_u.jpg\"},{\"back\":\"images/cube_2048/61/4cdf1b113021bdefb57940927c283c96/61_b.jpg\",\"derived_id\":1702272264,\"derived_id_str\":\"1702272264\",\"down\":\"images/cube_2048/61/4cdf1b113021bdefb57940927c283c96/61_d.jpg\",\"front\":\"images/cube_2048/61/4cdf1b113021bdefb57940927c283c96/61_f.jpg\",\"index\":61,\"left\":\"images/cube_2048/61/4cdf1b113021bdefb57940927c283c96/61_l.jpg\",\"right\":\"images/cube_2048/61/4cdf1b113021bdefb57940927c283c96/61_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/61/4cdf1b113021bdefb57940927c283c96/61_u.jpg\"},{\"back\":\"images/cube_2048/62/ddcb6a789a4946be1e705e3251e1b8f3/62_b.jpg\",\"derived_id\":1702272401,\"derived_id_str\":\"1702272401\",\"down\":\"images/cube_2048/62/ddcb6a789a4946be1e705e3251e1b8f3/62_d.jpg\",\"front\":\"images/cube_2048/62/ddcb6a789a4946be1e705e3251e1b8f3/62_f.jpg\",\"index\":62,\"left\":\"images/cube_2048/62/ddcb6a789a4946be1e705e3251e1b8f3/62_l.jpg\",\"right\":\"images/cube_2048/62/ddcb6a789a4946be1e705e3251e1b8f3/62_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/62/ddcb6a789a4946be1e705e3251e1b8f3/62_u.jpg\"},{\"back\":\"images/cube_2048/63/c9e99bdbca5a2469563fe7192b00f367/63_b.jpg\",\"derived_id\":1702272483,\"derived_id_str\":\"1702272483\",\"down\":\"images/cube_2048/63/c9e99bdbca5a2469563fe7192b00f367/63_d.jpg\",\"front\":\"images/cube_2048/63/c9e99bdbca5a2469563fe7192b00f367/63_f.jpg\",\"index\":63,\"left\":\"images/cube_2048/63/c9e99bdbca5a2469563fe7192b00f367/63_l.jpg\",\"right\":\"images/cube_2048/63/c9e99bdbca5a2469563fe7192b00f367/63_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/63/c9e99bdbca5a2469563fe7192b00f367/63_u.jpg\"},{\"back\":\"images/cube_2048/64/d702b52e4b4996da36c408825f94824b/64_b.jpg\",\"derived_id\":1702272537,\"derived_id_str\":\"1702272537\",\"down\":\"images/cube_2048/64/d702b52e4b4996da36c408825f94824b/64_d.jpg\",\"front\":\"images/cube_2048/64/d702b52e4b4996da36c408825f94824b/64_f.jpg\",\"index\":64,\"left\":\"images/cube_2048/64/d702b52e4b4996da36c408825f94824b/64_l.jpg\",\"right\":\"images/cube_2048/64/d702b52e4b4996da36c408825f94824b/64_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/64/d702b52e4b4996da36c408825f94824b/64_u.jpg\"},{\"back\":\"images/cube_2048/65/1f01efa24c8d5d42d3235ee04905fcfd/65_b.jpg\",\"derived_id\":1702272594,\"derived_id_str\":\"1702272594\",\"down\":\"images/cube_2048/65/1f01efa24c8d5d42d3235ee04905fcfd/65_d.jpg\",\"front\":\"images/cube_2048/65/1f01efa24c8d5d42d3235ee04905fcfd/65_f.jpg\",\"index\":65,\"left\":\"images/cube_2048/65/1f01efa24c8d5d42d3235ee04905fcfd/65_l.jpg\",\"right\":\"images/cube_2048/65/1f01efa24c8d5d42d3235ee04905fcfd/65_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/65/1f01efa24c8d5d42d3235ee04905fcfd/65_u.jpg\"},{\"back\":\"images/cube_2048/66/704410c117786071f652b1d823629c12/66_b.jpg\",\"derived_id\":1702272660,\"derived_id_str\":\"1702272660\",\"down\":\"images/cube_2048/66/704410c117786071f652b1d823629c12/66_d.jpg\",\"front\":\"images/cube_2048/66/704410c117786071f652b1d823629c12/66_f.jpg\",\"index\":66,\"left\":\"images/cube_2048/66/704410c117786071f652b1d823629c12/66_l.jpg\",\"right\":\"images/cube_2048/66/704410c117786071f652b1d823629c12/66_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/66/704410c117786071f652b1d823629c12/66_u.jpg\"},{\"back\":\"images/cube_2048/67/3ef4cefd045ba86cc009d71ce365178f/67_b.jpg\",\"derived_id\":1702272713,\"derived_id_str\":\"1702272713\",\"down\":\"images/cube_2048/67/3ef4cefd045ba86cc009d71ce365178f/67_d.jpg\",\"front\":\"images/cube_2048/67/3ef4cefd045ba86cc009d71ce365178f/67_f.jpg\",\"index\":67,\"left\":\"images/cube_2048/67/3ef4cefd045ba86cc009d71ce365178f/67_l.jpg\",\"right\":\"images/cube_2048/67/3ef4cefd045ba86cc009d71ce365178f/67_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/67/3ef4cefd045ba86cc009d71ce365178f/67_u.jpg\"},{\"back\":\"images/cube_2048/68/c0e62458d05aa56d4a464f297980dae7/68_b.jpg\",\"derived_id\":1702272776,\"derived_id_str\":\"1702272776\",\"down\":\"images/cube_2048/68/c0e62458d05aa56d4a464f297980dae7/68_d.jpg\",\"front\":\"images/cube_2048/68/c0e62458d05aa56d4a464f297980dae7/68_f.jpg\",\"index\":68,\"left\":\"images/cube_2048/68/c0e62458d05aa56d4a464f297980dae7/68_l.jpg\",\"right\":\"images/cube_2048/68/c0e62458d05aa56d4a464f297980dae7/68_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/68/c0e62458d05aa56d4a464f297980dae7/68_u.jpg\"},{\"back\":\"images/cube_2048/69/ddeb82324473f199b85c9288bdf4b5d5/69_b.jpg\",\"derived_id\":1702272884,\"derived_id_str\":\"1702272884\",\"down\":\"images/cube_2048/69/ddeb82324473f199b85c9288bdf4b5d5/69_d.jpg\",\"front\":\"images/cube_2048/69/ddeb82324473f199b85c9288bdf4b5d5/69_f.jpg\",\"index\":69,\"left\":\"images/cube_2048/69/ddeb82324473f199b85c9288bdf4b5d5/69_l.jpg\",\"right\":\"images/cube_2048/69/ddeb82324473f199b85c9288bdf4b5d5/69_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/69/ddeb82324473f199b85c9288bdf4b5d5/69_u.jpg\"},{\"back\":\"images/cube_2048/70/bd0165a788303cb70637f9ab52668565/70_b.jpg\",\"derived_id\":1702272938,\"derived_id_str\":\"1702272938\",\"down\":\"images/cube_2048/70/bd0165a788303cb70637f9ab52668565/70_d.jpg\",\"front\":\"images/cube_2048/70/bd0165a788303cb70637f9ab52668565/70_f.jpg\",\"index\":70,\"left\":\"images/cube_2048/70/bd0165a788303cb70637f9ab52668565/70_l.jpg\",\"right\":\"images/cube_2048/70/bd0165a788303cb70637f9ab52668565/70_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/70/bd0165a788303cb70637f9ab52668565/70_u.jpg\"},{\"back\":\"images/cube_2048/71/3701fc96636118dcbdaa1194bf90b4a5/71_b.jpg\",\"derived_id\":1702272993,\"derived_id_str\":\"1702272993\",\"down\":\"images/cube_2048/71/3701fc96636118dcbdaa1194bf90b4a5/71_d.jpg\",\"front\":\"images/cube_2048/71/3701fc96636118dcbdaa1194bf90b4a5/71_f.jpg\",\"index\":71,\"left\":\"images/cube_2048/71/3701fc96636118dcbdaa1194bf90b4a5/71_l.jpg\",\"right\":\"images/cube_2048/71/3701fc96636118dcbdaa1194bf90b4a5/71_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/71/3701fc96636118dcbdaa1194bf90b4a5/71_u.jpg\"},{\"back\":\"images/cube_2048/72/874c0ddbf32e316c9acefdbadc9e5975/72_b.jpg\",\"derived_id\":1702273069,\"derived_id_str\":\"1702273069\",\"down\":\"images/cube_2048/72/874c0ddbf32e316c9acefdbadc9e5975/72_d.jpg\",\"front\":\"images/cube_2048/72/874c0ddbf32e316c9acefdbadc9e5975/72_f.jpg\",\"index\":72,\"left\":\"images/cube_2048/72/874c0ddbf32e316c9acefdbadc9e5975/72_l.jpg\",\"right\":\"images/cube_2048/72/874c0ddbf32e316c9acefdbadc9e5975/72_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/72/874c0ddbf32e316c9acefdbadc9e5975/72_u.jpg\"},{\"back\":\"images/cube_2048/73/5a49e5f018542cf97566dcff3322eba5/73_b.jpg\",\"derived_id\":1702273117,\"derived_id_str\":\"1702273117\",\"down\":\"images/cube_2048/73/5a49e5f018542cf97566dcff3322eba5/73_d.jpg\",\"front\":\"images/cube_2048/73/5a49e5f018542cf97566dcff3322eba5/73_f.jpg\",\"index\":73,\"left\":\"images/cube_2048/73/5a49e5f018542cf97566dcff3322eba5/73_l.jpg\",\"right\":\"images/cube_2048/73/5a49e5f018542cf97566dcff3322eba5/73_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/73/5a49e5f018542cf97566dcff3322eba5/73_u.jpg\"},{\"back\":\"images/cube_2048/74/5d1951548c6119c26172bcf1c37f7125/74_b.jpg\",\"derived_id\":1702273163,\"derived_id_str\":\"1702273163\",\"down\":\"images/cube_2048/74/5d1951548c6119c26172bcf1c37f7125/74_d.jpg\",\"front\":\"images/cube_2048/74/5d1951548c6119c26172bcf1c37f7125/74_f.jpg\",\"index\":74,\"left\":\"images/cube_2048/74/5d1951548c6119c26172bcf1c37f7125/74_l.jpg\",\"right\":\"images/cube_2048/74/5d1951548c6119c26172bcf1c37f7125/74_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/74/5d1951548c6119c26172bcf1c37f7125/74_u.jpg\"},{\"back\":\"images/cube_2048/75/1da53913d0fddbe1c2af4e317444029f/75_b.jpg\",\"derived_id\":1702273204,\"derived_id_str\":\"1702273204\",\"down\":\"images/cube_2048/75/1da53913d0fddbe1c2af4e317444029f/75_d.jpg\",\"front\":\"images/cube_2048/75/1da53913d0fddbe1c2af4e317444029f/75_f.jpg\",\"index\":75,\"left\":\"images/cube_2048/75/1da53913d0fddbe1c2af4e317444029f/75_l.jpg\",\"right\":\"images/cube_2048/75/1da53913d0fddbe1c2af4e317444029f/75_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/75/1da53913d0fddbe1c2af4e317444029f/75_u.jpg\"},{\"back\":\"images/cube_2048/76/640a919f87f6dd8eb5a1cdcb07fae82e/76_b.jpg\",\"derived_id\":1702273243,\"derived_id_str\":\"1702273243\",\"down\":\"images/cube_2048/76/640a919f87f6dd8eb5a1cdcb07fae82e/76_d.jpg\",\"front\":\"images/cube_2048/76/640a919f87f6dd8eb5a1cdcb07fae82e/76_f.jpg\",\"index\":76,\"left\":\"images/cube_2048/76/640a919f87f6dd8eb5a1cdcb07fae82e/76_l.jpg\",\"right\":\"images/cube_2048/76/640a919f87f6dd8eb5a1cdcb07fae82e/76_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/76/640a919f87f6dd8eb5a1cdcb07fae82e/76_u.jpg\"},{\"back\":\"images/cube_2048/77/ced71fff9cdcde2aafdbe29caccbdf70/77_b.jpg\",\"derived_id\":1702273404,\"derived_id_str\":\"1702273404\",\"down\":\"images/cube_2048/77/ced71fff9cdcde2aafdbe29caccbdf70/77_d.jpg\",\"front\":\"images/cube_2048/77/ced71fff9cdcde2aafdbe29caccbdf70/77_f.jpg\",\"index\":77,\"left\":\"images/cube_2048/77/ced71fff9cdcde2aafdbe29caccbdf70/77_l.jpg\",\"right\":\"images/cube_2048/77/ced71fff9cdcde2aafdbe29caccbdf70/77_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/77/ced71fff9cdcde2aafdbe29caccbdf70/77_u.jpg\"},{\"back\":\"images/cube_2048/78/e3c9575c147a388c782f61c52dae6996/78_b.jpg\",\"derived_id\":1702273536,\"derived_id_str\":\"1702273536\",\"down\":\"images/cube_2048/78/e3c9575c147a388c782f61c52dae6996/78_d.jpg\",\"front\":\"images/cube_2048/78/e3c9575c147a388c782f61c52dae6996/78_f.jpg\",\"index\":78,\"left\":\"images/cube_2048/78/e3c9575c147a388c782f61c52dae6996/78_l.jpg\",\"right\":\"images/cube_2048/78/e3c9575c147a388c782f61c52dae6996/78_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/78/e3c9575c147a388c782f61c52dae6996/78_u.jpg\"},{\"back\":\"images/cube_2048/79/c141f550737994df8719920f60ce51e5/79_b.jpg\",\"derived_id\":1702273604,\"derived_id_str\":\"1702273604\",\"down\":\"images/cube_2048/79/c141f550737994df8719920f60ce51e5/79_d.jpg\",\"front\":\"images/cube_2048/79/c141f550737994df8719920f60ce51e5/79_f.jpg\",\"index\":79,\"left\":\"images/cube_2048/79/c141f550737994df8719920f60ce51e5/79_l.jpg\",\"right\":\"images/cube_2048/79/c141f550737994df8719920f60ce51e5/79_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/79/c141f550737994df8719920f60ce51e5/79_u.jpg\"},{\"back\":\"images/cube_2048/80/a9955f974c75190662f4f87e51bd166e/80_b.jpg\",\"derived_id\":1702273687,\"derived_id_str\":\"1702273687\",\"down\":\"images/cube_2048/80/a9955f974c75190662f4f87e51bd166e/80_d.jpg\",\"front\":\"images/cube_2048/80/a9955f974c75190662f4f87e51bd166e/80_f.jpg\",\"index\":80,\"left\":\"images/cube_2048/80/a9955f974c75190662f4f87e51bd166e/80_l.jpg\",\"right\":\"images/cube_2048/80/a9955f974c75190662f4f87e51bd166e/80_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/80/a9955f974c75190662f4f87e51bd166e/80_u.jpg\"},{\"back\":\"images/cube_2048/81/81602a9937b1fc0a26545556be67a93c/81_b.jpg\",\"derived_id\":1702273743,\"derived_id_str\":\"1702273743\",\"down\":\"images/cube_2048/81/81602a9937b1fc0a26545556be67a93c/81_d.jpg\",\"front\":\"images/cube_2048/81/81602a9937b1fc0a26545556be67a93c/81_f.jpg\",\"index\":81,\"left\":\"images/cube_2048/81/81602a9937b1fc0a26545556be67a93c/81_l.jpg\",\"right\":\"images/cube_2048/81/81602a9937b1fc0a26545556be67a93c/81_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/81/81602a9937b1fc0a26545556be67a93c/81_u.jpg\"},{\"back\":\"images/cube_2048/82/3d9b3ec85c5ec5f2e201f69362b492f7/82_b.jpg\",\"derived_id\":1702273892,\"derived_id_str\":\"1702273892\",\"down\":\"images/cube_2048/82/3d9b3ec85c5ec5f2e201f69362b492f7/82_d.jpg\",\"front\":\"images/cube_2048/82/3d9b3ec85c5ec5f2e201f69362b492f7/82_f.jpg\",\"index\":82,\"left\":\"images/cube_2048/82/3d9b3ec85c5ec5f2e201f69362b492f7/82_l.jpg\",\"right\":\"images/cube_2048/82/3d9b3ec85c5ec5f2e201f69362b492f7/82_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/82/3d9b3ec85c5ec5f2e201f69362b492f7/82_u.jpg\"},{\"back\":\"images/cube_2048/83/823579e2cdbfc38c295dcc32f3631572/83_b.jpg\",\"derived_id\":1702273953,\"derived_id_str\":\"1702273953\",\"down\":\"images/cube_2048/83/823579e2cdbfc38c295dcc32f3631572/83_d.jpg\",\"front\":\"images/cube_2048/83/823579e2cdbfc38c295dcc32f3631572/83_f.jpg\",\"index\":83,\"left\":\"images/cube_2048/83/823579e2cdbfc38c295dcc32f3631572/83_l.jpg\",\"right\":\"images/cube_2048/83/823579e2cdbfc38c295dcc32f3631572/83_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/83/823579e2cdbfc38c295dcc32f3631572/83_u.jpg\"},{\"back\":\"images/cube_2048/84/46fbf122ae8cd4fb34e5eb751b90e615/84_b.jpg\",\"derived_id\":1702274027,\"derived_id_str\":\"1702274027\",\"down\":\"images/cube_2048/84/46fbf122ae8cd4fb34e5eb751b90e615/84_d.jpg\",\"front\":\"images/cube_2048/84/46fbf122ae8cd4fb34e5eb751b90e615/84_f.jpg\",\"index\":84,\"left\":\"images/cube_2048/84/46fbf122ae8cd4fb34e5eb751b90e615/84_l.jpg\",\"right\":\"images/cube_2048/84/46fbf122ae8cd4fb34e5eb751b90e615/84_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/84/46fbf122ae8cd4fb34e5eb751b90e615/84_u.jpg\"},{\"back\":\"images/cube_2048/85/62fbf1229f4e1a5461449f6e65ec0380/85_b.jpg\",\"derived_id\":1702274079,\"derived_id_str\":\"1702274079\",\"down\":\"images/cube_2048/85/62fbf1229f4e1a5461449f6e65ec0380/85_d.jpg\",\"front\":\"images/cube_2048/85/62fbf1229f4e1a5461449f6e65ec0380/85_f.jpg\",\"index\":85,\"left\":\"images/cube_2048/85/62fbf1229f4e1a5461449f6e65ec0380/85_l.jpg\",\"right\":\"images/cube_2048/85/62fbf1229f4e1a5461449f6e65ec0380/85_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/85/62fbf1229f4e1a5461449f6e65ec0380/85_u.jpg\"},{\"back\":\"images/cube_2048/86/79220e7799c049c2061b8a2a107dc07a/86_b.jpg\",\"derived_id\":1702274118,\"derived_id_str\":\"1702274118\",\"down\":\"images/cube_2048/86/79220e7799c049c2061b8a2a107dc07a/86_d.jpg\",\"front\":\"images/cube_2048/86/79220e7799c049c2061b8a2a107dc07a/86_f.jpg\",\"index\":86,\"left\":\"images/cube_2048/86/79220e7799c049c2061b8a2a107dc07a/86_l.jpg\",\"right\":\"images/cube_2048/86/79220e7799c049c2061b8a2a107dc07a/86_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/86/79220e7799c049c2061b8a2a107dc07a/86_u.jpg\"},{\"back\":\"images/cube_2048/87/10a6d5bf7473d6e6d2aec7bda52e56c0/87_b.jpg\",\"derived_id\":1702274166,\"derived_id_str\":\"1702274166\",\"down\":\"images/cube_2048/87/10a6d5bf7473d6e6d2aec7bda52e56c0/87_d.jpg\",\"front\":\"images/cube_2048/87/10a6d5bf7473d6e6d2aec7bda52e56c0/87_f.jpg\",\"index\":87,\"left\":\"images/cube_2048/87/10a6d5bf7473d6e6d2aec7bda52e56c0/87_l.jpg\",\"right\":\"images/cube_2048/87/10a6d5bf7473d6e6d2aec7bda52e56c0/87_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/87/10a6d5bf7473d6e6d2aec7bda52e56c0/87_u.jpg\"},{\"back\":\"images/cube_2048/88/65c8668ca39a51e5a5e85dd1bf6f8734/88_b.jpg\",\"derived_id\":1702274217,\"derived_id_str\":\"1702274217\",\"down\":\"images/cube_2048/88/65c8668ca39a51e5a5e85dd1bf6f8734/88_d.jpg\",\"front\":\"images/cube_2048/88/65c8668ca39a51e5a5e85dd1bf6f8734/88_f.jpg\",\"index\":88,\"left\":\"images/cube_2048/88/65c8668ca39a51e5a5e85dd1bf6f8734/88_l.jpg\",\"right\":\"images/cube_2048/88/65c8668ca39a51e5a5e85dd1bf6f8734/88_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/88/65c8668ca39a51e5a5e85dd1bf6f8734/88_u.jpg\"},{\"back\":\"images/cube_2048/89/714e342d2e0b1ba72b09c76f338e8cc2/89_b.jpg\",\"derived_id\":1702274265,\"derived_id_str\":\"1702274265\",\"down\":\"images/cube_2048/89/714e342d2e0b1ba72b09c76f338e8cc2/89_d.jpg\",\"front\":\"images/cube_2048/89/714e342d2e0b1ba72b09c76f338e8cc2/89_f.jpg\",\"index\":89,\"left\":\"images/cube_2048/89/714e342d2e0b1ba72b09c76f338e8cc2/89_l.jpg\",\"right\":\"images/cube_2048/89/714e342d2e0b1ba72b09c76f338e8cc2/89_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/89/714e342d2e0b1ba72b09c76f338e8cc2/89_u.jpg\"},{\"back\":\"images/cube_2048/90/7b08ae31787990206b357e976f160d42/90_b.jpg\",\"derived_id\":1702274349,\"derived_id_str\":\"1702274349\",\"down\":\"images/cube_2048/90/7b08ae31787990206b357e976f160d42/90_d.jpg\",\"front\":\"images/cube_2048/90/7b08ae31787990206b357e976f160d42/90_f.jpg\",\"index\":90,\"left\":\"images/cube_2048/90/7b08ae31787990206b357e976f160d42/90_l.jpg\",\"right\":\"images/cube_2048/90/7b08ae31787990206b357e976f160d42/90_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/90/7b08ae31787990206b357e976f160d42/90_u.jpg\"},{\"back\":\"images/cube_2048/91/00420fed1d2fc4b722ac77afbd08a8c2/91_b.jpg\",\"derived_id\":1702274458,\"derived_id_str\":\"1702274458\",\"down\":\"images/cube_2048/91/00420fed1d2fc4b722ac77afbd08a8c2/91_d.jpg\",\"front\":\"images/cube_2048/91/00420fed1d2fc4b722ac77afbd08a8c2/91_f.jpg\",\"index\":91,\"left\":\"images/cube_2048/91/00420fed1d2fc4b722ac77afbd08a8c2/91_l.jpg\",\"right\":\"images/cube_2048/91/00420fed1d2fc4b722ac77afbd08a8c2/91_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/91/00420fed1d2fc4b722ac77afbd08a8c2/91_u.jpg\"},{\"back\":\"images/cube_2048/92/374b7b3aff0a48b35a986c7f79b0e789/92_b.jpg\",\"derived_id\":1702274690,\"derived_id_str\":\"1702274690\",\"down\":\"images/cube_2048/92/374b7b3aff0a48b35a986c7f79b0e789/92_d.jpg\",\"front\":\"images/cube_2048/92/374b7b3aff0a48b35a986c7f79b0e789/92_f.jpg\",\"index\":92,\"left\":\"images/cube_2048/92/374b7b3aff0a48b35a986c7f79b0e789/92_l.jpg\",\"right\":\"images/cube_2048/92/374b7b3aff0a48b35a986c7f79b0e789/92_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/92/374b7b3aff0a48b35a986c7f79b0e789/92_u.jpg\"},{\"back\":\"images/cube_2048/93/177c5e4061b3aae897662fac0b8736b0/93_b.jpg\",\"derived_id\":1702274804,\"derived_id_str\":\"1702274804\",\"down\":\"images/cube_2048/93/177c5e4061b3aae897662fac0b8736b0/93_d.jpg\",\"front\":\"images/cube_2048/93/177c5e4061b3aae897662fac0b8736b0/93_f.jpg\",\"index\":93,\"left\":\"images/cube_2048/93/177c5e4061b3aae897662fac0b8736b0/93_l.jpg\",\"right\":\"images/cube_2048/93/177c5e4061b3aae897662fac0b8736b0/93_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/93/177c5e4061b3aae897662fac0b8736b0/93_u.jpg\"},{\"back\":\"images/cube_2048/94/b5c7c044dbc11aa86c634ee436429b87/94_b.jpg\",\"derived_id\":1702274880,\"derived_id_str\":\"1702274880\",\"down\":\"images/cube_2048/94/b5c7c044dbc11aa86c634ee436429b87/94_d.jpg\",\"front\":\"images/cube_2048/94/b5c7c044dbc11aa86c634ee436429b87/94_f.jpg\",\"index\":94,\"left\":\"images/cube_2048/94/b5c7c044dbc11aa86c634ee436429b87/94_l.jpg\",\"right\":\"images/cube_2048/94/b5c7c044dbc11aa86c634ee436429b87/94_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/94/b5c7c044dbc11aa86c634ee436429b87/94_u.jpg\"},{\"back\":\"images/cube_2048/95/c366f7b100fcea1fbab5c560922c636b/95_b.jpg\",\"derived_id\":1702274957,\"derived_id_str\":\"1702274957\",\"down\":\"images/cube_2048/95/c366f7b100fcea1fbab5c560922c636b/95_d.jpg\",\"front\":\"images/cube_2048/95/c366f7b100fcea1fbab5c560922c636b/95_f.jpg\",\"index\":95,\"left\":\"images/cube_2048/95/c366f7b100fcea1fbab5c560922c636b/95_l.jpg\",\"right\":\"images/cube_2048/95/c366f7b100fcea1fbab5c560922c636b/95_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/95/c366f7b100fcea1fbab5c560922c636b/95_u.jpg\"},{\"back\":\"images/cube_2048/96/5d08e403e59e8151d4f96b968dfdb72c/96_b.jpg\",\"derived_id\":1702274999,\"derived_id_str\":\"1702274999\",\"down\":\"images/cube_2048/96/5d08e403e59e8151d4f96b968dfdb72c/96_d.jpg\",\"front\":\"images/cube_2048/96/5d08e403e59e8151d4f96b968dfdb72c/96_f.jpg\",\"index\":96,\"left\":\"images/cube_2048/96/5d08e403e59e8151d4f96b968dfdb72c/96_l.jpg\",\"right\":\"images/cube_2048/96/5d08e403e59e8151d4f96b968dfdb72c/96_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/96/5d08e403e59e8151d4f96b968dfdb72c/96_u.jpg\"},{\"back\":\"images/cube_2048/97/80fb9c44841789b231ac5d4d4650fb17/97_b.jpg\",\"derived_id\":1702275106,\"derived_id_str\":\"1702275106\",\"down\":\"images/cube_2048/97/80fb9c44841789b231ac5d4d4650fb17/97_d.jpg\",\"front\":\"images/cube_2048/97/80fb9c44841789b231ac5d4d4650fb17/97_f.jpg\",\"index\":97,\"left\":\"images/cube_2048/97/80fb9c44841789b231ac5d4d4650fb17/97_l.jpg\",\"right\":\"images/cube_2048/97/80fb9c44841789b231ac5d4d4650fb17/97_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/97/80fb9c44841789b231ac5d4d4650fb17/97_u.jpg\"},{\"back\":\"images/cube_2048/98/19a9a6e144930374595cf84c140213e1/98_b.jpg\",\"derived_id\":1702275156,\"derived_id_str\":\"1702275156\",\"down\":\"images/cube_2048/98/19a9a6e144930374595cf84c140213e1/98_d.jpg\",\"front\":\"images/cube_2048/98/19a9a6e144930374595cf84c140213e1/98_f.jpg\",\"index\":98,\"left\":\"images/cube_2048/98/19a9a6e144930374595cf84c140213e1/98_l.jpg\",\"right\":\"images/cube_2048/98/19a9a6e144930374595cf84c140213e1/98_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/98/19a9a6e144930374595cf84c140213e1/98_u.jpg\"},{\"back\":\"images/cube_2048/99/fb1827272a5e37ecd2aaec90dfa74545/99_b.jpg\",\"derived_id\":1702278371,\"derived_id_str\":\"1702278371\",\"down\":\"images/cube_2048/99/fb1827272a5e37ecd2aaec90dfa74545/99_d.jpg\",\"front\":\"images/cube_2048/99/fb1827272a5e37ecd2aaec90dfa74545/99_f.jpg\",\"index\":99,\"left\":\"images/cube_2048/99/fb1827272a5e37ecd2aaec90dfa74545/99_l.jpg\",\"right\":\"images/cube_2048/99/fb1827272a5e37ecd2aaec90dfa74545/99_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/99/fb1827272a5e37ecd2aaec90dfa74545/99_u.jpg\"},{\"back\":\"images/cube_2048/100/077781cd0e509484d5fc2aeafe756259/100_b.jpg\",\"derived_id\":1702278446,\"derived_id_str\":\"1702278446\",\"down\":\"images/cube_2048/100/077781cd0e509484d5fc2aeafe756259/100_d.jpg\",\"front\":\"images/cube_2048/100/077781cd0e509484d5fc2aeafe756259/100_f.jpg\",\"index\":100,\"left\":\"images/cube_2048/100/077781cd0e509484d5fc2aeafe756259/100_l.jpg\",\"right\":\"images/cube_2048/100/077781cd0e509484d5fc2aeafe756259/100_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/100/077781cd0e509484d5fc2aeafe756259/100_u.jpg\"},{\"back\":\"images/cube_2048/101/9d00a6a231f6064643a2972eabe843aa/101_b.jpg\",\"derived_id\":1702278619,\"derived_id_str\":\"1702278619\",\"down\":\"images/cube_2048/101/9d00a6a231f6064643a2972eabe843aa/101_d.jpg\",\"front\":\"images/cube_2048/101/9d00a6a231f6064643a2972eabe843aa/101_f.jpg\",\"index\":101,\"left\":\"images/cube_2048/101/9d00a6a231f6064643a2972eabe843aa/101_l.jpg\",\"right\":\"images/cube_2048/101/9d00a6a231f6064643a2972eabe843aa/101_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/101/9d00a6a231f6064643a2972eabe843aa/101_u.jpg\"},{\"back\":\"images/cube_2048/102/4987b943d7772862c6b3458777038d77/102_b.jpg\",\"derived_id\":1702278686,\"derived_id_str\":\"1702278686\",\"down\":\"images/cube_2048/102/4987b943d7772862c6b3458777038d77/102_d.jpg\",\"front\":\"images/cube_2048/102/4987b943d7772862c6b3458777038d77/102_f.jpg\",\"index\":102,\"left\":\"images/cube_2048/102/4987b943d7772862c6b3458777038d77/102_l.jpg\",\"right\":\"images/cube_2048/102/4987b943d7772862c6b3458777038d77/102_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/102/4987b943d7772862c6b3458777038d77/102_u.jpg\"},{\"back\":\"images/cube_2048/103/628e138e9c24b6cc3cc73de91152cbaa/103_b.jpg\",\"derived_id\":1702278912,\"derived_id_str\":\"1702278912\",\"down\":\"images/cube_2048/103/628e138e9c24b6cc3cc73de91152cbaa/103_d.jpg\",\"front\":\"images/cube_2048/103/628e138e9c24b6cc3cc73de91152cbaa/103_f.jpg\",\"index\":103,\"left\":\"images/cube_2048/103/628e138e9c24b6cc3cc73de91152cbaa/103_l.jpg\",\"right\":\"images/cube_2048/103/628e138e9c24b6cc3cc73de91152cbaa/103_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/103/628e138e9c24b6cc3cc73de91152cbaa/103_u.jpg\"},{\"back\":\"images/cube_2048/104/24c3f59e86110293558edfdc6fe3dfc0/104_b.jpg\",\"derived_id\":1702279002,\"derived_id_str\":\"1702279002\",\"down\":\"images/cube_2048/104/24c3f59e86110293558edfdc6fe3dfc0/104_d.jpg\",\"front\":\"images/cube_2048/104/24c3f59e86110293558edfdc6fe3dfc0/104_f.jpg\",\"index\":104,\"left\":\"images/cube_2048/104/24c3f59e86110293558edfdc6fe3dfc0/104_l.jpg\",\"right\":\"images/cube_2048/104/24c3f59e86110293558edfdc6fe3dfc0/104_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/104/24c3f59e86110293558edfdc6fe3dfc0/104_u.jpg\"},{\"back\":\"images/cube_2048/105/e842d7db9dd8bbc0ebe211d0c9e3441f/105_b.jpg\",\"derived_id\":1702279439,\"derived_id_str\":\"1702279439\",\"down\":\"images/cube_2048/105/e842d7db9dd8bbc0ebe211d0c9e3441f/105_d.jpg\",\"front\":\"images/cube_2048/105/e842d7db9dd8bbc0ebe211d0c9e3441f/105_f.jpg\",\"index\":105,\"left\":\"images/cube_2048/105/e842d7db9dd8bbc0ebe211d0c9e3441f/105_l.jpg\",\"right\":\"images/cube_2048/105/e842d7db9dd8bbc0ebe211d0c9e3441f/105_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/105/e842d7db9dd8bbc0ebe211d0c9e3441f/105_u.jpg\"},{\"back\":\"images/cube_2048/106/530ef42330497b3d5c8f703d175a9986/106_b.jpg\",\"derived_id\":1702279511,\"derived_id_str\":\"1702279511\",\"down\":\"images/cube_2048/106/530ef42330497b3d5c8f703d175a9986/106_d.jpg\",\"front\":\"images/cube_2048/106/530ef42330497b3d5c8f703d175a9986/106_f.jpg\",\"index\":106,\"left\":\"images/cube_2048/106/530ef42330497b3d5c8f703d175a9986/106_l.jpg\",\"right\":\"images/cube_2048/106/530ef42330497b3d5c8f703d175a9986/106_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/106/530ef42330497b3d5c8f703d175a9986/106_u.jpg\"},{\"back\":\"images/cube_2048/107/1e6100152b22e86174108699e8c65ca4/107_b.jpg\",\"derived_id\":1702279584,\"derived_id_str\":\"1702279584\",\"down\":\"images/cube_2048/107/1e6100152b22e86174108699e8c65ca4/107_d.jpg\",\"front\":\"images/cube_2048/107/1e6100152b22e86174108699e8c65ca4/107_f.jpg\",\"index\":107,\"left\":\"images/cube_2048/107/1e6100152b22e86174108699e8c65ca4/107_l.jpg\",\"right\":\"images/cube_2048/107/1e6100152b22e86174108699e8c65ca4/107_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/107/1e6100152b22e86174108699e8c65ca4/107_u.jpg\"},{\"back\":\"images/cube_2048/108/f6608aab9027be237c358ae2e5b9de16/108_b.jpg\",\"derived_id\":1702279768,\"derived_id_str\":\"1702279768\",\"down\":\"images/cube_2048/108/f6608aab9027be237c358ae2e5b9de16/108_d.jpg\",\"front\":\"images/cube_2048/108/f6608aab9027be237c358ae2e5b9de16/108_f.jpg\",\"index\":108,\"left\":\"images/cube_2048/108/f6608aab9027be237c358ae2e5b9de16/108_l.jpg\",\"right\":\"images/cube_2048/108/f6608aab9027be237c358ae2e5b9de16/108_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/108/f6608aab9027be237c358ae2e5b9de16/108_u.jpg\"},{\"back\":\"images/cube_2048/109/4149b1138b60508821e85cc9efe8eae2/109_b.jpg\",\"derived_id\":1702279998,\"derived_id_str\":\"1702279998\",\"down\":\"images/cube_2048/109/4149b1138b60508821e85cc9efe8eae2/109_d.jpg\",\"front\":\"images/cube_2048/109/4149b1138b60508821e85cc9efe8eae2/109_f.jpg\",\"index\":109,\"left\":\"images/cube_2048/109/4149b1138b60508821e85cc9efe8eae2/109_l.jpg\",\"right\":\"images/cube_2048/109/4149b1138b60508821e85cc9efe8eae2/109_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/109/4149b1138b60508821e85cc9efe8eae2/109_u.jpg\"},{\"back\":\"images/cube_2048/110/8ede96119cc4358444edf4c6187a674d/110_b.jpg\",\"derived_id\":1702280070,\"derived_id_str\":\"1702280070\",\"down\":\"images/cube_2048/110/8ede96119cc4358444edf4c6187a674d/110_d.jpg\",\"front\":\"images/cube_2048/110/8ede96119cc4358444edf4c6187a674d/110_f.jpg\",\"index\":110,\"left\":\"images/cube_2048/110/8ede96119cc4358444edf4c6187a674d/110_l.jpg\",\"right\":\"images/cube_2048/110/8ede96119cc4358444edf4c6187a674d/110_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/110/8ede96119cc4358444edf4c6187a674d/110_u.jpg\"},{\"back\":\"images/cube_2048/111/ca6cc1708bed567ca71a06abc319ac5d/111_b.jpg\",\"derived_id\":1702280210,\"derived_id_str\":\"1702280210\",\"down\":\"images/cube_2048/111/ca6cc1708bed567ca71a06abc319ac5d/111_d.jpg\",\"front\":\"images/cube_2048/111/ca6cc1708bed567ca71a06abc319ac5d/111_f.jpg\",\"index\":111,\"left\":\"images/cube_2048/111/ca6cc1708bed567ca71a06abc319ac5d/111_l.jpg\",\"right\":\"images/cube_2048/111/ca6cc1708bed567ca71a06abc319ac5d/111_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/111/ca6cc1708bed567ca71a06abc319ac5d/111_u.jpg\"},{\"back\":\"images/cube_2048/112/7644c602fa461ab2ff31e1cd8702ba86/112_b.jpg\",\"derived_id\":1702280289,\"derived_id_str\":\"1702280289\",\"down\":\"images/cube_2048/112/7644c602fa461ab2ff31e1cd8702ba86/112_d.jpg\",\"front\":\"images/cube_2048/112/7644c602fa461ab2ff31e1cd8702ba86/112_f.jpg\",\"index\":112,\"left\":\"images/cube_2048/112/7644c602fa461ab2ff31e1cd8702ba86/112_l.jpg\",\"right\":\"images/cube_2048/112/7644c602fa461ab2ff31e1cd8702ba86/112_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/112/7644c602fa461ab2ff31e1cd8702ba86/112_u.jpg\"},{\"back\":\"images/cube_2048/113/02f2370ec4d7c941fb58de66791b9ff9/113_b.jpg\",\"derived_id\":1702280350,\"derived_id_str\":\"1702280350\",\"down\":\"images/cube_2048/113/02f2370ec4d7c941fb58de66791b9ff9/113_d.jpg\",\"front\":\"images/cube_2048/113/02f2370ec4d7c941fb58de66791b9ff9/113_f.jpg\",\"index\":113,\"left\":\"images/cube_2048/113/02f2370ec4d7c941fb58de66791b9ff9/113_l.jpg\",\"right\":\"images/cube_2048/113/02f2370ec4d7c941fb58de66791b9ff9/113_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/113/02f2370ec4d7c941fb58de66791b9ff9/113_u.jpg\"},{\"back\":\"images/cube_2048/114/f4dbfe665d5ca099e7bb6cfa46b26a6d/114_b.jpg\",\"derived_id\":1702280442,\"derived_id_str\":\"1702280442\",\"down\":\"images/cube_2048/114/f4dbfe665d5ca099e7bb6cfa46b26a6d/114_d.jpg\",\"front\":\"images/cube_2048/114/f4dbfe665d5ca099e7bb6cfa46b26a6d/114_f.jpg\",\"index\":114,\"left\":\"images/cube_2048/114/f4dbfe665d5ca099e7bb6cfa46b26a6d/114_l.jpg\",\"right\":\"images/cube_2048/114/f4dbfe665d5ca099e7bb6cfa46b26a6d/114_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/114/f4dbfe665d5ca099e7bb6cfa46b26a6d/114_u.jpg\"},{\"back\":\"images/cube_2048/115/419e64219f07c107a73d6999ac468ec0/115_b.jpg\",\"derived_id\":1702280548,\"derived_id_str\":\"1702280548\",\"down\":\"images/cube_2048/115/419e64219f07c107a73d6999ac468ec0/115_d.jpg\",\"front\":\"images/cube_2048/115/419e64219f07c107a73d6999ac468ec0/115_f.jpg\",\"index\":115,\"left\":\"images/cube_2048/115/419e64219f07c107a73d6999ac468ec0/115_l.jpg\",\"right\":\"images/cube_2048/115/419e64219f07c107a73d6999ac468ec0/115_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/115/419e64219f07c107a73d6999ac468ec0/115_u.jpg\"},{\"back\":\"images/cube_2048/116/3c1114b2a6da96a8fba7d7ac931a1fc5/116_b.jpg\",\"derived_id\":1702280594,\"derived_id_str\":\"1702280594\",\"down\":\"images/cube_2048/116/3c1114b2a6da96a8fba7d7ac931a1fc5/116_d.jpg\",\"front\":\"images/cube_2048/116/3c1114b2a6da96a8fba7d7ac931a1fc5/116_f.jpg\",\"index\":116,\"left\":\"images/cube_2048/116/3c1114b2a6da96a8fba7d7ac931a1fc5/116_l.jpg\",\"right\":\"images/cube_2048/116/3c1114b2a6da96a8fba7d7ac931a1fc5/116_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/116/3c1114b2a6da96a8fba7d7ac931a1fc5/116_u.jpg\"},{\"back\":\"images/cube_2048/117/9709eb6d9f3c348c717bc23767b9949c/117_b.jpg\",\"derived_id\":1702280658,\"derived_id_str\":\"1702280658\",\"down\":\"images/cube_2048/117/9709eb6d9f3c348c717bc23767b9949c/117_d.jpg\",\"front\":\"images/cube_2048/117/9709eb6d9f3c348c717bc23767b9949c/117_f.jpg\",\"index\":117,\"left\":\"images/cube_2048/117/9709eb6d9f3c348c717bc23767b9949c/117_l.jpg\",\"right\":\"images/cube_2048/117/9709eb6d9f3c348c717bc23767b9949c/117_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/117/9709eb6d9f3c348c717bc23767b9949c/117_u.jpg\"},{\"back\":\"images/cube_2048/118/acd0a652ea3c2c9fe190db9ff0ffeb50/118_b.jpg\",\"derived_id\":1702281021,\"derived_id_str\":\"1702281021\",\"down\":\"images/cube_2048/118/acd0a652ea3c2c9fe190db9ff0ffeb50/118_d.jpg\",\"front\":\"images/cube_2048/118/acd0a652ea3c2c9fe190db9ff0ffeb50/118_f.jpg\",\"index\":118,\"left\":\"images/cube_2048/118/acd0a652ea3c2c9fe190db9ff0ffeb50/118_l.jpg\",\"right\":\"images/cube_2048/118/acd0a652ea3c2c9fe190db9ff0ffeb50/118_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/118/acd0a652ea3c2c9fe190db9ff0ffeb50/118_u.jpg\"},{\"back\":\"images/cube_2048/119/ffc1c71fb119f0e24a953174eba58d4c/119_b.jpg\",\"derived_id\":1702281148,\"derived_id_str\":\"1702281148\",\"down\":\"images/cube_2048/119/ffc1c71fb119f0e24a953174eba58d4c/119_d.jpg\",\"front\":\"images/cube_2048/119/ffc1c71fb119f0e24a953174eba58d4c/119_f.jpg\",\"index\":119,\"left\":\"images/cube_2048/119/ffc1c71fb119f0e24a953174eba58d4c/119_l.jpg\",\"right\":\"images/cube_2048/119/ffc1c71fb119f0e24a953174eba58d4c/119_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/119/ffc1c71fb119f0e24a953174eba58d4c/119_u.jpg\"},{\"back\":\"images/cube_2048/120/dc34fdc9787ca5023a0381d516e46d65/120_b.jpg\",\"derived_id\":1702281337,\"derived_id_str\":\"1702281337\",\"down\":\"images/cube_2048/120/dc34fdc9787ca5023a0381d516e46d65/120_d.jpg\",\"front\":\"images/cube_2048/120/dc34fdc9787ca5023a0381d516e46d65/120_f.jpg\",\"index\":120,\"left\":\"images/cube_2048/120/dc34fdc9787ca5023a0381d516e46d65/120_l.jpg\",\"right\":\"images/cube_2048/120/dc34fdc9787ca5023a0381d516e46d65/120_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/120/dc34fdc9787ca5023a0381d516e46d65/120_u.jpg\"},{\"back\":\"images/cube_2048/121/d9cdc09ffe105ad8fe98d1644b82019f/121_b.jpg\",\"derived_id\":1702281397,\"derived_id_str\":\"1702281397\",\"down\":\"images/cube_2048/121/d9cdc09ffe105ad8fe98d1644b82019f/121_d.jpg\",\"front\":\"images/cube_2048/121/d9cdc09ffe105ad8fe98d1644b82019f/121_f.jpg\",\"index\":121,\"left\":\"images/cube_2048/121/d9cdc09ffe105ad8fe98d1644b82019f/121_l.jpg\",\"right\":\"images/cube_2048/121/d9cdc09ffe105ad8fe98d1644b82019f/121_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/121/d9cdc09ffe105ad8fe98d1644b82019f/121_u.jpg\"},{\"back\":\"images/cube_2048/122/8612b9e6c9b58cf00c43f652c0afb3f1/122_b.jpg\",\"derived_id\":1702281451,\"derived_id_str\":\"1702281451\",\"down\":\"images/cube_2048/122/8612b9e6c9b58cf00c43f652c0afb3f1/122_d.jpg\",\"front\":\"images/cube_2048/122/8612b9e6c9b58cf00c43f652c0afb3f1/122_f.jpg\",\"index\":122,\"left\":\"images/cube_2048/122/8612b9e6c9b58cf00c43f652c0afb3f1/122_l.jpg\",\"right\":\"images/cube_2048/122/8612b9e6c9b58cf00c43f652c0afb3f1/122_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/122/8612b9e6c9b58cf00c43f652c0afb3f1/122_u.jpg\"},{\"back\":\"images/cube_2048/123/4f49fe98567dc0968a08e3a57a839d29/123_b.jpg\",\"derived_id\":1702281532,\"derived_id_str\":\"1702281532\",\"down\":\"images/cube_2048/123/4f49fe98567dc0968a08e3a57a839d29/123_d.jpg\",\"front\":\"images/cube_2048/123/4f49fe98567dc0968a08e3a57a839d29/123_f.jpg\",\"index\":123,\"left\":\"images/cube_2048/123/4f49fe98567dc0968a08e3a57a839d29/123_l.jpg\",\"right\":\"images/cube_2048/123/4f49fe98567dc0968a08e3a57a839d29/123_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/123/4f49fe98567dc0968a08e3a57a839d29/123_u.jpg\"},{\"back\":\"images/cube_2048/124/2591b25124e114e62822b242bb902fda/124_b.jpg\",\"derived_id\":1702281663,\"derived_id_str\":\"1702281663\",\"down\":\"images/cube_2048/124/2591b25124e114e62822b242bb902fda/124_d.jpg\",\"front\":\"images/cube_2048/124/2591b25124e114e62822b242bb902fda/124_f.jpg\",\"index\":124,\"left\":\"images/cube_2048/124/2591b25124e114e62822b242bb902fda/124_l.jpg\",\"right\":\"images/cube_2048/124/2591b25124e114e62822b242bb902fda/124_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/124/2591b25124e114e62822b242bb902fda/124_u.jpg\"},{\"back\":\"images/cube_2048/125/252866fdfd5b70cd1e106961c435342b/125_b.jpg\",\"derived_id\":1702281739,\"derived_id_str\":\"1702281739\",\"down\":\"images/cube_2048/125/252866fdfd5b70cd1e106961c435342b/125_d.jpg\",\"front\":\"images/cube_2048/125/252866fdfd5b70cd1e106961c435342b/125_f.jpg\",\"index\":125,\"left\":\"images/cube_2048/125/252866fdfd5b70cd1e106961c435342b/125_l.jpg\",\"right\":\"images/cube_2048/125/252866fdfd5b70cd1e106961c435342b/125_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/125/252866fdfd5b70cd1e106961c435342b/125_u.jpg\"},{\"back\":\"images/cube_2048/126/ca3cf51ea04102239f25a0799afde45a/126_b.jpg\",\"derived_id\":1702281829,\"derived_id_str\":\"1702281829\",\"down\":\"images/cube_2048/126/ca3cf51ea04102239f25a0799afde45a/126_d.jpg\",\"front\":\"images/cube_2048/126/ca3cf51ea04102239f25a0799afde45a/126_f.jpg\",\"index\":126,\"left\":\"images/cube_2048/126/ca3cf51ea04102239f25a0799afde45a/126_l.jpg\",\"right\":\"images/cube_2048/126/ca3cf51ea04102239f25a0799afde45a/126_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/126/ca3cf51ea04102239f25a0799afde45a/126_u.jpg\"},{\"back\":\"images/cube_2048/127/9f8cfed1f7d460b2b9f56d4e7a03ddc3/127_b.jpg\",\"derived_id\":1702281900,\"derived_id_str\":\"1702281900\",\"down\":\"images/cube_2048/127/9f8cfed1f7d460b2b9f56d4e7a03ddc3/127_d.jpg\",\"front\":\"images/cube_2048/127/9f8cfed1f7d460b2b9f56d4e7a03ddc3/127_f.jpg\",\"index\":127,\"left\":\"images/cube_2048/127/9f8cfed1f7d460b2b9f56d4e7a03ddc3/127_l.jpg\",\"right\":\"images/cube_2048/127/9f8cfed1f7d460b2b9f56d4e7a03ddc3/127_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/127/9f8cfed1f7d460b2b9f56d4e7a03ddc3/127_u.jpg\"},{\"back\":\"images/cube_2048/128/68af9eb40aac93ccb58f87f945e1aa8c/128_b.jpg\",\"derived_id\":1702281964,\"derived_id_str\":\"1702281964\",\"down\":\"images/cube_2048/128/68af9eb40aac93ccb58f87f945e1aa8c/128_d.jpg\",\"front\":\"images/cube_2048/128/68af9eb40aac93ccb58f87f945e1aa8c/128_f.jpg\",\"index\":128,\"left\":\"images/cube_2048/128/68af9eb40aac93ccb58f87f945e1aa8c/128_l.jpg\",\"right\":\"images/cube_2048/128/68af9eb40aac93ccb58f87f945e1aa8c/128_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/128/68af9eb40aac93ccb58f87f945e1aa8c/128_u.jpg\"},{\"back\":\"images/cube_2048/129/877c5bbc9b70639ebbe08c230e2fef50/129_b.jpg\",\"derived_id\":1702282123,\"derived_id_str\":\"1702282123\",\"down\":\"images/cube_2048/129/877c5bbc9b70639ebbe08c230e2fef50/129_d.jpg\",\"front\":\"images/cube_2048/129/877c5bbc9b70639ebbe08c230e2fef50/129_f.jpg\",\"index\":129,\"left\":\"images/cube_2048/129/877c5bbc9b70639ebbe08c230e2fef50/129_l.jpg\",\"right\":\"images/cube_2048/129/877c5bbc9b70639ebbe08c230e2fef50/129_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/129/877c5bbc9b70639ebbe08c230e2fef50/129_u.jpg\"},{\"back\":\"images/cube_2048/130/09fb141b5fb274de198d758b1cac073b/130_b.jpg\",\"derived_id\":1702282194,\"derived_id_str\":\"1702282194\",\"down\":\"images/cube_2048/130/09fb141b5fb274de198d758b1cac073b/130_d.jpg\",\"front\":\"images/cube_2048/130/09fb141b5fb274de198d758b1cac073b/130_f.jpg\",\"index\":130,\"left\":\"images/cube_2048/130/09fb141b5fb274de198d758b1cac073b/130_l.jpg\",\"right\":\"images/cube_2048/130/09fb141b5fb274de198d758b1cac073b/130_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/130/09fb141b5fb274de198d758b1cac073b/130_u.jpg\"},{\"back\":\"images/cube_2048/131/f0f43a34b3652af95f3f4c0170b3a5ed/131_b.jpg\",\"derived_id\":1702282274,\"derived_id_str\":\"1702282274\",\"down\":\"images/cube_2048/131/f0f43a34b3652af95f3f4c0170b3a5ed/131_d.jpg\",\"front\":\"images/cube_2048/131/f0f43a34b3652af95f3f4c0170b3a5ed/131_f.jpg\",\"index\":131,\"left\":\"images/cube_2048/131/f0f43a34b3652af95f3f4c0170b3a5ed/131_l.jpg\",\"right\":\"images/cube_2048/131/f0f43a34b3652af95f3f4c0170b3a5ed/131_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/131/f0f43a34b3652af95f3f4c0170b3a5ed/131_u.jpg\"},{\"back\":\"images/cube_2048/132/19f283bdc3c0968b190b6124c731fec3/132_b.jpg\",\"derived_id\":1702282323,\"derived_id_str\":\"1702282323\",\"down\":\"images/cube_2048/132/19f283bdc3c0968b190b6124c731fec3/132_d.jpg\",\"front\":\"images/cube_2048/132/19f283bdc3c0968b190b6124c731fec3/132_f.jpg\",\"index\":132,\"left\":\"images/cube_2048/132/19f283bdc3c0968b190b6124c731fec3/132_l.jpg\",\"right\":\"images/cube_2048/132/19f283bdc3c0968b190b6124c731fec3/132_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/132/19f283bdc3c0968b190b6124c731fec3/132_u.jpg\"},{\"back\":\"images/cube_2048/133/a898b032b4f251a5975f853c5aa78bb7/133_b.jpg\",\"derived_id\":1702282382,\"derived_id_str\":\"1702282382\",\"down\":\"images/cube_2048/133/a898b032b4f251a5975f853c5aa78bb7/133_d.jpg\",\"front\":\"images/cube_2048/133/a898b032b4f251a5975f853c5aa78bb7/133_f.jpg\",\"index\":133,\"left\":\"images/cube_2048/133/a898b032b4f251a5975f853c5aa78bb7/133_l.jpg\",\"right\":\"images/cube_2048/133/a898b032b4f251a5975f853c5aa78bb7/133_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/133/a898b032b4f251a5975f853c5aa78bb7/133_u.jpg\"},{\"back\":\"images/cube_2048/134/c33b1c333ba9976942ca34213d4cb424/134_b.jpg\",\"derived_id\":1702282427,\"derived_id_str\":\"1702282427\",\"down\":\"images/cube_2048/134/c33b1c333ba9976942ca34213d4cb424/134_d.jpg\",\"front\":\"images/cube_2048/134/c33b1c333ba9976942ca34213d4cb424/134_f.jpg\",\"index\":134,\"left\":\"images/cube_2048/134/c33b1c333ba9976942ca34213d4cb424/134_l.jpg\",\"right\":\"images/cube_2048/134/c33b1c333ba9976942ca34213d4cb424/134_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/134/c33b1c333ba9976942ca34213d4cb424/134_u.jpg\"},{\"back\":\"images/cube_2048/135/7471cd1c8f72b841d04a23f325fe1956/135_b.jpg\",\"derived_id\":1702282509,\"derived_id_str\":\"1702282509\",\"down\":\"images/cube_2048/135/7471cd1c8f72b841d04a23f325fe1956/135_d.jpg\",\"front\":\"images/cube_2048/135/7471cd1c8f72b841d04a23f325fe1956/135_f.jpg\",\"index\":135,\"left\":\"images/cube_2048/135/7471cd1c8f72b841d04a23f325fe1956/135_l.jpg\",\"right\":\"images/cube_2048/135/7471cd1c8f72b841d04a23f325fe1956/135_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/135/7471cd1c8f72b841d04a23f325fe1956/135_u.jpg\"},{\"back\":\"images/cube_2048/136/1532dfbe1c4a9104329ace1708da563b/136_b.jpg\",\"derived_id\":1702282683,\"derived_id_str\":\"1702282683\",\"down\":\"images/cube_2048/136/1532dfbe1c4a9104329ace1708da563b/136_d.jpg\",\"front\":\"images/cube_2048/136/1532dfbe1c4a9104329ace1708da563b/136_f.jpg\",\"index\":136,\"left\":\"images/cube_2048/136/1532dfbe1c4a9104329ace1708da563b/136_l.jpg\",\"right\":\"images/cube_2048/136/1532dfbe1c4a9104329ace1708da563b/136_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/136/1532dfbe1c4a9104329ace1708da563b/136_u.jpg\"},{\"back\":\"images/cube_2048/137/8a08df88999c8b381dc655c9ee54932f/137_b.jpg\",\"derived_id\":1702282748,\"derived_id_str\":\"1702282748\",\"down\":\"images/cube_2048/137/8a08df88999c8b381dc655c9ee54932f/137_d.jpg\",\"front\":\"images/cube_2048/137/8a08df88999c8b381dc655c9ee54932f/137_f.jpg\",\"index\":137,\"left\":\"images/cube_2048/137/8a08df88999c8b381dc655c9ee54932f/137_l.jpg\",\"right\":\"images/cube_2048/137/8a08df88999c8b381dc655c9ee54932f/137_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/137/8a08df88999c8b381dc655c9ee54932f/137_u.jpg\"},{\"back\":\"images/cube_2048/138/3787b40237b9a7f600fc764e35db91fb/138_b.jpg\",\"derived_id\":1702282824,\"derived_id_str\":\"1702282824\",\"down\":\"images/cube_2048/138/3787b40237b9a7f600fc764e35db91fb/138_d.jpg\",\"front\":\"images/cube_2048/138/3787b40237b9a7f600fc764e35db91fb/138_f.jpg\",\"index\":138,\"left\":\"images/cube_2048/138/3787b40237b9a7f600fc764e35db91fb/138_l.jpg\",\"right\":\"images/cube_2048/138/3787b40237b9a7f600fc764e35db91fb/138_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/138/3787b40237b9a7f600fc764e35db91fb/138_u.jpg\"},{\"back\":\"images/cube_2048/139/7d09d67916e0a1f1a9065380b4287237/139_b.jpg\",\"derived_id\":1702282869,\"derived_id_str\":\"1702282869\",\"down\":\"images/cube_2048/139/7d09d67916e0a1f1a9065380b4287237/139_d.jpg\",\"front\":\"images/cube_2048/139/7d09d67916e0a1f1a9065380b4287237/139_f.jpg\",\"index\":139,\"left\":\"images/cube_2048/139/7d09d67916e0a1f1a9065380b4287237/139_l.jpg\",\"right\":\"images/cube_2048/139/7d09d67916e0a1f1a9065380b4287237/139_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/139/7d09d67916e0a1f1a9065380b4287237/139_u.jpg\"},{\"back\":\"images/cube_2048/140/0b4b0b897eb7445df23920ec87049088/140_b.jpg\",\"derived_id\":1702283014,\"derived_id_str\":\"1702283014\",\"down\":\"images/cube_2048/140/0b4b0b897eb7445df23920ec87049088/140_d.jpg\",\"front\":\"images/cube_2048/140/0b4b0b897eb7445df23920ec87049088/140_f.jpg\",\"index\":140,\"left\":\"images/cube_2048/140/0b4b0b897eb7445df23920ec87049088/140_l.jpg\",\"right\":\"images/cube_2048/140/0b4b0b897eb7445df23920ec87049088/140_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/140/0b4b0b897eb7445df23920ec87049088/140_u.jpg\"},{\"back\":\"images/cube_2048/141/5af376d2d8296a2500c99dcbfae678ff/141_b.jpg\",\"derived_id\":1702283093,\"derived_id_str\":\"1702283093\",\"down\":\"images/cube_2048/141/5af376d2d8296a2500c99dcbfae678ff/141_d.jpg\",\"front\":\"images/cube_2048/141/5af376d2d8296a2500c99dcbfae678ff/141_f.jpg\",\"index\":141,\"left\":\"images/cube_2048/141/5af376d2d8296a2500c99dcbfae678ff/141_l.jpg\",\"right\":\"images/cube_2048/141/5af376d2d8296a2500c99dcbfae678ff/141_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/141/5af376d2d8296a2500c99dcbfae678ff/141_u.jpg\"},{\"back\":\"images/cube_2048/142/7d017a02e29a71fd55aa666c80db864d/142_b.jpg\",\"derived_id\":1702283147,\"derived_id_str\":\"1702283147\",\"down\":\"images/cube_2048/142/7d017a02e29a71fd55aa666c80db864d/142_d.jpg\",\"front\":\"images/cube_2048/142/7d017a02e29a71fd55aa666c80db864d/142_f.jpg\",\"index\":142,\"left\":\"images/cube_2048/142/7d017a02e29a71fd55aa666c80db864d/142_l.jpg\",\"right\":\"images/cube_2048/142/7d017a02e29a71fd55aa666c80db864d/142_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/142/7d017a02e29a71fd55aa666c80db864d/142_u.jpg\"},{\"back\":\"images/cube_2048/143/fcdcd0e6250bb0ed9a89ca3276487350/143_b.jpg\",\"derived_id\":1702283223,\"derived_id_str\":\"1702283223\",\"down\":\"images/cube_2048/143/fcdcd0e6250bb0ed9a89ca3276487350/143_d.jpg\",\"front\":\"images/cube_2048/143/fcdcd0e6250bb0ed9a89ca3276487350/143_f.jpg\",\"index\":143,\"left\":\"images/cube_2048/143/fcdcd0e6250bb0ed9a89ca3276487350/143_l.jpg\",\"right\":\"images/cube_2048/143/fcdcd0e6250bb0ed9a89ca3276487350/143_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/143/fcdcd0e6250bb0ed9a89ca3276487350/143_u.jpg\"},{\"back\":\"images/cube_2048/144/e4a63bfdce0ca5c1d196dc7f21daa20d/144_b.jpg\",\"derived_id\":1702283293,\"derived_id_str\":\"1702283293\",\"down\":\"images/cube_2048/144/e4a63bfdce0ca5c1d196dc7f21daa20d/144_d.jpg\",\"front\":\"images/cube_2048/144/e4a63bfdce0ca5c1d196dc7f21daa20d/144_f.jpg\",\"index\":144,\"left\":\"images/cube_2048/144/e4a63bfdce0ca5c1d196dc7f21daa20d/144_l.jpg\",\"right\":\"images/cube_2048/144/e4a63bfdce0ca5c1d196dc7f21daa20d/144_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/144/e4a63bfdce0ca5c1d196dc7f21daa20d/144_u.jpg\"},{\"back\":\"images/cube_2048/145/20dc6f98a9e6743db1f2762ba07d68b0/145_b.jpg\",\"derived_id\":1702283378,\"derived_id_str\":\"1702283378\",\"down\":\"images/cube_2048/145/20dc6f98a9e6743db1f2762ba07d68b0/145_d.jpg\",\"front\":\"images/cube_2048/145/20dc6f98a9e6743db1f2762ba07d68b0/145_f.jpg\",\"index\":145,\"left\":\"images/cube_2048/145/20dc6f98a9e6743db1f2762ba07d68b0/145_l.jpg\",\"right\":\"images/cube_2048/145/20dc6f98a9e6743db1f2762ba07d68b0/145_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/145/20dc6f98a9e6743db1f2762ba07d68b0/145_u.jpg\"},{\"back\":\"images/cube_2048/146/3490d9c5a58fc5c5a9152d06a1038424/146_b.jpg\",\"derived_id\":1702283465,\"derived_id_str\":\"1702283465\",\"down\":\"images/cube_2048/146/3490d9c5a58fc5c5a9152d06a1038424/146_d.jpg\",\"front\":\"images/cube_2048/146/3490d9c5a58fc5c5a9152d06a1038424/146_f.jpg\",\"index\":146,\"left\":\"images/cube_2048/146/3490d9c5a58fc5c5a9152d06a1038424/146_l.jpg\",\"right\":\"images/cube_2048/146/3490d9c5a58fc5c5a9152d06a1038424/146_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/146/3490d9c5a58fc5c5a9152d06a1038424/146_u.jpg\"},{\"back\":\"images/cube_2048/147/fe693c3b09329e482e80b9b2500565f8/147_b.jpg\",\"derived_id\":1702283522,\"derived_id_str\":\"1702283522\",\"down\":\"images/cube_2048/147/fe693c3b09329e482e80b9b2500565f8/147_d.jpg\",\"front\":\"images/cube_2048/147/fe693c3b09329e482e80b9b2500565f8/147_f.jpg\",\"index\":147,\"left\":\"images/cube_2048/147/fe693c3b09329e482e80b9b2500565f8/147_l.jpg\",\"right\":\"images/cube_2048/147/fe693c3b09329e482e80b9b2500565f8/147_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/147/fe693c3b09329e482e80b9b2500565f8/147_u.jpg\"},{\"back\":\"images/cube_2048/148/18f17d1e22ab2841df75a8998792a627/148_b.jpg\",\"derived_id\":1702283577,\"derived_id_str\":\"1702283577\",\"down\":\"images/cube_2048/148/18f17d1e22ab2841df75a8998792a627/148_d.jpg\",\"front\":\"images/cube_2048/148/18f17d1e22ab2841df75a8998792a627/148_f.jpg\",\"index\":148,\"left\":\"images/cube_2048/148/18f17d1e22ab2841df75a8998792a627/148_l.jpg\",\"right\":\"images/cube_2048/148/18f17d1e22ab2841df75a8998792a627/148_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/148/18f17d1e22ab2841df75a8998792a627/148_u.jpg\"},{\"back\":\"images/cube_2048/149/09a7916e65011f9c147eeb092741124a/149_b.jpg\",\"derived_id\":1702283822,\"derived_id_str\":\"1702283822\",\"down\":\"images/cube_2048/149/09a7916e65011f9c147eeb092741124a/149_d.jpg\",\"front\":\"images/cube_2048/149/09a7916e65011f9c147eeb092741124a/149_f.jpg\",\"index\":149,\"left\":\"images/cube_2048/149/09a7916e65011f9c147eeb092741124a/149_l.jpg\",\"right\":\"images/cube_2048/149/09a7916e65011f9c147eeb092741124a/149_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/149/09a7916e65011f9c147eeb092741124a/149_u.jpg\"},{\"back\":\"images/cube_2048/150/e2fc23519d9aebd0058bffb6aa907629/150_b.jpg\",\"derived_id\":1702283872,\"derived_id_str\":\"1702283872\",\"down\":\"images/cube_2048/150/e2fc23519d9aebd0058bffb6aa907629/150_d.jpg\",\"front\":\"images/cube_2048/150/e2fc23519d9aebd0058bffb6aa907629/150_f.jpg\",\"index\":150,\"left\":\"images/cube_2048/150/e2fc23519d9aebd0058bffb6aa907629/150_l.jpg\",\"right\":\"images/cube_2048/150/e2fc23519d9aebd0058bffb6aa907629/150_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/150/e2fc23519d9aebd0058bffb6aa907629/150_u.jpg\"},{\"back\":\"images/cube_2048/151/888d0baa7b7be12958bdc0747bcfe0bd/151_b.jpg\",\"derived_id\":1702283916,\"derived_id_str\":\"1702283916\",\"down\":\"images/cube_2048/151/888d0baa7b7be12958bdc0747bcfe0bd/151_d.jpg\",\"front\":\"images/cube_2048/151/888d0baa7b7be12958bdc0747bcfe0bd/151_f.jpg\",\"index\":151,\"left\":\"images/cube_2048/151/888d0baa7b7be12958bdc0747bcfe0bd/151_l.jpg\",\"right\":\"images/cube_2048/151/888d0baa7b7be12958bdc0747bcfe0bd/151_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/151/888d0baa7b7be12958bdc0747bcfe0bd/151_u.jpg\"},{\"back\":\"images/cube_2048/152/d3de999103c56bb12024a59c38368021/152_b.jpg\",\"derived_id\":1702283971,\"derived_id_str\":\"1702283971\",\"down\":\"images/cube_2048/152/d3de999103c56bb12024a59c38368021/152_d.jpg\",\"front\":\"images/cube_2048/152/d3de999103c56bb12024a59c38368021/152_f.jpg\",\"index\":152,\"left\":\"images/cube_2048/152/d3de999103c56bb12024a59c38368021/152_l.jpg\",\"right\":\"images/cube_2048/152/d3de999103c56bb12024a59c38368021/152_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/152/d3de999103c56bb12024a59c38368021/152_u.jpg\"},{\"back\":\"images/cube_2048/153/3ef574c1c9c95238ae8831559307e6cd/153_b.jpg\",\"derived_id\":1702284078,\"derived_id_str\":\"1702284078\",\"down\":\"images/cube_2048/153/3ef574c1c9c95238ae8831559307e6cd/153_d.jpg\",\"front\":\"images/cube_2048/153/3ef574c1c9c95238ae8831559307e6cd/153_f.jpg\",\"index\":153,\"left\":\"images/cube_2048/153/3ef574c1c9c95238ae8831559307e6cd/153_l.jpg\",\"right\":\"images/cube_2048/153/3ef574c1c9c95238ae8831559307e6cd/153_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/153/3ef574c1c9c95238ae8831559307e6cd/153_u.jpg\"},{\"back\":\"images/cube_2048/154/4e5d73eb94c781cecc8c298c6af3d591/154_b.jpg\",\"derived_id\":1702284157,\"derived_id_str\":\"1702284157\",\"down\":\"images/cube_2048/154/4e5d73eb94c781cecc8c298c6af3d591/154_d.jpg\",\"front\":\"images/cube_2048/154/4e5d73eb94c781cecc8c298c6af3d591/154_f.jpg\",\"index\":154,\"left\":\"images/cube_2048/154/4e5d73eb94c781cecc8c298c6af3d591/154_l.jpg\",\"right\":\"images/cube_2048/154/4e5d73eb94c781cecc8c298c6af3d591/154_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/154/4e5d73eb94c781cecc8c298c6af3d591/154_u.jpg\"},{\"back\":\"images/cube_2048/155/707a4afd0a24eb4d13a268903b673cfe/155_b.jpg\",\"derived_id\":1702284274,\"derived_id_str\":\"1702284274\",\"down\":\"images/cube_2048/155/707a4afd0a24eb4d13a268903b673cfe/155_d.jpg\",\"front\":\"images/cube_2048/155/707a4afd0a24eb4d13a268903b673cfe/155_f.jpg\",\"index\":155,\"left\":\"images/cube_2048/155/707a4afd0a24eb4d13a268903b673cfe/155_l.jpg\",\"right\":\"images/cube_2048/155/707a4afd0a24eb4d13a268903b673cfe/155_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/155/707a4afd0a24eb4d13a268903b673cfe/155_u.jpg\"},{\"back\":\"images/cube_2048/156/2f465225d0c8022d93ed6613dd23a096/156_b.jpg\",\"derived_id\":1702284442,\"derived_id_str\":\"1702284442\",\"down\":\"images/cube_2048/156/2f465225d0c8022d93ed6613dd23a096/156_d.jpg\",\"front\":\"images/cube_2048/156/2f465225d0c8022d93ed6613dd23a096/156_f.jpg\",\"index\":156,\"left\":\"images/cube_2048/156/2f465225d0c8022d93ed6613dd23a096/156_l.jpg\",\"right\":\"images/cube_2048/156/2f465225d0c8022d93ed6613dd23a096/156_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/156/2f465225d0c8022d93ed6613dd23a096/156_u.jpg\"},{\"back\":\"images/cube_2048/157/d8a33d0ff08112fb5c27d4c2a64ac953/157_b.jpg\",\"derived_id\":1702284565,\"derived_id_str\":\"1702284565\",\"down\":\"images/cube_2048/157/d8a33d0ff08112fb5c27d4c2a64ac953/157_d.jpg\",\"front\":\"images/cube_2048/157/d8a33d0ff08112fb5c27d4c2a64ac953/157_f.jpg\",\"index\":157,\"left\":\"images/cube_2048/157/d8a33d0ff08112fb5c27d4c2a64ac953/157_l.jpg\",\"right\":\"images/cube_2048/157/d8a33d0ff08112fb5c27d4c2a64ac953/157_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/157/d8a33d0ff08112fb5c27d4c2a64ac953/157_u.jpg\"},{\"back\":\"images/cube_2048/158/8f2879ca9c74948ac64802fc63fe77dd/158_b.jpg\",\"derived_id\":1702285667,\"derived_id_str\":\"1702285667\",\"down\":\"images/cube_2048/158/8f2879ca9c74948ac64802fc63fe77dd/158_d.jpg\",\"front\":\"images/cube_2048/158/8f2879ca9c74948ac64802fc63fe77dd/158_f.jpg\",\"index\":158,\"left\":\"images/cube_2048/158/8f2879ca9c74948ac64802fc63fe77dd/158_l.jpg\",\"right\":\"images/cube_2048/158/8f2879ca9c74948ac64802fc63fe77dd/158_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/158/8f2879ca9c74948ac64802fc63fe77dd/158_u.jpg\"},{\"back\":\"images/cube_2048/159/46e22b357c3cc59d58e0ce8ffdd21d41/159_b.jpg\",\"derived_id\":1702285721,\"derived_id_str\":\"1702285721\",\"down\":\"images/cube_2048/159/46e22b357c3cc59d58e0ce8ffdd21d41/159_d.jpg\",\"front\":\"images/cube_2048/159/46e22b357c3cc59d58e0ce8ffdd21d41/159_f.jpg\",\"index\":159,\"left\":\"images/cube_2048/159/46e22b357c3cc59d58e0ce8ffdd21d41/159_l.jpg\",\"right\":\"images/cube_2048/159/46e22b357c3cc59d58e0ce8ffdd21d41/159_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/159/46e22b357c3cc59d58e0ce8ffdd21d41/159_u.jpg\"},{\"back\":\"images/cube_2048/160/0477787eb44eb2a8d2381241f5620e27/160_b.jpg\",\"derived_id\":1702285815,\"derived_id_str\":\"1702285815\",\"down\":\"images/cube_2048/160/0477787eb44eb2a8d2381241f5620e27/160_d.jpg\",\"front\":\"images/cube_2048/160/0477787eb44eb2a8d2381241f5620e27/160_f.jpg\",\"index\":160,\"left\":\"images/cube_2048/160/0477787eb44eb2a8d2381241f5620e27/160_l.jpg\",\"right\":\"images/cube_2048/160/0477787eb44eb2a8d2381241f5620e27/160_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/160/0477787eb44eb2a8d2381241f5620e27/160_u.jpg\"},{\"back\":\"images/cube_2048/161/5166a9dbac8906d73d243292fae5ed17/161_b.jpg\",\"derived_id\":1702285856,\"derived_id_str\":\"1702285856\",\"down\":\"images/cube_2048/161/5166a9dbac8906d73d243292fae5ed17/161_d.jpg\",\"front\":\"images/cube_2048/161/5166a9dbac8906d73d243292fae5ed17/161_f.jpg\",\"index\":161,\"left\":\"images/cube_2048/161/5166a9dbac8906d73d243292fae5ed17/161_l.jpg\",\"right\":\"images/cube_2048/161/5166a9dbac8906d73d243292fae5ed17/161_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/161/5166a9dbac8906d73d243292fae5ed17/161_u.jpg\"},{\"back\":\"images/cube_2048/162/5f8214cc7aa26a5173f3c5a390785c48/162_b.jpg\",\"derived_id\":1702286017,\"derived_id_str\":\"1702286017\",\"down\":\"images/cube_2048/162/5f8214cc7aa26a5173f3c5a390785c48/162_d.jpg\",\"front\":\"images/cube_2048/162/5f8214cc7aa26a5173f3c5a390785c48/162_f.jpg\",\"index\":162,\"left\":\"images/cube_2048/162/5f8214cc7aa26a5173f3c5a390785c48/162_l.jpg\",\"right\":\"images/cube_2048/162/5f8214cc7aa26a5173f3c5a390785c48/162_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/162/5f8214cc7aa26a5173f3c5a390785c48/162_u.jpg\"},{\"back\":\"images/cube_2048/163/5e261c5b6fd0adb247280a687d14d43c/163_b.jpg\",\"derived_id\":1702286063,\"derived_id_str\":\"1702286063\",\"down\":\"images/cube_2048/163/5e261c5b6fd0adb247280a687d14d43c/163_d.jpg\",\"front\":\"images/cube_2048/163/5e261c5b6fd0adb247280a687d14d43c/163_f.jpg\",\"index\":163,\"left\":\"images/cube_2048/163/5e261c5b6fd0adb247280a687d14d43c/163_l.jpg\",\"right\":\"images/cube_2048/163/5e261c5b6fd0adb247280a687d14d43c/163_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/163/5e261c5b6fd0adb247280a687d14d43c/163_u.jpg\"},{\"back\":\"images/cube_2048/164/942a561655ae65cdacd4686bbad7ea54/164_b.jpg\",\"derived_id\":1702286102,\"derived_id_str\":\"1702286102\",\"down\":\"images/cube_2048/164/942a561655ae65cdacd4686bbad7ea54/164_d.jpg\",\"front\":\"images/cube_2048/164/942a561655ae65cdacd4686bbad7ea54/164_f.jpg\",\"index\":164,\"left\":\"images/cube_2048/164/942a561655ae65cdacd4686bbad7ea54/164_l.jpg\",\"right\":\"images/cube_2048/164/942a561655ae65cdacd4686bbad7ea54/164_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/164/942a561655ae65cdacd4686bbad7ea54/164_u.jpg\"},{\"back\":\"images/cube_2048/165/98f1df0724e3ddfb69a143ad1c6c6762/165_b.jpg\",\"derived_id\":1702286147,\"derived_id_str\":\"1702286147\",\"down\":\"images/cube_2048/165/98f1df0724e3ddfb69a143ad1c6c6762/165_d.jpg\",\"front\":\"images/cube_2048/165/98f1df0724e3ddfb69a143ad1c6c6762/165_f.jpg\",\"index\":165,\"left\":\"images/cube_2048/165/98f1df0724e3ddfb69a143ad1c6c6762/165_l.jpg\",\"right\":\"images/cube_2048/165/98f1df0724e3ddfb69a143ad1c6c6762/165_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/165/98f1df0724e3ddfb69a143ad1c6c6762/165_u.jpg\"},{\"back\":\"images/cube_2048/166/70c56233a3c04c2fb621c2c2f8af084b/166_b.jpg\",\"derived_id\":1702286199,\"derived_id_str\":\"1702286199\",\"down\":\"images/cube_2048/166/70c56233a3c04c2fb621c2c2f8af084b/166_d.jpg\",\"front\":\"images/cube_2048/166/70c56233a3c04c2fb621c2c2f8af084b/166_f.jpg\",\"index\":166,\"left\":\"images/cube_2048/166/70c56233a3c04c2fb621c2c2f8af084b/166_l.jpg\",\"right\":\"images/cube_2048/166/70c56233a3c04c2fb621c2c2f8af084b/166_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/166/70c56233a3c04c2fb621c2c2f8af084b/166_u.jpg\"},{\"back\":\"images/cube_2048/167/d70e3384bdec646f79df60b8e55ff164/167_b.jpg\",\"derived_id\":1702286351,\"derived_id_str\":\"1702286351\",\"down\":\"images/cube_2048/167/d70e3384bdec646f79df60b8e55ff164/167_d.jpg\",\"front\":\"images/cube_2048/167/d70e3384bdec646f79df60b8e55ff164/167_f.jpg\",\"index\":167,\"left\":\"images/cube_2048/167/d70e3384bdec646f79df60b8e55ff164/167_l.jpg\",\"right\":\"images/cube_2048/167/d70e3384bdec646f79df60b8e55ff164/167_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/167/d70e3384bdec646f79df60b8e55ff164/167_u.jpg\"},{\"back\":\"images/cube_2048/168/648873a8cf2a2becb00220c3ff59fe62/168_b.jpg\",\"derived_id\":1702286418,\"derived_id_str\":\"1702286418\",\"down\":\"images/cube_2048/168/648873a8cf2a2becb00220c3ff59fe62/168_d.jpg\",\"front\":\"images/cube_2048/168/648873a8cf2a2becb00220c3ff59fe62/168_f.jpg\",\"index\":168,\"left\":\"images/cube_2048/168/648873a8cf2a2becb00220c3ff59fe62/168_l.jpg\",\"right\":\"images/cube_2048/168/648873a8cf2a2becb00220c3ff59fe62/168_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/168/648873a8cf2a2becb00220c3ff59fe62/168_u.jpg\"},{\"back\":\"images/cube_2048/169/6541567dc64912dc24bc900c55b94a3f/169_b.jpg\",\"derived_id\":1702286585,\"derived_id_str\":\"1702286585\",\"down\":\"images/cube_2048/169/6541567dc64912dc24bc900c55b94a3f/169_d.jpg\",\"front\":\"images/cube_2048/169/6541567dc64912dc24bc900c55b94a3f/169_f.jpg\",\"index\":169,\"left\":\"images/cube_2048/169/6541567dc64912dc24bc900c55b94a3f/169_l.jpg\",\"right\":\"images/cube_2048/169/6541567dc64912dc24bc900c55b94a3f/169_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/169/6541567dc64912dc24bc900c55b94a3f/169_u.jpg\"},{\"back\":\"images/cube_2048/170/0aff5eab082863769875b8e49dafa570/170_b.jpg\",\"derived_id\":1702286716,\"derived_id_str\":\"1702286716\",\"down\":\"images/cube_2048/170/0aff5eab082863769875b8e49dafa570/170_d.jpg\",\"front\":\"images/cube_2048/170/0aff5eab082863769875b8e49dafa570/170_f.jpg\",\"index\":170,\"left\":\"images/cube_2048/170/0aff5eab082863769875b8e49dafa570/170_l.jpg\",\"right\":\"images/cube_2048/170/0aff5eab082863769875b8e49dafa570/170_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/170/0aff5eab082863769875b8e49dafa570/170_u.jpg\"},{\"back\":\"images/cube_2048/171/73f5b0c89be23bb0768802142c2df4c6/171_b.jpg\",\"derived_id\":1702286767,\"derived_id_str\":\"1702286767\",\"down\":\"images/cube_2048/171/73f5b0c89be23bb0768802142c2df4c6/171_d.jpg\",\"front\":\"images/cube_2048/171/73f5b0c89be23bb0768802142c2df4c6/171_f.jpg\",\"index\":171,\"left\":\"images/cube_2048/171/73f5b0c89be23bb0768802142c2df4c6/171_l.jpg\",\"right\":\"images/cube_2048/171/73f5b0c89be23bb0768802142c2df4c6/171_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/171/73f5b0c89be23bb0768802142c2df4c6/171_u.jpg\"},{\"back\":\"images/cube_2048/172/3e82647e107d1791968e7a684412b775/172_b.jpg\",\"derived_id\":1702286843,\"derived_id_str\":\"1702286843\",\"down\":\"images/cube_2048/172/3e82647e107d1791968e7a684412b775/172_d.jpg\",\"front\":\"images/cube_2048/172/3e82647e107d1791968e7a684412b775/172_f.jpg\",\"index\":172,\"left\":\"images/cube_2048/172/3e82647e107d1791968e7a684412b775/172_l.jpg\",\"right\":\"images/cube_2048/172/3e82647e107d1791968e7a684412b775/172_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/172/3e82647e107d1791968e7a684412b775/172_u.jpg\"},{\"back\":\"images/cube_2048/173/45bd6450fc73d8a2614b8809e4a22f28/173_b.jpg\",\"derived_id\":1702286892,\"derived_id_str\":\"1702286892\",\"down\":\"images/cube_2048/173/45bd6450fc73d8a2614b8809e4a22f28/173_d.jpg\",\"front\":\"images/cube_2048/173/45bd6450fc73d8a2614b8809e4a22f28/173_f.jpg\",\"index\":173,\"left\":\"images/cube_2048/173/45bd6450fc73d8a2614b8809e4a22f28/173_l.jpg\",\"right\":\"images/cube_2048/173/45bd6450fc73d8a2614b8809e4a22f28/173_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/173/45bd6450fc73d8a2614b8809e4a22f28/173_u.jpg\"},{\"back\":\"images/cube_2048/174/08eff14e059228a3e5e35ef7243e0046/174_b.jpg\",\"derived_id\":1702287110,\"derived_id_str\":\"1702287110\",\"down\":\"images/cube_2048/174/08eff14e059228a3e5e35ef7243e0046/174_d.jpg\",\"front\":\"images/cube_2048/174/08eff14e059228a3e5e35ef7243e0046/174_f.jpg\",\"index\":174,\"left\":\"images/cube_2048/174/08eff14e059228a3e5e35ef7243e0046/174_l.jpg\",\"right\":\"images/cube_2048/174/08eff14e059228a3e5e35ef7243e0046/174_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/174/08eff14e059228a3e5e35ef7243e0046/174_u.jpg\"},{\"back\":\"images/cube_2048/175/4b2c84dff8e8255f4cfbdb6d2029f489/175_b.jpg\",\"derived_id\":1702287199,\"derived_id_str\":\"1702287199\",\"down\":\"images/cube_2048/175/4b2c84dff8e8255f4cfbdb6d2029f489/175_d.jpg\",\"front\":\"images/cube_2048/175/4b2c84dff8e8255f4cfbdb6d2029f489/175_f.jpg\",\"index\":175,\"left\":\"images/cube_2048/175/4b2c84dff8e8255f4cfbdb6d2029f489/175_l.jpg\",\"right\":\"images/cube_2048/175/4b2c84dff8e8255f4cfbdb6d2029f489/175_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/175/4b2c84dff8e8255f4cfbdb6d2029f489/175_u.jpg\"},{\"back\":\"images/cube_2048/176/93d2ffd331f74621bdc2cddf62460ad6/176_b.jpg\",\"derived_id\":1702287241,\"derived_id_str\":\"1702287241\",\"down\":\"images/cube_2048/176/93d2ffd331f74621bdc2cddf62460ad6/176_d.jpg\",\"front\":\"images/cube_2048/176/93d2ffd331f74621bdc2cddf62460ad6/176_f.jpg\",\"index\":176,\"left\":\"images/cube_2048/176/93d2ffd331f74621bdc2cddf62460ad6/176_l.jpg\",\"right\":\"images/cube_2048/176/93d2ffd331f74621bdc2cddf62460ad6/176_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/176/93d2ffd331f74621bdc2cddf62460ad6/176_u.jpg\"},{\"back\":\"images/cube_2048/177/730eeb53ffa1d62249eac7701db618c4/177_b.jpg\",\"derived_id\":1702287286,\"derived_id_str\":\"1702287286\",\"down\":\"images/cube_2048/177/730eeb53ffa1d62249eac7701db618c4/177_d.jpg\",\"front\":\"images/cube_2048/177/730eeb53ffa1d62249eac7701db618c4/177_f.jpg\",\"index\":177,\"left\":\"images/cube_2048/177/730eeb53ffa1d62249eac7701db618c4/177_l.jpg\",\"right\":\"images/cube_2048/177/730eeb53ffa1d62249eac7701db618c4/177_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/177/730eeb53ffa1d62249eac7701db618c4/177_u.jpg\"},{\"back\":\"images/cube_2048/178/a3dbf3390867f637baf32f54f62c3ee5/178_b.jpg\",\"derived_id\":1702287337,\"derived_id_str\":\"1702287337\",\"down\":\"images/cube_2048/178/a3dbf3390867f637baf32f54f62c3ee5/178_d.jpg\",\"front\":\"images/cube_2048/178/a3dbf3390867f637baf32f54f62c3ee5/178_f.jpg\",\"index\":178,\"left\":\"images/cube_2048/178/a3dbf3390867f637baf32f54f62c3ee5/178_l.jpg\",\"right\":\"images/cube_2048/178/a3dbf3390867f637baf32f54f62c3ee5/178_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/178/a3dbf3390867f637baf32f54f62c3ee5/178_u.jpg\"},{\"back\":\"images/cube_2048/179/49e0d66179c14a51f228814a76f7a2e9/179_b.jpg\",\"derived_id\":1702287380,\"derived_id_str\":\"1702287380\",\"down\":\"images/cube_2048/179/49e0d66179c14a51f228814a76f7a2e9/179_d.jpg\",\"front\":\"images/cube_2048/179/49e0d66179c14a51f228814a76f7a2e9/179_f.jpg\",\"index\":179,\"left\":\"images/cube_2048/179/49e0d66179c14a51f228814a76f7a2e9/179_l.jpg\",\"right\":\"images/cube_2048/179/49e0d66179c14a51f228814a76f7a2e9/179_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/179/49e0d66179c14a51f228814a76f7a2e9/179_u.jpg\"},{\"back\":\"images/cube_2048/180/a5eb6984ca3f606dba119e3e1b4e6bb1/180_b.jpg\",\"derived_id\":1702287427,\"derived_id_str\":\"1702287427\",\"down\":\"images/cube_2048/180/a5eb6984ca3f606dba119e3e1b4e6bb1/180_d.jpg\",\"front\":\"images/cube_2048/180/a5eb6984ca3f606dba119e3e1b4e6bb1/180_f.jpg\",\"index\":180,\"left\":\"images/cube_2048/180/a5eb6984ca3f606dba119e3e1b4e6bb1/180_l.jpg\",\"right\":\"images/cube_2048/180/a5eb6984ca3f606dba119e3e1b4e6bb1/180_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/180/a5eb6984ca3f606dba119e3e1b4e6bb1/180_u.jpg\"},{\"back\":\"images/cube_2048/181/23c316d9758f5b6b34df49326b24861b/181_b.jpg\",\"derived_id\":1702287474,\"derived_id_str\":\"1702287474\",\"down\":\"images/cube_2048/181/23c316d9758f5b6b34df49326b24861b/181_d.jpg\",\"front\":\"images/cube_2048/181/23c316d9758f5b6b34df49326b24861b/181_f.jpg\",\"index\":181,\"left\":\"images/cube_2048/181/23c316d9758f5b6b34df49326b24861b/181_l.jpg\",\"right\":\"images/cube_2048/181/23c316d9758f5b6b34df49326b24861b/181_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/181/23c316d9758f5b6b34df49326b24861b/181_u.jpg\"},{\"back\":\"images/cube_2048/182/a7e7eceecf190f916134f3c121843ed3/182_b.jpg\",\"derived_id\":1702287515,\"derived_id_str\":\"1702287515\",\"down\":\"images/cube_2048/182/a7e7eceecf190f916134f3c121843ed3/182_d.jpg\",\"front\":\"images/cube_2048/182/a7e7eceecf190f916134f3c121843ed3/182_f.jpg\",\"index\":182,\"left\":\"images/cube_2048/182/a7e7eceecf190f916134f3c121843ed3/182_l.jpg\",\"right\":\"images/cube_2048/182/a7e7eceecf190f916134f3c121843ed3/182_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/182/a7e7eceecf190f916134f3c121843ed3/182_u.jpg\"},{\"back\":\"images/cube_2048/183/9958117154357b3be0a8b6ab9f81a10f/183_b.jpg\",\"derived_id\":1702287556,\"derived_id_str\":\"1702287556\",\"down\":\"images/cube_2048/183/9958117154357b3be0a8b6ab9f81a10f/183_d.jpg\",\"front\":\"images/cube_2048/183/9958117154357b3be0a8b6ab9f81a10f/183_f.jpg\",\"index\":183,\"left\":\"images/cube_2048/183/9958117154357b3be0a8b6ab9f81a10f/183_l.jpg\",\"right\":\"images/cube_2048/183/9958117154357b3be0a8b6ab9f81a10f/183_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/183/9958117154357b3be0a8b6ab9f81a10f/183_u.jpg\"},{\"back\":\"images/cube_2048/184/99cdd86f69ba153a301d84bbca56b11f/184_b.jpg\",\"derived_id\":1702287597,\"derived_id_str\":\"1702287597\",\"down\":\"images/cube_2048/184/99cdd86f69ba153a301d84bbca56b11f/184_d.jpg\",\"front\":\"images/cube_2048/184/99cdd86f69ba153a301d84bbca56b11f/184_f.jpg\",\"index\":184,\"left\":\"images/cube_2048/184/99cdd86f69ba153a301d84bbca56b11f/184_l.jpg\",\"right\":\"images/cube_2048/184/99cdd86f69ba153a301d84bbca56b11f/184_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/184/99cdd86f69ba153a301d84bbca56b11f/184_u.jpg\"},{\"back\":\"images/cube_2048/185/002a4d1c8638d8a126547221e9ca0af7/185_b.jpg\",\"derived_id\":1702287646,\"derived_id_str\":\"1702287646\",\"down\":\"images/cube_2048/185/002a4d1c8638d8a126547221e9ca0af7/185_d.jpg\",\"front\":\"images/cube_2048/185/002a4d1c8638d8a126547221e9ca0af7/185_f.jpg\",\"index\":185,\"left\":\"images/cube_2048/185/002a4d1c8638d8a126547221e9ca0af7/185_l.jpg\",\"right\":\"images/cube_2048/185/002a4d1c8638d8a126547221e9ca0af7/185_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/185/002a4d1c8638d8a126547221e9ca0af7/185_u.jpg\"},{\"back\":\"images/cube_2048/186/45199fbcad7959b9648f42cd8724920d/186_b.jpg\",\"derived_id\":1702287690,\"derived_id_str\":\"1702287690\",\"down\":\"images/cube_2048/186/45199fbcad7959b9648f42cd8724920d/186_d.jpg\",\"front\":\"images/cube_2048/186/45199fbcad7959b9648f42cd8724920d/186_f.jpg\",\"index\":186,\"left\":\"images/cube_2048/186/45199fbcad7959b9648f42cd8724920d/186_l.jpg\",\"right\":\"images/cube_2048/186/45199fbcad7959b9648f42cd8724920d/186_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/186/45199fbcad7959b9648f42cd8724920d/186_u.jpg\"},{\"back\":\"images/cube_2048/187/9090833d6534a0d6a97259f13e7e9402/187_b.jpg\",\"derived_id\":1702287734,\"derived_id_str\":\"1702287734\",\"down\":\"images/cube_2048/187/9090833d6534a0d6a97259f13e7e9402/187_d.jpg\",\"front\":\"images/cube_2048/187/9090833d6534a0d6a97259f13e7e9402/187_f.jpg\",\"index\":187,\"left\":\"images/cube_2048/187/9090833d6534a0d6a97259f13e7e9402/187_l.jpg\",\"right\":\"images/cube_2048/187/9090833d6534a0d6a97259f13e7e9402/187_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/187/9090833d6534a0d6a97259f13e7e9402/187_u.jpg\"},{\"back\":\"images/cube_2048/188/ad8f87279a9b00182f13fe8f7ab9d8a2/188_b.jpg\",\"derived_id\":1702287780,\"derived_id_str\":\"1702287780\",\"down\":\"images/cube_2048/188/ad8f87279a9b00182f13fe8f7ab9d8a2/188_d.jpg\",\"front\":\"images/cube_2048/188/ad8f87279a9b00182f13fe8f7ab9d8a2/188_f.jpg\",\"index\":188,\"left\":\"images/cube_2048/188/ad8f87279a9b00182f13fe8f7ab9d8a2/188_l.jpg\",\"right\":\"images/cube_2048/188/ad8f87279a9b00182f13fe8f7ab9d8a2/188_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/188/ad8f87279a9b00182f13fe8f7ab9d8a2/188_u.jpg\"},{\"back\":\"images/cube_2048/189/6457006f91e02445f528d7c4af345d57/189_b.jpg\",\"derived_id\":1702287826,\"derived_id_str\":\"1702287826\",\"down\":\"images/cube_2048/189/6457006f91e02445f528d7c4af345d57/189_d.jpg\",\"front\":\"images/cube_2048/189/6457006f91e02445f528d7c4af345d57/189_f.jpg\",\"index\":189,\"left\":\"images/cube_2048/189/6457006f91e02445f528d7c4af345d57/189_l.jpg\",\"right\":\"images/cube_2048/189/6457006f91e02445f528d7c4af345d57/189_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/189/6457006f91e02445f528d7c4af345d57/189_u.jpg\"},{\"back\":\"images/cube_2048/190/4383d81059f69cfd0ed06a82f7ee249e/190_b.jpg\",\"derived_id\":1702287871,\"derived_id_str\":\"1702287871\",\"down\":\"images/cube_2048/190/4383d81059f69cfd0ed06a82f7ee249e/190_d.jpg\",\"front\":\"images/cube_2048/190/4383d81059f69cfd0ed06a82f7ee249e/190_f.jpg\",\"index\":190,\"left\":\"images/cube_2048/190/4383d81059f69cfd0ed06a82f7ee249e/190_l.jpg\",\"right\":\"images/cube_2048/190/4383d81059f69cfd0ed06a82f7ee249e/190_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/190/4383d81059f69cfd0ed06a82f7ee249e/190_u.jpg\"},{\"back\":\"images/cube_2048/191/ab68a271a530362a7a8710400298763e/191_b.jpg\",\"derived_id\":1702287919,\"derived_id_str\":\"1702287919\",\"down\":\"images/cube_2048/191/ab68a271a530362a7a8710400298763e/191_d.jpg\",\"front\":\"images/cube_2048/191/ab68a271a530362a7a8710400298763e/191_f.jpg\",\"index\":191,\"left\":\"images/cube_2048/191/ab68a271a530362a7a8710400298763e/191_l.jpg\",\"right\":\"images/cube_2048/191/ab68a271a530362a7a8710400298763e/191_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/191/ab68a271a530362a7a8710400298763e/191_u.jpg\"},{\"back\":\"images/cube_2048/192/90aea5efefd4e1c9eb3a332b8df8693f/192_b.jpg\",\"derived_id\":1702287968,\"derived_id_str\":\"1702287968\",\"down\":\"images/cube_2048/192/90aea5efefd4e1c9eb3a332b8df8693f/192_d.jpg\",\"front\":\"images/cube_2048/192/90aea5efefd4e1c9eb3a332b8df8693f/192_f.jpg\",\"index\":192,\"left\":\"images/cube_2048/192/90aea5efefd4e1c9eb3a332b8df8693f/192_l.jpg\",\"right\":\"images/cube_2048/192/90aea5efefd4e1c9eb3a332b8df8693f/192_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/192/90aea5efefd4e1c9eb3a332b8df8693f/192_u.jpg\"},{\"back\":\"images/cube_2048/193/3fc084e01607014131f0283bb125f15e/193_b.jpg\",\"derived_id\":1702288015,\"derived_id_str\":\"1702288015\",\"down\":\"images/cube_2048/193/3fc084e01607014131f0283bb125f15e/193_d.jpg\",\"front\":\"images/cube_2048/193/3fc084e01607014131f0283bb125f15e/193_f.jpg\",\"index\":193,\"left\":\"images/cube_2048/193/3fc084e01607014131f0283bb125f15e/193_l.jpg\",\"right\":\"images/cube_2048/193/3fc084e01607014131f0283bb125f15e/193_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/193/3fc084e01607014131f0283bb125f15e/193_u.jpg\"},{\"back\":\"images/cube_2048/194/b35e354ec65f34f35ba8741329ac57c7/194_b.jpg\",\"derived_id\":1702288061,\"derived_id_str\":\"1702288061\",\"down\":\"images/cube_2048/194/b35e354ec65f34f35ba8741329ac57c7/194_d.jpg\",\"front\":\"images/cube_2048/194/b35e354ec65f34f35ba8741329ac57c7/194_f.jpg\",\"index\":194,\"left\":\"images/cube_2048/194/b35e354ec65f34f35ba8741329ac57c7/194_l.jpg\",\"right\":\"images/cube_2048/194/b35e354ec65f34f35ba8741329ac57c7/194_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/194/b35e354ec65f34f35ba8741329ac57c7/194_u.jpg\"},{\"back\":\"images/cube_2048/195/29ea95473db9d2dfa8f3adc052e5a050/195_b.jpg\",\"derived_id\":1702288804,\"derived_id_str\":\"1702288804\",\"down\":\"images/cube_2048/195/29ea95473db9d2dfa8f3adc052e5a050/195_d.jpg\",\"front\":\"images/cube_2048/195/29ea95473db9d2dfa8f3adc052e5a050/195_f.jpg\",\"index\":195,\"left\":\"images/cube_2048/195/29ea95473db9d2dfa8f3adc052e5a050/195_l.jpg\",\"right\":\"images/cube_2048/195/29ea95473db9d2dfa8f3adc052e5a050/195_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/195/29ea95473db9d2dfa8f3adc052e5a050/195_u.jpg\"},{\"back\":\"images/cube_2048/196/e50c84b38e87b759a7254c7ad35a30cf/196_b.jpg\",\"derived_id\":1702288906,\"derived_id_str\":\"1702288906\",\"down\":\"images/cube_2048/196/e50c84b38e87b759a7254c7ad35a30cf/196_d.jpg\",\"front\":\"images/cube_2048/196/e50c84b38e87b759a7254c7ad35a30cf/196_f.jpg\",\"index\":196,\"left\":\"images/cube_2048/196/e50c84b38e87b759a7254c7ad35a30cf/196_l.jpg\",\"right\":\"images/cube_2048/196/e50c84b38e87b759a7254c7ad35a30cf/196_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/196/e50c84b38e87b759a7254c7ad35a30cf/196_u.jpg\"},{\"back\":\"images/cube_2048/197/48adffa48d85cac5b3ddc8c3f9d565e2/197_b.jpg\",\"derived_id\":1702289003,\"derived_id_str\":\"1702289003\",\"down\":\"images/cube_2048/197/48adffa48d85cac5b3ddc8c3f9d565e2/197_d.jpg\",\"front\":\"images/cube_2048/197/48adffa48d85cac5b3ddc8c3f9d565e2/197_f.jpg\",\"index\":197,\"left\":\"images/cube_2048/197/48adffa48d85cac5b3ddc8c3f9d565e2/197_l.jpg\",\"right\":\"images/cube_2048/197/48adffa48d85cac5b3ddc8c3f9d565e2/197_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/197/48adffa48d85cac5b3ddc8c3f9d565e2/197_u.jpg\"},{\"back\":\"images/cube_2048/198/fee60e065abd175452fd9290766d1b13/198_b.jpg\",\"derived_id\":1702289089,\"derived_id_str\":\"1702289089\",\"down\":\"images/cube_2048/198/fee60e065abd175452fd9290766d1b13/198_d.jpg\",\"front\":\"images/cube_2048/198/fee60e065abd175452fd9290766d1b13/198_f.jpg\",\"index\":198,\"left\":\"images/cube_2048/198/fee60e065abd175452fd9290766d1b13/198_l.jpg\",\"right\":\"images/cube_2048/198/fee60e065abd175452fd9290766d1b13/198_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/198/fee60e065abd175452fd9290766d1b13/198_u.jpg\"},{\"back\":\"images/cube_2048/199/e06e27742e8f7e16798323994d948667/199_b.jpg\",\"derived_id\":1702289153,\"derived_id_str\":\"1702289153\",\"down\":\"images/cube_2048/199/e06e27742e8f7e16798323994d948667/199_d.jpg\",\"front\":\"images/cube_2048/199/e06e27742e8f7e16798323994d948667/199_f.jpg\",\"index\":199,\"left\":\"images/cube_2048/199/e06e27742e8f7e16798323994d948667/199_l.jpg\",\"right\":\"images/cube_2048/199/e06e27742e8f7e16798323994d948667/199_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/199/e06e27742e8f7e16798323994d948667/199_u.jpg\"},{\"back\":\"images/cube_2048/200/fad19250160019afaade827c24064033/200_b.jpg\",\"derived_id\":1702289234,\"derived_id_str\":\"1702289234\",\"down\":\"images/cube_2048/200/fad19250160019afaade827c24064033/200_d.jpg\",\"front\":\"images/cube_2048/200/fad19250160019afaade827c24064033/200_f.jpg\",\"index\":200,\"left\":\"images/cube_2048/200/fad19250160019afaade827c24064033/200_l.jpg\",\"right\":\"images/cube_2048/200/fad19250160019afaade827c24064033/200_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/200/fad19250160019afaade827c24064033/200_u.jpg\"},{\"back\":\"images/cube_2048/201/6c4e959c758019a4c44d1529f5b7f836/201_b.jpg\",\"derived_id\":1702289298,\"derived_id_str\":\"1702289298\",\"down\":\"images/cube_2048/201/6c4e959c758019a4c44d1529f5b7f836/201_d.jpg\",\"front\":\"images/cube_2048/201/6c4e959c758019a4c44d1529f5b7f836/201_f.jpg\",\"index\":201,\"left\":\"images/cube_2048/201/6c4e959c758019a4c44d1529f5b7f836/201_l.jpg\",\"right\":\"images/cube_2048/201/6c4e959c758019a4c44d1529f5b7f836/201_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/201/6c4e959c758019a4c44d1529f5b7f836/201_u.jpg\"},{\"back\":\"images/cube_2048/202/d5210e7adc5a51477ca61cf222f0a357/202_b.jpg\",\"derived_id\":1702289362,\"derived_id_str\":\"1702289362\",\"down\":\"images/cube_2048/202/d5210e7adc5a51477ca61cf222f0a357/202_d.jpg\",\"front\":\"images/cube_2048/202/d5210e7adc5a51477ca61cf222f0a357/202_f.jpg\",\"index\":202,\"left\":\"images/cube_2048/202/d5210e7adc5a51477ca61cf222f0a357/202_l.jpg\",\"right\":\"images/cube_2048/202/d5210e7adc5a51477ca61cf222f0a357/202_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/202/d5210e7adc5a51477ca61cf222f0a357/202_u.jpg\"},{\"back\":\"images/cube_2048/203/b9e3ce9776b04399d876450019010160/203_b.jpg\",\"derived_id\":1702289425,\"derived_id_str\":\"1702289425\",\"down\":\"images/cube_2048/203/b9e3ce9776b04399d876450019010160/203_d.jpg\",\"front\":\"images/cube_2048/203/b9e3ce9776b04399d876450019010160/203_f.jpg\",\"index\":203,\"left\":\"images/cube_2048/203/b9e3ce9776b04399d876450019010160/203_l.jpg\",\"right\":\"images/cube_2048/203/b9e3ce9776b04399d876450019010160/203_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/203/b9e3ce9776b04399d876450019010160/203_u.jpg\"},{\"back\":\"images/cube_2048/204/052d009c03eb15cbd115488fb9886446/204_b.jpg\",\"derived_id\":1702290363,\"derived_id_str\":\"1702290363\",\"down\":\"images/cube_2048/204/052d009c03eb15cbd115488fb9886446/204_d.jpg\",\"front\":\"images/cube_2048/204/052d009c03eb15cbd115488fb9886446/204_f.jpg\",\"index\":204,\"left\":\"images/cube_2048/204/052d009c03eb15cbd115488fb9886446/204_l.jpg\",\"right\":\"images/cube_2048/204/052d009c03eb15cbd115488fb9886446/204_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/204/052d009c03eb15cbd115488fb9886446/204_u.jpg\"},{\"back\":\"images/cube_2048/205/ea9d79f5367409d1c41d967def817ae4/205_b.jpg\",\"derived_id\":1702290450,\"derived_id_str\":\"1702290450\",\"down\":\"images/cube_2048/205/ea9d79f5367409d1c41d967def817ae4/205_d.jpg\",\"front\":\"images/cube_2048/205/ea9d79f5367409d1c41d967def817ae4/205_f.jpg\",\"index\":205,\"left\":\"images/cube_2048/205/ea9d79f5367409d1c41d967def817ae4/205_l.jpg\",\"right\":\"images/cube_2048/205/ea9d79f5367409d1c41d967def817ae4/205_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/205/ea9d79f5367409d1c41d967def817ae4/205_u.jpg\"},{\"back\":\"images/cube_2048/206/509b0e6a75506ef21936055d4697ca91/206_b.jpg\",\"derived_id\":1702290556,\"derived_id_str\":\"1702290556\",\"down\":\"images/cube_2048/206/509b0e6a75506ef21936055d4697ca91/206_d.jpg\",\"front\":\"images/cube_2048/206/509b0e6a75506ef21936055d4697ca91/206_f.jpg\",\"index\":206,\"left\":\"images/cube_2048/206/509b0e6a75506ef21936055d4697ca91/206_l.jpg\",\"right\":\"images/cube_2048/206/509b0e6a75506ef21936055d4697ca91/206_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/206/509b0e6a75506ef21936055d4697ca91/206_u.jpg\"},{\"back\":\"images/cube_2048/207/2b2154b5b29fcd2e3d79cd4ad45b9919/207_b.jpg\",\"derived_id\":1702290671,\"derived_id_str\":\"1702290671\",\"down\":\"images/cube_2048/207/2b2154b5b29fcd2e3d79cd4ad45b9919/207_d.jpg\",\"front\":\"images/cube_2048/207/2b2154b5b29fcd2e3d79cd4ad45b9919/207_f.jpg\",\"index\":207,\"left\":\"images/cube_2048/207/2b2154b5b29fcd2e3d79cd4ad45b9919/207_l.jpg\",\"right\":\"images/cube_2048/207/2b2154b5b29fcd2e3d79cd4ad45b9919/207_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/207/2b2154b5b29fcd2e3d79cd4ad45b9919/207_u.jpg\"},{\"back\":\"images/cube_2048/208/63d54c0368dfdfe9272943571415cca6/208_b.jpg\",\"derived_id\":1702290800,\"derived_id_str\":\"1702290800\",\"down\":\"images/cube_2048/208/63d54c0368dfdfe9272943571415cca6/208_d.jpg\",\"front\":\"images/cube_2048/208/63d54c0368dfdfe9272943571415cca6/208_f.jpg\",\"index\":208,\"left\":\"images/cube_2048/208/63d54c0368dfdfe9272943571415cca6/208_l.jpg\",\"right\":\"images/cube_2048/208/63d54c0368dfdfe9272943571415cca6/208_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/208/63d54c0368dfdfe9272943571415cca6/208_u.jpg\"},{\"back\":\"images/cube_2048/209/fd0ec745da858a724a6b3d21a5e246fc/209_b.jpg\",\"derived_id\":1702290902,\"derived_id_str\":\"1702290902\",\"down\":\"images/cube_2048/209/fd0ec745da858a724a6b3d21a5e246fc/209_d.jpg\",\"front\":\"images/cube_2048/209/fd0ec745da858a724a6b3d21a5e246fc/209_f.jpg\",\"index\":209,\"left\":\"images/cube_2048/209/fd0ec745da858a724a6b3d21a5e246fc/209_l.jpg\",\"right\":\"images/cube_2048/209/fd0ec745da858a724a6b3d21a5e246fc/209_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/209/fd0ec745da858a724a6b3d21a5e246fc/209_u.jpg\"},{\"back\":\"images/cube_2048/210/929614c1d18fbabe6118faa1a13d41c1/210_b.jpg\",\"derived_id\":1702290990,\"derived_id_str\":\"1702290990\",\"down\":\"images/cube_2048/210/929614c1d18fbabe6118faa1a13d41c1/210_d.jpg\",\"front\":\"images/cube_2048/210/929614c1d18fbabe6118faa1a13d41c1/210_f.jpg\",\"index\":210,\"left\":\"images/cube_2048/210/929614c1d18fbabe6118faa1a13d41c1/210_l.jpg\",\"right\":\"images/cube_2048/210/929614c1d18fbabe6118faa1a13d41c1/210_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/210/929614c1d18fbabe6118faa1a13d41c1/210_u.jpg\"},{\"back\":\"images/cube_2048/211/3f15aed222e1b20be07e35022f541c43/211_b.jpg\",\"derived_id\":1702291103,\"derived_id_str\":\"1702291103\",\"down\":\"images/cube_2048/211/3f15aed222e1b20be07e35022f541c43/211_d.jpg\",\"front\":\"images/cube_2048/211/3f15aed222e1b20be07e35022f541c43/211_f.jpg\",\"index\":211,\"left\":\"images/cube_2048/211/3f15aed222e1b20be07e35022f541c43/211_l.jpg\",\"right\":\"images/cube_2048/211/3f15aed222e1b20be07e35022f541c43/211_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/211/3f15aed222e1b20be07e35022f541c43/211_u.jpg\"},{\"back\":\"images/cube_2048/212/f4033149f192660e8ff8e6de3009d477/212_b.jpg\",\"derived_id\":1702291498,\"derived_id_str\":\"1702291498\",\"down\":\"images/cube_2048/212/f4033149f192660e8ff8e6de3009d477/212_d.jpg\",\"front\":\"images/cube_2048/212/f4033149f192660e8ff8e6de3009d477/212_f.jpg\",\"index\":212,\"left\":\"images/cube_2048/212/f4033149f192660e8ff8e6de3009d477/212_l.jpg\",\"right\":\"images/cube_2048/212/f4033149f192660e8ff8e6de3009d477/212_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/212/f4033149f192660e8ff8e6de3009d477/212_u.jpg\"},{\"back\":\"images/cube_2048/213/b0ce9895c2f94e9863b21cb29ad8649b/213_b.jpg\",\"derived_id\":1702292084,\"derived_id_str\":\"1702292084\",\"down\":\"images/cube_2048/213/b0ce9895c2f94e9863b21cb29ad8649b/213_d.jpg\",\"front\":\"images/cube_2048/213/b0ce9895c2f94e9863b21cb29ad8649b/213_f.jpg\",\"index\":213,\"left\":\"images/cube_2048/213/b0ce9895c2f94e9863b21cb29ad8649b/213_l.jpg\",\"right\":\"images/cube_2048/213/b0ce9895c2f94e9863b21cb29ad8649b/213_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/213/b0ce9895c2f94e9863b21cb29ad8649b/213_u.jpg\"},{\"back\":\"images/cube_2048/214/5910bee24a4144efadd6757b6e5ae18d/214_b.jpg\",\"derived_id\":1702344486,\"derived_id_str\":\"1702344486\",\"down\":\"images/cube_2048/214/5910bee24a4144efadd6757b6e5ae18d/214_d.jpg\",\"front\":\"images/cube_2048/214/5910bee24a4144efadd6757b6e5ae18d/214_f.jpg\",\"index\":214,\"left\":\"images/cube_2048/214/5910bee24a4144efadd6757b6e5ae18d/214_l.jpg\",\"right\":\"images/cube_2048/214/5910bee24a4144efadd6757b6e5ae18d/214_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/214/5910bee24a4144efadd6757b6e5ae18d/214_u.jpg\"},{\"back\":\"images/cube_2048/215/a759d039c097227af3930e4abc97097c/215_b.jpg\",\"derived_id\":1702344549,\"derived_id_str\":\"1702344549\",\"down\":\"images/cube_2048/215/a759d039c097227af3930e4abc97097c/215_d.jpg\",\"front\":\"images/cube_2048/215/a759d039c097227af3930e4abc97097c/215_f.jpg\",\"index\":215,\"left\":\"images/cube_2048/215/a759d039c097227af3930e4abc97097c/215_l.jpg\",\"right\":\"images/cube_2048/215/a759d039c097227af3930e4abc97097c/215_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/215/a759d039c097227af3930e4abc97097c/215_u.jpg\"},{\"back\":\"images/cube_2048/216/35b7442ce0521ff8919ebfbc1e5cb122/216_b.jpg\",\"derived_id\":1702344648,\"derived_id_str\":\"1702344648\",\"down\":\"images/cube_2048/216/35b7442ce0521ff8919ebfbc1e5cb122/216_d.jpg\",\"front\":\"images/cube_2048/216/35b7442ce0521ff8919ebfbc1e5cb122/216_f.jpg\",\"index\":216,\"left\":\"images/cube_2048/216/35b7442ce0521ff8919ebfbc1e5cb122/216_l.jpg\",\"right\":\"images/cube_2048/216/35b7442ce0521ff8919ebfbc1e5cb122/216_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/216/35b7442ce0521ff8919ebfbc1e5cb122/216_u.jpg\"},{\"back\":\"images/cube_2048/217/0bc67c7c1ccdf5e88a5a9c399b4f7775/217_b.jpg\",\"derived_id\":1702344885,\"derived_id_str\":\"1702344885\",\"down\":\"images/cube_2048/217/0bc67c7c1ccdf5e88a5a9c399b4f7775/217_d.jpg\",\"front\":\"images/cube_2048/217/0bc67c7c1ccdf5e88a5a9c399b4f7775/217_f.jpg\",\"index\":217,\"left\":\"images/cube_2048/217/0bc67c7c1ccdf5e88a5a9c399b4f7775/217_l.jpg\",\"right\":\"images/cube_2048/217/0bc67c7c1ccdf5e88a5a9c399b4f7775/217_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/217/0bc67c7c1ccdf5e88a5a9c399b4f7775/217_u.jpg\"},{\"back\":\"images/cube_2048/218/4df51bea3d8723d19c40eac01eaa852f/218_b.jpg\",\"derived_id\":1702345461,\"derived_id_str\":\"1702345461\",\"down\":\"images/cube_2048/218/4df51bea3d8723d19c40eac01eaa852f/218_d.jpg\",\"front\":\"images/cube_2048/218/4df51bea3d8723d19c40eac01eaa852f/218_f.jpg\",\"index\":218,\"left\":\"images/cube_2048/218/4df51bea3d8723d19c40eac01eaa852f/218_l.jpg\",\"right\":\"images/cube_2048/218/4df51bea3d8723d19c40eac01eaa852f/218_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/218/4df51bea3d8723d19c40eac01eaa852f/218_u.jpg\"},{\"back\":\"images/cube_2048/219/e4db2e799d14c25f546299f44100d163/219_b.jpg\",\"derived_id\":1702345793,\"derived_id_str\":\"1702345793\",\"down\":\"images/cube_2048/219/e4db2e799d14c25f546299f44100d163/219_d.jpg\",\"front\":\"images/cube_2048/219/e4db2e799d14c25f546299f44100d163/219_f.jpg\",\"index\":219,\"left\":\"images/cube_2048/219/e4db2e799d14c25f546299f44100d163/219_l.jpg\",\"right\":\"images/cube_2048/219/e4db2e799d14c25f546299f44100d163/219_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/219/e4db2e799d14c25f546299f44100d163/219_u.jpg\"},{\"back\":\"images/cube_2048/220/5649ce2c620bdec870b96d663507fb0d/220_b.jpg\",\"derived_id\":1702345868,\"derived_id_str\":\"1702345868\",\"down\":\"images/cube_2048/220/5649ce2c620bdec870b96d663507fb0d/220_d.jpg\",\"front\":\"images/cube_2048/220/5649ce2c620bdec870b96d663507fb0d/220_f.jpg\",\"index\":220,\"left\":\"images/cube_2048/220/5649ce2c620bdec870b96d663507fb0d/220_l.jpg\",\"right\":\"images/cube_2048/220/5649ce2c620bdec870b96d663507fb0d/220_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/220/5649ce2c620bdec870b96d663507fb0d/220_u.jpg\"},{\"back\":\"images/cube_2048/221/6ac6912c15f6521686a51c5103ce2f33/221_b.jpg\",\"derived_id\":1702345922,\"derived_id_str\":\"1702345922\",\"down\":\"images/cube_2048/221/6ac6912c15f6521686a51c5103ce2f33/221_d.jpg\",\"front\":\"images/cube_2048/221/6ac6912c15f6521686a51c5103ce2f33/221_f.jpg\",\"index\":221,\"left\":\"images/cube_2048/221/6ac6912c15f6521686a51c5103ce2f33/221_l.jpg\",\"right\":\"images/cube_2048/221/6ac6912c15f6521686a51c5103ce2f33/221_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/221/6ac6912c15f6521686a51c5103ce2f33/221_u.jpg\"},{\"back\":\"images/cube_2048/222/50d3be6d0377f80caaa09686f2296b5b/222_b.jpg\",\"derived_id\":1702346034,\"derived_id_str\":\"1702346034\",\"down\":\"images/cube_2048/222/50d3be6d0377f80caaa09686f2296b5b/222_d.jpg\",\"front\":\"images/cube_2048/222/50d3be6d0377f80caaa09686f2296b5b/222_f.jpg\",\"index\":222,\"left\":\"images/cube_2048/222/50d3be6d0377f80caaa09686f2296b5b/222_l.jpg\",\"right\":\"images/cube_2048/222/50d3be6d0377f80caaa09686f2296b5b/222_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/222/50d3be6d0377f80caaa09686f2296b5b/222_u.jpg\"},{\"back\":\"images/cube_2048/223/077e0d34ba4338cd1aaaab6dddbda18d/223_b.jpg\",\"derived_id\":1702346114,\"derived_id_str\":\"1702346114\",\"down\":\"images/cube_2048/223/077e0d34ba4338cd1aaaab6dddbda18d/223_d.jpg\",\"front\":\"images/cube_2048/223/077e0d34ba4338cd1aaaab6dddbda18d/223_f.jpg\",\"index\":223,\"left\":\"images/cube_2048/223/077e0d34ba4338cd1aaaab6dddbda18d/223_l.jpg\",\"right\":\"images/cube_2048/223/077e0d34ba4338cd1aaaab6dddbda18d/223_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/223/077e0d34ba4338cd1aaaab6dddbda18d/223_u.jpg\"},{\"back\":\"images/cube_2048/224/5ddca6ff6cbfda1bd574fbd30dd8261e/224_b.jpg\",\"derived_id\":1702346174,\"derived_id_str\":\"1702346174\",\"down\":\"images/cube_2048/224/5ddca6ff6cbfda1bd574fbd30dd8261e/224_d.jpg\",\"front\":\"images/cube_2048/224/5ddca6ff6cbfda1bd574fbd30dd8261e/224_f.jpg\",\"index\":224,\"left\":\"images/cube_2048/224/5ddca6ff6cbfda1bd574fbd30dd8261e/224_l.jpg\",\"right\":\"images/cube_2048/224/5ddca6ff6cbfda1bd574fbd30dd8261e/224_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/224/5ddca6ff6cbfda1bd574fbd30dd8261e/224_u.jpg\"},{\"back\":\"images/cube_2048/225/5752ad9ecc9ae6622d1b40210ddad2ab/225_b.jpg\",\"derived_id\":1702346256,\"derived_id_str\":\"1702346256\",\"down\":\"images/cube_2048/225/5752ad9ecc9ae6622d1b40210ddad2ab/225_d.jpg\",\"front\":\"images/cube_2048/225/5752ad9ecc9ae6622d1b40210ddad2ab/225_f.jpg\",\"index\":225,\"left\":\"images/cube_2048/225/5752ad9ecc9ae6622d1b40210ddad2ab/225_l.jpg\",\"right\":\"images/cube_2048/225/5752ad9ecc9ae6622d1b40210ddad2ab/225_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/225/5752ad9ecc9ae6622d1b40210ddad2ab/225_u.jpg\"},{\"back\":\"images/cube_2048/226/45943aeb323775b76f8f57b05e65c048/226_b.jpg\",\"derived_id\":1702346401,\"derived_id_str\":\"1702346401\",\"down\":\"images/cube_2048/226/45943aeb323775b76f8f57b05e65c048/226_d.jpg\",\"front\":\"images/cube_2048/226/45943aeb323775b76f8f57b05e65c048/226_f.jpg\",\"index\":226,\"left\":\"images/cube_2048/226/45943aeb323775b76f8f57b05e65c048/226_l.jpg\",\"right\":\"images/cube_2048/226/45943aeb323775b76f8f57b05e65c048/226_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/226/45943aeb323775b76f8f57b05e65c048/226_u.jpg\"},{\"back\":\"images/cube_2048/227/b88a13de9e75a666344201d84a129bd4/227_b.jpg\",\"derived_id\":1702346459,\"derived_id_str\":\"1702346459\",\"down\":\"images/cube_2048/227/b88a13de9e75a666344201d84a129bd4/227_d.jpg\",\"front\":\"images/cube_2048/227/b88a13de9e75a666344201d84a129bd4/227_f.jpg\",\"index\":227,\"left\":\"images/cube_2048/227/b88a13de9e75a666344201d84a129bd4/227_l.jpg\",\"right\":\"images/cube_2048/227/b88a13de9e75a666344201d84a129bd4/227_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/227/b88a13de9e75a666344201d84a129bd4/227_u.jpg\"},{\"back\":\"images/cube_2048/228/fb682808ad362b6a4749ce3b3ec551e6/228_b.jpg\",\"derived_id\":1702346508,\"derived_id_str\":\"1702346508\",\"down\":\"images/cube_2048/228/fb682808ad362b6a4749ce3b3ec551e6/228_d.jpg\",\"front\":\"images/cube_2048/228/fb682808ad362b6a4749ce3b3ec551e6/228_f.jpg\",\"index\":228,\"left\":\"images/cube_2048/228/fb682808ad362b6a4749ce3b3ec551e6/228_l.jpg\",\"right\":\"images/cube_2048/228/fb682808ad362b6a4749ce3b3ec551e6/228_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/228/fb682808ad362b6a4749ce3b3ec551e6/228_u.jpg\"},{\"back\":\"images/cube_2048/229/8ca17b35eef963171a73b5331c73484e/229_b.jpg\",\"derived_id\":1702346573,\"derived_id_str\":\"1702346573\",\"down\":\"images/cube_2048/229/8ca17b35eef963171a73b5331c73484e/229_d.jpg\",\"front\":\"images/cube_2048/229/8ca17b35eef963171a73b5331c73484e/229_f.jpg\",\"index\":229,\"left\":\"images/cube_2048/229/8ca17b35eef963171a73b5331c73484e/229_l.jpg\",\"right\":\"images/cube_2048/229/8ca17b35eef963171a73b5331c73484e/229_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/229/8ca17b35eef963171a73b5331c73484e/229_u.jpg\"},{\"back\":\"images/cube_2048/230/5511daf87f591872785e5082fa19aa9f/230_b.jpg\",\"derived_id\":1702346702,\"derived_id_str\":\"1702346702\",\"down\":\"images/cube_2048/230/5511daf87f591872785e5082fa19aa9f/230_d.jpg\",\"front\":\"images/cube_2048/230/5511daf87f591872785e5082fa19aa9f/230_f.jpg\",\"index\":230,\"left\":\"images/cube_2048/230/5511daf87f591872785e5082fa19aa9f/230_l.jpg\",\"right\":\"images/cube_2048/230/5511daf87f591872785e5082fa19aa9f/230_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/230/5511daf87f591872785e5082fa19aa9f/230_u.jpg\"},{\"back\":\"images/cube_2048/231/cf7934c4ddb5a948254aec10f85e1e05/231_b.jpg\",\"derived_id\":1702346780,\"derived_id_str\":\"1702346780\",\"down\":\"images/cube_2048/231/cf7934c4ddb5a948254aec10f85e1e05/231_d.jpg\",\"front\":\"images/cube_2048/231/cf7934c4ddb5a948254aec10f85e1e05/231_f.jpg\",\"index\":231,\"left\":\"images/cube_2048/231/cf7934c4ddb5a948254aec10f85e1e05/231_l.jpg\",\"right\":\"images/cube_2048/231/cf7934c4ddb5a948254aec10f85e1e05/231_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/231/cf7934c4ddb5a948254aec10f85e1e05/231_u.jpg\"},{\"back\":\"images/cube_2048/232/cb1eec921da04d090f6eeb8aed88c889/232_b.jpg\",\"derived_id\":1702346995,\"derived_id_str\":\"1702346995\",\"down\":\"images/cube_2048/232/cb1eec921da04d090f6eeb8aed88c889/232_d.jpg\",\"front\":\"images/cube_2048/232/cb1eec921da04d090f6eeb8aed88c889/232_f.jpg\",\"index\":232,\"left\":\"images/cube_2048/232/cb1eec921da04d090f6eeb8aed88c889/232_l.jpg\",\"right\":\"images/cube_2048/232/cb1eec921da04d090f6eeb8aed88c889/232_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/232/cb1eec921da04d090f6eeb8aed88c889/232_u.jpg\"},{\"back\":\"images/cube_2048/233/7a5282052add311cdad6cf3eb82f5fb1/233_b.jpg\",\"derived_id\":1702347053,\"derived_id_str\":\"1702347053\",\"down\":\"images/cube_2048/233/7a5282052add311cdad6cf3eb82f5fb1/233_d.jpg\",\"front\":\"images/cube_2048/233/7a5282052add311cdad6cf3eb82f5fb1/233_f.jpg\",\"index\":233,\"left\":\"images/cube_2048/233/7a5282052add311cdad6cf3eb82f5fb1/233_l.jpg\",\"right\":\"images/cube_2048/233/7a5282052add311cdad6cf3eb82f5fb1/233_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/233/7a5282052add311cdad6cf3eb82f5fb1/233_u.jpg\"},{\"back\":\"images/cube_2048/234/d0f3cc0e2e9a058a8399b3c04c36ae4b/234_b.jpg\",\"derived_id\":1702347111,\"derived_id_str\":\"1702347111\",\"down\":\"images/cube_2048/234/d0f3cc0e2e9a058a8399b3c04c36ae4b/234_d.jpg\",\"front\":\"images/cube_2048/234/d0f3cc0e2e9a058a8399b3c04c36ae4b/234_f.jpg\",\"index\":234,\"left\":\"images/cube_2048/234/d0f3cc0e2e9a058a8399b3c04c36ae4b/234_l.jpg\",\"right\":\"images/cube_2048/234/d0f3cc0e2e9a058a8399b3c04c36ae4b/234_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/234/d0f3cc0e2e9a058a8399b3c04c36ae4b/234_u.jpg\"},{\"back\":\"images/cube_2048/235/8adf3468fd7b966ca26532afc777109f/235_b.jpg\",\"derived_id\":1702347192,\"derived_id_str\":\"1702347192\",\"down\":\"images/cube_2048/235/8adf3468fd7b966ca26532afc777109f/235_d.jpg\",\"front\":\"images/cube_2048/235/8adf3468fd7b966ca26532afc777109f/235_f.jpg\",\"index\":235,\"left\":\"images/cube_2048/235/8adf3468fd7b966ca26532afc777109f/235_l.jpg\",\"right\":\"images/cube_2048/235/8adf3468fd7b966ca26532afc777109f/235_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/235/8adf3468fd7b966ca26532afc777109f/235_u.jpg\"},{\"back\":\"images/cube_2048/236/f177d8ceaf638d57b12360ba2df3dbbf/236_b.jpg\",\"derived_id\":1702347402,\"derived_id_str\":\"1702347402\",\"down\":\"images/cube_2048/236/f177d8ceaf638d57b12360ba2df3dbbf/236_d.jpg\",\"front\":\"images/cube_2048/236/f177d8ceaf638d57b12360ba2df3dbbf/236_f.jpg\",\"index\":236,\"left\":\"images/cube_2048/236/f177d8ceaf638d57b12360ba2df3dbbf/236_l.jpg\",\"right\":\"images/cube_2048/236/f177d8ceaf638d57b12360ba2df3dbbf/236_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/236/f177d8ceaf638d57b12360ba2df3dbbf/236_u.jpg\"},{\"back\":\"images/cube_2048/237/caef2034e534d7136282259e8987739c/237_b.jpg\",\"derived_id\":1702347559,\"derived_id_str\":\"1702347559\",\"down\":\"images/cube_2048/237/caef2034e534d7136282259e8987739c/237_d.jpg\",\"front\":\"images/cube_2048/237/caef2034e534d7136282259e8987739c/237_f.jpg\",\"index\":237,\"left\":\"images/cube_2048/237/caef2034e534d7136282259e8987739c/237_l.jpg\",\"right\":\"images/cube_2048/237/caef2034e534d7136282259e8987739c/237_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/237/caef2034e534d7136282259e8987739c/237_u.jpg\"},{\"back\":\"images/cube_2048/238/e8b71bb89bc70b90c84904a0a2aa4142/238_b.jpg\",\"derived_id\":1702348347,\"derived_id_str\":\"1702348347\",\"down\":\"images/cube_2048/238/e8b71bb89bc70b90c84904a0a2aa4142/238_d.jpg\",\"front\":\"images/cube_2048/238/e8b71bb89bc70b90c84904a0a2aa4142/238_f.jpg\",\"index\":238,\"left\":\"images/cube_2048/238/e8b71bb89bc70b90c84904a0a2aa4142/238_l.jpg\",\"right\":\"images/cube_2048/238/e8b71bb89bc70b90c84904a0a2aa4142/238_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/238/e8b71bb89bc70b90c84904a0a2aa4142/238_u.jpg\"},{\"back\":\"images/cube_2048/239/aaf172abe712b520e17c08eaa58cd991/239_b.jpg\",\"derived_id\":1702351889,\"derived_id_str\":\"1702351889\",\"down\":\"images/cube_2048/239/aaf172abe712b520e17c08eaa58cd991/239_d.jpg\",\"front\":\"images/cube_2048/239/aaf172abe712b520e17c08eaa58cd991/239_f.jpg\",\"index\":239,\"left\":\"images/cube_2048/239/aaf172abe712b520e17c08eaa58cd991/239_l.jpg\",\"right\":\"images/cube_2048/239/aaf172abe712b520e17c08eaa58cd991/239_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/239/aaf172abe712b520e17c08eaa58cd991/239_u.jpg\"},{\"back\":\"images/cube_2048/240/f149e4523e1e0812230c2a1cd7c120bf/240_b.jpg\",\"derived_id\":1702353988,\"derived_id_str\":\"1702353988\",\"down\":\"images/cube_2048/240/f149e4523e1e0812230c2a1cd7c120bf/240_d.jpg\",\"front\":\"images/cube_2048/240/f149e4523e1e0812230c2a1cd7c120bf/240_f.jpg\",\"index\":240,\"left\":\"images/cube_2048/240/f149e4523e1e0812230c2a1cd7c120bf/240_l.jpg\",\"right\":\"images/cube_2048/240/f149e4523e1e0812230c2a1cd7c120bf/240_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/240/f149e4523e1e0812230c2a1cd7c120bf/240_u.jpg\"},{\"back\":\"images/cube_2048/241/40995195fc80539ec8e8958ebf7a8ce8/241_b.jpg\",\"derived_id\":1702357746,\"derived_id_str\":\"1702357746\",\"down\":\"images/cube_2048/241/40995195fc80539ec8e8958ebf7a8ce8/241_d.jpg\",\"front\":\"images/cube_2048/241/40995195fc80539ec8e8958ebf7a8ce8/241_f.jpg\",\"index\":241,\"left\":\"images/cube_2048/241/40995195fc80539ec8e8958ebf7a8ce8/241_l.jpg\",\"right\":\"images/cube_2048/241/40995195fc80539ec8e8958ebf7a8ce8/241_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/241/40995195fc80539ec8e8958ebf7a8ce8/241_u.jpg\"},{\"back\":\"images/cube_2048/242/1f4cbe25de90c13c6fc404d21594a267/242_b.jpg\",\"derived_id\":1702357794,\"derived_id_str\":\"1702357794\",\"down\":\"images/cube_2048/242/1f4cbe25de90c13c6fc404d21594a267/242_d.jpg\",\"front\":\"images/cube_2048/242/1f4cbe25de90c13c6fc404d21594a267/242_f.jpg\",\"index\":242,\"left\":\"images/cube_2048/242/1f4cbe25de90c13c6fc404d21594a267/242_l.jpg\",\"right\":\"images/cube_2048/242/1f4cbe25de90c13c6fc404d21594a267/242_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/242/1f4cbe25de90c13c6fc404d21594a267/242_u.jpg\"},{\"back\":\"images/cube_2048/243/09502927eec69aa579fe591b9caa0e24/243_b.jpg\",\"derived_id\":1702358028,\"derived_id_str\":\"1702358028\",\"down\":\"images/cube_2048/243/09502927eec69aa579fe591b9caa0e24/243_d.jpg\",\"front\":\"images/cube_2048/243/09502927eec69aa579fe591b9caa0e24/243_f.jpg\",\"index\":243,\"left\":\"images/cube_2048/243/09502927eec69aa579fe591b9caa0e24/243_l.jpg\",\"right\":\"images/cube_2048/243/09502927eec69aa579fe591b9caa0e24/243_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/243/09502927eec69aa579fe591b9caa0e24/243_u.jpg\"},{\"back\":\"images/cube_2048/244/a28c317529ee71b3e120db244553224b/244_b.jpg\",\"derived_id\":1702358078,\"derived_id_str\":\"1702358078\",\"down\":\"images/cube_2048/244/a28c317529ee71b3e120db244553224b/244_d.jpg\",\"front\":\"images/cube_2048/244/a28c317529ee71b3e120db244553224b/244_f.jpg\",\"index\":244,\"left\":\"images/cube_2048/244/a28c317529ee71b3e120db244553224b/244_l.jpg\",\"right\":\"images/cube_2048/244/a28c317529ee71b3e120db244553224b/244_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/244/a28c317529ee71b3e120db244553224b/244_u.jpg\"},{\"back\":\"images/cube_2048/245/b2ede56da56b86bb1215d29ae8178594/245_b.jpg\",\"derived_id\":1702358125,\"derived_id_str\":\"1702358125\",\"down\":\"images/cube_2048/245/b2ede56da56b86bb1215d29ae8178594/245_d.jpg\",\"front\":\"images/cube_2048/245/b2ede56da56b86bb1215d29ae8178594/245_f.jpg\",\"index\":245,\"left\":\"images/cube_2048/245/b2ede56da56b86bb1215d29ae8178594/245_l.jpg\",\"right\":\"images/cube_2048/245/b2ede56da56b86bb1215d29ae8178594/245_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/245/b2ede56da56b86bb1215d29ae8178594/245_u.jpg\"},{\"back\":\"images/cube_2048/246/22571e9effa75d53cabb55855602ebca/246_b.jpg\",\"derived_id\":1702358187,\"derived_id_str\":\"1702358187\",\"down\":\"images/cube_2048/246/22571e9effa75d53cabb55855602ebca/246_d.jpg\",\"front\":\"images/cube_2048/246/22571e9effa75d53cabb55855602ebca/246_f.jpg\",\"index\":246,\"left\":\"images/cube_2048/246/22571e9effa75d53cabb55855602ebca/246_l.jpg\",\"right\":\"images/cube_2048/246/22571e9effa75d53cabb55855602ebca/246_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/246/22571e9effa75d53cabb55855602ebca/246_u.jpg\"},{\"back\":\"images/cube_2048/247/d070a0b78bc40e332a6e6cce20bb54c7/247_b.jpg\",\"derived_id\":1702358232,\"derived_id_str\":\"1702358232\",\"down\":\"images/cube_2048/247/d070a0b78bc40e332a6e6cce20bb54c7/247_d.jpg\",\"front\":\"images/cube_2048/247/d070a0b78bc40e332a6e6cce20bb54c7/247_f.jpg\",\"index\":247,\"left\":\"images/cube_2048/247/d070a0b78bc40e332a6e6cce20bb54c7/247_l.jpg\",\"right\":\"images/cube_2048/247/d070a0b78bc40e332a6e6cce20bb54c7/247_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/247/d070a0b78bc40e332a6e6cce20bb54c7/247_u.jpg\"},{\"back\":\"images/cube_2048/248/c7b9b9a0f763c972411be79b95e8b37c/248_b.jpg\",\"derived_id\":1702358316,\"derived_id_str\":\"1702358316\",\"down\":\"images/cube_2048/248/c7b9b9a0f763c972411be79b95e8b37c/248_d.jpg\",\"front\":\"images/cube_2048/248/c7b9b9a0f763c972411be79b95e8b37c/248_f.jpg\",\"index\":248,\"left\":\"images/cube_2048/248/c7b9b9a0f763c972411be79b95e8b37c/248_l.jpg\",\"right\":\"images/cube_2048/248/c7b9b9a0f763c972411be79b95e8b37c/248_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/248/c7b9b9a0f763c972411be79b95e8b37c/248_u.jpg\"},{\"back\":\"images/cube_2048/249/e357e741f5c64a28ae77cbb0d6bcf191/249_b.jpg\",\"derived_id\":1702358388,\"derived_id_str\":\"1702358388\",\"down\":\"images/cube_2048/249/e357e741f5c64a28ae77cbb0d6bcf191/249_d.jpg\",\"front\":\"images/cube_2048/249/e357e741f5c64a28ae77cbb0d6bcf191/249_f.jpg\",\"index\":249,\"left\":\"images/cube_2048/249/e357e741f5c64a28ae77cbb0d6bcf191/249_l.jpg\",\"right\":\"images/cube_2048/249/e357e741f5c64a28ae77cbb0d6bcf191/249_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/249/e357e741f5c64a28ae77cbb0d6bcf191/249_u.jpg\"},{\"back\":\"images/cube_2048/250/e776b3d57ecc8cfb4fcb682e52b3a70e/250_b.jpg\",\"derived_id\":1702358501,\"derived_id_str\":\"1702358501\",\"down\":\"images/cube_2048/250/e776b3d57ecc8cfb4fcb682e52b3a70e/250_d.jpg\",\"front\":\"images/cube_2048/250/e776b3d57ecc8cfb4fcb682e52b3a70e/250_f.jpg\",\"index\":250,\"left\":\"images/cube_2048/250/e776b3d57ecc8cfb4fcb682e52b3a70e/250_l.jpg\",\"right\":\"images/cube_2048/250/e776b3d57ecc8cfb4fcb682e52b3a70e/250_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/250/e776b3d57ecc8cfb4fcb682e52b3a70e/250_u.jpg\"},{\"back\":\"images/cube_2048/251/50466d9b259747dcad4666a1045042fb/251_b.jpg\",\"derived_id\":1702358549,\"derived_id_str\":\"1702358549\",\"down\":\"images/cube_2048/251/50466d9b259747dcad4666a1045042fb/251_d.jpg\",\"front\":\"images/cube_2048/251/50466d9b259747dcad4666a1045042fb/251_f.jpg\",\"index\":251,\"left\":\"images/cube_2048/251/50466d9b259747dcad4666a1045042fb/251_l.jpg\",\"right\":\"images/cube_2048/251/50466d9b259747dcad4666a1045042fb/251_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/251/50466d9b259747dcad4666a1045042fb/251_u.jpg\"},{\"back\":\"images/cube_2048/252/9bee588de110c66d513468a12a917c42/252_b.jpg\",\"derived_id\":1702358614,\"derived_id_str\":\"1702358614\",\"down\":\"images/cube_2048/252/9bee588de110c66d513468a12a917c42/252_d.jpg\",\"front\":\"images/cube_2048/252/9bee588de110c66d513468a12a917c42/252_f.jpg\",\"index\":252,\"left\":\"images/cube_2048/252/9bee588de110c66d513468a12a917c42/252_l.jpg\",\"right\":\"images/cube_2048/252/9bee588de110c66d513468a12a917c42/252_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/252/9bee588de110c66d513468a12a917c42/252_u.jpg\"},{\"back\":\"images/cube_2048/253/df3a385c20d3e832a1b6a5f5267e0b8b/253_b.jpg\",\"derived_id\":1702358760,\"derived_id_str\":\"1702358760\",\"down\":\"images/cube_2048/253/df3a385c20d3e832a1b6a5f5267e0b8b/253_d.jpg\",\"front\":\"images/cube_2048/253/df3a385c20d3e832a1b6a5f5267e0b8b/253_f.jpg\",\"index\":253,\"left\":\"images/cube_2048/253/df3a385c20d3e832a1b6a5f5267e0b8b/253_l.jpg\",\"right\":\"images/cube_2048/253/df3a385c20d3e832a1b6a5f5267e0b8b/253_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/253/df3a385c20d3e832a1b6a5f5267e0b8b/253_u.jpg\"},{\"back\":\"images/cube_2048/254/a7008f508c5c5617771e7dca3ffb788c/254_b.jpg\",\"derived_id\":1702359279,\"derived_id_str\":\"1702359279\",\"down\":\"images/cube_2048/254/a7008f508c5c5617771e7dca3ffb788c/254_d.jpg\",\"front\":\"images/cube_2048/254/a7008f508c5c5617771e7dca3ffb788c/254_f.jpg\",\"index\":254,\"left\":\"images/cube_2048/254/a7008f508c5c5617771e7dca3ffb788c/254_l.jpg\",\"right\":\"images/cube_2048/254/a7008f508c5c5617771e7dca3ffb788c/254_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/254/a7008f508c5c5617771e7dca3ffb788c/254_u.jpg\"},{\"back\":\"images/cube_2048/255/69b49d6d6a09b3d840dc4aad6563b3d0/255_b.jpg\",\"derived_id\":1702359660,\"derived_id_str\":\"1702359660\",\"down\":\"images/cube_2048/255/69b49d6d6a09b3d840dc4aad6563b3d0/255_d.jpg\",\"front\":\"images/cube_2048/255/69b49d6d6a09b3d840dc4aad6563b3d0/255_f.jpg\",\"index\":255,\"left\":\"images/cube_2048/255/69b49d6d6a09b3d840dc4aad6563b3d0/255_l.jpg\",\"right\":\"images/cube_2048/255/69b49d6d6a09b3d840dc4aad6563b3d0/255_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/255/69b49d6d6a09b3d840dc4aad6563b3d0/255_u.jpg\"},{\"back\":\"images/cube_2048/256/597968f55cb04ce1ecb90226265478af/256_b.jpg\",\"derived_id\":1702359795,\"derived_id_str\":\"1702359795\",\"down\":\"images/cube_2048/256/597968f55cb04ce1ecb90226265478af/256_d.jpg\",\"front\":\"images/cube_2048/256/597968f55cb04ce1ecb90226265478af/256_f.jpg\",\"index\":256,\"left\":\"images/cube_2048/256/597968f55cb04ce1ecb90226265478af/256_l.jpg\",\"right\":\"images/cube_2048/256/597968f55cb04ce1ecb90226265478af/256_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/256/597968f55cb04ce1ecb90226265478af/256_u.jpg\"},{\"back\":\"images/cube_2048/257/cef2bbe08c3a339d3385a567ee8d50c8/257_b.jpg\",\"derived_id\":1702359952,\"derived_id_str\":\"1702359952\",\"down\":\"images/cube_2048/257/cef2bbe08c3a339d3385a567ee8d50c8/257_d.jpg\",\"front\":\"images/cube_2048/257/cef2bbe08c3a339d3385a567ee8d50c8/257_f.jpg\",\"index\":257,\"left\":\"images/cube_2048/257/cef2bbe08c3a339d3385a567ee8d50c8/257_l.jpg\",\"right\":\"images/cube_2048/257/cef2bbe08c3a339d3385a567ee8d50c8/257_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/257/cef2bbe08c3a339d3385a567ee8d50c8/257_u.jpg\"},{\"back\":\"images/cube_2048/258/ba7cd70fcf75a1f87dc8ac9ee9bfb344/258_b.jpg\",\"derived_id\":1702360000,\"derived_id_str\":\"1702360000\",\"down\":\"images/cube_2048/258/ba7cd70fcf75a1f87dc8ac9ee9bfb344/258_d.jpg\",\"front\":\"images/cube_2048/258/ba7cd70fcf75a1f87dc8ac9ee9bfb344/258_f.jpg\",\"index\":258,\"left\":\"images/cube_2048/258/ba7cd70fcf75a1f87dc8ac9ee9bfb344/258_l.jpg\",\"right\":\"images/cube_2048/258/ba7cd70fcf75a1f87dc8ac9ee9bfb344/258_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/258/ba7cd70fcf75a1f87dc8ac9ee9bfb344/258_u.jpg\"},{\"back\":\"images/cube_2048/259/cd572535c7b44176a681f7799745873e/259_b.jpg\",\"derived_id\":1702360411,\"derived_id_str\":\"1702360411\",\"down\":\"images/cube_2048/259/cd572535c7b44176a681f7799745873e/259_d.jpg\",\"front\":\"images/cube_2048/259/cd572535c7b44176a681f7799745873e/259_f.jpg\",\"index\":259,\"left\":\"images/cube_2048/259/cd572535c7b44176a681f7799745873e/259_l.jpg\",\"right\":\"images/cube_2048/259/cd572535c7b44176a681f7799745873e/259_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/259/cd572535c7b44176a681f7799745873e/259_u.jpg\"},{\"back\":\"images/cube_2048/260/75a3d61a290b7a9e217080d17d5f903d/260_b.jpg\",\"derived_id\":1702360599,\"derived_id_str\":\"1702360599\",\"down\":\"images/cube_2048/260/75a3d61a290b7a9e217080d17d5f903d/260_d.jpg\",\"front\":\"images/cube_2048/260/75a3d61a290b7a9e217080d17d5f903d/260_f.jpg\",\"index\":260,\"left\":\"images/cube_2048/260/75a3d61a290b7a9e217080d17d5f903d/260_l.jpg\",\"right\":\"images/cube_2048/260/75a3d61a290b7a9e217080d17d5f903d/260_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/260/75a3d61a290b7a9e217080d17d5f903d/260_u.jpg\"},{\"back\":\"images/cube_2048/261/8212b3131e5868b39bed9612c2a7a764/261_b.jpg\",\"derived_id\":1702360674,\"derived_id_str\":\"1702360674\",\"down\":\"images/cube_2048/261/8212b3131e5868b39bed9612c2a7a764/261_d.jpg\",\"front\":\"images/cube_2048/261/8212b3131e5868b39bed9612c2a7a764/261_f.jpg\",\"index\":261,\"left\":\"images/cube_2048/261/8212b3131e5868b39bed9612c2a7a764/261_l.jpg\",\"right\":\"images/cube_2048/261/8212b3131e5868b39bed9612c2a7a764/261_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/261/8212b3131e5868b39bed9612c2a7a764/261_u.jpg\"},{\"back\":\"images/cube_2048/262/6d1a32cbe620e347e45a2c3afe84538d/262_b.jpg\",\"derived_id\":1702360801,\"derived_id_str\":\"1702360801\",\"down\":\"images/cube_2048/262/6d1a32cbe620e347e45a2c3afe84538d/262_d.jpg\",\"front\":\"images/cube_2048/262/6d1a32cbe620e347e45a2c3afe84538d/262_f.jpg\",\"index\":262,\"left\":\"images/cube_2048/262/6d1a32cbe620e347e45a2c3afe84538d/262_l.jpg\",\"right\":\"images/cube_2048/262/6d1a32cbe620e347e45a2c3afe84538d/262_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/262/6d1a32cbe620e347e45a2c3afe84538d/262_u.jpg\"},{\"back\":\"images/cube_2048/263/d169f7a3f9b1df5a2d16df49c3a0a19e/263_b.jpg\",\"derived_id\":1702360899,\"derived_id_str\":\"1702360899\",\"down\":\"images/cube_2048/263/d169f7a3f9b1df5a2d16df49c3a0a19e/263_d.jpg\",\"front\":\"images/cube_2048/263/d169f7a3f9b1df5a2d16df49c3a0a19e/263_f.jpg\",\"index\":263,\"left\":\"images/cube_2048/263/d169f7a3f9b1df5a2d16df49c3a0a19e/263_l.jpg\",\"right\":\"images/cube_2048/263/d169f7a3f9b1df5a2d16df49c3a0a19e/263_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/263/d169f7a3f9b1df5a2d16df49c3a0a19e/263_u.jpg\"},{\"back\":\"images/cube_2048/264/8ccfc43f22a3caaf15883d7fd883359c/264_b.jpg\",\"derived_id\":1702361154,\"derived_id_str\":\"1702361154\",\"down\":\"images/cube_2048/264/8ccfc43f22a3caaf15883d7fd883359c/264_d.jpg\",\"front\":\"images/cube_2048/264/8ccfc43f22a3caaf15883d7fd883359c/264_f.jpg\",\"index\":264,\"left\":\"images/cube_2048/264/8ccfc43f22a3caaf15883d7fd883359c/264_l.jpg\",\"right\":\"images/cube_2048/264/8ccfc43f22a3caaf15883d7fd883359c/264_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/264/8ccfc43f22a3caaf15883d7fd883359c/264_u.jpg\"},{\"back\":\"images/cube_2048/265/dee09fcba69aad37d34c334f0f5f3001/265_b.jpg\",\"derived_id\":1702361214,\"derived_id_str\":\"1702361214\",\"down\":\"images/cube_2048/265/dee09fcba69aad37d34c334f0f5f3001/265_d.jpg\",\"front\":\"images/cube_2048/265/dee09fcba69aad37d34c334f0f5f3001/265_f.jpg\",\"index\":265,\"left\":\"images/cube_2048/265/dee09fcba69aad37d34c334f0f5f3001/265_l.jpg\",\"right\":\"images/cube_2048/265/dee09fcba69aad37d34c334f0f5f3001/265_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/265/dee09fcba69aad37d34c334f0f5f3001/265_u.jpg\"},{\"back\":\"images/cube_2048/266/c41613d7412c3e99fc5e1be97a86624a/266_b.jpg\",\"derived_id\":1702361263,\"derived_id_str\":\"1702361263\",\"down\":\"images/cube_2048/266/c41613d7412c3e99fc5e1be97a86624a/266_d.jpg\",\"front\":\"images/cube_2048/266/c41613d7412c3e99fc5e1be97a86624a/266_f.jpg\",\"index\":266,\"left\":\"images/cube_2048/266/c41613d7412c3e99fc5e1be97a86624a/266_l.jpg\",\"right\":\"images/cube_2048/266/c41613d7412c3e99fc5e1be97a86624a/266_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/266/c41613d7412c3e99fc5e1be97a86624a/266_u.jpg\"},{\"back\":\"images/cube_2048/267/bdccdc88f8d93c3653128e30554530d6/267_b.jpg\",\"derived_id\":1702361369,\"derived_id_str\":\"1702361369\",\"down\":\"images/cube_2048/267/bdccdc88f8d93c3653128e30554530d6/267_d.jpg\",\"front\":\"images/cube_2048/267/bdccdc88f8d93c3653128e30554530d6/267_f.jpg\",\"index\":267,\"left\":\"images/cube_2048/267/bdccdc88f8d93c3653128e30554530d6/267_l.jpg\",\"right\":\"images/cube_2048/267/bdccdc88f8d93c3653128e30554530d6/267_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/267/bdccdc88f8d93c3653128e30554530d6/267_u.jpg\"},{\"back\":\"images/cube_2048/268/8f4ce7bdd81089880f4adb8e6b06ca97/268_b.jpg\",\"derived_id\":1702361657,\"derived_id_str\":\"1702361657\",\"down\":\"images/cube_2048/268/8f4ce7bdd81089880f4adb8e6b06ca97/268_d.jpg\",\"front\":\"images/cube_2048/268/8f4ce7bdd81089880f4adb8e6b06ca97/268_f.jpg\",\"index\":268,\"left\":\"images/cube_2048/268/8f4ce7bdd81089880f4adb8e6b06ca97/268_l.jpg\",\"right\":\"images/cube_2048/268/8f4ce7bdd81089880f4adb8e6b06ca97/268_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/268/8f4ce7bdd81089880f4adb8e6b06ca97/268_u.jpg\"},{\"back\":\"images/cube_2048/269/d7a3f3bc730338a2057adc8013f713d4/269_b.jpg\",\"derived_id\":1702361990,\"derived_id_str\":\"1702361990\",\"down\":\"images/cube_2048/269/d7a3f3bc730338a2057adc8013f713d4/269_d.jpg\",\"front\":\"images/cube_2048/269/d7a3f3bc730338a2057adc8013f713d4/269_f.jpg\",\"index\":269,\"left\":\"images/cube_2048/269/d7a3f3bc730338a2057adc8013f713d4/269_l.jpg\",\"right\":\"images/cube_2048/269/d7a3f3bc730338a2057adc8013f713d4/269_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/269/d7a3f3bc730338a2057adc8013f713d4/269_u.jpg\"},{\"back\":\"images/cube_2048/270/2d8224c8d0b3bd255dac444ef97847a5/270_b.jpg\",\"derived_id\":1702364796,\"derived_id_str\":\"1702364796\",\"down\":\"images/cube_2048/270/2d8224c8d0b3bd255dac444ef97847a5/270_d.jpg\",\"front\":\"images/cube_2048/270/2d8224c8d0b3bd255dac444ef97847a5/270_f.jpg\",\"index\":270,\"left\":\"images/cube_2048/270/2d8224c8d0b3bd255dac444ef97847a5/270_l.jpg\",\"right\":\"images/cube_2048/270/2d8224c8d0b3bd255dac444ef97847a5/270_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/270/2d8224c8d0b3bd255dac444ef97847a5/270_u.jpg\"},{\"back\":\"images/cube_2048/271/b3e75c3db0d9d2317717f07cacaa1860/271_b.jpg\",\"derived_id\":1702366377,\"derived_id_str\":\"1702366377\",\"down\":\"images/cube_2048/271/b3e75c3db0d9d2317717f07cacaa1860/271_d.jpg\",\"front\":\"images/cube_2048/271/b3e75c3db0d9d2317717f07cacaa1860/271_f.jpg\",\"index\":271,\"left\":\"images/cube_2048/271/b3e75c3db0d9d2317717f07cacaa1860/271_l.jpg\",\"right\":\"images/cube_2048/271/b3e75c3db0d9d2317717f07cacaa1860/271_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/271/b3e75c3db0d9d2317717f07cacaa1860/271_u.jpg\"},{\"back\":\"images/cube_2048/272/ed1ebaf5fddfd8172c7e9cd548e730ce/272_b.jpg\",\"derived_id\":1702366672,\"derived_id_str\":\"1702366672\",\"down\":\"images/cube_2048/272/ed1ebaf5fddfd8172c7e9cd548e730ce/272_d.jpg\",\"front\":\"images/cube_2048/272/ed1ebaf5fddfd8172c7e9cd548e730ce/272_f.jpg\",\"index\":272,\"left\":\"images/cube_2048/272/ed1ebaf5fddfd8172c7e9cd548e730ce/272_l.jpg\",\"right\":\"images/cube_2048/272/ed1ebaf5fddfd8172c7e9cd548e730ce/272_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/272/ed1ebaf5fddfd8172c7e9cd548e730ce/272_u.jpg\"},{\"back\":\"images/cube_2048/273/33e0fb5d446ad0f229dd0c811b5751e1/273_b.jpg\",\"derived_id\":1702366849,\"derived_id_str\":\"1702366849\",\"down\":\"images/cube_2048/273/33e0fb5d446ad0f229dd0c811b5751e1/273_d.jpg\",\"front\":\"images/cube_2048/273/33e0fb5d446ad0f229dd0c811b5751e1/273_f.jpg\",\"index\":273,\"left\":\"images/cube_2048/273/33e0fb5d446ad0f229dd0c811b5751e1/273_l.jpg\",\"right\":\"images/cube_2048/273/33e0fb5d446ad0f229dd0c811b5751e1/273_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/273/33e0fb5d446ad0f229dd0c811b5751e1/273_u.jpg\"},{\"back\":\"images/cube_2048/274/34ad8785f21ccc119e97f23c3143a51c/274_b.jpg\",\"derived_id\":1702366950,\"derived_id_str\":\"1702366950\",\"down\":\"images/cube_2048/274/34ad8785f21ccc119e97f23c3143a51c/274_d.jpg\",\"front\":\"images/cube_2048/274/34ad8785f21ccc119e97f23c3143a51c/274_f.jpg\",\"index\":274,\"left\":\"images/cube_2048/274/34ad8785f21ccc119e97f23c3143a51c/274_l.jpg\",\"right\":\"images/cube_2048/274/34ad8785f21ccc119e97f23c3143a51c/274_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/274/34ad8785f21ccc119e97f23c3143a51c/274_u.jpg\"},{\"back\":\"images/cube_2048/275/b248d1c172432043512706c3af41d14a/275_b.jpg\",\"derived_id\":1702367040,\"derived_id_str\":\"1702367040\",\"down\":\"images/cube_2048/275/b248d1c172432043512706c3af41d14a/275_d.jpg\",\"front\":\"images/cube_2048/275/b248d1c172432043512706c3af41d14a/275_f.jpg\",\"index\":275,\"left\":\"images/cube_2048/275/b248d1c172432043512706c3af41d14a/275_l.jpg\",\"right\":\"images/cube_2048/275/b248d1c172432043512706c3af41d14a/275_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/275/b248d1c172432043512706c3af41d14a/275_u.jpg\"},{\"back\":\"images/cube_2048/276/784f47cc38755c760a7152ea58e6abce/276_b.jpg\",\"derived_id\":1702367089,\"derived_id_str\":\"1702367089\",\"down\":\"images/cube_2048/276/784f47cc38755c760a7152ea58e6abce/276_d.jpg\",\"front\":\"images/cube_2048/276/784f47cc38755c760a7152ea58e6abce/276_f.jpg\",\"index\":276,\"left\":\"images/cube_2048/276/784f47cc38755c760a7152ea58e6abce/276_l.jpg\",\"right\":\"images/cube_2048/276/784f47cc38755c760a7152ea58e6abce/276_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/276/784f47cc38755c760a7152ea58e6abce/276_u.jpg\"},{\"back\":\"images/cube_2048/277/9ef3a03e7731469cd6128db27789a661/277_b.jpg\",\"derived_id\":1702367145,\"derived_id_str\":\"1702367145\",\"down\":\"images/cube_2048/277/9ef3a03e7731469cd6128db27789a661/277_d.jpg\",\"front\":\"images/cube_2048/277/9ef3a03e7731469cd6128db27789a661/277_f.jpg\",\"index\":277,\"left\":\"images/cube_2048/277/9ef3a03e7731469cd6128db27789a661/277_l.jpg\",\"right\":\"images/cube_2048/277/9ef3a03e7731469cd6128db27789a661/277_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/277/9ef3a03e7731469cd6128db27789a661/277_u.jpg\"},{\"back\":\"images/cube_2048/278/4d51fde5773b9ce831788ef7ca35d4f8/278_b.jpg\",\"derived_id\":1702367211,\"derived_id_str\":\"1702367211\",\"down\":\"images/cube_2048/278/4d51fde5773b9ce831788ef7ca35d4f8/278_d.jpg\",\"front\":\"images/cube_2048/278/4d51fde5773b9ce831788ef7ca35d4f8/278_f.jpg\",\"index\":278,\"left\":\"images/cube_2048/278/4d51fde5773b9ce831788ef7ca35d4f8/278_l.jpg\",\"right\":\"images/cube_2048/278/4d51fde5773b9ce831788ef7ca35d4f8/278_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/278/4d51fde5773b9ce831788ef7ca35d4f8/278_u.jpg\"},{\"back\":\"images/cube_2048/279/f8ff49136acd76f9f43f2c09b35f49a3/279_b.jpg\",\"derived_id\":1702367272,\"derived_id_str\":\"1702367272\",\"down\":\"images/cube_2048/279/f8ff49136acd76f9f43f2c09b35f49a3/279_d.jpg\",\"front\":\"images/cube_2048/279/f8ff49136acd76f9f43f2c09b35f49a3/279_f.jpg\",\"index\":279,\"left\":\"images/cube_2048/279/f8ff49136acd76f9f43f2c09b35f49a3/279_l.jpg\",\"right\":\"images/cube_2048/279/f8ff49136acd76f9f43f2c09b35f49a3/279_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/279/f8ff49136acd76f9f43f2c09b35f49a3/279_u.jpg\"},{\"back\":\"images/cube_2048/280/dbacdb10b89953171f717b2813d6d1dd/280_b.jpg\",\"derived_id\":1702367332,\"derived_id_str\":\"1702367332\",\"down\":\"images/cube_2048/280/dbacdb10b89953171f717b2813d6d1dd/280_d.jpg\",\"front\":\"images/cube_2048/280/dbacdb10b89953171f717b2813d6d1dd/280_f.jpg\",\"index\":280,\"left\":\"images/cube_2048/280/dbacdb10b89953171f717b2813d6d1dd/280_l.jpg\",\"right\":\"images/cube_2048/280/dbacdb10b89953171f717b2813d6d1dd/280_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/280/dbacdb10b89953171f717b2813d6d1dd/280_u.jpg\"},{\"back\":\"images/cube_2048/281/6002650fbfe4eda84229dbac8a24e0c4/281_b.jpg\",\"derived_id\":1702367408,\"derived_id_str\":\"1702367408\",\"down\":\"images/cube_2048/281/6002650fbfe4eda84229dbac8a24e0c4/281_d.jpg\",\"front\":\"images/cube_2048/281/6002650fbfe4eda84229dbac8a24e0c4/281_f.jpg\",\"index\":281,\"left\":\"images/cube_2048/281/6002650fbfe4eda84229dbac8a24e0c4/281_l.jpg\",\"right\":\"images/cube_2048/281/6002650fbfe4eda84229dbac8a24e0c4/281_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/281/6002650fbfe4eda84229dbac8a24e0c4/281_u.jpg\"},{\"back\":\"images/cube_2048/282/697c7cd9425b98fe2d7807b9dbe1bddd/282_b.jpg\",\"derived_id\":1702367459,\"derived_id_str\":\"1702367459\",\"down\":\"images/cube_2048/282/697c7cd9425b98fe2d7807b9dbe1bddd/282_d.jpg\",\"front\":\"images/cube_2048/282/697c7cd9425b98fe2d7807b9dbe1bddd/282_f.jpg\",\"index\":282,\"left\":\"images/cube_2048/282/697c7cd9425b98fe2d7807b9dbe1bddd/282_l.jpg\",\"right\":\"images/cube_2048/282/697c7cd9425b98fe2d7807b9dbe1bddd/282_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/282/697c7cd9425b98fe2d7807b9dbe1bddd/282_u.jpg\"},{\"back\":\"images/cube_2048/283/3d8b911ca57ba26fc02c540d660fae81/283_b.jpg\",\"derived_id\":1702367527,\"derived_id_str\":\"1702367527\",\"down\":\"images/cube_2048/283/3d8b911ca57ba26fc02c540d660fae81/283_d.jpg\",\"front\":\"images/cube_2048/283/3d8b911ca57ba26fc02c540d660fae81/283_f.jpg\",\"index\":283,\"left\":\"images/cube_2048/283/3d8b911ca57ba26fc02c540d660fae81/283_l.jpg\",\"right\":\"images/cube_2048/283/3d8b911ca57ba26fc02c540d660fae81/283_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/283/3d8b911ca57ba26fc02c540d660fae81/283_u.jpg\"},{\"back\":\"images/cube_2048/284/1143a74e4edd94cdf991ce1b63f1d49f/284_b.jpg\",\"derived_id\":1702367606,\"derived_id_str\":\"1702367606\",\"down\":\"images/cube_2048/284/1143a74e4edd94cdf991ce1b63f1d49f/284_d.jpg\",\"front\":\"images/cube_2048/284/1143a74e4edd94cdf991ce1b63f1d49f/284_f.jpg\",\"index\":284,\"left\":\"images/cube_2048/284/1143a74e4edd94cdf991ce1b63f1d49f/284_l.jpg\",\"right\":\"images/cube_2048/284/1143a74e4edd94cdf991ce1b63f1d49f/284_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/284/1143a74e4edd94cdf991ce1b63f1d49f/284_u.jpg\"},{\"back\":\"images/cube_2048/285/9ffd453e9a5892cd6d2ff86560e30366/285_b.jpg\",\"derived_id\":1702367669,\"derived_id_str\":\"1702367669\",\"down\":\"images/cube_2048/285/9ffd453e9a5892cd6d2ff86560e30366/285_d.jpg\",\"front\":\"images/cube_2048/285/9ffd453e9a5892cd6d2ff86560e30366/285_f.jpg\",\"index\":285,\"left\":\"images/cube_2048/285/9ffd453e9a5892cd6d2ff86560e30366/285_l.jpg\",\"right\":\"images/cube_2048/285/9ffd453e9a5892cd6d2ff86560e30366/285_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/285/9ffd453e9a5892cd6d2ff86560e30366/285_u.jpg\"},{\"back\":\"images/cube_2048/286/e8eb6e3d11b00dc240cdba08acc3dcb6/286_b.jpg\",\"derived_id\":1702367805,\"derived_id_str\":\"1702367805\",\"down\":\"images/cube_2048/286/e8eb6e3d11b00dc240cdba08acc3dcb6/286_d.jpg\",\"front\":\"images/cube_2048/286/e8eb6e3d11b00dc240cdba08acc3dcb6/286_f.jpg\",\"index\":286,\"left\":\"images/cube_2048/286/e8eb6e3d11b00dc240cdba08acc3dcb6/286_l.jpg\",\"right\":\"images/cube_2048/286/e8eb6e3d11b00dc240cdba08acc3dcb6/286_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/286/e8eb6e3d11b00dc240cdba08acc3dcb6/286_u.jpg\"},{\"back\":\"images/cube_2048/287/70d6fcfba162cf2d60b4296a1d4c3525/287_b.jpg\",\"derived_id\":1702367863,\"derived_id_str\":\"1702367863\",\"down\":\"images/cube_2048/287/70d6fcfba162cf2d60b4296a1d4c3525/287_d.jpg\",\"front\":\"images/cube_2048/287/70d6fcfba162cf2d60b4296a1d4c3525/287_f.jpg\",\"index\":287,\"left\":\"images/cube_2048/287/70d6fcfba162cf2d60b4296a1d4c3525/287_l.jpg\",\"right\":\"images/cube_2048/287/70d6fcfba162cf2d60b4296a1d4c3525/287_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/287/70d6fcfba162cf2d60b4296a1d4c3525/287_u.jpg\"},{\"back\":\"images/cube_2048/288/4355fffd8b3ec9c6be5407ff13f88d80/288_b.jpg\",\"derived_id\":1702367967,\"derived_id_str\":\"1702367967\",\"down\":\"images/cube_2048/288/4355fffd8b3ec9c6be5407ff13f88d80/288_d.jpg\",\"front\":\"images/cube_2048/288/4355fffd8b3ec9c6be5407ff13f88d80/288_f.jpg\",\"index\":288,\"left\":\"images/cube_2048/288/4355fffd8b3ec9c6be5407ff13f88d80/288_l.jpg\",\"right\":\"images/cube_2048/288/4355fffd8b3ec9c6be5407ff13f88d80/288_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/288/4355fffd8b3ec9c6be5407ff13f88d80/288_u.jpg\"},{\"back\":\"images/cube_2048/289/fab222c33c4055afdb3e223765d5aec7/289_b.jpg\",\"derived_id\":1702368028,\"derived_id_str\":\"1702368028\",\"down\":\"images/cube_2048/289/fab222c33c4055afdb3e223765d5aec7/289_d.jpg\",\"front\":\"images/cube_2048/289/fab222c33c4055afdb3e223765d5aec7/289_f.jpg\",\"index\":289,\"left\":\"images/cube_2048/289/fab222c33c4055afdb3e223765d5aec7/289_l.jpg\",\"right\":\"images/cube_2048/289/fab222c33c4055afdb3e223765d5aec7/289_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/289/fab222c33c4055afdb3e223765d5aec7/289_u.jpg\"},{\"back\":\"images/cube_2048/290/8b47670321abf3ae5e4e69d085d88d26/290_b.jpg\",\"derived_id\":1702368189,\"derived_id_str\":\"1702368189\",\"down\":\"images/cube_2048/290/8b47670321abf3ae5e4e69d085d88d26/290_d.jpg\",\"front\":\"images/cube_2048/290/8b47670321abf3ae5e4e69d085d88d26/290_f.jpg\",\"index\":290,\"left\":\"images/cube_2048/290/8b47670321abf3ae5e4e69d085d88d26/290_l.jpg\",\"right\":\"images/cube_2048/290/8b47670321abf3ae5e4e69d085d88d26/290_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/290/8b47670321abf3ae5e4e69d085d88d26/290_u.jpg\"},{\"back\":\"images/cube_2048/291/b5bdc447fd23c6a0bce05a6f7f9f2a90/291_b.jpg\",\"derived_id\":1702369094,\"derived_id_str\":\"1702369094\",\"down\":\"images/cube_2048/291/b5bdc447fd23c6a0bce05a6f7f9f2a90/291_d.jpg\",\"front\":\"images/cube_2048/291/b5bdc447fd23c6a0bce05a6f7f9f2a90/291_f.jpg\",\"index\":291,\"left\":\"images/cube_2048/291/b5bdc447fd23c6a0bce05a6f7f9f2a90/291_l.jpg\",\"right\":\"images/cube_2048/291/b5bdc447fd23c6a0bce05a6f7f9f2a90/291_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/291/b5bdc447fd23c6a0bce05a6f7f9f2a90/291_u.jpg\"},{\"back\":\"images/cube_2048/292/638f0d1d9d232c1ce9b1cb0a22f21489/292_b.jpg\",\"derived_id\":1702369352,\"derived_id_str\":\"1702369352\",\"down\":\"images/cube_2048/292/638f0d1d9d232c1ce9b1cb0a22f21489/292_d.jpg\",\"front\":\"images/cube_2048/292/638f0d1d9d232c1ce9b1cb0a22f21489/292_f.jpg\",\"index\":292,\"left\":\"images/cube_2048/292/638f0d1d9d232c1ce9b1cb0a22f21489/292_l.jpg\",\"right\":\"images/cube_2048/292/638f0d1d9d232c1ce9b1cb0a22f21489/292_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/292/638f0d1d9d232c1ce9b1cb0a22f21489/292_u.jpg\"},{\"back\":\"images/cube_2048/293/00055e84c11401df2530412d043b105c/293_b.jpg\",\"derived_id\":1702369415,\"derived_id_str\":\"1702369415\",\"down\":\"images/cube_2048/293/00055e84c11401df2530412d043b105c/293_d.jpg\",\"front\":\"images/cube_2048/293/00055e84c11401df2530412d043b105c/293_f.jpg\",\"index\":293,\"left\":\"images/cube_2048/293/00055e84c11401df2530412d043b105c/293_l.jpg\",\"right\":\"images/cube_2048/293/00055e84c11401df2530412d043b105c/293_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/293/00055e84c11401df2530412d043b105c/293_u.jpg\"},{\"back\":\"images/cube_2048/294/090e4d4892e6afac656569adc6af72d1/294_b.jpg\",\"derived_id\":1702369472,\"derived_id_str\":\"1702369472\",\"down\":\"images/cube_2048/294/090e4d4892e6afac656569adc6af72d1/294_d.jpg\",\"front\":\"images/cube_2048/294/090e4d4892e6afac656569adc6af72d1/294_f.jpg\",\"index\":294,\"left\":\"images/cube_2048/294/090e4d4892e6afac656569adc6af72d1/294_l.jpg\",\"right\":\"images/cube_2048/294/090e4d4892e6afac656569adc6af72d1/294_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/294/090e4d4892e6afac656569adc6af72d1/294_u.jpg\"},{\"back\":\"images/cube_2048/295/7385ff0be490796a40a98eec1852d506/295_b.jpg\",\"derived_id\":1702369596,\"derived_id_str\":\"1702369596\",\"down\":\"images/cube_2048/295/7385ff0be490796a40a98eec1852d506/295_d.jpg\",\"front\":\"images/cube_2048/295/7385ff0be490796a40a98eec1852d506/295_f.jpg\",\"index\":295,\"left\":\"images/cube_2048/295/7385ff0be490796a40a98eec1852d506/295_l.jpg\",\"right\":\"images/cube_2048/295/7385ff0be490796a40a98eec1852d506/295_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/295/7385ff0be490796a40a98eec1852d506/295_u.jpg\"},{\"back\":\"images/cube_2048/296/114d47c1fa5e0421c747683af733b142/296_b.jpg\",\"derived_id\":1702369673,\"derived_id_str\":\"1702369673\",\"down\":\"images/cube_2048/296/114d47c1fa5e0421c747683af733b142/296_d.jpg\",\"front\":\"images/cube_2048/296/114d47c1fa5e0421c747683af733b142/296_f.jpg\",\"index\":296,\"left\":\"images/cube_2048/296/114d47c1fa5e0421c747683af733b142/296_l.jpg\",\"right\":\"images/cube_2048/296/114d47c1fa5e0421c747683af733b142/296_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/296/114d47c1fa5e0421c747683af733b142/296_u.jpg\"},{\"back\":\"images/cube_2048/297/57059141c3d44cae1c67c692c830a09f/297_b.jpg\",\"derived_id\":1702369750,\"derived_id_str\":\"1702369750\",\"down\":\"images/cube_2048/297/57059141c3d44cae1c67c692c830a09f/297_d.jpg\",\"front\":\"images/cube_2048/297/57059141c3d44cae1c67c692c830a09f/297_f.jpg\",\"index\":297,\"left\":\"images/cube_2048/297/57059141c3d44cae1c67c692c830a09f/297_l.jpg\",\"right\":\"images/cube_2048/297/57059141c3d44cae1c67c692c830a09f/297_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/297/57059141c3d44cae1c67c692c830a09f/297_u.jpg\"},{\"back\":\"images/cube_2048/298/2e7fc2e54971fd59bb92b92b87450670/298_b.jpg\",\"derived_id\":1702369820,\"derived_id_str\":\"1702369820\",\"down\":\"images/cube_2048/298/2e7fc2e54971fd59bb92b92b87450670/298_d.jpg\",\"front\":\"images/cube_2048/298/2e7fc2e54971fd59bb92b92b87450670/298_f.jpg\",\"index\":298,\"left\":\"images/cube_2048/298/2e7fc2e54971fd59bb92b92b87450670/298_l.jpg\",\"right\":\"images/cube_2048/298/2e7fc2e54971fd59bb92b92b87450670/298_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/298/2e7fc2e54971fd59bb92b92b87450670/298_u.jpg\"},{\"back\":\"images/cube_2048/299/2c24e33f67738fdfd224d4e5ccf6ce09/299_b.jpg\",\"derived_id\":1702369891,\"derived_id_str\":\"1702369891\",\"down\":\"images/cube_2048/299/2c24e33f67738fdfd224d4e5ccf6ce09/299_d.jpg\",\"front\":\"images/cube_2048/299/2c24e33f67738fdfd224d4e5ccf6ce09/299_f.jpg\",\"index\":299,\"left\":\"images/cube_2048/299/2c24e33f67738fdfd224d4e5ccf6ce09/299_l.jpg\",\"right\":\"images/cube_2048/299/2c24e33f67738fdfd224d4e5ccf6ce09/299_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/299/2c24e33f67738fdfd224d4e5ccf6ce09/299_u.jpg\"},{\"back\":\"images/cube_2048/300/eebf5afa3546565b545a332783753862/300_b.jpg\",\"derived_id\":1702369957,\"derived_id_str\":\"1702369957\",\"down\":\"images/cube_2048/300/eebf5afa3546565b545a332783753862/300_d.jpg\",\"front\":\"images/cube_2048/300/eebf5afa3546565b545a332783753862/300_f.jpg\",\"index\":300,\"left\":\"images/cube_2048/300/eebf5afa3546565b545a332783753862/300_l.jpg\",\"right\":\"images/cube_2048/300/eebf5afa3546565b545a332783753862/300_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/300/eebf5afa3546565b545a332783753862/300_u.jpg\"},{\"back\":\"images/cube_2048/301/fc687d693b74a2f5ff31976aafa7deee/301_b.jpg\",\"derived_id\":1702370018,\"derived_id_str\":\"1702370018\",\"down\":\"images/cube_2048/301/fc687d693b74a2f5ff31976aafa7deee/301_d.jpg\",\"front\":\"images/cube_2048/301/fc687d693b74a2f5ff31976aafa7deee/301_f.jpg\",\"index\":301,\"left\":\"images/cube_2048/301/fc687d693b74a2f5ff31976aafa7deee/301_l.jpg\",\"right\":\"images/cube_2048/301/fc687d693b74a2f5ff31976aafa7deee/301_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/301/fc687d693b74a2f5ff31976aafa7deee/301_u.jpg\"},{\"back\":\"images/cube_2048/302/877dba288e50740eb0de1bae04635ac5/302_b.jpg\",\"derived_id\":1702372328,\"derived_id_str\":\"1702372328\",\"down\":\"images/cube_2048/302/877dba288e50740eb0de1bae04635ac5/302_d.jpg\",\"front\":\"images/cube_2048/302/877dba288e50740eb0de1bae04635ac5/302_f.jpg\",\"index\":302,\"left\":\"images/cube_2048/302/877dba288e50740eb0de1bae04635ac5/302_l.jpg\",\"right\":\"images/cube_2048/302/877dba288e50740eb0de1bae04635ac5/302_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/302/877dba288e50740eb0de1bae04635ac5/302_u.jpg\"},{\"back\":\"images/cube_2048/303/6ec5163d9ecd2193718217979a3e765e/303_b.jpg\",\"derived_id\":1702373474,\"derived_id_str\":\"1702373474\",\"down\":\"images/cube_2048/303/6ec5163d9ecd2193718217979a3e765e/303_d.jpg\",\"front\":\"images/cube_2048/303/6ec5163d9ecd2193718217979a3e765e/303_f.jpg\",\"index\":303,\"left\":\"images/cube_2048/303/6ec5163d9ecd2193718217979a3e765e/303_l.jpg\",\"right\":\"images/cube_2048/303/6ec5163d9ecd2193718217979a3e765e/303_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/303/6ec5163d9ecd2193718217979a3e765e/303_u.jpg\"},{\"back\":\"images/cube_2048/304/7b44a1f82e87151e1499c0a88486cf57/304_b.jpg\",\"derived_id\":1702374774,\"derived_id_str\":\"1702374774\",\"down\":\"images/cube_2048/304/7b44a1f82e87151e1499c0a88486cf57/304_d.jpg\",\"front\":\"images/cube_2048/304/7b44a1f82e87151e1499c0a88486cf57/304_f.jpg\",\"index\":304,\"left\":\"images/cube_2048/304/7b44a1f82e87151e1499c0a88486cf57/304_l.jpg\",\"right\":\"images/cube_2048/304/7b44a1f82e87151e1499c0a88486cf57/304_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/304/7b44a1f82e87151e1499c0a88486cf57/304_u.jpg\"},{\"back\":\"images/cube_2048/305/404a4c39699065d5c396e0b8ac169543/305_b.jpg\",\"derived_id\":1702376001,\"derived_id_str\":\"1702376001\",\"down\":\"images/cube_2048/305/404a4c39699065d5c396e0b8ac169543/305_d.jpg\",\"front\":\"images/cube_2048/305/404a4c39699065d5c396e0b8ac169543/305_f.jpg\",\"index\":305,\"left\":\"images/cube_2048/305/404a4c39699065d5c396e0b8ac169543/305_l.jpg\",\"right\":\"images/cube_2048/305/404a4c39699065d5c396e0b8ac169543/305_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/305/404a4c39699065d5c396e0b8ac169543/305_u.jpg\"},{\"back\":\"images/cube_2048/306/41a03f7d1af05a197826cc0b87b7a43b/306_b.jpg\",\"derived_id\":1702377216,\"derived_id_str\":\"1702377216\",\"down\":\"images/cube_2048/306/41a03f7d1af05a197826cc0b87b7a43b/306_d.jpg\",\"front\":\"images/cube_2048/306/41a03f7d1af05a197826cc0b87b7a43b/306_f.jpg\",\"index\":306,\"left\":\"images/cube_2048/306/41a03f7d1af05a197826cc0b87b7a43b/306_l.jpg\",\"right\":\"images/cube_2048/306/41a03f7d1af05a197826cc0b87b7a43b/306_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/306/41a03f7d1af05a197826cc0b87b7a43b/306_u.jpg\"},{\"back\":\"images/cube_2048/307/d6df04b961b2d2117041789c055c8f30/307_b.jpg\",\"derived_id\":1702378215,\"derived_id_str\":\"1702378215\",\"down\":\"images/cube_2048/307/d6df04b961b2d2117041789c055c8f30/307_d.jpg\",\"front\":\"images/cube_2048/307/d6df04b961b2d2117041789c055c8f30/307_f.jpg\",\"index\":307,\"left\":\"images/cube_2048/307/d6df04b961b2d2117041789c055c8f30/307_l.jpg\",\"right\":\"images/cube_2048/307/d6df04b961b2d2117041789c055c8f30/307_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/307/d6df04b961b2d2117041789c055c8f30/307_u.jpg\"},{\"back\":\"images/cube_2048/308/e7d89a0f9377f766986b4cf6cee570ed/308_b.jpg\",\"derived_id\":1702378965,\"derived_id_str\":\"1702378965\",\"down\":\"images/cube_2048/308/e7d89a0f9377f766986b4cf6cee570ed/308_d.jpg\",\"front\":\"images/cube_2048/308/e7d89a0f9377f766986b4cf6cee570ed/308_f.jpg\",\"index\":308,\"left\":\"images/cube_2048/308/e7d89a0f9377f766986b4cf6cee570ed/308_l.jpg\",\"right\":\"images/cube_2048/308/e7d89a0f9377f766986b4cf6cee570ed/308_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/308/e7d89a0f9377f766986b4cf6cee570ed/308_u.jpg\"},{\"back\":\"images/cube_2048/309/91d87593dac47cbd09f2c811184cdeff/309_b.jpg\",\"derived_id\":1702431567,\"derived_id_str\":\"1702431567\",\"down\":\"images/cube_2048/309/91d87593dac47cbd09f2c811184cdeff/309_d.jpg\",\"front\":\"images/cube_2048/309/91d87593dac47cbd09f2c811184cdeff/309_f.jpg\",\"index\":309,\"left\":\"images/cube_2048/309/91d87593dac47cbd09f2c811184cdeff/309_l.jpg\",\"right\":\"images/cube_2048/309/91d87593dac47cbd09f2c811184cdeff/309_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/309/91d87593dac47cbd09f2c811184cdeff/309_u.jpg\"},{\"back\":\"images/cube_2048/310/edb02ea6dad87465fb1a6b1492ea488d/310_b.jpg\",\"derived_id\":1702431734,\"derived_id_str\":\"1702431734\",\"down\":\"images/cube_2048/310/edb02ea6dad87465fb1a6b1492ea488d/310_d.jpg\",\"front\":\"images/cube_2048/310/edb02ea6dad87465fb1a6b1492ea488d/310_f.jpg\",\"index\":310,\"left\":\"images/cube_2048/310/edb02ea6dad87465fb1a6b1492ea488d/310_l.jpg\",\"right\":\"images/cube_2048/310/edb02ea6dad87465fb1a6b1492ea488d/310_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/310/edb02ea6dad87465fb1a6b1492ea488d/310_u.jpg\"},{\"back\":\"images/cube_2048/311/10dc9657352720c6e97c486b61d24856/311_b.jpg\",\"derived_id\":1702431794,\"derived_id_str\":\"1702431794\",\"down\":\"images/cube_2048/311/10dc9657352720c6e97c486b61d24856/311_d.jpg\",\"front\":\"images/cube_2048/311/10dc9657352720c6e97c486b61d24856/311_f.jpg\",\"index\":311,\"left\":\"images/cube_2048/311/10dc9657352720c6e97c486b61d24856/311_l.jpg\",\"right\":\"images/cube_2048/311/10dc9657352720c6e97c486b61d24856/311_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/311/10dc9657352720c6e97c486b61d24856/311_u.jpg\"},{\"back\":\"images/cube_2048/312/f7e6ff27290a033ded2d167f73848cab/312_b.jpg\",\"derived_id\":1702431855,\"derived_id_str\":\"1702431855\",\"down\":\"images/cube_2048/312/f7e6ff27290a033ded2d167f73848cab/312_d.jpg\",\"front\":\"images/cube_2048/312/f7e6ff27290a033ded2d167f73848cab/312_f.jpg\",\"index\":312,\"left\":\"images/cube_2048/312/f7e6ff27290a033ded2d167f73848cab/312_l.jpg\",\"right\":\"images/cube_2048/312/f7e6ff27290a033ded2d167f73848cab/312_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/312/f7e6ff27290a033ded2d167f73848cab/312_u.jpg\"},{\"back\":\"images/cube_2048/313/3117d312bf06c28d0e97717868da5407/313_b.jpg\",\"derived_id\":1702431904,\"derived_id_str\":\"1702431904\",\"down\":\"images/cube_2048/313/3117d312bf06c28d0e97717868da5407/313_d.jpg\",\"front\":\"images/cube_2048/313/3117d312bf06c28d0e97717868da5407/313_f.jpg\",\"index\":313,\"left\":\"images/cube_2048/313/3117d312bf06c28d0e97717868da5407/313_l.jpg\",\"right\":\"images/cube_2048/313/3117d312bf06c28d0e97717868da5407/313_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/313/3117d312bf06c28d0e97717868da5407/313_u.jpg\"},{\"back\":\"images/cube_2048/314/38b8b494d6dc8ba8a17760a8e2858bb3/314_b.jpg\",\"derived_id\":1702431959,\"derived_id_str\":\"1702431959\",\"down\":\"images/cube_2048/314/38b8b494d6dc8ba8a17760a8e2858bb3/314_d.jpg\",\"front\":\"images/cube_2048/314/38b8b494d6dc8ba8a17760a8e2858bb3/314_f.jpg\",\"index\":314,\"left\":\"images/cube_2048/314/38b8b494d6dc8ba8a17760a8e2858bb3/314_l.jpg\",\"right\":\"images/cube_2048/314/38b8b494d6dc8ba8a17760a8e2858bb3/314_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/314/38b8b494d6dc8ba8a17760a8e2858bb3/314_u.jpg\"},{\"back\":\"images/cube_2048/315/e2d669f14b13f5792c92adbd6e421f70/315_b.jpg\",\"derived_id\":1702432045,\"derived_id_str\":\"1702432045\",\"down\":\"images/cube_2048/315/e2d669f14b13f5792c92adbd6e421f70/315_d.jpg\",\"front\":\"images/cube_2048/315/e2d669f14b13f5792c92adbd6e421f70/315_f.jpg\",\"index\":315,\"left\":\"images/cube_2048/315/e2d669f14b13f5792c92adbd6e421f70/315_l.jpg\",\"right\":\"images/cube_2048/315/e2d669f14b13f5792c92adbd6e421f70/315_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/315/e2d669f14b13f5792c92adbd6e421f70/315_u.jpg\"},{\"back\":\"images/cube_2048/316/ac353a09f83b746e19e75d113581c069/316_b.jpg\",\"derived_id\":1702432112,\"derived_id_str\":\"1702432112\",\"down\":\"images/cube_2048/316/ac353a09f83b746e19e75d113581c069/316_d.jpg\",\"front\":\"images/cube_2048/316/ac353a09f83b746e19e75d113581c069/316_f.jpg\",\"index\":316,\"left\":\"images/cube_2048/316/ac353a09f83b746e19e75d113581c069/316_l.jpg\",\"right\":\"images/cube_2048/316/ac353a09f83b746e19e75d113581c069/316_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/316/ac353a09f83b746e19e75d113581c069/316_u.jpg\"},{\"back\":\"images/cube_2048/317/6f32e65aa547aae22ecffa06519c0879/317_b.jpg\",\"derived_id\":1702432332,\"derived_id_str\":\"1702432332\",\"down\":\"images/cube_2048/317/6f32e65aa547aae22ecffa06519c0879/317_d.jpg\",\"front\":\"images/cube_2048/317/6f32e65aa547aae22ecffa06519c0879/317_f.jpg\",\"index\":317,\"left\":\"images/cube_2048/317/6f32e65aa547aae22ecffa06519c0879/317_l.jpg\",\"right\":\"images/cube_2048/317/6f32e65aa547aae22ecffa06519c0879/317_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/317/6f32e65aa547aae22ecffa06519c0879/317_u.jpg\"},{\"back\":\"images/cube_2048/318/f7562cbdc1c9a8d7b5920f7c23c62a59/318_b.jpg\",\"derived_id\":1702434189,\"derived_id_str\":\"1702434189\",\"down\":\"images/cube_2048/318/f7562cbdc1c9a8d7b5920f7c23c62a59/318_d.jpg\",\"front\":\"images/cube_2048/318/f7562cbdc1c9a8d7b5920f7c23c62a59/318_f.jpg\",\"index\":318,\"left\":\"images/cube_2048/318/f7562cbdc1c9a8d7b5920f7c23c62a59/318_l.jpg\",\"right\":\"images/cube_2048/318/f7562cbdc1c9a8d7b5920f7c23c62a59/318_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/318/f7562cbdc1c9a8d7b5920f7c23c62a59/318_u.jpg\"},{\"back\":\"images/cube_2048/319/970bec4ee8df18311f9d2bc932333a4a/319_b.jpg\",\"derived_id\":1702439326,\"derived_id_str\":\"1702439326\",\"down\":\"images/cube_2048/319/970bec4ee8df18311f9d2bc932333a4a/319_d.jpg\",\"front\":\"images/cube_2048/319/970bec4ee8df18311f9d2bc932333a4a/319_f.jpg\",\"index\":319,\"left\":\"images/cube_2048/319/970bec4ee8df18311f9d2bc932333a4a/319_l.jpg\",\"right\":\"images/cube_2048/319/970bec4ee8df18311f9d2bc932333a4a/319_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/319/970bec4ee8df18311f9d2bc932333a4a/319_u.jpg\"},{\"back\":\"images/cube_2048/320/3092fd2e60851429f479a70fedf2bd68/320_b.jpg\",\"derived_id\":1702440437,\"derived_id_str\":\"1702440437\",\"down\":\"images/cube_2048/320/3092fd2e60851429f479a70fedf2bd68/320_d.jpg\",\"front\":\"images/cube_2048/320/3092fd2e60851429f479a70fedf2bd68/320_f.jpg\",\"index\":320,\"left\":\"images/cube_2048/320/3092fd2e60851429f479a70fedf2bd68/320_l.jpg\",\"right\":\"images/cube_2048/320/3092fd2e60851429f479a70fedf2bd68/320_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/320/3092fd2e60851429f479a70fedf2bd68/320_u.jpg\"},{\"back\":\"images/cube_2048/321/570fa6f7699be354d98cd8769af6530c/321_b.jpg\",\"derived_id\":1702441405,\"derived_id_str\":\"1702441405\",\"down\":\"images/cube_2048/321/570fa6f7699be354d98cd8769af6530c/321_d.jpg\",\"front\":\"images/cube_2048/321/570fa6f7699be354d98cd8769af6530c/321_f.jpg\",\"index\":321,\"left\":\"images/cube_2048/321/570fa6f7699be354d98cd8769af6530c/321_l.jpg\",\"right\":\"images/cube_2048/321/570fa6f7699be354d98cd8769af6530c/321_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/321/570fa6f7699be354d98cd8769af6530c/321_u.jpg\"},{\"back\":\"images/cube_2048/322/bd5bc4c95bf24e33ef88ee49d01954af/322_b.jpg\",\"derived_id\":1702442801,\"derived_id_str\":\"1702442801\",\"down\":\"images/cube_2048/322/bd5bc4c95bf24e33ef88ee49d01954af/322_d.jpg\",\"front\":\"images/cube_2048/322/bd5bc4c95bf24e33ef88ee49d01954af/322_f.jpg\",\"index\":322,\"left\":\"images/cube_2048/322/bd5bc4c95bf24e33ef88ee49d01954af/322_l.jpg\",\"right\":\"images/cube_2048/322/bd5bc4c95bf24e33ef88ee49d01954af/322_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/322/bd5bc4c95bf24e33ef88ee49d01954af/322_u.jpg\"},{\"back\":\"images/cube_2048/323/b93a56624346ab63564778f78821462c/323_b.jpg\",\"derived_id\":1702443662,\"derived_id_str\":\"1702443662\",\"down\":\"images/cube_2048/323/b93a56624346ab63564778f78821462c/323_d.jpg\",\"front\":\"images/cube_2048/323/b93a56624346ab63564778f78821462c/323_f.jpg\",\"index\":323,\"left\":\"images/cube_2048/323/b93a56624346ab63564778f78821462c/323_l.jpg\",\"right\":\"images/cube_2048/323/b93a56624346ab63564778f78821462c/323_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/323/b93a56624346ab63564778f78821462c/323_u.jpg\"},{\"back\":\"images/cube_2048/324/8f8e995c356b4e8a4bcf3c122d172af6/324_b.jpg\",\"derived_id\":1702444630,\"derived_id_str\":\"1702444630\",\"down\":\"images/cube_2048/324/8f8e995c356b4e8a4bcf3c122d172af6/324_d.jpg\",\"front\":\"images/cube_2048/324/8f8e995c356b4e8a4bcf3c122d172af6/324_f.jpg\",\"index\":324,\"left\":\"images/cube_2048/324/8f8e995c356b4e8a4bcf3c122d172af6/324_l.jpg\",\"right\":\"images/cube_2048/324/8f8e995c356b4e8a4bcf3c122d172af6/324_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/324/8f8e995c356b4e8a4bcf3c122d172af6/324_u.jpg\"},{\"back\":\"images/cube_2048/325/0dd23dc56ffe4c41bd24af56ba6bfc2b/325_b.jpg\",\"derived_id\":1702444724,\"derived_id_str\":\"1702444724\",\"down\":\"images/cube_2048/325/0dd23dc56ffe4c41bd24af56ba6bfc2b/325_d.jpg\",\"front\":\"images/cube_2048/325/0dd23dc56ffe4c41bd24af56ba6bfc2b/325_f.jpg\",\"index\":325,\"left\":\"images/cube_2048/325/0dd23dc56ffe4c41bd24af56ba6bfc2b/325_l.jpg\",\"right\":\"images/cube_2048/325/0dd23dc56ffe4c41bd24af56ba6bfc2b/325_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/325/0dd23dc56ffe4c41bd24af56ba6bfc2b/325_u.jpg\"},{\"back\":\"images/cube_2048/326/7b8c6d2f42a81adfe50cf2f59ebd8399/326_b.jpg\",\"derived_id\":1702444790,\"derived_id_str\":\"1702444790\",\"down\":\"images/cube_2048/326/7b8c6d2f42a81adfe50cf2f59ebd8399/326_d.jpg\",\"front\":\"images/cube_2048/326/7b8c6d2f42a81adfe50cf2f59ebd8399/326_f.jpg\",\"index\":326,\"left\":\"images/cube_2048/326/7b8c6d2f42a81adfe50cf2f59ebd8399/326_l.jpg\",\"right\":\"images/cube_2048/326/7b8c6d2f42a81adfe50cf2f59ebd8399/326_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/326/7b8c6d2f42a81adfe50cf2f59ebd8399/326_u.jpg\"},{\"back\":\"images/cube_2048/327/3964b15fa74f82c49ae05f618418010f/327_b.jpg\",\"derived_id\":1702444849,\"derived_id_str\":\"1702444849\",\"down\":\"images/cube_2048/327/3964b15fa74f82c49ae05f618418010f/327_d.jpg\",\"front\":\"images/cube_2048/327/3964b15fa74f82c49ae05f618418010f/327_f.jpg\",\"index\":327,\"left\":\"images/cube_2048/327/3964b15fa74f82c49ae05f618418010f/327_l.jpg\",\"right\":\"images/cube_2048/327/3964b15fa74f82c49ae05f618418010f/327_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/327/3964b15fa74f82c49ae05f618418010f/327_u.jpg\"},{\"back\":\"images/cube_2048/328/90b7b80938d4827270284aa87062261c/328_b.jpg\",\"derived_id\":1702444907,\"derived_id_str\":\"1702444907\",\"down\":\"images/cube_2048/328/90b7b80938d4827270284aa87062261c/328_d.jpg\",\"front\":\"images/cube_2048/328/90b7b80938d4827270284aa87062261c/328_f.jpg\",\"index\":328,\"left\":\"images/cube_2048/328/90b7b80938d4827270284aa87062261c/328_l.jpg\",\"right\":\"images/cube_2048/328/90b7b80938d4827270284aa87062261c/328_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/328/90b7b80938d4827270284aa87062261c/328_u.jpg\"},{\"back\":\"images/cube_2048/329/1761dd6b8474901e0ac1df68c0542320/329_b.jpg\",\"derived_id\":1702444978,\"derived_id_str\":\"1702444978\",\"down\":\"images/cube_2048/329/1761dd6b8474901e0ac1df68c0542320/329_d.jpg\",\"front\":\"images/cube_2048/329/1761dd6b8474901e0ac1df68c0542320/329_f.jpg\",\"index\":329,\"left\":\"images/cube_2048/329/1761dd6b8474901e0ac1df68c0542320/329_l.jpg\",\"right\":\"images/cube_2048/329/1761dd6b8474901e0ac1df68c0542320/329_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/329/1761dd6b8474901e0ac1df68c0542320/329_u.jpg\"},{\"back\":\"images/cube_2048/330/754d04fb324f60c5998106622377550b/330_b.jpg\",\"derived_id\":1702445142,\"derived_id_str\":\"1702445142\",\"down\":\"images/cube_2048/330/754d04fb324f60c5998106622377550b/330_d.jpg\",\"front\":\"images/cube_2048/330/754d04fb324f60c5998106622377550b/330_f.jpg\",\"index\":330,\"left\":\"images/cube_2048/330/754d04fb324f60c5998106622377550b/330_l.jpg\",\"right\":\"images/cube_2048/330/754d04fb324f60c5998106622377550b/330_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/330/754d04fb324f60c5998106622377550b/330_u.jpg\"},{\"back\":\"images/cube_2048/331/7ab9c009a5b8fb138b03fbc10b738d44/331_b.jpg\",\"derived_id\":1702445274,\"derived_id_str\":\"1702445274\",\"down\":\"images/cube_2048/331/7ab9c009a5b8fb138b03fbc10b738d44/331_d.jpg\",\"front\":\"images/cube_2048/331/7ab9c009a5b8fb138b03fbc10b738d44/331_f.jpg\",\"index\":331,\"left\":\"images/cube_2048/331/7ab9c009a5b8fb138b03fbc10b738d44/331_l.jpg\",\"right\":\"images/cube_2048/331/7ab9c009a5b8fb138b03fbc10b738d44/331_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/331/7ab9c009a5b8fb138b03fbc10b738d44/331_u.jpg\"},{\"back\":\"images/cube_2048/332/f61b1eb716b655146322303d5c1a9bb4/332_b.jpg\",\"derived_id\":1702445426,\"derived_id_str\":\"1702445426\",\"down\":\"images/cube_2048/332/f61b1eb716b655146322303d5c1a9bb4/332_d.jpg\",\"front\":\"images/cube_2048/332/f61b1eb716b655146322303d5c1a9bb4/332_f.jpg\",\"index\":332,\"left\":\"images/cube_2048/332/f61b1eb716b655146322303d5c1a9bb4/332_l.jpg\",\"right\":\"images/cube_2048/332/f61b1eb716b655146322303d5c1a9bb4/332_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/332/f61b1eb716b655146322303d5c1a9bb4/332_u.jpg\"},{\"back\":\"images/cube_2048/333/1a8113340dd5d1902420855048c7b4d1/333_b.jpg\",\"derived_id\":1702445488,\"derived_id_str\":\"1702445488\",\"down\":\"images/cube_2048/333/1a8113340dd5d1902420855048c7b4d1/333_d.jpg\",\"front\":\"images/cube_2048/333/1a8113340dd5d1902420855048c7b4d1/333_f.jpg\",\"index\":333,\"left\":\"images/cube_2048/333/1a8113340dd5d1902420855048c7b4d1/333_l.jpg\",\"right\":\"images/cube_2048/333/1a8113340dd5d1902420855048c7b4d1/333_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/333/1a8113340dd5d1902420855048c7b4d1/333_u.jpg\"},{\"back\":\"images/cube_2048/334/450d2b8bd99c417486ee2c72181eb233/334_b.jpg\",\"derived_id\":1702445681,\"derived_id_str\":\"1702445681\",\"down\":\"images/cube_2048/334/450d2b8bd99c417486ee2c72181eb233/334_d.jpg\",\"front\":\"images/cube_2048/334/450d2b8bd99c417486ee2c72181eb233/334_f.jpg\",\"index\":334,\"left\":\"images/cube_2048/334/450d2b8bd99c417486ee2c72181eb233/334_l.jpg\",\"right\":\"images/cube_2048/334/450d2b8bd99c417486ee2c72181eb233/334_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/334/450d2b8bd99c417486ee2c72181eb233/334_u.jpg\"},{\"back\":\"images/cube_2048/335/a7bcc41dfe116d04471a74e119b9cda5/335_b.jpg\",\"derived_id\":1702445748,\"derived_id_str\":\"1702445748\",\"down\":\"images/cube_2048/335/a7bcc41dfe116d04471a74e119b9cda5/335_d.jpg\",\"front\":\"images/cube_2048/335/a7bcc41dfe116d04471a74e119b9cda5/335_f.jpg\",\"index\":335,\"left\":\"images/cube_2048/335/a7bcc41dfe116d04471a74e119b9cda5/335_l.jpg\",\"right\":\"images/cube_2048/335/a7bcc41dfe116d04471a74e119b9cda5/335_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/335/a7bcc41dfe116d04471a74e119b9cda5/335_u.jpg\"},{\"back\":\"images/cube_2048/336/33cd918c0f663963ed506bbc46788447/336_b.jpg\",\"derived_id\":1702446472,\"derived_id_str\":\"1702446472\",\"down\":\"images/cube_2048/336/33cd918c0f663963ed506bbc46788447/336_d.jpg\",\"front\":\"images/cube_2048/336/33cd918c0f663963ed506bbc46788447/336_f.jpg\",\"index\":336,\"left\":\"images/cube_2048/336/33cd918c0f663963ed506bbc46788447/336_l.jpg\",\"right\":\"images/cube_2048/336/33cd918c0f663963ed506bbc46788447/336_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/336/33cd918c0f663963ed506bbc46788447/336_u.jpg\"},{\"back\":\"images/cube_2048/337/18763df0871fa56e32ae3ac8e47fa92e/337_b.jpg\",\"derived_id\":1702446530,\"derived_id_str\":\"1702446530\",\"down\":\"images/cube_2048/337/18763df0871fa56e32ae3ac8e47fa92e/337_d.jpg\",\"front\":\"images/cube_2048/337/18763df0871fa56e32ae3ac8e47fa92e/337_f.jpg\",\"index\":337,\"left\":\"images/cube_2048/337/18763df0871fa56e32ae3ac8e47fa92e/337_l.jpg\",\"right\":\"images/cube_2048/337/18763df0871fa56e32ae3ac8e47fa92e/337_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/337/18763df0871fa56e32ae3ac8e47fa92e/337_u.jpg\"},{\"back\":\"images/cube_2048/338/f61bffb9a07d81817f8f98fa7c50ed84/338_b.jpg\",\"derived_id\":1702446639,\"derived_id_str\":\"1702446639\",\"down\":\"images/cube_2048/338/f61bffb9a07d81817f8f98fa7c50ed84/338_d.jpg\",\"front\":\"images/cube_2048/338/f61bffb9a07d81817f8f98fa7c50ed84/338_f.jpg\",\"index\":338,\"left\":\"images/cube_2048/338/f61bffb9a07d81817f8f98fa7c50ed84/338_l.jpg\",\"right\":\"images/cube_2048/338/f61bffb9a07d81817f8f98fa7c50ed84/338_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/338/f61bffb9a07d81817f8f98fa7c50ed84/338_u.jpg\"},{\"back\":\"images/cube_2048/339/630b91982c22b720d1b327b851cb5c70/339_b.jpg\",\"derived_id\":1702446703,\"derived_id_str\":\"1702446703\",\"down\":\"images/cube_2048/339/630b91982c22b720d1b327b851cb5c70/339_d.jpg\",\"front\":\"images/cube_2048/339/630b91982c22b720d1b327b851cb5c70/339_f.jpg\",\"index\":339,\"left\":\"images/cube_2048/339/630b91982c22b720d1b327b851cb5c70/339_l.jpg\",\"right\":\"images/cube_2048/339/630b91982c22b720d1b327b851cb5c70/339_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/339/630b91982c22b720d1b327b851cb5c70/339_u.jpg\"},{\"back\":\"images/cube_2048/340/9a30045544b36cc8ffae083fefe544dd/340_b.jpg\",\"derived_id\":1702446802,\"derived_id_str\":\"1702446802\",\"down\":\"images/cube_2048/340/9a30045544b36cc8ffae083fefe544dd/340_d.jpg\",\"front\":\"images/cube_2048/340/9a30045544b36cc8ffae083fefe544dd/340_f.jpg\",\"index\":340,\"left\":\"images/cube_2048/340/9a30045544b36cc8ffae083fefe544dd/340_l.jpg\",\"right\":\"images/cube_2048/340/9a30045544b36cc8ffae083fefe544dd/340_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/340/9a30045544b36cc8ffae083fefe544dd/340_u.jpg\"},{\"back\":\"images/cube_2048/341/d50418ffac554a2f72b6807409ec5eb1/341_b.jpg\",\"derived_id\":1702446855,\"derived_id_str\":\"1702446855\",\"down\":\"images/cube_2048/341/d50418ffac554a2f72b6807409ec5eb1/341_d.jpg\",\"front\":\"images/cube_2048/341/d50418ffac554a2f72b6807409ec5eb1/341_f.jpg\",\"index\":341,\"left\":\"images/cube_2048/341/d50418ffac554a2f72b6807409ec5eb1/341_l.jpg\",\"right\":\"images/cube_2048/341/d50418ffac554a2f72b6807409ec5eb1/341_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/341/d50418ffac554a2f72b6807409ec5eb1/341_u.jpg\"},{\"back\":\"images/cube_2048/342/9ef1888d1474e9a45a7fc41b53ffe53a/342_b.jpg\",\"derived_id\":1702446907,\"derived_id_str\":\"1702446907\",\"down\":\"images/cube_2048/342/9ef1888d1474e9a45a7fc41b53ffe53a/342_d.jpg\",\"front\":\"images/cube_2048/342/9ef1888d1474e9a45a7fc41b53ffe53a/342_f.jpg\",\"index\":342,\"left\":\"images/cube_2048/342/9ef1888d1474e9a45a7fc41b53ffe53a/342_l.jpg\",\"right\":\"images/cube_2048/342/9ef1888d1474e9a45a7fc41b53ffe53a/342_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/342/9ef1888d1474e9a45a7fc41b53ffe53a/342_u.jpg\"},{\"back\":\"images/cube_2048/343/6989aed506616af0cefb77f641371851/343_b.jpg\",\"derived_id\":1702447032,\"derived_id_str\":\"1702447032\",\"down\":\"images/cube_2048/343/6989aed506616af0cefb77f641371851/343_d.jpg\",\"front\":\"images/cube_2048/343/6989aed506616af0cefb77f641371851/343_f.jpg\",\"index\":343,\"left\":\"images/cube_2048/343/6989aed506616af0cefb77f641371851/343_l.jpg\",\"right\":\"images/cube_2048/343/6989aed506616af0cefb77f641371851/343_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/343/6989aed506616af0cefb77f641371851/343_u.jpg\"},{\"back\":\"images/cube_2048/344/084b2e50b300442e658bffdc5b19790b/344_b.jpg\",\"derived_id\":1702447137,\"derived_id_str\":\"1702447137\",\"down\":\"images/cube_2048/344/084b2e50b300442e658bffdc5b19790b/344_d.jpg\",\"front\":\"images/cube_2048/344/084b2e50b300442e658bffdc5b19790b/344_f.jpg\",\"index\":344,\"left\":\"images/cube_2048/344/084b2e50b300442e658bffdc5b19790b/344_l.jpg\",\"right\":\"images/cube_2048/344/084b2e50b300442e658bffdc5b19790b/344_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/344/084b2e50b300442e658bffdc5b19790b/344_u.jpg\"},{\"back\":\"images/cube_2048/345/1506b6b0866a582c8743380929f363a9/345_b.jpg\",\"derived_id\":1702447397,\"derived_id_str\":\"1702447397\",\"down\":\"images/cube_2048/345/1506b6b0866a582c8743380929f363a9/345_d.jpg\",\"front\":\"images/cube_2048/345/1506b6b0866a582c8743380929f363a9/345_f.jpg\",\"index\":345,\"left\":\"images/cube_2048/345/1506b6b0866a582c8743380929f363a9/345_l.jpg\",\"right\":\"images/cube_2048/345/1506b6b0866a582c8743380929f363a9/345_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/345/1506b6b0866a582c8743380929f363a9/345_u.jpg\"}]},\"picture_url\":\"http://vr-public.realsee-cdn.cn/release/screenshot/auto3d-light-XlDNZQLwNYrVAgxK/935c1f75ec30cfd3edbf1332b6c1370d/1702361990_269/pc0_99I4KAYwF.jpg\",\"project_id\":\"auto3d-light-7lAeVKOq886VX56B-copy\",\"resource_code\":\"goQ54vl52bIJ2RKuMo\",\"title_picture_url\":\"http://vr-public.realsee-cdn.cn/release/screenshot/auto3d-light-XlDNZQLwNYrVAgxK/935c1f75ec30cfd3edbf1332b6c1370d/1702361990_269/pc1_ZnPq8HC40.jpg\"}" \ No newline at end of file diff --git a/open-works/real/bangongshi/work.json b/open-works/real/bangongshi/work.json new file mode 100644 index 000000000..cbd2c6bcd --- /dev/null +++ b/open-works/real/bangongshi/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"fSrucH0wxEFHRIeJijv2kLjYsvoW+14Fz78QMGVrGWKs+VZd7Upiy3Ivb81EsqOF8+/fH3BvVPiDsQmlCKe6yYTTpAELxRGGtReb3ZinAnqC7mAk8q6FYiHGfhdBEx+IiZKPd/1T3MynS5CbBkrRW2fjkM6QkmZbjGlOs7PitnE=\",\"allow_hosts\":[],\"basic_code\":\"8015XKMY8lR4K3R7j8\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-09-25 15:35:13\",\"device_type\":10,\"expire_at\":\"1727407788758\",\"from_type\":\"poincare\",\"is_active\":false,\"model\":{\"layers\":[{\"name\":\"poincare\",\"tileset_url\":\"https://test-vr-public.realsee-cdn.cn/test/poincare/cc009469b63d8349a9da8cb88914ebe3/point_cloud/0f7f68faac20c31636b83efe9e984023/tileset.json\",\"tileset_url_checksum\":\"25b95f53c82ce18ecef382af1a65571d\",\"type\":\"point_cloud\",\"up_axis\":\"Z\"}]},\"name\":\"特写1\",\"picture_url\":\"\",\"project_id\":\"mix-poincare-eGj1ZX9yd8d2xOWd\",\"resource_code\":\"0ok2q93BXOUr9b5TGx\",\"title_picture_url\":\"\"}" \ No newline at end of file diff --git a/open-works/real/demo0/work.json b/open-works/real/demo0/work.json new file mode 100644 index 000000000..54f54cd7e --- /dev/null +++ b/open-works/real/demo0/work.json @@ -0,0 +1,1801 @@ +{ + "_signature": "BUtjtp7HeABqJwxtSUNciSmwePxcCsP0jll6+INB4HPsnhJ2FzEffxn+HTcIX/rTNteOy92y4ljZ1aNEIqCRlh8pLKbPa88eQ6rlWW/PpspYkLAJGbxiWAz6XTA05UHQu0u9uB8vG781ZXe2QIwjreykOXXn+0THiH/eOvkqy70=", + "allow_hosts": [ + "*" + ], + "base_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/cce8b1fa6b867956bd1ad2b5000dd3bd/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2024-08-31 16:06:46", + "expire_at": "1825080124000", + "initial": { + "fov": 90, + "heading": 0, + "latitude": 0, + "longitude": 0, + "pano": 0, + "pano_index": 0 + }, + "model": { + "layers": [ + { + "name": "galois", + "tileset_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/cce8b1fa6b867956bd1ad2b5000dd3bd/point_cloud/a58a009d42a962d6f524955e7ff18d36/tileset.json", + "tileset_url_checksum": "46a675c082b41d32ad5624e7faa89e8d", + "type": "point_cloud", + "up_axis": "Z" + } + ], + "material_base_url": "materials/88184a6767e9027e764362cfd051541a/", + "material_textures": [ + "texture_0.jpg", + "texture_1.jpg", + "texture_2.jpg", + "texture_3.jpg", + "texture_4.jpg", + "texture_5.jpg", + "texture_6.jpg", + "texture_7.jpg", + "texture_8.jpg", + "texture_9.jpg", + "texture_10.jpg", + "texture_11.jpg", + "texture_12.jpg", + "texture_13.jpg", + "texture_14.jpg", + "texture_15.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [ + 1, + 2, + 3, + 24, + 25, + 26, + 27, + 28, + 29 + ], + "active": true, + "floor_index": 0, + "index": 0, + "offset_point_count": 0, + "position": [ + 0.3415906911, + 0.2193680707, + 0.5033924069 + ], + "quaternion": { + "w": -0.13601135062393585, + "x": 0.0049762629596150805, + "y": -0.9906748327024362, + "z": 0.006286903426233373 + }, + "standing_position": [ + 0.3415906911, + -1.173714786431958, + 0.5033924069 + ], + "visible_nodes": [ + 1, + 2, + 3, + 24, + 25, + 26, + 27, + 28, + 29 + ] + }, + { + "accessible_nodes": [ + 0, + 2, + 3, + 4, + 25, + 26, + 27, + 28, + 29, + 30 + ], + "active": true, + "floor_index": 0, + "index": 1, + "offset_point_count": 0, + "position": [ + 1.3597482301, + 0.1890138459, + -4.1178567002 + ], + "quaternion": { + "w": -0.43657213610702783, + "x": -0.003558077591937238, + "y": -0.8996589709717788, + "z": 0.002417851452812706 + }, + "standing_position": [ + 1.3597482301, + -1.2016683745589845, + -4.1178567002 + ], + "visible_nodes": [ + 0, + 2, + 3, + 4, + 25, + 26, + 27, + 28, + 29, + 30 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 3, + 4, + 5, + 26, + 27, + 28, + 29, + 30 + ], + "active": true, + "floor_index": 0, + "index": 2, + "offset_point_count": 0, + "position": [ + 2.2345453882, + 0.1543544257, + -8.9397047786 + ], + "quaternion": { + "w": -0.05807465889791344, + "x": -0.004764641432430274, + "y": -0.9982784208325851, + "z": 0.006695272666943695 + }, + "standing_position": [ + 2.2345453882, + -1.222893503873059, + -8.9397047786 + ], + "visible_nodes": [ + 0, + 1, + 3, + 4, + 5, + 26, + 27, + 28, + 29, + 30 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 2, + 4, + 5, + 26, + 27, + 28, + 29, + 30 + ], + "active": true, + "floor_index": 0, + "index": 3, + "offset_point_count": 0, + "position": [ + 2.2796639712, + 0.1335901185, + -13.4287627911 + ], + "quaternion": { + "w": 0.11780902154789848, + "x": -0.00568183678820493, + "y": -0.9929882598374464, + "z": 0.007941472667855142 + }, + "standing_position": [ + 2.2796639712, + -1.2559432820355836, + -13.4287627911 + ], + "visible_nodes": [ + 0, + 1, + 2, + 4, + 5, + 26, + 27, + 28, + 29, + 30 + ] + }, + { + "accessible_nodes": [ + 1, + 2, + 3, + 5, + 6, + 27, + 28, + 29, + 30 + ], + "active": true, + "floor_index": 0, + "index": 4, + "offset_point_count": 0, + "position": [ + 3.4640567832, + 0.1240064245, + -18.2759595019 + ], + "quaternion": { + "w": 0.11647769742757802, + "x": -0.0076700647041114565, + "y": -0.9931631862136252, + "z": -0.0010008194914970184 + }, + "standing_position": [ + 3.4640567832, + -1.2692761081919555, + -18.2759595019 + ], + "visible_nodes": [ + 1, + 2, + 3, + 5, + 6, + 27, + 28, + 29, + 30 + ] + }, + { + "accessible_nodes": [ + 2, + 3, + 4, + 6, + 7, + 8, + 29, + 30 + ], + "active": true, + "floor_index": 0, + "index": 5, + "offset_point_count": 0, + "position": [ + 7.163454375, + 0.117158554, + -22.3427562761 + ], + "quaternion": { + "w": -0.11303961469045612, + "x": -0.0049660370460369065, + "y": -0.9935741576752084, + "z": 0.002788760535482735 + }, + "standing_position": [ + 7.163454375, + -1.2542344113167725, + -22.3427562761 + ], + "visible_nodes": [ + 2, + 3, + 4, + 6, + 7, + 8, + 29, + 30 + ] + }, + { + "accessible_nodes": [ + 4, + 5, + 7, + 8, + 9, + 30 + ], + "active": true, + "floor_index": 0, + "index": 6, + "offset_point_count": 0, + "position": [ + 11.8406395137, + 0.1293237437, + -23.7265676624 + ], + "quaternion": { + "w": -0.22649324199404122, + "x": -0.006483689451366591, + "y": -0.9739904335900841, + "z": -0.0011867585503271532 + }, + "standing_position": [ + 11.8406395137, + -1.2483029137859618, + -23.7265676624 + ], + "visible_nodes": [ + 4, + 5, + 7, + 8, + 9, + 30 + ] + }, + { + "accessible_nodes": [ + 5, + 6, + 8, + 9 + ], + "active": true, + "floor_index": 0, + "index": 7, + "offset_point_count": 0, + "position": [ + 16.7371782581, + 0.1597785868, + -24.0677256409 + ], + "quaternion": { + "w": -0.4053180189573656, + "x": -0.0018870615031001496, + "y": -0.9141709197956365, + "z": -0.002296060183657044 + }, + "standing_position": [ + 16.7371782581, + -1.2241858325649293, + -24.0677256409 + ], + "visible_nodes": [ + 5, + 6, + 8, + 9 + ] + }, + { + "accessible_nodes": [ + 5, + 6, + 7, + 9, + 10, + 11, + 12 + ], + "active": true, + "floor_index": 0, + "index": 8, + "offset_point_count": 0, + "position": [ + 21.7194030852, + 0.1964550977, + -23.8275135716 + ], + "quaternion": { + "w": -0.5992420139453531, + "x": -0.004105235111925015, + "y": -0.8005408972688404, + "z": -0.005140771432215628 + }, + "standing_position": [ + 21.7194030852, + -1.1926253075352906, + -23.8275135716 + ], + "visible_nodes": [ + 5, + 6, + 7, + 9, + 10, + 11, + 12 + ] + }, + { + "accessible_nodes": [ + 6, + 7, + 8, + 10, + 11, + 12, + 13 + ], + "active": true, + "floor_index": 0, + "index": 9, + "offset_point_count": 0, + "position": [ + 26.1006365211, + 0.2337608212, + -23.4014583186 + ], + "quaternion": { + "w": -0.54030455166393, + "x": -0.0022014337532711655, + "y": -0.841422480802599, + "z": -0.008622873515429732 + }, + "standing_position": [ + 26.1006365211, + -1.151351106786145, + -23.4014583186 + ], + "visible_nodes": [ + 6, + 7, + 8, + 10, + 11, + 12, + 13 + ] + }, + { + "accessible_nodes": [ + 8, + 9, + 11, + 12, + 13, + 14 + ], + "active": true, + "floor_index": 0, + "index": 10, + "offset_point_count": 0, + "position": [ + 26.1049274469, + 0.2759820185, + -18.9631854098 + ], + "quaternion": { + "w": -0.996460750556689, + "x": -0.00197735886626666, + "y": -0.083984362031567, + "z": -0.0029478100601142356 + }, + "standing_position": [ + 26.1049274469, + -1.1234037913983765, + -18.9631854098 + ], + "visible_nodes": [ + 8, + 9, + 11, + 12, + 13, + 14 + ] + }, + { + "accessible_nodes": [ + 8, + 9, + 10, + 12, + 13, + 14, + 15 + ], + "active": true, + "floor_index": 0, + "index": 11, + "offset_point_count": 0, + "position": [ + 25.7703478064, + 0.2800463044, + -14.7559014985 + ], + "quaternion": { + "w": -0.9312526028554229, + "x": 0.0023704173746537252, + "y": -0.36436653106748845, + "z": 0.000042567290419907355 + }, + "standing_position": [ + 25.7703478064, + -1.112307587926355, + -14.7559014985 + ], + "visible_nodes": [ + 8, + 9, + 10, + 12, + 13, + 14, + 15 + ] + }, + { + "accessible_nodes": [ + 8, + 9, + 10, + 11, + 13, + 14, + 15 + ], + "active": true, + "floor_index": 0, + "index": 12, + "offset_point_count": 0, + "position": [ + 32.962836025, + 0.3673573824, + -20.0549957187 + ], + "quaternion": { + "w": -0.6352011336694126, + "x": 0.006836307906839501, + "y": -0.7722401180494316, + "z": -0.010862077324067482 + }, + "standing_position": [ + 32.962836025, + -1.0280072597432495, + -20.0549957187 + ], + "visible_nodes": [ + 8, + 9, + 10, + 11, + 13, + 14, + 15 + ] + }, + { + "accessible_nodes": [ + 9, + 10, + 11, + 12, + 14, + 15 + ], + "active": true, + "floor_index": 0, + "index": 13, + "offset_point_count": 0, + "position": [ + 35.0903935437, + 0.4030971815, + -16.1222400072 + ], + "quaternion": { + "w": -0.9828741778071087, + "x": -0.0034198274060870237, + "y": -0.1836997980278957, + "z": -0.014178842994016427 + }, + "standing_position": [ + 35.0903935437, + -0.9690262983431397, + -16.1222400072 + ], + "visible_nodes": [ + 9, + 10, + 11, + 12, + 14, + 15 + ] + }, + { + "accessible_nodes": [ + 10, + 11, + 12, + 13, + 15, + 16 + ], + "active": true, + "floor_index": 0, + "index": 14, + "offset_point_count": 0, + "position": [ + 35.8171788438, + 0.40455121, + -11.698349541 + ], + "quaternion": { + "w": -0.8913892895643295, + "x": 0.009961981065915816, + "y": -0.4529198150589444, + "z": -0.013767153048246624 + }, + "standing_position": [ + 35.8171788438, + -0.95828157465271, + -11.698349541 + ], + "visible_nodes": [ + 10, + 11, + 12, + 13, + 15, + 16 + ] + }, + { + "accessible_nodes": [ + 11, + 12, + 13, + 14, + 16, + 17 + ], + "active": true, + "floor_index": 0, + "index": 15, + "offset_point_count": 0, + "position": [ + 35.8689520495, + 0.419550472, + -6.2850385972 + ], + "quaternion": { + "w": -0.9036320724443108, + "x": 0.001545929773410174, + "y": -0.42817859984030715, + "z": -0.010477327430831565 + }, + "standing_position": [ + 35.8689520495, + -0.938054746887329, + -6.2850385972 + ], + "visible_nodes": [ + 11, + 12, + 13, + 14, + 16, + 17 + ] + }, + { + "accessible_nodes": [ + 14, + 15, + 17, + 18, + 19 + ], + "active": true, + "floor_index": 0, + "index": 16, + "offset_point_count": 0, + "position": [ + 35.8331975968, + 0.420552501, + -0.0450865345 + ], + "quaternion": { + "w": -0.9908008859755829, + "x": 0.001980492274255351, + "y": -0.13441518559389135, + "z": -0.015564058019403115 + }, + "standing_position": [ + 35.8331975968, + -0.9586595208276978, + -0.0450865345 + ], + "visible_nodes": [ + 14, + 15, + 17, + 18, + 19 + ] + }, + { + "accessible_nodes": [ + 15, + 16, + 18, + 19 + ], + "active": true, + "floor_index": 0, + "index": 17, + "offset_point_count": 0, + "position": [ + 35.3901971569, + 0.4319174521, + 4.8411371252 + ], + "quaternion": { + "w": -0.9631349640756481, + "x": 0.008970332868448757, + "y": -0.2682970294801838, + "z": -0.01752934929135633 + }, + "standing_position": [ + 35.3901971569, + -0.9545563228099732, + 4.8411371252 + ], + "visible_nodes": [ + 15, + 16, + 18, + 19 + ] + }, + { + "accessible_nodes": [ + 16, + 17, + 19, + 20, + 21 + ], + "active": true, + "floor_index": 0, + "index": 18, + "offset_point_count": 0, + "position": [ + 30.9084534253, + 0.2388586247, + 4.6261623519 + ], + "quaternion": { + "w": 0.7354886699067585, + "x": -0.014655224516846184, + "y": -0.6773557060548026, + "z": 0.005557721395640652 + }, + "standing_position": [ + 30.9084534253, + -0.9896550929513672, + 4.6261623519 + ], + "visible_nodes": [ + 16, + 17, + 19, + 20, + 21 + ] + }, + { + "accessible_nodes": [ + 16, + 17, + 18, + 20, + 21, + 22 + ], + "active": true, + "floor_index": 0, + "index": 19, + "offset_point_count": 0, + "position": [ + 26.381030777, + 0.2412378335, + 4.5501346886 + ], + "quaternion": { + "w": -0.9905073180067879, + "x": 0.009453172863823136, + "y": 0.1370270582635614, + "z": 0.005429163800446681 + }, + "standing_position": [ + 26.381030777, + -0.8605821585654296, + 4.5501346886 + ], + "visible_nodes": [ + 16, + 17, + 18, + 20, + 21, + 22 + ] + }, + { + "accessible_nodes": [ + 18, + 19, + 21, + 22, + 23, + 24 + ], + "active": true, + "floor_index": 0, + "index": 20, + "offset_point_count": 0, + "position": [ + 20.3833835635, + 0.304703226, + 5.1710936741 + ], + "quaternion": { + "w": -0.9859233988753893, + "x": 0.0011574279769621617, + "y": 0.1671573025987485, + "z": 0.0034854108381236412 + }, + "standing_position": [ + 20.3833835635, + -1.072883615583252, + 5.1710936741 + ], + "visible_nodes": [ + 18, + 19, + 21, + 22, + 23, + 24 + ] + }, + { + "accessible_nodes": [ + 18, + 19, + 20, + 22, + 23, + 24, + 25 + ], + "active": true, + "floor_index": 0, + "index": 21, + "offset_point_count": 0, + "position": [ + 16.1919963862, + 0.2861930083, + 3.2857349859 + ], + "quaternion": { + "w": 0.8006334577824562, + "x": -0.006585611320778395, + "y": -0.5991073011781779, + "z": 0.003624587650208294 + }, + "standing_position": [ + 16.1919963862, + -1.0786144782341187, + 3.2857349859 + ], + "visible_nodes": [ + 18, + 19, + 20, + 22, + 23, + 24, + 25 + ] + }, + { + "accessible_nodes": [ + 19, + 20, + 21, + 23, + 24 + ], + "active": true, + "floor_index": 0, + "index": 22, + "offset_point_count": 0, + "position": [ + 12.4700480452, + 0.2403711917, + 1.3010888325 + ], + "quaternion": { + "w": 0.2009655937913598, + "x": 0.00281015084508427, + "y": -0.9794825088535272, + "z": 0.01479689233242598 + }, + "standing_position": [ + 12.4700480452, + -1.1328708289069946, + 1.3010888325 + ], + "visible_nodes": [ + 19, + 20, + 21, + 23, + 24 + ] + }, + { + "accessible_nodes": [ + 20, + 21, + 22, + 24, + 25 + ], + "active": true, + "floor_index": 0, + "index": 23, + "offset_point_count": 0, + "position": [ + 9.0884478963, + 0.2595981296, + 3.2736485902 + ], + "quaternion": { + "w": 0.618402384033793, + "x": -0.0012043646406457531, + "y": -0.7858250052015398, + "z": 0.007490133695211844 + }, + "standing_position": [ + 9.0884478963, + -1.112613088280249, + 3.2736485902 + ], + "visible_nodes": [ + 20, + 21, + 22, + 24, + 25 + ] + }, + { + "accessible_nodes": [ + 0, + 20, + 21, + 22, + 23, + 25, + 26 + ], + "active": true, + "floor_index": 0, + "index": 24, + "offset_point_count": 0, + "position": [ + 6.8227026504, + 0.2216914291, + 3.2297099979 + ], + "quaternion": { + "w": 0.7429054064476209, + "x": 0.004723749030232488, + "y": -0.6692613969892481, + "z": 0.012586729247937462 + }, + "standing_position": [ + 6.8227026504, + -1.140279949226416, + 3.2297099979 + ], + "visible_nodes": [ + 0, + 20, + 21, + 22, + 23, + 25, + 26 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 21, + 23, + 24, + 26 + ], + "active": true, + "floor_index": 0, + "index": 25, + "offset_point_count": 0, + "position": [ + 2.3606132121, + 0.2514001656, + 2.9402958706 + ], + "quaternion": { + "w": 0.3293696811617784, + "x": -0.004525263836486679, + "y": -0.944164601089238, + "z": 0.006952781318455359 + }, + "standing_position": [ + 2.3606132121, + -1.1214886378820557, + 2.9402958706 + ], + "visible_nodes": [ + 0, + 1, + 21, + 23, + 24, + 26 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 2, + 3, + 24, + 25, + 27, + 28, + 29 + ], + "active": true, + "floor_index": 0, + "index": 26, + "offset_point_count": 0, + "position": [ + -0.2033189982, + 0.1898864413, + -1.9622168688 + ], + "quaternion": { + "w": 0.6362575249207082, + "x": -0.002386050121030736, + "y": -0.7714274875352836, + "z": 0.00838452259546201 + }, + "standing_position": [ + -0.2033189982, + -1.1880842541956054, + -1.9622168688 + ], + "visible_nodes": [ + 0, + 1, + 2, + 3, + 24, + 25, + 27, + 28, + 29 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 2, + 3, + 4, + 26, + 28, + 29, + 30 + ], + "active": true, + "floor_index": 0, + "index": 27, + "offset_point_count": 0, + "position": [ + -0.0434320085, + 0.1610910225, + -6.180837748 + ], + "quaternion": { + "w": 0.73734413195624, + "x": -0.0020529371167958958, + "y": -0.6754646860125257, + "z": 0.008177683436877149 + }, + "standing_position": [ + -0.0434320085, + -1.2202592563543702, + -6.180837748 + ], + "visible_nodes": [ + 0, + 1, + 2, + 3, + 4, + 26, + 28, + 29, + 30 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 2, + 3, + 4, + 26, + 27, + 29, + 30 + ], + "active": true, + "floor_index": 0, + "index": 28, + "offset_point_count": 0, + "position": [ + -1.3945223403, + 0.0876154606, + -9.2002930124 + ], + "quaternion": { + "w": 0.7425914911187977, + "x": 0.0038585697045120434, + "y": -0.6696823299520452, + "z": 0.008280443841779643 + }, + "standing_position": [ + -1.3945223403, + -1.304867416177649, + -9.2002930124 + ], + "visible_nodes": [ + 0, + 1, + 2, + 3, + 4, + 26, + 27, + 29, + 30 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 26, + 27, + 28, + 30 + ], + "active": true, + "floor_index": 0, + "index": 29, + "offset_point_count": 0, + "position": [ + 0.5659415796, + 0.1204672478, + -12.8121567308 + ], + "quaternion": { + "w": 0.7890195475747134, + "x": 0.005111770447658102, + "y": -0.6143027219539239, + "z": 0.007361328646919502 + }, + "standing_position": [ + 0.5659415796, + -1.260077414675586, + -12.8121567308 + ], + "visible_nodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 26, + 27, + 28, + 30 + ] + }, + { + "accessible_nodes": [ + 1, + 2, + 3, + 4, + 5, + 6, + 27, + 28, + 29 + ], + "active": true, + "floor_index": 0, + "index": 30, + "offset_point_count": 0, + "position": [ + 0.0322371844, + 0.1065226928, + -17.7418800931 + ], + "quaternion": { + "w": -0.9893133836277562, + "x": -0.001661240818327377, + "y": 0.14572512374324184, + "z": -0.004523005398543843 + }, + "standing_position": [ + 0.0322371844, + -1.261148320078418, + -17.7418800931 + ], + "visible_nodes": [ + 1, + 2, + 3, + 4, + 5, + 6, + 27, + 28, + 29 + ] + } + ], + "panorama": { + "count": 31, + "cube_path": "images/cube_2048/", + "list": [ + { + "back": "images/cube_2048/0/3f4ffccfa14a5ff8597236101c5ed470/0_b.jpg", + "derived_id": 1724912005, + "derived_id_str": "1724912005", + "down": "images/cube_2048/0/3f4ffccfa14a5ff8597236101c5ed470/0_d.jpg", + "front": "images/cube_2048/0/3f4ffccfa14a5ff8597236101c5ed470/0_f.jpg", + "index": 0, + "left": "images/cube_2048/0/3f4ffccfa14a5ff8597236101c5ed470/0_l.jpg", + "right": "images/cube_2048/0/3f4ffccfa14a5ff8597236101c5ed470/0_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/0/3f4ffccfa14a5ff8597236101c5ed470/0_u.jpg" + }, + { + "back": "images/cube_2048/1/6e715e5245839ec8ccc5cc9b4df0c088/1_b.jpg", + "derived_id": 1724912050, + "derived_id_str": "1724912050", + "down": "images/cube_2048/1/6e715e5245839ec8ccc5cc9b4df0c088/1_d.jpg", + "front": "images/cube_2048/1/6e715e5245839ec8ccc5cc9b4df0c088/1_f.jpg", + "index": 1, + "left": "images/cube_2048/1/6e715e5245839ec8ccc5cc9b4df0c088/1_l.jpg", + "right": "images/cube_2048/1/6e715e5245839ec8ccc5cc9b4df0c088/1_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/1/6e715e5245839ec8ccc5cc9b4df0c088/1_u.jpg" + }, + { + "back": "images/cube_2048/2/b1df7cf3ecd98ad6dce3a04c60f208e2/2_b.jpg", + "derived_id": 1724912090, + "derived_id_str": "1724912090", + "down": "images/cube_2048/2/b1df7cf3ecd98ad6dce3a04c60f208e2/2_d.jpg", + "front": "images/cube_2048/2/b1df7cf3ecd98ad6dce3a04c60f208e2/2_f.jpg", + "index": 2, + "left": "images/cube_2048/2/b1df7cf3ecd98ad6dce3a04c60f208e2/2_l.jpg", + "right": "images/cube_2048/2/b1df7cf3ecd98ad6dce3a04c60f208e2/2_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/2/b1df7cf3ecd98ad6dce3a04c60f208e2/2_u.jpg" + }, + { + "back": "images/cube_2048/3/80815e55570f6e465cd40de1cbe78b21/3_b.jpg", + "derived_id": 1724912124, + "derived_id_str": "1724912124", + "down": "images/cube_2048/3/80815e55570f6e465cd40de1cbe78b21/3_d.jpg", + "front": "images/cube_2048/3/80815e55570f6e465cd40de1cbe78b21/3_f.jpg", + "index": 3, + "left": "images/cube_2048/3/80815e55570f6e465cd40de1cbe78b21/3_l.jpg", + "right": "images/cube_2048/3/80815e55570f6e465cd40de1cbe78b21/3_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/3/80815e55570f6e465cd40de1cbe78b21/3_u.jpg" + }, + { + "back": "images/cube_2048/4/36d109cfd539accd70f86252f30614ef/4_b.jpg", + "derived_id": 1724912159, + "derived_id_str": "1724912159", + "down": "images/cube_2048/4/36d109cfd539accd70f86252f30614ef/4_d.jpg", + "front": "images/cube_2048/4/36d109cfd539accd70f86252f30614ef/4_f.jpg", + "index": 4, + "left": "images/cube_2048/4/36d109cfd539accd70f86252f30614ef/4_l.jpg", + "right": "images/cube_2048/4/36d109cfd539accd70f86252f30614ef/4_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/4/36d109cfd539accd70f86252f30614ef/4_u.jpg" + }, + { + "back": "images/cube_2048/5/550205536ef755c588b4f4c535baa6d7/5_b.jpg", + "derived_id": 1724912197, + "derived_id_str": "1724912197", + "down": "images/cube_2048/5/550205536ef755c588b4f4c535baa6d7/5_d.jpg", + "front": "images/cube_2048/5/550205536ef755c588b4f4c535baa6d7/5_f.jpg", + "index": 5, + "left": "images/cube_2048/5/550205536ef755c588b4f4c535baa6d7/5_l.jpg", + "right": "images/cube_2048/5/550205536ef755c588b4f4c535baa6d7/5_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/5/550205536ef755c588b4f4c535baa6d7/5_u.jpg" + }, + { + "back": "images/cube_2048/6/0c866c8dc2f048a1ecfb540e0915d8f0/6_b.jpg", + "derived_id": 1724912230, + "derived_id_str": "1724912230", + "down": "images/cube_2048/6/0c866c8dc2f048a1ecfb540e0915d8f0/6_d.jpg", + "front": "images/cube_2048/6/0c866c8dc2f048a1ecfb540e0915d8f0/6_f.jpg", + "index": 6, + "left": "images/cube_2048/6/0c866c8dc2f048a1ecfb540e0915d8f0/6_l.jpg", + "right": "images/cube_2048/6/0c866c8dc2f048a1ecfb540e0915d8f0/6_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/6/0c866c8dc2f048a1ecfb540e0915d8f0/6_u.jpg" + }, + { + "back": "images/cube_2048/7/47e0fc05381534bd73b37cc0c1d260a2/7_b.jpg", + "derived_id": 1724912266, + "derived_id_str": "1724912266", + "down": "images/cube_2048/7/47e0fc05381534bd73b37cc0c1d260a2/7_d.jpg", + "front": "images/cube_2048/7/47e0fc05381534bd73b37cc0c1d260a2/7_f.jpg", + "index": 7, + "left": "images/cube_2048/7/47e0fc05381534bd73b37cc0c1d260a2/7_l.jpg", + "right": "images/cube_2048/7/47e0fc05381534bd73b37cc0c1d260a2/7_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/7/47e0fc05381534bd73b37cc0c1d260a2/7_u.jpg" + }, + { + "back": "images/cube_2048/8/6e571d5b667767a83870788fae4093da/8_b.jpg", + "derived_id": 1724912300, + "derived_id_str": "1724912300", + "down": "images/cube_2048/8/6e571d5b667767a83870788fae4093da/8_d.jpg", + "front": "images/cube_2048/8/6e571d5b667767a83870788fae4093da/8_f.jpg", + "index": 8, + "left": "images/cube_2048/8/6e571d5b667767a83870788fae4093da/8_l.jpg", + "right": "images/cube_2048/8/6e571d5b667767a83870788fae4093da/8_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/8/6e571d5b667767a83870788fae4093da/8_u.jpg" + }, + { + "back": "images/cube_2048/9/28892acc4d7685b581385a359fa969a2/9_b.jpg", + "derived_id": 1724912340, + "derived_id_str": "1724912340", + "down": "images/cube_2048/9/28892acc4d7685b581385a359fa969a2/9_d.jpg", + "front": "images/cube_2048/9/28892acc4d7685b581385a359fa969a2/9_f.jpg", + "index": 9, + "left": "images/cube_2048/9/28892acc4d7685b581385a359fa969a2/9_l.jpg", + "right": "images/cube_2048/9/28892acc4d7685b581385a359fa969a2/9_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/9/28892acc4d7685b581385a359fa969a2/9_u.jpg" + }, + { + "back": "images/cube_2048/10/d75ec348ef2df7548d36c26c4c1f0a0e/10_b.jpg", + "derived_id": 1724912378, + "derived_id_str": "1724912378", + "down": "images/cube_2048/10/d75ec348ef2df7548d36c26c4c1f0a0e/10_d.jpg", + "front": "images/cube_2048/10/d75ec348ef2df7548d36c26c4c1f0a0e/10_f.jpg", + "index": 10, + "left": "images/cube_2048/10/d75ec348ef2df7548d36c26c4c1f0a0e/10_l.jpg", + "right": "images/cube_2048/10/d75ec348ef2df7548d36c26c4c1f0a0e/10_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/10/d75ec348ef2df7548d36c26c4c1f0a0e/10_u.jpg" + }, + { + "back": "images/cube_2048/11/d899769f2aedde9c4130d46c43bd9dd4/11_b.jpg", + "derived_id": 1724912420, + "derived_id_str": "1724912420", + "down": "images/cube_2048/11/d899769f2aedde9c4130d46c43bd9dd4/11_d.jpg", + "front": "images/cube_2048/11/d899769f2aedde9c4130d46c43bd9dd4/11_f.jpg", + "index": 11, + "left": "images/cube_2048/11/d899769f2aedde9c4130d46c43bd9dd4/11_l.jpg", + "right": "images/cube_2048/11/d899769f2aedde9c4130d46c43bd9dd4/11_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/11/d899769f2aedde9c4130d46c43bd9dd4/11_u.jpg" + }, + { + "back": "images/cube_2048/12/6df8d6ba57b5a5a4f4b3107958798745/12_b.jpg", + "derived_id": 1724912459, + "derived_id_str": "1724912459", + "down": "images/cube_2048/12/6df8d6ba57b5a5a4f4b3107958798745/12_d.jpg", + "front": "images/cube_2048/12/6df8d6ba57b5a5a4f4b3107958798745/12_f.jpg", + "index": 12, + "left": "images/cube_2048/12/6df8d6ba57b5a5a4f4b3107958798745/12_l.jpg", + "right": "images/cube_2048/12/6df8d6ba57b5a5a4f4b3107958798745/12_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/12/6df8d6ba57b5a5a4f4b3107958798745/12_u.jpg" + }, + { + "back": "images/cube_2048/13/ed1bca793a620ac6949f140f5d83c4a8/13_b.jpg", + "derived_id": 1724912500, + "derived_id_str": "1724912500", + "down": "images/cube_2048/13/ed1bca793a620ac6949f140f5d83c4a8/13_d.jpg", + "front": "images/cube_2048/13/ed1bca793a620ac6949f140f5d83c4a8/13_f.jpg", + "index": 13, + "left": "images/cube_2048/13/ed1bca793a620ac6949f140f5d83c4a8/13_l.jpg", + "right": "images/cube_2048/13/ed1bca793a620ac6949f140f5d83c4a8/13_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/13/ed1bca793a620ac6949f140f5d83c4a8/13_u.jpg" + }, + { + "back": "images/cube_2048/14/98c7d65f0d99d6b41b9899341298af83/14_b.jpg", + "derived_id": 1724912535, + "derived_id_str": "1724912535", + "down": "images/cube_2048/14/98c7d65f0d99d6b41b9899341298af83/14_d.jpg", + "front": "images/cube_2048/14/98c7d65f0d99d6b41b9899341298af83/14_f.jpg", + "index": 14, + "left": "images/cube_2048/14/98c7d65f0d99d6b41b9899341298af83/14_l.jpg", + "right": "images/cube_2048/14/98c7d65f0d99d6b41b9899341298af83/14_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/14/98c7d65f0d99d6b41b9899341298af83/14_u.jpg" + }, + { + "back": "images/cube_2048/15/2f0a7cf746d013d8441930a8e4a3c335/15_b.jpg", + "derived_id": 1724912576, + "derived_id_str": "1724912576", + "down": "images/cube_2048/15/2f0a7cf746d013d8441930a8e4a3c335/15_d.jpg", + "front": "images/cube_2048/15/2f0a7cf746d013d8441930a8e4a3c335/15_f.jpg", + "index": 15, + "left": "images/cube_2048/15/2f0a7cf746d013d8441930a8e4a3c335/15_l.jpg", + "right": "images/cube_2048/15/2f0a7cf746d013d8441930a8e4a3c335/15_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/15/2f0a7cf746d013d8441930a8e4a3c335/15_u.jpg" + }, + { + "back": "images/cube_2048/16/17a9cc2af57033c61897e75130dce08b/16_b.jpg", + "derived_id": 1724912615, + "derived_id_str": "1724912615", + "down": "images/cube_2048/16/17a9cc2af57033c61897e75130dce08b/16_d.jpg", + "front": "images/cube_2048/16/17a9cc2af57033c61897e75130dce08b/16_f.jpg", + "index": 16, + "left": "images/cube_2048/16/17a9cc2af57033c61897e75130dce08b/16_l.jpg", + "right": "images/cube_2048/16/17a9cc2af57033c61897e75130dce08b/16_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/16/17a9cc2af57033c61897e75130dce08b/16_u.jpg" + }, + { + "back": "images/cube_2048/17/461a5e0e91d46e328084a6c3c0390740/17_b.jpg", + "derived_id": 1724912649, + "derived_id_str": "1724912649", + "down": "images/cube_2048/17/461a5e0e91d46e328084a6c3c0390740/17_d.jpg", + "front": "images/cube_2048/17/461a5e0e91d46e328084a6c3c0390740/17_f.jpg", + "index": 17, + "left": "images/cube_2048/17/461a5e0e91d46e328084a6c3c0390740/17_l.jpg", + "right": "images/cube_2048/17/461a5e0e91d46e328084a6c3c0390740/17_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/17/461a5e0e91d46e328084a6c3c0390740/17_u.jpg" + }, + { + "back": "images/cube_2048/18/80127225403713da554ab59840e45004/18_b.jpg", + "derived_id": 1724912716, + "derived_id_str": "1724912716", + "down": "images/cube_2048/18/80127225403713da554ab59840e45004/18_d.jpg", + "front": "images/cube_2048/18/80127225403713da554ab59840e45004/18_f.jpg", + "index": 18, + "left": "images/cube_2048/18/80127225403713da554ab59840e45004/18_l.jpg", + "right": "images/cube_2048/18/80127225403713da554ab59840e45004/18_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/18/80127225403713da554ab59840e45004/18_u.jpg" + }, + { + "back": "images/cube_2048/19/9b05eac74c748ce6a93028987d45219a/19_b.jpg", + "derived_id": 1724912760, + "derived_id_str": "1724912760", + "down": "images/cube_2048/19/9b05eac74c748ce6a93028987d45219a/19_d.jpg", + "front": "images/cube_2048/19/9b05eac74c748ce6a93028987d45219a/19_f.jpg", + "index": 19, + "left": "images/cube_2048/19/9b05eac74c748ce6a93028987d45219a/19_l.jpg", + "right": "images/cube_2048/19/9b05eac74c748ce6a93028987d45219a/19_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/19/9b05eac74c748ce6a93028987d45219a/19_u.jpg" + }, + { + "back": "images/cube_2048/20/1ce113d9e1b10b9db7a3f2d862328581/20_b.jpg", + "derived_id": 1724912799, + "derived_id_str": "1724912799", + "down": "images/cube_2048/20/1ce113d9e1b10b9db7a3f2d862328581/20_d.jpg", + "front": "images/cube_2048/20/1ce113d9e1b10b9db7a3f2d862328581/20_f.jpg", + "index": 20, + "left": "images/cube_2048/20/1ce113d9e1b10b9db7a3f2d862328581/20_l.jpg", + "right": "images/cube_2048/20/1ce113d9e1b10b9db7a3f2d862328581/20_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/20/1ce113d9e1b10b9db7a3f2d862328581/20_u.jpg" + }, + { + "back": "images/cube_2048/21/af6c1f2043b1a98e8afd77235765c47f/21_b.jpg", + "derived_id": 1724912840, + "derived_id_str": "1724912840", + "down": "images/cube_2048/21/af6c1f2043b1a98e8afd77235765c47f/21_d.jpg", + "front": "images/cube_2048/21/af6c1f2043b1a98e8afd77235765c47f/21_f.jpg", + "index": 21, + "left": "images/cube_2048/21/af6c1f2043b1a98e8afd77235765c47f/21_l.jpg", + "right": "images/cube_2048/21/af6c1f2043b1a98e8afd77235765c47f/21_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/21/af6c1f2043b1a98e8afd77235765c47f/21_u.jpg" + }, + { + "back": "images/cube_2048/22/098d6c9115823db62dc4640997845246/22_b.jpg", + "derived_id": 1724912880, + "derived_id_str": "1724912880", + "down": "images/cube_2048/22/098d6c9115823db62dc4640997845246/22_d.jpg", + "front": "images/cube_2048/22/098d6c9115823db62dc4640997845246/22_f.jpg", + "index": 22, + "left": "images/cube_2048/22/098d6c9115823db62dc4640997845246/22_l.jpg", + "right": "images/cube_2048/22/098d6c9115823db62dc4640997845246/22_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/22/098d6c9115823db62dc4640997845246/22_u.jpg" + }, + { + "back": "images/cube_2048/23/0e824349594b253982d296fe82dc8140/23_b.jpg", + "derived_id": 1724912916, + "derived_id_str": "1724912916", + "down": "images/cube_2048/23/0e824349594b253982d296fe82dc8140/23_d.jpg", + "front": "images/cube_2048/23/0e824349594b253982d296fe82dc8140/23_f.jpg", + "index": 23, + "left": "images/cube_2048/23/0e824349594b253982d296fe82dc8140/23_l.jpg", + "right": "images/cube_2048/23/0e824349594b253982d296fe82dc8140/23_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/23/0e824349594b253982d296fe82dc8140/23_u.jpg" + }, + { + "back": "images/cube_2048/24/e53b92bbef5d28fa2424a0be2de907b1/24_b.jpg", + "derived_id": 1724912949, + "derived_id_str": "1724912949", + "down": "images/cube_2048/24/e53b92bbef5d28fa2424a0be2de907b1/24_d.jpg", + "front": "images/cube_2048/24/e53b92bbef5d28fa2424a0be2de907b1/24_f.jpg", + "index": 24, + "left": "images/cube_2048/24/e53b92bbef5d28fa2424a0be2de907b1/24_l.jpg", + "right": "images/cube_2048/24/e53b92bbef5d28fa2424a0be2de907b1/24_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/24/e53b92bbef5d28fa2424a0be2de907b1/24_u.jpg" + }, + { + "back": "images/cube_2048/25/65417b674cd23defd4c6ef3747c106aa/25_b.jpg", + "derived_id": 1724912990, + "derived_id_str": "1724912990", + "down": "images/cube_2048/25/65417b674cd23defd4c6ef3747c106aa/25_d.jpg", + "front": "images/cube_2048/25/65417b674cd23defd4c6ef3747c106aa/25_f.jpg", + "index": 25, + "left": "images/cube_2048/25/65417b674cd23defd4c6ef3747c106aa/25_l.jpg", + "right": "images/cube_2048/25/65417b674cd23defd4c6ef3747c106aa/25_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/25/65417b674cd23defd4c6ef3747c106aa/25_u.jpg" + }, + { + "back": "images/cube_2048/26/bbe17aed25e2db53e39875bc5df3ed0b/26_b.jpg", + "derived_id": 1724913038, + "derived_id_str": "1724913038", + "down": "images/cube_2048/26/bbe17aed25e2db53e39875bc5df3ed0b/26_d.jpg", + "front": "images/cube_2048/26/bbe17aed25e2db53e39875bc5df3ed0b/26_f.jpg", + "index": 26, + "left": "images/cube_2048/26/bbe17aed25e2db53e39875bc5df3ed0b/26_l.jpg", + "right": "images/cube_2048/26/bbe17aed25e2db53e39875bc5df3ed0b/26_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/26/bbe17aed25e2db53e39875bc5df3ed0b/26_u.jpg" + }, + { + "back": "images/cube_2048/27/de1a46f89547ba9968860f87ec89fa81/27_b.jpg", + "derived_id": 1724913082, + "derived_id_str": "1724913082", + "down": "images/cube_2048/27/de1a46f89547ba9968860f87ec89fa81/27_d.jpg", + "front": "images/cube_2048/27/de1a46f89547ba9968860f87ec89fa81/27_f.jpg", + "index": 27, + "left": "images/cube_2048/27/de1a46f89547ba9968860f87ec89fa81/27_l.jpg", + "right": "images/cube_2048/27/de1a46f89547ba9968860f87ec89fa81/27_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/27/de1a46f89547ba9968860f87ec89fa81/27_u.jpg" + }, + { + "back": "images/cube_2048/28/cde5ab8e8039cf3c395f9aa48737cdf5/28_b.jpg", + "derived_id": 1724913118, + "derived_id_str": "1724913118", + "down": "images/cube_2048/28/cde5ab8e8039cf3c395f9aa48737cdf5/28_d.jpg", + "front": "images/cube_2048/28/cde5ab8e8039cf3c395f9aa48737cdf5/28_f.jpg", + "index": 28, + "left": "images/cube_2048/28/cde5ab8e8039cf3c395f9aa48737cdf5/28_l.jpg", + "right": "images/cube_2048/28/cde5ab8e8039cf3c395f9aa48737cdf5/28_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/28/cde5ab8e8039cf3c395f9aa48737cdf5/28_u.jpg" + }, + { + "back": "images/cube_2048/29/49ee1f1bbf747e9b52ef324e452d447f/29_b.jpg", + "derived_id": 1724913151, + "derived_id_str": "1724913151", + "down": "images/cube_2048/29/49ee1f1bbf747e9b52ef324e452d447f/29_d.jpg", + "front": "images/cube_2048/29/49ee1f1bbf747e9b52ef324e452d447f/29_f.jpg", + "index": 29, + "left": "images/cube_2048/29/49ee1f1bbf747e9b52ef324e452d447f/29_l.jpg", + "right": "images/cube_2048/29/49ee1f1bbf747e9b52ef324e452d447f/29_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/29/49ee1f1bbf747e9b52ef324e452d447f/29_u.jpg" + }, + { + "back": "images/cube_2048/30/0eafaf2f52dd5b83af193b5799a785b9/30_b.jpg", + "derived_id": 1724913187, + "derived_id_str": "1724913187", + "down": "images/cube_2048/30/0eafaf2f52dd5b83af193b5799a785b9/30_d.jpg", + "front": "images/cube_2048/30/0eafaf2f52dd5b83af193b5799a785b9/30_f.jpg", + "index": 30, + "left": "images/cube_2048/30/0eafaf2f52dd5b83af193b5799a785b9/30_l.jpg", + "right": "images/cube_2048/30/0eafaf2f52dd5b83af193b5799a785b9/30_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/30/0eafaf2f52dd5b83af193b5799a785b9/30_u.jpg" + } + ] + }, + "picture_url": "https://vrlab-public.ljcdn.com/release/screenshot/auto3d-light-8RDdZ7BwWxqVoa3L/cce8b1fa6b867956bd1ad2b5000dd3bd/1724912005_0/pc0_0RvqkaANa.jpg", + "title_picture_url": "https://vrlab-public.ljcdn.com/release/screenshot/auto3d-light-8RDdZ7BwWxqVoa3L/cce8b1fa6b867956bd1ad2b5000dd3bd/1724912005_0/pc1_Sgxh0UjIm.jpg", + "vr_code": "lyEPD4mxJnE3zaAV" +} \ No newline at end of file diff --git a/open-works/real/demo1/work.json b/open-works/real/demo1/work.json new file mode 100644 index 000000000..82e4dc424 --- /dev/null +++ b/open-works/real/demo1/work.json @@ -0,0 +1,989 @@ +{ + "_signature": "J0tJv2f15uYh6FeLPAa8ZrvRpY/1G/XbiR5rIfXbT0knaMfZn3fRPOamfiS24CGvlhVoc95Qx9gci+LY2ldnP2sSB8ahbxU18WS26c0f0w+xyvk9jBBNtJ9vF0cfgcVqeuSGtodP23LBNj00Xwc4RENtaREIkF1rl7kSnoztgHo=", + "allow_hosts": [ + "*" + ], + "base_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/14b0930a84a6a63ab6d8e44f11cbd4ee/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2024-08-31 16:06:28", + "expire_at": "1825080124000", + "initial": { + "fov": 90, + "heading": 0, + "latitude": 0, + "longitude": 0, + "pano": 0, + "pano_index": 0 + }, + "model": { + "layers": [ + { + "name": "galois", + "tileset_url": "http://vrlab-public.ljcdn.com/release/auto3dhd/686f806fe1555795fc6ce6495a2cbaa0/point_cloud/309888a0776ff3f0f6906f1979b9e6f2/tileset.json", + "tileset_url_checksum": "4facdc455bf669ce3da8c28bee821aa4", + "type": "point_cloud", + "up_axis": "Z" + } + ], + "material_base_url": "materials/321afa27ef4d0a4864c664acfa962f3d/", + "material_textures": [ + "texture_0.jpg", + "texture_1.jpg", + "texture_2.jpg", + "texture_3.jpg", + "texture_4.jpg", + "texture_5.jpg", + "texture_6.jpg", + "texture_7.jpg", + "texture_8.jpg", + "texture_9.jpg", + "texture_10.jpg", + "texture_11.jpg", + "texture_12.jpg", + "texture_13.jpg", + "texture_14.jpg", + "texture_15.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [ + 1, + 2, + 12, + 13, + 14, + 15, + 16 + ], + "active": true, + "floor_index": 0, + "index": 0, + "offset_point_count": 0, + "position": [ + -0.0324739497, + 0.4917628264, + 0.0413834749 + ], + "quaternion": { + "w": -0.00703073347204622, + "x": -0.00424291900403862, + "y": -0.9999660601490432, + "z": 0.0006670770404954537 + }, + "standing_position": [ + -0.0324739497, + -0.9033362174461304, + 0.0413834749 + ], + "visible_nodes": [ + 1, + 2, + 12, + 13, + 14, + 15, + 16 + ] + }, + { + "accessible_nodes": [ + 0, + 2, + 3, + 4, + 12, + 14, + 16 + ], + "active": true, + "floor_index": 0, + "index": 1, + "offset_point_count": 0, + "position": [ + 4.9118470954, + 0.4372971437, + 0.3559551727 + ], + "quaternion": { + "w": -0.374680838011571, + "x": -0.004555018848018843, + "y": -0.92714186063946, + "z": -0.0012213330808069662 + }, + "standing_position": [ + 4.9118470954, + -0.9294865944362916, + 0.3559551727 + ], + "visible_nodes": [ + 0, + 2, + 3, + 4, + 12, + 14, + 16 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 3, + 5 + ], + "active": true, + "floor_index": 0, + "index": 2, + "offset_point_count": 0, + "position": [ + 10.8656718521, + 0.4081396214, + 0.9310681062 + ], + "quaternion": { + "w": -0.5719325364950779, + "x": -0.004963297290825202, + "y": -0.8202855806211639, + "z": 0.00032502061635435756 + }, + "standing_position": [ + 10.8656718521, + -0.9847490437992799, + 0.9310681062 + ], + "visible_nodes": [ + 0, + 1, + 3, + 5 + ] + }, + { + "accessible_nodes": [ + 1, + 2, + 4, + 5 + ], + "active": true, + "floor_index": 0, + "index": 3, + "offset_point_count": 0, + "position": [ + 14.4441779887, + 0.2985843191, + 4.7993862718 + ], + "quaternion": { + "w": -0.9238570457733166, + "x": -0.006124764892888399, + "y": -0.38264984425062265, + "z": 0.005453707094675672 + }, + "standing_position": [ + 14.4441779887, + -1.0324369897989258, + 4.7993862718 + ], + "visible_nodes": [ + 1, + 2, + 4, + 5 + ] + }, + { + "accessible_nodes": [ + 1, + 3, + 5, + 7, + 8 + ], + "active": true, + "floor_index": 0, + "index": 4, + "offset_point_count": 0, + "position": [ + 14.5635054138, + 0.3358022296, + 9.7511648291 + ], + "quaternion": { + "w": -0.8315651428075439, + "x": -0.005886019399870382, + "y": -0.5553437735988404, + "z": 0.0076197877804186735 + }, + "standing_position": [ + 14.5635054138, + -1.016105738921118, + 9.7511648291 + ], + "visible_nodes": [ + 1, + 3, + 5, + 7, + 8 + ] + }, + { + "accessible_nodes": [ + 2, + 3, + 4, + 7, + 8, + 9 + ], + "active": true, + "floor_index": 0, + "index": 5, + "offset_point_count": 0, + "position": [ + 15.2835812492, + 0.3111212619, + 14.5946614395 + ], + "quaternion": { + "w": -0.9946896386310656, + "x": 0.0005949856136176274, + "y": 0.1024690277665639, + "z": 0.009605578844823793 + }, + "standing_position": [ + 15.2835812492, + -0.969882213289209, + 14.5946614395 + ], + "visible_nodes": [ + 2, + 3, + 4, + 7, + 8, + 9 + ] + }, + { + "accessible_nodes": [ + 7, + 8, + 9, + 10 + ], + "active": true, + "floor_index": 0, + "index": 6, + "offset_point_count": 0, + "position": [ + 12.6363141129, + 0.4023261672, + 18.6532828709 + ], + "quaternion": { + "w": -0.8936068876608998, + "x": -0.001388031462298534, + "y": 0.4488279889212288, + "z": -0.004270837661054703 + }, + "standing_position": [ + 12.6363141129, + -0.972293555166333, + 18.6532828709 + ], + "visible_nodes": [ + 7, + 8, + 9, + 10 + ] + }, + { + "accessible_nodes": [ + 4, + 5, + 6, + 8, + 9, + 10, + 11 + ], + "active": true, + "floor_index": 0, + "index": 7, + "offset_point_count": 0, + "position": [ + 6.3080263719, + 0.4191019689, + 18.7715212823 + ], + "quaternion": { + "w": 0.7748527970907141, + "x": -0.0012638539032492956, + "y": -0.6321404103322299, + "z": 0.00021718857512667547 + }, + "standing_position": [ + 6.3080263719, + -0.9718614662730347, + 18.7715212823 + ], + "visible_nodes": [ + 4, + 5, + 6, + 8, + 9, + 10, + 11 + ] + }, + { + "accessible_nodes": [ + 4, + 5, + 6, + 7, + 9, + 10, + 11 + ], + "active": true, + "floor_index": 0, + "index": 8, + "offset_point_count": 0, + "position": [ + 8.5887631962, + 0.4128105242, + 18.557925697 + ], + "quaternion": { + "w": -0.19811993665242777, + "x": -0.004177696278495137, + "y": -0.9801673403302111, + "z": -0.0017385370894176066 + }, + "standing_position": [ + 8.5887631962, + -0.971242586876355, + 18.557925697 + ], + "visible_nodes": [ + 4, + 5, + 6, + 7, + 9, + 10, + 11 + ] + }, + { + "accessible_nodes": [ + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13 + ], + "active": true, + "floor_index": 0, + "index": 9, + "offset_point_count": 0, + "position": [ + 3.4134358188, + 0.4280420557, + 18.5812413508 + ], + "quaternion": { + "w": 0.8241200137903938, + "x": 0.003778533015929713, + "y": -0.5664010320876895, + "z": 0.0013403006120979468 + }, + "standing_position": [ + 3.4134358188, + -0.9576959594748657, + 18.5812413508 + ], + "visible_nodes": [ + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13 + ] + }, + { + "accessible_nodes": [ + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "active": true, + "floor_index": 0, + "index": 10, + "offset_point_count": 0, + "position": [ + -1.422943454, + 0.4406915485, + 18.631162818 + ], + "quaternion": { + "w": 0.5852851264124554, + "x": 0.0005201878959045501, + "y": -0.8108125992946829, + "z": 0.00489683794190409 + }, + "standing_position": [ + -1.422943454, + -0.9386035622025146, + 18.631162818 + ], + "visible_nodes": [ + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ] + }, + { + "accessible_nodes": [ + 7, + 8, + 9, + 10, + 12, + 13, + 14 + ], + "active": true, + "floor_index": 0, + "index": 11, + "offset_point_count": 0, + "position": [ + -4.1557574016, + 0.4575649622, + 15.633689085 + ], + "quaternion": { + "w": 0.11271319344332946, + "x": -0.01194578646052827, + "y": -0.9935418998336205, + "z": 0.0052466651390072816 + }, + "standing_position": [ + -4.1557574016, + -0.9172854301416138, + 15.633689085 + ], + "visible_nodes": [ + 7, + 8, + 9, + 10, + 12, + 13, + 14 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 9, + 10, + 11, + 13, + 14, + 15, + 16 + ], + "active": true, + "floor_index": 0, + "index": 12, + "offset_point_count": 0, + "position": [ + -4.3625991813, + 0.4916378271, + 12.034710371 + ], + "quaternion": { + "w": 0.19448019132851335, + "x": -0.003656251572408399, + "y": -0.9808965969586193, + "z": 0.0024398909705882913 + }, + "standing_position": [ + -4.3625991813, + -0.8852027643306641, + 12.034710371 + ], + "visible_nodes": [ + 0, + 1, + 9, + 10, + 11, + 13, + 14, + 15, + 16 + ] + }, + { + "accessible_nodes": [ + 0, + 9, + 10, + 11, + 12, + 14, + 15, + 16 + ], + "active": true, + "floor_index": 0, + "index": 13, + "offset_point_count": 0, + "position": [ + -7.2860128151, + 0.54830407, + 8.4187468161 + ], + "quaternion": { + "w": 0.006773260434120705, + "x": 0.018756524385740877, + "y": -0.9997503662915058, + "z": -0.01007575517312963 + }, + "standing_position": [ + -7.2860128151, + -0.7322569003063965, + 8.4187468161 + ], + "visible_nodes": [ + 0, + 9, + 10, + 11, + 12, + 14, + 15, + 16 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 11, + 12, + 13, + 15, + 16 + ], + "active": true, + "floor_index": 0, + "index": 14, + "offset_point_count": 0, + "position": [ + -5.5161950687, + 0.5850666684, + 3.0324827619 + ], + "quaternion": { + "w": 0.04710657158767364, + "x": -0.00789196321156556, + "y": -0.99885482086988, + "z": -0.002781122808798814 + }, + "standing_position": [ + -5.5161950687, + -0.8015257197530762, + 3.0324827619 + ], + "visible_nodes": [ + 0, + 1, + 11, + 12, + 13, + 15, + 16 + ] + }, + { + "accessible_nodes": [ + 0, + 12, + 13, + 14, + 16 + ], + "active": true, + "floor_index": 0, + "index": 15, + "offset_point_count": 0, + "position": [ + -13.0025255979, + 0.6662493456, + 1.3064896243 + ], + "quaternion": { + "w": -0.8092607734074707, + "x": -0.014061743195523672, + "y": -0.5872646111634857, + "z": -0.004420910694510079 + }, + "standing_position": [ + -13.0025255979, + -0.7192847024804443, + 1.3064896243 + ], + "visible_nodes": [ + 0, + 12, + 13, + 14, + 16 + ] + }, + { + "accessible_nodes": [ + 0, + 1, + 12, + 13, + 14, + 15 + ], + "active": true, + "floor_index": 0, + "index": 16, + "offset_point_count": 0, + "position": [ + -8.4994085785, + 0.6477018941, + 0.2166318922 + ], + "quaternion": { + "w": -0.8412822342725415, + "x": -0.012986457805755282, + "y": -0.5404287454651168, + "z": -0.003510741824747051 + }, + "standing_position": [ + -8.4994085785, + -0.7334566962167725, + 0.2166318922 + ], + "visible_nodes": [ + 0, + 1, + 12, + 13, + 14, + 15 + ] + } + ], + "panorama": { + "count": 17, + "cube_path": "images/cube_2048/", + "list": [ + { + "back": "images/cube_2048/0/fdf23df2d1c3093ad76a4d1393d7b25a/0_b.jpg", + "derived_id": 1724911132, + "derived_id_str": "1724911132", + "down": "images/cube_2048/0/fdf23df2d1c3093ad76a4d1393d7b25a/0_d.jpg", + "front": "images/cube_2048/0/fdf23df2d1c3093ad76a4d1393d7b25a/0_f.jpg", + "index": 0, + "left": "images/cube_2048/0/fdf23df2d1c3093ad76a4d1393d7b25a/0_l.jpg", + "right": "images/cube_2048/0/fdf23df2d1c3093ad76a4d1393d7b25a/0_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/0/fdf23df2d1c3093ad76a4d1393d7b25a/0_u.jpg" + }, + { + "back": "images/cube_2048/1/713f217c4d58c9f60f6e493c0fd2de39/1_b.jpg", + "derived_id": 1724911168, + "derived_id_str": "1724911168", + "down": "images/cube_2048/1/713f217c4d58c9f60f6e493c0fd2de39/1_d.jpg", + "front": "images/cube_2048/1/713f217c4d58c9f60f6e493c0fd2de39/1_f.jpg", + "index": 1, + "left": "images/cube_2048/1/713f217c4d58c9f60f6e493c0fd2de39/1_l.jpg", + "right": "images/cube_2048/1/713f217c4d58c9f60f6e493c0fd2de39/1_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/1/713f217c4d58c9f60f6e493c0fd2de39/1_u.jpg" + }, + { + "back": "images/cube_2048/2/d9610459ffb2beeb385b188623a0c887/2_b.jpg", + "derived_id": 1724911207, + "derived_id_str": "1724911207", + "down": "images/cube_2048/2/d9610459ffb2beeb385b188623a0c887/2_d.jpg", + "front": "images/cube_2048/2/d9610459ffb2beeb385b188623a0c887/2_f.jpg", + "index": 2, + "left": "images/cube_2048/2/d9610459ffb2beeb385b188623a0c887/2_l.jpg", + "right": "images/cube_2048/2/d9610459ffb2beeb385b188623a0c887/2_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/2/d9610459ffb2beeb385b188623a0c887/2_u.jpg" + }, + { + "back": "images/cube_2048/3/2372a7a71f579e2b13d10509efce720c/3_b.jpg", + "derived_id": 1724911251, + "derived_id_str": "1724911251", + "down": "images/cube_2048/3/2372a7a71f579e2b13d10509efce720c/3_d.jpg", + "front": "images/cube_2048/3/2372a7a71f579e2b13d10509efce720c/3_f.jpg", + "index": 3, + "left": "images/cube_2048/3/2372a7a71f579e2b13d10509efce720c/3_l.jpg", + "right": "images/cube_2048/3/2372a7a71f579e2b13d10509efce720c/3_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/3/2372a7a71f579e2b13d10509efce720c/3_u.jpg" + }, + { + "back": "images/cube_2048/4/8e556b3850a793a93d0ab265164a1db6/4_b.jpg", + "derived_id": 1724911289, + "derived_id_str": "1724911289", + "down": "images/cube_2048/4/8e556b3850a793a93d0ab265164a1db6/4_d.jpg", + "front": "images/cube_2048/4/8e556b3850a793a93d0ab265164a1db6/4_f.jpg", + "index": 4, + "left": "images/cube_2048/4/8e556b3850a793a93d0ab265164a1db6/4_l.jpg", + "right": "images/cube_2048/4/8e556b3850a793a93d0ab265164a1db6/4_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/4/8e556b3850a793a93d0ab265164a1db6/4_u.jpg" + }, + { + "back": "images/cube_2048/5/38500c4368c97a974fb41b290f687f38/5_b.jpg", + "derived_id": 1724911327, + "derived_id_str": "1724911327", + "down": "images/cube_2048/5/38500c4368c97a974fb41b290f687f38/5_d.jpg", + "front": "images/cube_2048/5/38500c4368c97a974fb41b290f687f38/5_f.jpg", + "index": 5, + "left": "images/cube_2048/5/38500c4368c97a974fb41b290f687f38/5_l.jpg", + "right": "images/cube_2048/5/38500c4368c97a974fb41b290f687f38/5_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/5/38500c4368c97a974fb41b290f687f38/5_u.jpg" + }, + { + "back": "images/cube_2048/6/0857840b842b120808061fb5ab6ca4c5/6_b.jpg", + "derived_id": 1724911373, + "derived_id_str": "1724911373", + "down": "images/cube_2048/6/0857840b842b120808061fb5ab6ca4c5/6_d.jpg", + "front": "images/cube_2048/6/0857840b842b120808061fb5ab6ca4c5/6_f.jpg", + "index": 6, + "left": "images/cube_2048/6/0857840b842b120808061fb5ab6ca4c5/6_l.jpg", + "right": "images/cube_2048/6/0857840b842b120808061fb5ab6ca4c5/6_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/6/0857840b842b120808061fb5ab6ca4c5/6_u.jpg" + }, + { + "back": "images/cube_2048/7/c7453ff92a428440e4baa6484775884d/7_b.jpg", + "derived_id": 1724911413, + "derived_id_str": "1724911413", + "down": "images/cube_2048/7/c7453ff92a428440e4baa6484775884d/7_d.jpg", + "front": "images/cube_2048/7/c7453ff92a428440e4baa6484775884d/7_f.jpg", + "index": 7, + "left": "images/cube_2048/7/c7453ff92a428440e4baa6484775884d/7_l.jpg", + "right": "images/cube_2048/7/c7453ff92a428440e4baa6484775884d/7_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/7/c7453ff92a428440e4baa6484775884d/7_u.jpg" + }, + { + "back": "images/cube_2048/8/22494adb10bb9aaf809ac072fea497a6/8_b.jpg", + "derived_id": 1724911460, + "derived_id_str": "1724911460", + "down": "images/cube_2048/8/22494adb10bb9aaf809ac072fea497a6/8_d.jpg", + "front": "images/cube_2048/8/22494adb10bb9aaf809ac072fea497a6/8_f.jpg", + "index": 8, + "left": "images/cube_2048/8/22494adb10bb9aaf809ac072fea497a6/8_l.jpg", + "right": "images/cube_2048/8/22494adb10bb9aaf809ac072fea497a6/8_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/8/22494adb10bb9aaf809ac072fea497a6/8_u.jpg" + }, + { + "back": "images/cube_2048/9/3eb9e82cadbb8e7ead3dfc50abe05a94/9_b.jpg", + "derived_id": 1724911505, + "derived_id_str": "1724911505", + "down": "images/cube_2048/9/3eb9e82cadbb8e7ead3dfc50abe05a94/9_d.jpg", + "front": "images/cube_2048/9/3eb9e82cadbb8e7ead3dfc50abe05a94/9_f.jpg", + "index": 9, + "left": "images/cube_2048/9/3eb9e82cadbb8e7ead3dfc50abe05a94/9_l.jpg", + "right": "images/cube_2048/9/3eb9e82cadbb8e7ead3dfc50abe05a94/9_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/9/3eb9e82cadbb8e7ead3dfc50abe05a94/9_u.jpg" + }, + { + "back": "images/cube_2048/10/17523e9c16366c7ad8cae62d8afe7921/10_b.jpg", + "derived_id": 1724911549, + "derived_id_str": "1724911549", + "down": "images/cube_2048/10/17523e9c16366c7ad8cae62d8afe7921/10_d.jpg", + "front": "images/cube_2048/10/17523e9c16366c7ad8cae62d8afe7921/10_f.jpg", + "index": 10, + "left": "images/cube_2048/10/17523e9c16366c7ad8cae62d8afe7921/10_l.jpg", + "right": "images/cube_2048/10/17523e9c16366c7ad8cae62d8afe7921/10_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/10/17523e9c16366c7ad8cae62d8afe7921/10_u.jpg" + }, + { + "back": "images/cube_2048/11/67df5fa7b9d3ee6f5f209bce62b6531f/11_b.jpg", + "derived_id": 1724911590, + "derived_id_str": "1724911590", + "down": "images/cube_2048/11/67df5fa7b9d3ee6f5f209bce62b6531f/11_d.jpg", + "front": "images/cube_2048/11/67df5fa7b9d3ee6f5f209bce62b6531f/11_f.jpg", + "index": 11, + "left": "images/cube_2048/11/67df5fa7b9d3ee6f5f209bce62b6531f/11_l.jpg", + "right": "images/cube_2048/11/67df5fa7b9d3ee6f5f209bce62b6531f/11_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/11/67df5fa7b9d3ee6f5f209bce62b6531f/11_u.jpg" + }, + { + "back": "images/cube_2048/12/09c3ade0f4a8d58c799f980fe7800ffd/12_b.jpg", + "derived_id": 1724911626, + "derived_id_str": "1724911626", + "down": "images/cube_2048/12/09c3ade0f4a8d58c799f980fe7800ffd/12_d.jpg", + "front": "images/cube_2048/12/09c3ade0f4a8d58c799f980fe7800ffd/12_f.jpg", + "index": 12, + "left": "images/cube_2048/12/09c3ade0f4a8d58c799f980fe7800ffd/12_l.jpg", + "right": "images/cube_2048/12/09c3ade0f4a8d58c799f980fe7800ffd/12_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/12/09c3ade0f4a8d58c799f980fe7800ffd/12_u.jpg" + }, + { + "back": "images/cube_2048/13/fc91b703dd06d21e909397ab53760d0a/13_b.jpg", + "derived_id": 1724911664, + "derived_id_str": "1724911664", + "down": "images/cube_2048/13/fc91b703dd06d21e909397ab53760d0a/13_d.jpg", + "front": "images/cube_2048/13/fc91b703dd06d21e909397ab53760d0a/13_f.jpg", + "index": 13, + "left": "images/cube_2048/13/fc91b703dd06d21e909397ab53760d0a/13_l.jpg", + "right": "images/cube_2048/13/fc91b703dd06d21e909397ab53760d0a/13_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/13/fc91b703dd06d21e909397ab53760d0a/13_u.jpg" + }, + { + "back": "images/cube_2048/14/07d570ee8a83816eb8acade7c808d0bb/14_b.jpg", + "derived_id": 1724911705, + "derived_id_str": "1724911705", + "down": "images/cube_2048/14/07d570ee8a83816eb8acade7c808d0bb/14_d.jpg", + "front": "images/cube_2048/14/07d570ee8a83816eb8acade7c808d0bb/14_f.jpg", + "index": 14, + "left": "images/cube_2048/14/07d570ee8a83816eb8acade7c808d0bb/14_l.jpg", + "right": "images/cube_2048/14/07d570ee8a83816eb8acade7c808d0bb/14_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/14/07d570ee8a83816eb8acade7c808d0bb/14_u.jpg" + }, + { + "back": "images/cube_2048/15/a3d7085e452a102516b9ece0459f7a80/15_b.jpg", + "derived_id": 1724911794, + "derived_id_str": "1724911794", + "down": "images/cube_2048/15/a3d7085e452a102516b9ece0459f7a80/15_d.jpg", + "front": "images/cube_2048/15/a3d7085e452a102516b9ece0459f7a80/15_f.jpg", + "index": 15, + "left": "images/cube_2048/15/a3d7085e452a102516b9ece0459f7a80/15_l.jpg", + "right": "images/cube_2048/15/a3d7085e452a102516b9ece0459f7a80/15_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/15/a3d7085e452a102516b9ece0459f7a80/15_u.jpg" + }, + { + "back": "images/cube_2048/16/0a7cecb1bd72949b4bb9da5e40519918/16_b.jpg", + "derived_id": 1724911832, + "derived_id_str": "1724911832", + "down": "images/cube_2048/16/0a7cecb1bd72949b4bb9da5e40519918/16_d.jpg", + "front": "images/cube_2048/16/0a7cecb1bd72949b4bb9da5e40519918/16_f.jpg", + "index": 16, + "left": "images/cube_2048/16/0a7cecb1bd72949b4bb9da5e40519918/16_l.jpg", + "right": "images/cube_2048/16/0a7cecb1bd72949b4bb9da5e40519918/16_r.jpg", + "tiles": [ + 1, + 2, + 3 + ], + "up": "images/cube_2048/16/0a7cecb1bd72949b4bb9da5e40519918/16_u.jpg" + } + ] + }, + "picture_url": "https://vrlab-public.ljcdn.com/release/screenshot/auto3d-light-yWb4ZLRwQgqMpjL6/686f806fe1555795fc6ce6495a2cbaa0/1724911132_0/pc0_7u1ATn1Hs.jpg", + "title_picture_url": "https://vrlab-public.ljcdn.com/release/screenshot/auto3d-light-yWb4ZLRwQgqMpjL6/686f806fe1555795fc6ce6495a2cbaa0/1724911132_0/pc1_5zaCZyL7z.jpg", + "vr_code": "QG2vMPpn0gBMWrom" +} \ No newline at end of file diff --git a/open-works/real/goVEAXLvE4HWVjvT5x/work.json b/open-works/real/goVEAXLvE4HWVjvT5x/work.json new file mode 100644 index 000000000..5eb5bcf3d --- /dev/null +++ b/open-works/real/goVEAXLvE4HWVjvT5x/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"MWyx48eI262VvazKbsratuHbxMzNwtgPIMZ77fVBT44I4xh8tkWiC5H7S5NL0/pGF2n6LPWAD4hE5FqICd+shUeItiAvAT/aN5v9+h2ll+yQ5abPId+BENx1zstH/LqjLK6ubsafQ3ivzQQtCl6uaeA8YVouKLc5ke67jVlHtVU=\",\"allow_hosts\":[\"share.3dvr.pro\",\"rsvr.cn\",\"realsee.com\",\"realsee.cn\",\"rushivr.cn\",\"rushivr.com\"],\"base_url\":\"https://vr-public.realsee-cdn.cn/release/auto3dhd/9c21793ed31809b7ce20625b830637a8/\",\"basic_code\":\"80lyEPD4mxJnE3zaAV\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-08-31 16:06:46\",\"device_type\":4,\"expire_at\":\"1725093694589\",\"from_type\":\"vr\",\"initial\":{\"fov\":90,\"heading\":0,\"latitude\":0,\"longitude\":0,\"pano_index\":0},\"is_active\":true,\"model\":{\"file_url\":\"model/2d7b62299f0e05e9a266b42fd627b216/auto3d-light-Ge782ld3X3k21g4v-copy.at3d\",\"layers\":[{\"name\":\"galois\",\"tileset_url\":\"https://vrlab-public.ljcdn.com/release/auto3dhd/9c21793ed31809b7ce20625b830637a8/mesh/46a675c082b41d32ad5624e7faa89e8d/tileset.json\",\"tileset_url_checksum\":\"46a675c082b41d32ad5624e7faa89e8d\",\"type\":\"mesh\",\"up_axis\":\"Z\"},{\"name\":\"galois\",\"tileset_url\":\"https://vrlab-public.ljcdn.com/release/auto3dhd/9c21793ed31809b7ce20625b830637a8/point_cloud/a58a009d42a962d6f524955e7ff18d36/tileset.json\",\"tileset_url_checksum\":\"a58a009d42a962d6f524955e7ff18d36\",\"type\":\"point_cloud\",\"up_axis\":\"Z\"}],\"material_base_url\":\"materials/2d7b62299f0e05e9a266b42fd627b216/\",\"material_textures\":[\"texture_0.jpg\",\"texture_1.jpg\",\"texture_2.jpg\",\"texture_3.jpg\",\"texture_4.jpg\",\"texture_5.jpg\",\"texture_6.jpg\",\"texture_7.jpg\",\"texture_8.jpg\",\"texture_9.jpg\",\"texture_10.jpg\",\"texture_11.jpg\",\"texture_12.jpg\",\"texture_13.jpg\",\"texture_14.jpg\",\"texture_15.jpg\"],\"tiles\":null,\"type\":0},\"name\":\"新建间隔-副本\",\"observers\":[{\"accessible_nodes\":[1,2,3,24,25,26,27,28,29],\"floor_index\":0,\"index\":0,\"offset_point_count\":0,\"position\":[0.3415906911,0.2193680707,0.5033924069],\"quaternion\":{\"w\":-0.13601135062393585,\"x\":0.0049762629596150805,\"y\":-0.9906748327024362,\"z\":0.006286903426233373},\"standing_position\":[0.3415906911,-1.173714786431958,0.5033924069],\"visible_nodes\":[1,2,3,24,25,26,27,28,29]},{\"accessible_nodes\":[0,2,3,4,25,26,27,28,29,30],\"floor_index\":0,\"index\":1,\"offset_point_count\":0,\"position\":[1.3597482301,0.1890138459,-4.1178567002],\"quaternion\":{\"w\":-0.43657213610702783,\"x\":-0.003558077591937238,\"y\":-0.8996589709717788,\"z\":0.002417851452812706},\"standing_position\":[1.3597482301,-1.2016683745589845,-4.1178567002],\"visible_nodes\":[0,2,3,4,25,26,27,28,29,30]},{\"accessible_nodes\":[0,1,3,4,5,26,27,28,29,30],\"floor_index\":0,\"index\":2,\"offset_point_count\":0,\"position\":[2.2345453882,0.1543544257,-8.9397047786],\"quaternion\":{\"w\":-0.05807465889791344,\"x\":-0.004764641432430274,\"y\":-0.9982784208325851,\"z\":0.006695272666943695},\"standing_position\":[2.2345453882,-1.222893503873059,-8.9397047786],\"visible_nodes\":[0,1,3,4,5,26,27,28,29,30]},{\"accessible_nodes\":[0,1,2,4,5,26,27,28,29,30],\"floor_index\":0,\"index\":3,\"offset_point_count\":0,\"position\":[2.2796639712,0.1335901185,-13.4287627911],\"quaternion\":{\"w\":0.11780902154789848,\"x\":-0.00568183678820493,\"y\":-0.9929882598374464,\"z\":0.007941472667855142},\"standing_position\":[2.2796639712,-1.2559432820355836,-13.4287627911],\"visible_nodes\":[0,1,2,4,5,26,27,28,29,30]},{\"accessible_nodes\":[1,2,3,5,6,27,28,29,30],\"floor_index\":0,\"index\":4,\"offset_point_count\":0,\"position\":[3.4640567832,0.1240064245,-18.2759595019],\"quaternion\":{\"w\":0.11647769742757802,\"x\":-0.0076700647041114565,\"y\":-0.9931631862136252,\"z\":-0.0010008194914970184},\"standing_position\":[3.4640567832,-1.2692761081919555,-18.2759595019],\"visible_nodes\":[1,2,3,5,6,27,28,29,30]},{\"accessible_nodes\":[2,3,4,6,7,8,29,30],\"floor_index\":0,\"index\":5,\"offset_point_count\":0,\"position\":[7.163454375,0.117158554,-22.3427562761],\"quaternion\":{\"w\":-0.11303961469045612,\"x\":-0.0049660370460369065,\"y\":-0.9935741576752084,\"z\":0.002788760535482735},\"standing_position\":[7.163454375,-1.2542344113167725,-22.3427562761],\"visible_nodes\":[2,3,4,6,7,8,29,30]},{\"accessible_nodes\":[4,5,7,8,9,30],\"floor_index\":0,\"index\":6,\"offset_point_count\":0,\"position\":[11.8406395137,0.1293237437,-23.7265676624],\"quaternion\":{\"w\":-0.22649324199404122,\"x\":-0.006483689451366591,\"y\":-0.9739904335900841,\"z\":-0.0011867585503271532},\"standing_position\":[11.8406395137,-1.2483029137859618,-23.7265676624],\"visible_nodes\":[4,5,7,8,9,30]},{\"accessible_nodes\":[5,6,8,9],\"floor_index\":0,\"index\":7,\"offset_point_count\":0,\"position\":[16.7371782581,0.1597785868,-24.0677256409],\"quaternion\":{\"w\":-0.4053180189573656,\"x\":-0.0018870615031001496,\"y\":-0.9141709197956365,\"z\":-0.002296060183657044},\"standing_position\":[16.7371782581,-1.2241858325649293,-24.0677256409],\"visible_nodes\":[5,6,8,9]},{\"accessible_nodes\":[5,6,7,9,10,11,12],\"floor_index\":0,\"index\":8,\"offset_point_count\":0,\"position\":[21.7194030852,0.1964550977,-23.8275135716],\"quaternion\":{\"w\":-0.5992420139453531,\"x\":-0.004105235111925015,\"y\":-0.8005408972688404,\"z\":-0.005140771432215628},\"standing_position\":[21.7194030852,-1.1926253075352906,-23.8275135716],\"visible_nodes\":[5,6,7,9,10,11,12]},{\"accessible_nodes\":[6,7,8,10,11,12,13],\"floor_index\":0,\"index\":9,\"offset_point_count\":0,\"position\":[26.1006365211,0.2337608212,-23.4014583186],\"quaternion\":{\"w\":-0.54030455166393,\"x\":-0.0022014337532711655,\"y\":-0.841422480802599,\"z\":-0.008622873515429732},\"standing_position\":[26.1006365211,-1.151351106786145,-23.4014583186],\"visible_nodes\":[6,7,8,10,11,12,13]},{\"accessible_nodes\":[8,9,11,12,13,14],\"floor_index\":0,\"index\":10,\"offset_point_count\":0,\"position\":[26.1049274469,0.2759820185,-18.9631854098],\"quaternion\":{\"w\":-0.996460750556689,\"x\":-0.00197735886626666,\"y\":-0.083984362031567,\"z\":-0.0029478100601142356},\"standing_position\":[26.1049274469,-1.1234037913983765,-18.9631854098],\"visible_nodes\":[8,9,11,12,13,14]},{\"accessible_nodes\":[8,9,10,12,13,14,15],\"floor_index\":0,\"index\":11,\"offset_point_count\":0,\"position\":[25.7703478064,0.2800463044,-14.7559014985],\"quaternion\":{\"w\":-0.9312526028554229,\"x\":0.0023704173746537252,\"y\":-0.36436653106748845,\"z\":0.000042567290419907355},\"standing_position\":[25.7703478064,-1.112307587926355,-14.7559014985],\"visible_nodes\":[8,9,10,12,13,14,15]},{\"accessible_nodes\":[8,9,10,11,13,14,15],\"floor_index\":0,\"index\":12,\"offset_point_count\":0,\"position\":[32.962836025,0.3673573824,-20.0549957187],\"quaternion\":{\"w\":-0.6352011336694126,\"x\":0.006836307906839501,\"y\":-0.7722401180494316,\"z\":-0.010862077324067482},\"standing_position\":[32.962836025,-1.0280072597432495,-20.0549957187],\"visible_nodes\":[8,9,10,11,13,14,15]},{\"accessible_nodes\":[9,10,11,12,14,15],\"floor_index\":0,\"index\":13,\"offset_point_count\":0,\"position\":[35.0903935437,0.4030971815,-16.1222400072],\"quaternion\":{\"w\":-0.9828741778071087,\"x\":-0.0034198274060870237,\"y\":-0.1836997980278957,\"z\":-0.014178842994016427},\"standing_position\":[35.0903935437,-0.9690262983431397,-16.1222400072],\"visible_nodes\":[9,10,11,12,14,15]},{\"accessible_nodes\":[10,11,12,13,15,16],\"floor_index\":0,\"index\":14,\"offset_point_count\":0,\"position\":[35.8171788438,0.40455121,-11.698349541],\"quaternion\":{\"w\":-0.8913892895643295,\"x\":0.009961981065915816,\"y\":-0.4529198150589444,\"z\":-0.013767153048246624},\"standing_position\":[35.8171788438,-0.95828157465271,-11.698349541],\"visible_nodes\":[10,11,12,13,15,16]},{\"accessible_nodes\":[11,12,13,14,16,17],\"floor_index\":0,\"index\":15,\"offset_point_count\":0,\"position\":[35.8689520495,0.419550472,-6.2850385972],\"quaternion\":{\"w\":-0.9036320724443108,\"x\":0.001545929773410174,\"y\":-0.42817859984030715,\"z\":-0.010477327430831565},\"standing_position\":[35.8689520495,-0.938054746887329,-6.2850385972],\"visible_nodes\":[11,12,13,14,16,17]},{\"accessible_nodes\":[14,15,17,18,19],\"floor_index\":0,\"index\":16,\"offset_point_count\":0,\"position\":[35.8331975968,0.420552501,-0.0450865345],\"quaternion\":{\"w\":-0.9908008859755829,\"x\":0.001980492274255351,\"y\":-0.13441518559389135,\"z\":-0.015564058019403115},\"standing_position\":[35.8331975968,-0.9586595208276978,-0.0450865345],\"visible_nodes\":[14,15,17,18,19]},{\"accessible_nodes\":[15,16,18,19],\"floor_index\":0,\"index\":17,\"offset_point_count\":0,\"position\":[35.3901971569,0.4319174521,4.8411371252],\"quaternion\":{\"w\":-0.9631349640756481,\"x\":0.008970332868448757,\"y\":-0.2682970294801838,\"z\":-0.01752934929135633},\"standing_position\":[35.3901971569,-0.9545563228099732,4.8411371252],\"visible_nodes\":[15,16,18,19]},{\"accessible_nodes\":[16,17,19,20,21],\"floor_index\":0,\"index\":18,\"offset_point_count\":0,\"position\":[30.9084534253,0.2388586247,4.6261623519],\"quaternion\":{\"w\":0.7354886699067585,\"x\":-0.014655224516846184,\"y\":-0.6773557060548026,\"z\":0.005557721395640652},\"standing_position\":[30.9084534253,-0.9896550929513672,4.6261623519],\"visible_nodes\":[16,17,19,20,21]},{\"accessible_nodes\":[16,17,18,20,21,22],\"floor_index\":0,\"index\":19,\"offset_point_count\":0,\"position\":[26.381030777,0.2412378335,4.5501346886],\"quaternion\":{\"w\":-0.9905073180067879,\"x\":0.009453172863823136,\"y\":0.1370270582635614,\"z\":0.005429163800446681},\"standing_position\":[26.381030777,-0.8605821585654296,4.5501346886],\"visible_nodes\":[16,17,18,20,21,22]},{\"accessible_nodes\":[18,19,21,22,23,24],\"floor_index\":0,\"index\":20,\"offset_point_count\":0,\"position\":[20.3833835635,0.304703226,5.1710936741],\"quaternion\":{\"w\":-0.9859233988753893,\"x\":0.0011574279769621617,\"y\":0.1671573025987485,\"z\":0.0034854108381236412},\"standing_position\":[20.3833835635,-1.072883615583252,5.1710936741],\"visible_nodes\":[18,19,21,22,23,24]},{\"accessible_nodes\":[18,19,20,22,23,24,25],\"floor_index\":0,\"index\":21,\"offset_point_count\":0,\"position\":[16.1919963862,0.2861930083,3.2857349859],\"quaternion\":{\"w\":0.8006334577824562,\"x\":-0.006585611320778395,\"y\":-0.5991073011781779,\"z\":0.003624587650208294},\"standing_position\":[16.1919963862,-1.0786144782341187,3.2857349859],\"visible_nodes\":[18,19,20,22,23,24,25]},{\"accessible_nodes\":[19,20,21,23,24],\"floor_index\":0,\"index\":22,\"offset_point_count\":0,\"position\":[12.4700480452,0.2403711917,1.3010888325],\"quaternion\":{\"w\":0.2009655937913598,\"x\":0.00281015084508427,\"y\":-0.9794825088535272,\"z\":0.01479689233242598},\"standing_position\":[12.4700480452,-1.1328708289069946,1.3010888325],\"visible_nodes\":[19,20,21,23,24]},{\"accessible_nodes\":[20,21,22,24,25],\"floor_index\":0,\"index\":23,\"offset_point_count\":0,\"position\":[9.0884478963,0.2595981296,3.2736485902],\"quaternion\":{\"w\":0.618402384033793,\"x\":-0.0012043646406457531,\"y\":-0.7858250052015398,\"z\":0.007490133695211844},\"standing_position\":[9.0884478963,-1.112613088280249,3.2736485902],\"visible_nodes\":[20,21,22,24,25]},{\"accessible_nodes\":[0,20,21,22,23,25,26],\"floor_index\":0,\"index\":24,\"offset_point_count\":0,\"position\":[6.8227026504,0.2216914291,3.2297099979],\"quaternion\":{\"w\":0.7429054064476209,\"x\":0.004723749030232488,\"y\":-0.6692613969892481,\"z\":0.012586729247937462},\"standing_position\":[6.8227026504,-1.140279949226416,3.2297099979],\"visible_nodes\":[0,20,21,22,23,25,26]},{\"accessible_nodes\":[0,1,21,23,24,26],\"floor_index\":0,\"index\":25,\"offset_point_count\":0,\"position\":[2.3606132121,0.2514001656,2.9402958706],\"quaternion\":{\"w\":0.3293696811617784,\"x\":-0.004525263836486679,\"y\":-0.944164601089238,\"z\":0.006952781318455359},\"standing_position\":[2.3606132121,-1.1214886378820557,2.9402958706],\"visible_nodes\":[0,1,21,23,24,26]},{\"accessible_nodes\":[0,1,2,3,24,25,27,28,29],\"floor_index\":0,\"index\":26,\"offset_point_count\":0,\"position\":[-0.2033189982,0.1898864413,-1.9622168688],\"quaternion\":{\"w\":0.6362575249207082,\"x\":-0.002386050121030736,\"y\":-0.7714274875352836,\"z\":0.00838452259546201},\"standing_position\":[-0.2033189982,-1.1880842541956054,-1.9622168688],\"visible_nodes\":[0,1,2,3,24,25,27,28,29]},{\"accessible_nodes\":[0,1,2,3,4,26,28,29,30],\"floor_index\":0,\"index\":27,\"offset_point_count\":0,\"position\":[-0.0434320085,0.1610910225,-6.180837748],\"quaternion\":{\"w\":0.73734413195624,\"x\":-0.0020529371167958958,\"y\":-0.6754646860125257,\"z\":0.008177683436877149},\"standing_position\":[-0.0434320085,-1.2202592563543702,-6.180837748],\"visible_nodes\":[0,1,2,3,4,26,28,29,30]},{\"accessible_nodes\":[0,1,2,3,4,26,27,29,30],\"floor_index\":0,\"index\":28,\"offset_point_count\":0,\"position\":[-1.3945223403,0.0876154606,-9.2002930124],\"quaternion\":{\"w\":0.7425914911187977,\"x\":0.0038585697045120434,\"y\":-0.6696823299520452,\"z\":0.008280443841779643},\"standing_position\":[-1.3945223403,-1.304867416177649,-9.2002930124],\"visible_nodes\":[0,1,2,3,4,26,27,29,30]},{\"accessible_nodes\":[0,1,2,3,4,5,26,27,28,30],\"floor_index\":0,\"index\":29,\"offset_point_count\":0,\"position\":[0.5659415796,0.1204672478,-12.8121567308],\"quaternion\":{\"w\":0.7890195475747134,\"x\":0.005111770447658102,\"y\":-0.6143027219539239,\"z\":0.007361328646919502},\"standing_position\":[0.5659415796,-1.260077414675586,-12.8121567308],\"visible_nodes\":[0,1,2,3,4,5,26,27,28,30]},{\"accessible_nodes\":[1,2,3,4,5,6,27,28,29],\"floor_index\":0,\"index\":30,\"offset_point_count\":0,\"position\":[0.0322371844,0.1065226928,-17.7418800931],\"quaternion\":{\"w\":-0.9893133836277562,\"x\":-0.001661240818327377,\"y\":0.14572512374324184,\"z\":-0.004523005398543843},\"standing_position\":[0.0322371844,-1.261148320078418,-17.7418800931],\"visible_nodes\":[1,2,3,4,5,6,27,28,29]}],\"panorama\":{\"count\":31,\"list\":[{\"back\":\"images/cube_2048/0/afc66e198f758381ce0515e2bdde1b10/0_b.jpg\",\"derived_id\":1724912005,\"derived_id_str\":\"1724912005\",\"down\":\"images/cube_2048/0/afc66e198f758381ce0515e2bdde1b10/0_d.jpg\",\"front\":\"images/cube_2048/0/afc66e198f758381ce0515e2bdde1b10/0_f.jpg\",\"index\":0,\"left\":\"images/cube_2048/0/afc66e198f758381ce0515e2bdde1b10/0_l.jpg\",\"right\":\"images/cube_2048/0/afc66e198f758381ce0515e2bdde1b10/0_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/0/afc66e198f758381ce0515e2bdde1b10/0_u.jpg\"},{\"back\":\"images/cube_2048/1/180f21299c5e6a7fb239291b73da0780/1_b.jpg\",\"derived_id\":1724912050,\"derived_id_str\":\"1724912050\",\"down\":\"images/cube_2048/1/180f21299c5e6a7fb239291b73da0780/1_d.jpg\",\"front\":\"images/cube_2048/1/180f21299c5e6a7fb239291b73da0780/1_f.jpg\",\"index\":1,\"left\":\"images/cube_2048/1/180f21299c5e6a7fb239291b73da0780/1_l.jpg\",\"right\":\"images/cube_2048/1/180f21299c5e6a7fb239291b73da0780/1_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/1/180f21299c5e6a7fb239291b73da0780/1_u.jpg\"},{\"back\":\"images/cube_2048/2/d9920945f541b12b6606359c3fa6cfe0/2_b.jpg\",\"derived_id\":1724912090,\"derived_id_str\":\"1724912090\",\"down\":\"images/cube_2048/2/d9920945f541b12b6606359c3fa6cfe0/2_d.jpg\",\"front\":\"images/cube_2048/2/d9920945f541b12b6606359c3fa6cfe0/2_f.jpg\",\"index\":2,\"left\":\"images/cube_2048/2/d9920945f541b12b6606359c3fa6cfe0/2_l.jpg\",\"right\":\"images/cube_2048/2/d9920945f541b12b6606359c3fa6cfe0/2_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/2/d9920945f541b12b6606359c3fa6cfe0/2_u.jpg\"},{\"back\":\"images/cube_2048/3/16116f9fecc0a877f6baed15efcc6342/3_b.jpg\",\"derived_id\":1724912124,\"derived_id_str\":\"1724912124\",\"down\":\"images/cube_2048/3/16116f9fecc0a877f6baed15efcc6342/3_d.jpg\",\"front\":\"images/cube_2048/3/16116f9fecc0a877f6baed15efcc6342/3_f.jpg\",\"index\":3,\"left\":\"images/cube_2048/3/16116f9fecc0a877f6baed15efcc6342/3_l.jpg\",\"right\":\"images/cube_2048/3/16116f9fecc0a877f6baed15efcc6342/3_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/3/16116f9fecc0a877f6baed15efcc6342/3_u.jpg\"},{\"back\":\"images/cube_2048/4/0be74d9f5b4465ce4cc31443deed8b61/4_b.jpg\",\"derived_id\":1724912159,\"derived_id_str\":\"1724912159\",\"down\":\"images/cube_2048/4/0be74d9f5b4465ce4cc31443deed8b61/4_d.jpg\",\"front\":\"images/cube_2048/4/0be74d9f5b4465ce4cc31443deed8b61/4_f.jpg\",\"index\":4,\"left\":\"images/cube_2048/4/0be74d9f5b4465ce4cc31443deed8b61/4_l.jpg\",\"right\":\"images/cube_2048/4/0be74d9f5b4465ce4cc31443deed8b61/4_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/4/0be74d9f5b4465ce4cc31443deed8b61/4_u.jpg\"},{\"back\":\"images/cube_2048/5/7fccc08265390f1ad85c3fa684ebb0d3/5_b.jpg\",\"derived_id\":1724912197,\"derived_id_str\":\"1724912197\",\"down\":\"images/cube_2048/5/7fccc08265390f1ad85c3fa684ebb0d3/5_d.jpg\",\"front\":\"images/cube_2048/5/7fccc08265390f1ad85c3fa684ebb0d3/5_f.jpg\",\"index\":5,\"left\":\"images/cube_2048/5/7fccc08265390f1ad85c3fa684ebb0d3/5_l.jpg\",\"right\":\"images/cube_2048/5/7fccc08265390f1ad85c3fa684ebb0d3/5_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/5/7fccc08265390f1ad85c3fa684ebb0d3/5_u.jpg\"},{\"back\":\"images/cube_2048/6/41709eef918b80a2524124809ec22475/6_b.jpg\",\"derived_id\":1724912230,\"derived_id_str\":\"1724912230\",\"down\":\"images/cube_2048/6/41709eef918b80a2524124809ec22475/6_d.jpg\",\"front\":\"images/cube_2048/6/41709eef918b80a2524124809ec22475/6_f.jpg\",\"index\":6,\"left\":\"images/cube_2048/6/41709eef918b80a2524124809ec22475/6_l.jpg\",\"right\":\"images/cube_2048/6/41709eef918b80a2524124809ec22475/6_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/6/41709eef918b80a2524124809ec22475/6_u.jpg\"},{\"back\":\"images/cube_2048/7/0cc6fa5977fdfc38cbdd402aef2b8e86/7_b.jpg\",\"derived_id\":1724912266,\"derived_id_str\":\"1724912266\",\"down\":\"images/cube_2048/7/0cc6fa5977fdfc38cbdd402aef2b8e86/7_d.jpg\",\"front\":\"images/cube_2048/7/0cc6fa5977fdfc38cbdd402aef2b8e86/7_f.jpg\",\"index\":7,\"left\":\"images/cube_2048/7/0cc6fa5977fdfc38cbdd402aef2b8e86/7_l.jpg\",\"right\":\"images/cube_2048/7/0cc6fa5977fdfc38cbdd402aef2b8e86/7_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/7/0cc6fa5977fdfc38cbdd402aef2b8e86/7_u.jpg\"},{\"back\":\"images/cube_2048/8/6785924945a12db14f1b3fbe187b05df/8_b.jpg\",\"derived_id\":1724912300,\"derived_id_str\":\"1724912300\",\"down\":\"images/cube_2048/8/6785924945a12db14f1b3fbe187b05df/8_d.jpg\",\"front\":\"images/cube_2048/8/6785924945a12db14f1b3fbe187b05df/8_f.jpg\",\"index\":8,\"left\":\"images/cube_2048/8/6785924945a12db14f1b3fbe187b05df/8_l.jpg\",\"right\":\"images/cube_2048/8/6785924945a12db14f1b3fbe187b05df/8_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/8/6785924945a12db14f1b3fbe187b05df/8_u.jpg\"},{\"back\":\"images/cube_2048/9/591201209a11aa679dd83839049899bf/9_b.jpg\",\"derived_id\":1724912340,\"derived_id_str\":\"1724912340\",\"down\":\"images/cube_2048/9/591201209a11aa679dd83839049899bf/9_d.jpg\",\"front\":\"images/cube_2048/9/591201209a11aa679dd83839049899bf/9_f.jpg\",\"index\":9,\"left\":\"images/cube_2048/9/591201209a11aa679dd83839049899bf/9_l.jpg\",\"right\":\"images/cube_2048/9/591201209a11aa679dd83839049899bf/9_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/9/591201209a11aa679dd83839049899bf/9_u.jpg\"},{\"back\":\"images/cube_2048/10/f28fcb72cb036f325a024eeaa70b8981/10_b.jpg\",\"derived_id\":1724912378,\"derived_id_str\":\"1724912378\",\"down\":\"images/cube_2048/10/f28fcb72cb036f325a024eeaa70b8981/10_d.jpg\",\"front\":\"images/cube_2048/10/f28fcb72cb036f325a024eeaa70b8981/10_f.jpg\",\"index\":10,\"left\":\"images/cube_2048/10/f28fcb72cb036f325a024eeaa70b8981/10_l.jpg\",\"right\":\"images/cube_2048/10/f28fcb72cb036f325a024eeaa70b8981/10_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/10/f28fcb72cb036f325a024eeaa70b8981/10_u.jpg\"},{\"back\":\"images/cube_2048/11/f9e746ca66bcf48c9da3b383f719127a/11_b.jpg\",\"derived_id\":1724912420,\"derived_id_str\":\"1724912420\",\"down\":\"images/cube_2048/11/f9e746ca66bcf48c9da3b383f719127a/11_d.jpg\",\"front\":\"images/cube_2048/11/f9e746ca66bcf48c9da3b383f719127a/11_f.jpg\",\"index\":11,\"left\":\"images/cube_2048/11/f9e746ca66bcf48c9da3b383f719127a/11_l.jpg\",\"right\":\"images/cube_2048/11/f9e746ca66bcf48c9da3b383f719127a/11_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/11/f9e746ca66bcf48c9da3b383f719127a/11_u.jpg\"},{\"back\":\"images/cube_2048/12/b30e608aa3a9c438ed6eb648f8b8c4a7/12_b.jpg\",\"derived_id\":1724912459,\"derived_id_str\":\"1724912459\",\"down\":\"images/cube_2048/12/b30e608aa3a9c438ed6eb648f8b8c4a7/12_d.jpg\",\"front\":\"images/cube_2048/12/b30e608aa3a9c438ed6eb648f8b8c4a7/12_f.jpg\",\"index\":12,\"left\":\"images/cube_2048/12/b30e608aa3a9c438ed6eb648f8b8c4a7/12_l.jpg\",\"right\":\"images/cube_2048/12/b30e608aa3a9c438ed6eb648f8b8c4a7/12_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/12/b30e608aa3a9c438ed6eb648f8b8c4a7/12_u.jpg\"},{\"back\":\"images/cube_2048/13/741d8bac8130804da4fe3ce6322d2d20/13_b.jpg\",\"derived_id\":1724912500,\"derived_id_str\":\"1724912500\",\"down\":\"images/cube_2048/13/741d8bac8130804da4fe3ce6322d2d20/13_d.jpg\",\"front\":\"images/cube_2048/13/741d8bac8130804da4fe3ce6322d2d20/13_f.jpg\",\"index\":13,\"left\":\"images/cube_2048/13/741d8bac8130804da4fe3ce6322d2d20/13_l.jpg\",\"right\":\"images/cube_2048/13/741d8bac8130804da4fe3ce6322d2d20/13_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/13/741d8bac8130804da4fe3ce6322d2d20/13_u.jpg\"},{\"back\":\"images/cube_2048/14/23bec5b15d333ecfe970731bedd28a09/14_b.jpg\",\"derived_id\":1724912535,\"derived_id_str\":\"1724912535\",\"down\":\"images/cube_2048/14/23bec5b15d333ecfe970731bedd28a09/14_d.jpg\",\"front\":\"images/cube_2048/14/23bec5b15d333ecfe970731bedd28a09/14_f.jpg\",\"index\":14,\"left\":\"images/cube_2048/14/23bec5b15d333ecfe970731bedd28a09/14_l.jpg\",\"right\":\"images/cube_2048/14/23bec5b15d333ecfe970731bedd28a09/14_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/14/23bec5b15d333ecfe970731bedd28a09/14_u.jpg\"},{\"back\":\"images/cube_2048/15/61a0a52dc388f7422d0fb9137f843f0c/15_b.jpg\",\"derived_id\":1724912576,\"derived_id_str\":\"1724912576\",\"down\":\"images/cube_2048/15/61a0a52dc388f7422d0fb9137f843f0c/15_d.jpg\",\"front\":\"images/cube_2048/15/61a0a52dc388f7422d0fb9137f843f0c/15_f.jpg\",\"index\":15,\"left\":\"images/cube_2048/15/61a0a52dc388f7422d0fb9137f843f0c/15_l.jpg\",\"right\":\"images/cube_2048/15/61a0a52dc388f7422d0fb9137f843f0c/15_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/15/61a0a52dc388f7422d0fb9137f843f0c/15_u.jpg\"},{\"back\":\"images/cube_2048/16/652577bba4ed5dcd5672e4b16415a21a/16_b.jpg\",\"derived_id\":1724912615,\"derived_id_str\":\"1724912615\",\"down\":\"images/cube_2048/16/652577bba4ed5dcd5672e4b16415a21a/16_d.jpg\",\"front\":\"images/cube_2048/16/652577bba4ed5dcd5672e4b16415a21a/16_f.jpg\",\"index\":16,\"left\":\"images/cube_2048/16/652577bba4ed5dcd5672e4b16415a21a/16_l.jpg\",\"right\":\"images/cube_2048/16/652577bba4ed5dcd5672e4b16415a21a/16_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/16/652577bba4ed5dcd5672e4b16415a21a/16_u.jpg\"},{\"back\":\"images/cube_2048/17/9d374f87b72f829124023376a9c22956/17_b.jpg\",\"derived_id\":1724912649,\"derived_id_str\":\"1724912649\",\"down\":\"images/cube_2048/17/9d374f87b72f829124023376a9c22956/17_d.jpg\",\"front\":\"images/cube_2048/17/9d374f87b72f829124023376a9c22956/17_f.jpg\",\"index\":17,\"left\":\"images/cube_2048/17/9d374f87b72f829124023376a9c22956/17_l.jpg\",\"right\":\"images/cube_2048/17/9d374f87b72f829124023376a9c22956/17_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/17/9d374f87b72f829124023376a9c22956/17_u.jpg\"},{\"back\":\"images/cube_2048/18/9f153d1a9370113c2b42f17f94008721/18_b.jpg\",\"derived_id\":1724912716,\"derived_id_str\":\"1724912716\",\"down\":\"images/cube_2048/18/9f153d1a9370113c2b42f17f94008721/18_d.jpg\",\"front\":\"images/cube_2048/18/9f153d1a9370113c2b42f17f94008721/18_f.jpg\",\"index\":18,\"left\":\"images/cube_2048/18/9f153d1a9370113c2b42f17f94008721/18_l.jpg\",\"right\":\"images/cube_2048/18/9f153d1a9370113c2b42f17f94008721/18_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/18/9f153d1a9370113c2b42f17f94008721/18_u.jpg\"},{\"back\":\"images/cube_2048/19/bbcfd7a610d18be6e9bd2a4c095b19c1/19_b.jpg\",\"derived_id\":1724912760,\"derived_id_str\":\"1724912760\",\"down\":\"images/cube_2048/19/bbcfd7a610d18be6e9bd2a4c095b19c1/19_d.jpg\",\"front\":\"images/cube_2048/19/bbcfd7a610d18be6e9bd2a4c095b19c1/19_f.jpg\",\"index\":19,\"left\":\"images/cube_2048/19/bbcfd7a610d18be6e9bd2a4c095b19c1/19_l.jpg\",\"right\":\"images/cube_2048/19/bbcfd7a610d18be6e9bd2a4c095b19c1/19_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/19/bbcfd7a610d18be6e9bd2a4c095b19c1/19_u.jpg\"},{\"back\":\"images/cube_2048/20/7074c8c53ceb71c61822e76e8875940b/20_b.jpg\",\"derived_id\":1724912799,\"derived_id_str\":\"1724912799\",\"down\":\"images/cube_2048/20/7074c8c53ceb71c61822e76e8875940b/20_d.jpg\",\"front\":\"images/cube_2048/20/7074c8c53ceb71c61822e76e8875940b/20_f.jpg\",\"index\":20,\"left\":\"images/cube_2048/20/7074c8c53ceb71c61822e76e8875940b/20_l.jpg\",\"right\":\"images/cube_2048/20/7074c8c53ceb71c61822e76e8875940b/20_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/20/7074c8c53ceb71c61822e76e8875940b/20_u.jpg\"},{\"back\":\"images/cube_2048/21/fb18e1235af0605756fc3d8c10eb1f21/21_b.jpg\",\"derived_id\":1724912840,\"derived_id_str\":\"1724912840\",\"down\":\"images/cube_2048/21/fb18e1235af0605756fc3d8c10eb1f21/21_d.jpg\",\"front\":\"images/cube_2048/21/fb18e1235af0605756fc3d8c10eb1f21/21_f.jpg\",\"index\":21,\"left\":\"images/cube_2048/21/fb18e1235af0605756fc3d8c10eb1f21/21_l.jpg\",\"right\":\"images/cube_2048/21/fb18e1235af0605756fc3d8c10eb1f21/21_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/21/fb18e1235af0605756fc3d8c10eb1f21/21_u.jpg\"},{\"back\":\"images/cube_2048/22/633abac34f345e655ade887e3046498f/22_b.jpg\",\"derived_id\":1724912880,\"derived_id_str\":\"1724912880\",\"down\":\"images/cube_2048/22/633abac34f345e655ade887e3046498f/22_d.jpg\",\"front\":\"images/cube_2048/22/633abac34f345e655ade887e3046498f/22_f.jpg\",\"index\":22,\"left\":\"images/cube_2048/22/633abac34f345e655ade887e3046498f/22_l.jpg\",\"right\":\"images/cube_2048/22/633abac34f345e655ade887e3046498f/22_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/22/633abac34f345e655ade887e3046498f/22_u.jpg\"},{\"back\":\"images/cube_2048/23/4d7df8d064a4d693e3a41cbcfb203d3b/23_b.jpg\",\"derived_id\":1724912916,\"derived_id_str\":\"1724912916\",\"down\":\"images/cube_2048/23/4d7df8d064a4d693e3a41cbcfb203d3b/23_d.jpg\",\"front\":\"images/cube_2048/23/4d7df8d064a4d693e3a41cbcfb203d3b/23_f.jpg\",\"index\":23,\"left\":\"images/cube_2048/23/4d7df8d064a4d693e3a41cbcfb203d3b/23_l.jpg\",\"right\":\"images/cube_2048/23/4d7df8d064a4d693e3a41cbcfb203d3b/23_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/23/4d7df8d064a4d693e3a41cbcfb203d3b/23_u.jpg\"},{\"back\":\"images/cube_2048/24/b2ca92c255544df465fda7eafe201df3/24_b.jpg\",\"derived_id\":1724912949,\"derived_id_str\":\"1724912949\",\"down\":\"images/cube_2048/24/b2ca92c255544df465fda7eafe201df3/24_d.jpg\",\"front\":\"images/cube_2048/24/b2ca92c255544df465fda7eafe201df3/24_f.jpg\",\"index\":24,\"left\":\"images/cube_2048/24/b2ca92c255544df465fda7eafe201df3/24_l.jpg\",\"right\":\"images/cube_2048/24/b2ca92c255544df465fda7eafe201df3/24_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/24/b2ca92c255544df465fda7eafe201df3/24_u.jpg\"},{\"back\":\"images/cube_2048/25/4c3ab959e66aabfa1809ee43b443bc76/25_b.jpg\",\"derived_id\":1724912990,\"derived_id_str\":\"1724912990\",\"down\":\"images/cube_2048/25/4c3ab959e66aabfa1809ee43b443bc76/25_d.jpg\",\"front\":\"images/cube_2048/25/4c3ab959e66aabfa1809ee43b443bc76/25_f.jpg\",\"index\":25,\"left\":\"images/cube_2048/25/4c3ab959e66aabfa1809ee43b443bc76/25_l.jpg\",\"right\":\"images/cube_2048/25/4c3ab959e66aabfa1809ee43b443bc76/25_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/25/4c3ab959e66aabfa1809ee43b443bc76/25_u.jpg\"},{\"back\":\"images/cube_2048/26/f98cf876c830f713f0d0842578b2ba31/26_b.jpg\",\"derived_id\":1724913038,\"derived_id_str\":\"1724913038\",\"down\":\"images/cube_2048/26/f98cf876c830f713f0d0842578b2ba31/26_d.jpg\",\"front\":\"images/cube_2048/26/f98cf876c830f713f0d0842578b2ba31/26_f.jpg\",\"index\":26,\"left\":\"images/cube_2048/26/f98cf876c830f713f0d0842578b2ba31/26_l.jpg\",\"right\":\"images/cube_2048/26/f98cf876c830f713f0d0842578b2ba31/26_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/26/f98cf876c830f713f0d0842578b2ba31/26_u.jpg\"},{\"back\":\"images/cube_2048/27/76effe072a7036a31c166d47d6b9e644/27_b.jpg\",\"derived_id\":1724913082,\"derived_id_str\":\"1724913082\",\"down\":\"images/cube_2048/27/76effe072a7036a31c166d47d6b9e644/27_d.jpg\",\"front\":\"images/cube_2048/27/76effe072a7036a31c166d47d6b9e644/27_f.jpg\",\"index\":27,\"left\":\"images/cube_2048/27/76effe072a7036a31c166d47d6b9e644/27_l.jpg\",\"right\":\"images/cube_2048/27/76effe072a7036a31c166d47d6b9e644/27_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/27/76effe072a7036a31c166d47d6b9e644/27_u.jpg\"},{\"back\":\"images/cube_2048/28/73a0a62fe55d0dc55388781cc67e6cf3/28_b.jpg\",\"derived_id\":1724913118,\"derived_id_str\":\"1724913118\",\"down\":\"images/cube_2048/28/73a0a62fe55d0dc55388781cc67e6cf3/28_d.jpg\",\"front\":\"images/cube_2048/28/73a0a62fe55d0dc55388781cc67e6cf3/28_f.jpg\",\"index\":28,\"left\":\"images/cube_2048/28/73a0a62fe55d0dc55388781cc67e6cf3/28_l.jpg\",\"right\":\"images/cube_2048/28/73a0a62fe55d0dc55388781cc67e6cf3/28_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/28/73a0a62fe55d0dc55388781cc67e6cf3/28_u.jpg\"},{\"back\":\"images/cube_2048/29/12ae67fba1a95eaf400ae07b2c77e222/29_b.jpg\",\"derived_id\":1724913151,\"derived_id_str\":\"1724913151\",\"down\":\"images/cube_2048/29/12ae67fba1a95eaf400ae07b2c77e222/29_d.jpg\",\"front\":\"images/cube_2048/29/12ae67fba1a95eaf400ae07b2c77e222/29_f.jpg\",\"index\":29,\"left\":\"images/cube_2048/29/12ae67fba1a95eaf400ae07b2c77e222/29_l.jpg\",\"right\":\"images/cube_2048/29/12ae67fba1a95eaf400ae07b2c77e222/29_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/29/12ae67fba1a95eaf400ae07b2c77e222/29_u.jpg\"},{\"back\":\"images/cube_2048/30/644fbc3c54a8fb1b6411eb4520c8fb61/30_b.jpg\",\"derived_id\":1724913187,\"derived_id_str\":\"1724913187\",\"down\":\"images/cube_2048/30/644fbc3c54a8fb1b6411eb4520c8fb61/30_d.jpg\",\"front\":\"images/cube_2048/30/644fbc3c54a8fb1b6411eb4520c8fb61/30_f.jpg\",\"index\":30,\"left\":\"images/cube_2048/30/644fbc3c54a8fb1b6411eb4520c8fb61/30_l.jpg\",\"right\":\"images/cube_2048/30/644fbc3c54a8fb1b6411eb4520c8fb61/30_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/30/644fbc3c54a8fb1b6411eb4520c8fb61/30_u.jpg\"}]},\"picture_url\":\"http://vr-public.realsee-cdn.cn/release/screenshot/auto3d-light-8RDdZ7BwWxqVoa3L/cce8b1fa6b867956bd1ad2b5000dd3bd/1724912005_0/pc0_0RvqkaANa.jpg\",\"project_id\":\"auto3d-light-Ge782ld3X3k21g4v-copy\",\"resource_code\":\"goVEAXLvE4HWVjvT5x\",\"title_picture_url\":\"http://vr-public.realsee-cdn.cn/release/screenshot/auto3d-light-8RDdZ7BwWxqVoa3L/cce8b1fa6b867956bd1ad2b5000dd3bd/1724912005_0/pc1_Sgxh0UjIm.jpg\"}" \ No newline at end of file diff --git a/open-works/real/hhh/work.json b/open-works/real/hhh/work.json new file mode 100644 index 000000000..d589d4d23 --- /dev/null +++ b/open-works/real/hhh/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"L0EJMVQQicHiTpBfaX3DGXFPVO3XoaRcWiWh8ErVVRNA2V+pCP222FJMSlzhTpn1YCrscuVHUIvd/IajyL9mIErrgI2SmLW5mzfW2jcl75KB9/uELF2Szozppml95hjbrDpi7lBRFpPPWfyFFr9YLIBoIorTv2Lrj2d/OOLXFIM=\",\"allow_hosts\":[\"share.3dvr.pro\",\"rsvr.cn\",\"realsee.com\",\"realsee.cn\",\"rushivr.cn\",\"rushivr.com\"],\"base_url\":\"https://vr-public.realsee-cdn.cn/release/auto3dhd/0a03088a592e0b6aa78e56c58626aab8/\",\"basic_code\":\"80eQOd3gRNXxdDm2Yy\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2023-02-17 12:36:40\",\"expire_at\":\"1716367637752\",\"from_type\":\"vr\",\"initial\":{\"fov\":100,\"heading\":0,\"latitude\":0,\"longitude\":0,\"pano_index\":0},\"is_active\":true,\"model\":{\"file_url\":\"model/7461805464c650ce5faae1e0f560085c/cyclops-nPOdM9m5qJ1M53j4.at3d\",\"layers\":null,\"material_base_url\":\"materials/7461805464c650ce5faae1e0f560085c/\",\"material_textures\":[\"texture_0.jpg\",\"texture_1.jpg\"],\"tiles\":null,\"type\":0},\"name\":\"哈哈哈哈太喜欢上班了\",\"observers\":[{\"accessible_nodes\":[1],\"floor_index\":0,\"index\":0,\"offset_point_count\":0,\"position\":[-0.747343,0,0.201036],\"quaternion\":{\"w\":0.19653291806193668,\"x\":7.3525522586466e-33,\"y\":-0.9804973227908376,\"z\":1.2007629079283484e-16},\"standing_position\":[-0.747343,-0.4731174409389496,0.201036],\"visible_nodes\":[1]},{\"accessible_nodes\":[0],\"floor_index\":0,\"index\":1,\"offset_point_count\":0,\"position\":[0.256853,0.000970414,-0.740871],\"quaternion\":{\"w\":-0.9591682594831837,\"x\":0.000012395218338861682,\"y\":-0.28283567280069716,\"z\":-0.000011280997773838951},\"standing_position\":[0.256853,-0.5621439906783448,-0.740871],\"visible_nodes\":[0]}],\"panorama\":{\"count\":2,\"list\":[{\"back\":\"images/cube_2048/0/55fd930c21bb152148adb208be5aafed/0_b.jpg\",\"derived_id\":1676608495,\"derived_id_str\":\"1676608495\",\"down\":\"images/cube_2048/0/55fd930c21bb152148adb208be5aafed/0_d.jpg\",\"front\":\"images/cube_2048/0/55fd930c21bb152148adb208be5aafed/0_f.jpg\",\"index\":0,\"left\":\"images/cube_2048/0/55fd930c21bb152148adb208be5aafed/0_l.jpg\",\"right\":\"images/cube_2048/0/55fd930c21bb152148adb208be5aafed/0_r.jpg\",\"tiles\":[1,2],\"up\":\"images/cube_2048/0/55fd930c21bb152148adb208be5aafed/0_u.jpg\"},{\"back\":\"images/cube_2048/1/ee47ff581caccb677a52a9b85a07145f/1_b.jpg\",\"derived_id\":1676609246,\"derived_id_str\":\"1676609246\",\"down\":\"images/cube_2048/1/ee47ff581caccb677a52a9b85a07145f/1_d.jpg\",\"front\":\"images/cube_2048/1/ee47ff581caccb677a52a9b85a07145f/1_f.jpg\",\"index\":1,\"left\":\"images/cube_2048/1/ee47ff581caccb677a52a9b85a07145f/1_l.jpg\",\"right\":\"images/cube_2048/1/ee47ff581caccb677a52a9b85a07145f/1_r.jpg\",\"tiles\":[1,2],\"up\":\"images/cube_2048/1/ee47ff581caccb677a52a9b85a07145f/1_u.jpg\"}]},\"picture_url\":\"http://vr-public.realsee-cdn.cn/release/auto3dhd/0a03088a592e0b6aa78e56c58626aab8/screenshot/1676608495_0/pc0_1uVCq2H8s.jpg\",\"project_id\":\"cyclops-nPOdM9m5qJ1M53j4\",\"resource_code\":\"goQWZdQnwjTJ2lzfMm\",\"title_picture_url\":\"http://vr-public.realsee-cdn.cn/release/auto3dhd/0a03088a592e0b6aa78e56c58626aab8/screenshot/1676608495_0/pc1_YCutiq7Yc.jpg\"}" \ No newline at end of file diff --git a/open-works/real/jiaojing/work.json b/open-works/real/jiaojing/work.json new file mode 100644 index 000000000..e53bd6c3f --- /dev/null +++ b/open-works/real/jiaojing/work.json @@ -0,0 +1,46 @@ +{ + "_signature": "mVyVruOtiHDf/WJVCm+MWAMfsEntzVwMx63J+n0jrY3Jyj/AYCEQmL+OVbfz9AyOXv16xu3YvHIBlKZRNGk0Uzj3Lmrf2aNP3S4+axOu5W0056A+2SCvIQk1Yy4huCHicma6hqQclYWIOFAwylon5JC3Kegy52nbMG3ovcGifPo=", + "allow_hosts": [ + "*" + ], + "base_url": "//vr-public.realsee-cdn.cn", + "basic_code": "80aoO5MVl8xBJDNBzr", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2024-08-29 12:28:36", + "device_type": 9, + "expire_at": "1825080124000", + "from_type": "poincare", + "initial": { + "distance": 69.07951583204992, + "fov": 60, + "heading": 0, + "latitude": 0.7853981633974483, + "longitude": 2.0554630431845955, + "mode": "Mapview", + "offset": { + "x": 19.965750943000963, + "y": 0.9826568712900752, + "z": 26.12662430452817 + }, + "panoIndex": 0, + "pano_index": 0, + "workCode": "1D4z1YJMb8hQ8kKsWx" + }, + "is_active": true, + "model": { + "layers": [ + { + "name": "poincare", + "tileset_url": "https://vrlab-public.ljcdn.com/release/aerophoto/39aab14dc4ec1f6326953008796389c5/mesh/967bce419922df762bcee6f4976f3c27/tileset.json", + "tileset_url_checksum": "5431a892a8de0e068659d32140d041ca", + "type": "mesh", + "up_axis": "Z" + } + ] + }, + "name": "室外汽车", + "picture_url": "https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/REALSEE_TECH/1D4z1YJMb8hQ8kKsWx/2024-08-29_14-04-20.image/png", + "project_id": "aerophoto-7AGzV3Yw0ew2Xe6Q", + "resource_code": "1D4z1YJMb8hQ8kKsWx", + "title_picture_url": "https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/REALSEE_TECH/1D4z1YJMb8hQ8kKsWx/2024-08-29_14-04-20.image/png" +} \ No newline at end of file diff --git a/open-works/real/jiaojing1/work.json b/open-works/real/jiaojing1/work.json new file mode 100644 index 000000000..6934454bf --- /dev/null +++ b/open-works/real/jiaojing1/work.json @@ -0,0 +1,46 @@ +{ + "_signature": "FEor9awmTIhuP6esN94fGJQ9gWr/7XYS4kW5MGVeFlt5LbTPqNMiz8VbcFs3TRSL7TX/gSz60xfWoxUfiifx0yQMl8ArfVfUUvO+A45shn6K2DITGIWE4Vf2evnjVVinK4WFeGrBZ/t7ILZRYFiMjU3op4Z2tW8EUN3eZM0wJb8=", + "allow_hosts": [ + "*" + ], + "base_url": "//vr-public.realsee-cdn.cn", + "basic_code": "80aoO5MVl8xBJDNBzr", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2024-08-29 12:28:36", + "device_type": 9, + "expire_at": "1825080124000", + "from_type": "aerophoto", + "initial": { + "distance": 69.07951583204992, + "fov": 60, + "heading": 0, + "latitude": 0.7853981633974483, + "longitude": 2.0554630431845955, + "mode": "Mapview", + "offset": { + "x": 19.965750943000963, + "y": 0.9826568712900752, + "z": 26.12662430452817 + }, + "panoIndex": 0, + "pano_index": 0, + "workCode": "1D4z1YJMb8hQ8kKsWx" + }, + "is_active": true, + "model": { + "layers": [ + { + "name": "aerophoto", + "tileset_url": "https://vrlab-public.ljcdn.com/release/aerophoto/911dae35bcae3e9a5a1aaafcd9f4ac6f/mesh/82b4ea13422c813b46d832c49f28eb13/tileset.json", + "tileset_url_checksum": "5431a892a8de0e068659d32140d041ca", + "type": "mesh", + "up_axis": "Z" + } + ] + }, + "name": "室外汽车", + "picture_url": "https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/REALSEE_TECH/1D4z1YJMb8hQ8kKsWx/2024-08-29_14-04-20.image/png", + "project_id": "aerophoto-7AGzV3Yw0ew2Xe6Q", + "resource_code": "1D4z1YJMb8hQ8kKsWx", + "title_picture_url": "https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/REALSEE_TECH/1D4z1YJMb8hQ8kKsWx/2024-08-29_14-04-20.image/png" +} \ No newline at end of file diff --git a/open-works/real/pWLy9ndnVL73Xqja/index.js b/open-works/real/pWLy9ndnVL73Xqja/index.js new file mode 100644 index 000000000..0192fa21a --- /dev/null +++ b/open-works/real/pWLy9ndnVL73Xqja/index.js @@ -0,0 +1,3 @@ +import { work } from './work' + +export default { work } diff --git a/open-works/real/pWLy9ndnVL73Xqja/work.js b/open-works/real/pWLy9ndnVL73Xqja/work.js new file mode 100644 index 000000000..f0812fffa --- /dev/null +++ b/open-works/real/pWLy9ndnVL73Xqja/work.js @@ -0,0 +1,9084 @@ +export const work = { + _signature: + 'svW9tEM+5iLIgNDkKVefEEmHiMl3xm6AwFtwWakR6BSnccPFauRVgW4DRyxUA4DuP5a/pzSdG2lWj8rdAQqB5+7a7bLTpZZdJzVNuc85PwSn6CnUtDveuU2qRGQiekfkZLTjGAghNuHDJpsBag6iRNqmI4pLLcUfntDqFrZfv9w=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/d960cfe67765728069ada6808aef9f11/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: '2022-03-01T11:48:50+08:00', + expire_at: '1964772839406', + initial: { + flag_position: [], + fov: 95, + heading: 0, + latitude: 0, + longitude: 5.063708532405466, + pano: 37, + pano_index: 37, + }, + model: { + file_url: 'model/auto3d-ZezA6MzKPVtrLYV5WEaWsO.at3d', + material_base_url: 'materials/', + material_textures: ['texture_0.jpg', 'texture_1.jpg', 'texture_2.jpg', 'texture_3.jpg'], + modify_time: '2022-03-04T21:13:20+08:00', + type: 0, + }, + observers: [ + { + accessible_nodes: [1, 2], + floor_index: 0, + index: 0, + offset_point_count: 0, + position: [2.5211000442504883, 0.32936498522758484, -2.4205501079559326], + quaternion: { + w: -0.9996840901866689, + x: 0.0007110896281145103, + y: -0.008082277657160325, + z: -0.023788300458560594, + }, + standing_position: [2.5211000442504883, -0.7557325455457351, -2.4205501079559326], + visible_nodes: [1, 2], + }, + { + accessible_nodes: [0, 2], + floor_index: 0, + index: 1, + offset_point_count: 0, + position: [2.6212499141693115, 0.2935769855976105, -4.605199813842773], + quaternion: { + w: -0.05911632504458808, + x: -0.003391470810747281, + y: -0.9981591894926323, + z: 0.013114194786470782, + }, + standing_position: [2.6212499141693115, -0.8157660901982073, -4.605199813842773], + visible_nodes: [0, 2], + }, + { + accessible_nodes: [0, 1, 3, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228], + floor_index: 0, + index: 2, + offset_point_count: 0, + position: [2.363879919052124, 0.26175999641418457, -7.151939868927002], + quaternion: { + w: 0.5820637159095692, + x: -0.003044567953394121, + y: -0.8126598439341595, + z: 0.02786682109002593, + }, + standing_position: [2.363879919052124, -0.8582683112256941, -7.151939868927002], + visible_nodes: [0, 1, 3, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228], + }, + { + accessible_nodes: [2, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228], + floor_index: 0, + index: 3, + offset_point_count: 0, + position: [4.6568098068237305, 0.30282801389694214, -7.290619850158691], + quaternion: { + w: -0.6603931161096389, + x: 0.002966806524305191, + y: -0.7508885539141189, + z: -0.006205334179446633, + }, + standing_position: [4.6568098068237305, -0.8080939700580674, -7.290619850158691], + visible_nodes: [2, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228], + }, + { + accessible_nodes: [2, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 44, 197, 198, 228], + floor_index: 0, + index: 4, + offset_point_count: 0, + position: [-0.20135700702667236, 0.2182539999485016, -7.286479949951172], + quaternion: { + w: 0.6128818714443386, + x: 0.00684902247102703, + y: -0.7899590111009973, + z: 0.017136135771584116, + }, + standing_position: [-0.20135700702667236, -0.884501447166846, -7.286479949951172], + visible_nodes: [2, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 44, 197, 198, 228], + }, + { + accessible_nodes: [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 41, 44, 197, 198, 228], + floor_index: 0, + index: 5, + offset_point_count: 0, + position: [-2.765350103378296, 0.17440199851989746, -7.142199993133545], + quaternion: { + w: -0.9882881480944993, + x: 0.0005217426714413645, + y: 0.1519022656000329, + z: -0.014559057073984636, + }, + standing_position: [-2.765350103378296, -0.9169800348699952, -7.142199993133545], + visible_nodes: [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 41, 44, 197, 198, 228], + }, + { + accessible_nodes: [5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 20], + floor_index: 0, + index: 6, + offset_point_count: 0, + position: [-3.431999921798706, 0.16247199475765228, -5.087100028991699], + quaternion: { + w: -0.871699238223922, + x: 0.0081685648427902, + y: -0.48994744575914023, + z: -0.005021606606297075, + }, + standing_position: [-3.431999921798706, -0.926465339387192, -5.087100028991699], + visible_nodes: [5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 20], + }, + { + accessible_nodes: [5, 6, 8, 9, 10, 11, 12, 13, 14, 17, 18], + floor_index: 0, + index: 7, + offset_point_count: 0, + position: [-3.1944899559020996, 0.18850299715995789, -3.0864200592041016], + quaternion: { + w: -0.7764472126307502, + x: 0.007305573413062671, + y: -0.6300954977148543, + z: -0.007483640474392808, + }, + standing_position: [-3.1944899559020996, -0.9239113586033263, -3.0864200592041016], + visible_nodes: [5, 6, 8, 9, 10, 11, 12, 13, 14, 17, 18], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + floor_index: 0, + index: 8, + offset_point_count: 0, + position: [-5.324570178985596, 0.12925900518894196, -7.149740219116211], + quaternion: { + w: -0.9870550139916311, + x: -0.0063361559165583115, + y: 0.16004858819514972, + z: -0.008166083906280984, + }, + standing_position: [-5.324570178985596, -0.9941754326156069, -7.149740219116211], + visible_nodes: [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + floor_index: 0, + index: 9, + offset_point_count: 0, + position: [-10.143600463867188, 0.041226498782634735, -7.327889919281006], + quaternion: { + w: 0.0014088812023064152, + x: 0.012816344808460927, + y: -0.9998905673350189, + z: -0.007253490437518057, + }, + standing_position: [-10.143600463867188, -1.0589639034839358, -7.327889919281006], + visible_nodes: [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + floor_index: 0, + index: 10, + offset_point_count: 0, + position: [-7.5958099365234375, 0.07031860202550888, -7.277530193328857], + quaternion: { + w: -0.2945989511106753, + x: 0.014886008801634019, + y: -0.9554692970954283, + z: -0.008263280810655242, + }, + standing_position: [-7.5958099365234375, -1.0214655959485515, -7.277530193328857], + visible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + floor_index: 0, + index: 11, + offset_point_count: 0, + position: [-13.419099807739258, 0.003226940054446459, -7.40024995803833], + quaternion: { + w: 0.6409085374553819, + x: 0.002939973309626017, + y: -0.7675844633893883, + z: -0.006455859686279061, + }, + standing_position: [-13.419099807739258, -1.1019126985354981, -7.40024995803833], + visible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197], + floor_index: 0, + index: 12, + offset_point_count: 0, + position: [-16.086200714111328, -0.021425800397992134, -6.919670104980469], + quaternion: { + w: -0.9998182638252224, + x: 0.010872124286063899, + y: 0.015563051624776695, + z: 0.0017421700415297396, + }, + standing_position: [-16.086200714111328, -1.1376782898952922, -6.919670104980469], + visible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 196, 228], + floor_index: 0, + index: 13, + offset_point_count: 0, + position: [-16.461200714111328, -0.023189200088381767, -4.196010112762451], + quaternion: { + w: -0.9987316283397111, + x: 0.009931043838475612, + y: -0.04935708977578974, + z: 0.0006141935043559611, + }, + standing_position: [-16.461200714111328, -1.1308967011703586, -4.196010112762451], + visible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 196, 228], + }, + { + accessible_nodes: [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 18], + floor_index: 0, + index: 14, + offset_point_count: 0, + position: [-9.603179931640625, 0.06018330156803131, -4.094009876251221], + quaternion: { + w: -0.6963823270610163, + x: 0.015245978297918163, + y: -0.7174825010586324, + z: -0.006171615697752225, + }, + standing_position: [-9.603179931640625, -1.029843130181187, -4.094009876251221], + visible_nodes: [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 18], + }, + { + accessible_nodes: [2, 3, 4, 5, 8, 9, 10, 11, 12, 16, 17, 18, 44, 196, 197, 198, 200, 202, 227, 228, 229], + floor_index: 0, + index: 15, + offset_point_count: 0, + position: [7.17756986618042, 0.38410699367523193, -7.284840106964111], + quaternion: { + w: -0.9974709209467633, + x: 0.013766044533879376, + y: 0.06043234723616722, + z: -0.03478774879477381, + }, + standing_position: [7.17756986618042, -0.7909981482105148, -7.284840106964111], + visible_nodes: [2, 3, 4, 5, 8, 9, 10, 11, 12, 16, 17, 18, 44, 196, 197, 198, 200, 202, 227, 228, 229], + }, + { + accessible_nodes: [15, 44, 45, 194, 195, 196, 197, 198, 218, 220, 227, 228, 244], + floor_index: 0, + index: 16, + offset_point_count: 0, + position: [8.005229949951172, 0.5369309782981873, -9.126709938049316], + quaternion: { + w: 0.042117944926709325, + x: -0.0071434473796623404, + y: -0.9990591898586789, + z: 0.007468376269649205, + }, + standing_position: [8.005229949951172, -0.5333844878944698, -9.126709938049316], + visible_nodes: [15, 44, 45, 194, 195, 196, 197, 198, 218, 220, 227, 228, 244], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 20, 21, 39, 41, 44], + floor_index: 0, + index: 17, + offset_point_count: 0, + position: [-19.16010093688965, 0.0008819139911793172, -7.34119987487793], + quaternion: { + w: -0.9992278366331874, + x: 0.005721918601713572, + y: 0.034681779151182396, + z: -0.017554556536331256, + }, + standing_position: [-19.16010093688965, -1.1629165482678627, -7.34119987487793], + visible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 20, 21, 39, 41, 44], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 57], + floor_index: 0, + index: 18, + offset_point_count: 0, + position: [-22.220500946044922, -0.02232230082154274, -7.520020008087158], + quaternion: { + w: 0.5684004773425013, + x: -0.016562602996508594, + y: -0.8224723356748478, + z: 0.013631686342122803, + }, + standing_position: [-22.220500946044922, -1.0760261068814592, -7.520020008087158], + visible_nodes: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 57], + }, + { + accessible_nodes: [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 42, 57], + floor_index: 0, + index: 19, + offset_point_count: 0, + position: [-25.270299911499023, -0.03033529967069626, -7.523970127105713], + quaternion: { + w: 0.7687776246251773, + x: -0.016539749842883294, + y: -0.6390927325095079, + z: 0.01636757069869073, + }, + standing_position: [-25.270299911499023, -1.1377147481291339, -7.523970127105713], + visible_nodes: [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 42, 57], + }, + { + accessible_nodes: [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 21, 39, 41], + floor_index: 0, + index: 20, + offset_point_count: 0, + position: [-28.125600814819336, -0.05325939878821373, -6.872809886932373], + quaternion: { + w: -0.8962489132628509, + x: 0.011743496109203909, + y: 0.44291266007545527, + z: -0.020696310225151688, + }, + standing_position: [-28.125600814819336, -1.1811844663915365, -6.872809886932373], + visible_nodes: [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 21, 39, 41], + }, + { + accessible_nodes: [17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 42, 57], + floor_index: 0, + index: 21, + offset_point_count: 0, + position: [-24.399099349975586, -0.05689509958028793, -10.167499542236328], + quaternion: { + w: -0.9853683863433248, + x: 0.013981146607410688, + y: -0.16939866403772036, + z: -0.012560563801201772, + }, + standing_position: [-24.399099349975586, -1.163166767929582, -10.167499542236328], + visible_nodes: [17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 42, 57], + }, + { + accessible_nodes: [18, 19, 21, 23, 24, 25, 26, 27, 28, 42, 57], + floor_index: 0, + index: 22, + offset_point_count: 0, + position: [-24.47089958190918, -0.05579749867320061, -13.20259952545166], + quaternion: { + w: -0.6252542826024352, + x: 0.00843521529747196, + y: -0.7802426209171116, + z: -0.01440097842825415, + }, + standing_position: [-24.47089958190918, -1.1374054573393009, -13.20259952545166], + visible_nodes: [18, 19, 21, 23, 24, 25, 26, 27, 28, 42, 57], + }, + { + accessible_nodes: [18, 19, 21, 22, 24, 25, 26, 27, 28, 42, 43, 57, 94], + floor_index: 0, + index: 23, + offset_point_count: 0, + position: [-24.624799728393555, -0.0716560035943985, -16.282499313354492], + quaternion: { + w: -0.6604117501772465, + x: 0.010825078133657661, + y: -0.7507028117969727, + z: -0.013579511709173946, + }, + standing_position: [-24.624799728393555, -1.1913567100763498, -16.282499313354492], + visible_nodes: [18, 19, 21, 22, 24, 25, 26, 27, 28, 42, 43, 57, 94], + }, + { + accessible_nodes: [18, 19, 21, 22, 23, 25, 26, 27, 28, 42, 43, 57, 58, 93, 94, 100, 101, 102], + floor_index: 0, + index: 24, + offset_point_count: 0, + position: [-24.56170082092285, -0.08116070181131363, -18.972700119018555], + quaternion: { + w: 0.10406122969258114, + x: -0.0013779937973372018, + y: -0.9944820230052143, + z: -0.013223769406192817, + }, + standing_position: [-24.56170082092285, -1.1416871101609414, -18.972700119018555], + visible_nodes: [18, 19, 21, 22, 23, 25, 26, 27, 28, 42, 43, 57, 58, 93, 94, 100, 101, 102], + }, + { + accessible_nodes: [18, 19, 21, 22, 23, 24, 26, 27, 28, 42, 43, 57], + floor_index: 0, + index: 25, + offset_point_count: 0, + position: [-21.87150001525879, 0.49208199977874756, -18.50349998474121], + quaternion: { + w: -0.1540932441315679, + x: 0.0004956194895935238, + y: -0.9880513689064567, + z: -0.003087786268695191, + }, + standing_position: [-21.87150001525879, -1.0854931378794885, -18.50349998474121], + visible_nodes: [18, 19, 21, 22, 23, 24, 26, 27, 28, 42, 43, 57], + }, + { + accessible_nodes: [ + 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184, + ], + floor_index: 0, + index: 26, + offset_point_count: 0, + position: [-24.484600067138672, -0.07824160158634186, -23.71419906616211], + quaternion: { + w: -0.9977434596671982, + x: 0.012482438442325142, + y: 0.06594631828993, + z: 0.0018048754269206072, + }, + standing_position: [-24.484600067138672, -1.1992072656526898, -23.71419906616211], + visible_nodes: [ + 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184, + ], + }, + { + accessible_nodes: [18, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 183, 184], + floor_index: 0, + index: 27, + offset_point_count: 0, + position: [-26.86910057067871, -0.06642650067806244, -24.388399124145508], + quaternion: { + w: -0.9796383749586788, + x: 0.014646987874756644, + y: 0.20023492146321709, + z: -0.0003254370027985956, + }, + standing_position: [-26.86910057067871, -1.1712418510528386, -24.388399124145508], + visible_nodes: [18, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 183, 184], + }, + { + accessible_nodes: [18, 19, 21, 22, 23, 24, 25, 26, 27, 42, 43, 57, 58, 59, 93, 96, 98, 100, 122], + floor_index: 0, + index: 28, + offset_point_count: 0, + position: [-24.652299880981445, -0.09265519678592682, -21.359100341796875], + quaternion: { + w: -0.9750518329609784, + x: 0.012906878293395475, + y: -0.22143906866925764, + z: -0.008489394055080148, + }, + standing_position: [-24.652299880981445, -1.1387854093809633, -21.359100341796875], + visible_nodes: [18, 19, 21, 22, 23, 24, 25, 26, 27, 42, 43, 57, 58, 59, 93, 96, 98, 100, 122], + }, + { + accessible_nodes: [26, 27, 30, 31, 57, 58, 59, 73, 93, 96, 97, 98, 122, 123, 127, 154, 156, 179], + floor_index: 0, + index: 29, + offset_point_count: 0, + position: [-33.950401306152344, -0.04713340103626251, -25.054800033569336], + quaternion: { + w: -0.9267270049912705, + x: 0.012464608553873413, + y: 0.37550356154341324, + z: 0.00433166317963048, + }, + standing_position: [-33.950401306152344, -1.1639716644140825, -25.054800033569336], + visible_nodes: [26, 27, 30, 31, 57, 58, 59, 73, 93, 96, 97, 98, 122, 123, 127, 154, 156, 179], + }, + { + accessible_nodes: [26, 27, 29, 31, 32, 33, 35, 36, 37, 38, 39, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 184], + floor_index: 0, + index: 30, + offset_point_count: 0, + position: [-30.582000732421875, -0.04270369932055473, -24.606000900268555], + quaternion: { + w: -0.774078827043313, + x: -0.017185088835463283, + y: -0.6326962587948062, + z: -0.014214691083901053, + }, + standing_position: [-30.582000732421875, -1.1559775591297574, -24.606000900268555], + visible_nodes: [26, 27, 29, 31, 32, 33, 35, 36, 37, 38, 39, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 184], + }, + { + accessible_nodes: [29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 122, 123, 128, 129], + floor_index: 0, + index: 31, + offset_point_count: 0, + position: [-30.885499954223633, -0.05347850173711777, -21.681699752807617], + quaternion: { + w: -0.911040780835899, + x: -0.013163675000850078, + y: -0.41187102017515426, + z: -0.013916877807366638, + }, + standing_position: [-30.885499954223633, -1.182390322141796, -21.681699752807617], + visible_nodes: [29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 122, 123, 128, 129], + }, + { + accessible_nodes: [30, 31, 33, 34, 122, 123, 128, 129], + floor_index: 0, + index: 32, + offset_point_count: 0, + position: [-30.277000427246094, -0.057327400892972946, -19.899900436401367], + quaternion: { + w: -0.4625641830448888, + x: -0.020711227002609942, + y: -0.8862926030511755, + z: -0.009530575840234106, + }, + standing_position: [-30.277000427246094, -1.171624846759159, -19.899900436401367], + visible_nodes: [30, 31, 33, 34, 122, 123, 128, 129], + }, + { + accessible_nodes: [30, 31, 32, 34, 35, 36, 37, 38, 39, 40], + floor_index: 0, + index: 33, + offset_point_count: 0, + position: [-31.852100372314453, -0.06544409692287445, -19.708099365234375], + quaternion: { + w: 0.28786093291942744, + x: -0.027366918835993036, + y: -0.9572582909774684, + z: 0.006610837955855242, + }, + standing_position: [-31.852100372314453, -1.1698404328992513, -19.708099365234375], + visible_nodes: [30, 31, 32, 34, 35, 36, 37, 38, 39, 40], + }, + { + accessible_nodes: [31, 32, 33, 35, 36, 40], + floor_index: 0, + index: 34, + offset_point_count: 0, + position: [-33.72570037841797, -0.04280180111527443, -18.99679946899414], + quaternion: { + w: -0.9830623457721339, + x: 0.008018593059626471, + y: 0.182072751822696, + z: -0.019330012154352202, + }, + standing_position: [-33.72570037841797, -1.1128367830146473, -18.99679946899414], + visible_nodes: [31, 32, 33, 35, 36, 40], + }, + { + accessible_nodes: [30, 31, 33, 34, 36, 37, 38, 39, 40], + floor_index: 0, + index: 35, + offset_point_count: 0, + position: [-32.666500091552734, -0.043738700449466705, -16.30389976501465], + quaternion: { + w: -0.7595869822464034, + x: -0.016985091919594995, + y: -0.6500172502722911, + z: -0.01472045859848935, + }, + standing_position: [-32.666500091552734, -1.164470068741938, -16.30389976501465], + visible_nodes: [30, 31, 33, 34, 36, 37, 38, 39, 40], + }, + { + accessible_nodes: [30, 31, 33, 34, 35, 37, 38, 39], + floor_index: 0, + index: 36, + offset_point_count: 0, + position: [-32.6775016784668, -0.03678689897060394, -14.005900382995605], + quaternion: { + w: -0.8516629039919913, + x: -0.002871854961069845, + y: -0.5236933709100163, + z: -0.020181133586138295, + }, + standing_position: [-32.6775016784668, -1.1259208730956487, -14.005900382995605], + visible_nodes: [30, 31, 33, 34, 35, 37, 38, 39], + }, + { + accessible_nodes: [30, 31, 33, 35, 36, 38, 39], + floor_index: 0, + index: 37, + offset_point_count: 0, + position: [-32.70920181274414, -0.015910500660538673, -11.284099578857422], + quaternion: { + w: -0.8208762211241026, + x: -0.010164426878205225, + y: -0.5705170395263975, + z: -0.023857674067213026, + }, + standing_position: [-32.70920181274414, -1.114472484913651, -11.284099578857422], + visible_nodes: [30, 31, 33, 35, 36, 38, 39], + }, + { + accessible_nodes: [30, 31, 33, 35, 36, 37, 39, 41], + floor_index: 0, + index: 38, + offset_point_count: 0, + position: [-33.125999450683594, -0.023238100111484528, -8.896349906921387], + quaternion: { + w: -0.9672241576832605, + x: -0.0027990871518079902, + y: -0.25316348104817393, + z: -0.01943839567686986, + }, + standing_position: [-33.125999450683594, -1.1342414982109186, -8.896349906921387], + visible_nodes: [30, 31, 33, 35, 36, 37, 39, 41], + }, + { + accessible_nodes: [8, 9, 10, 11, 12, 17, 18, 19, 20, 30, 31, 33, 35, 36, 37, 38, 41], + floor_index: 0, + index: 39, + offset_point_count: 0, + position: [-33.20920181274414, -0.030290400609374046, -6.815999984741211], + quaternion: { + w: -0.8209727060314068, + x: -0.014426495321726735, + y: -0.5705266576551742, + z: -0.01717611510752576, + }, + standing_position: [-33.20920181274414, -1.1046777795087084, -6.815999984741211], + visible_nodes: [8, 9, 10, 11, 12, 17, 18, 19, 20, 30, 31, 33, 35, 36, 37, 38, 41], + }, + { + accessible_nodes: [31, 33, 34, 35], + floor_index: 0, + index: 40, + offset_point_count: 0, + position: [-34.96609878540039, -0.020185500383377075, -15.787699699401855], + quaternion: { + w: -0.9472368766905547, + x: -0.007949047234401938, + y: -0.31972445196783095, + z: -0.02133998844142693, + }, + standing_position: [-34.96609878540039, -0.9867782994210328, -15.787699699401855], + visible_nodes: [31, 33, 34, 35], + }, + { + accessible_nodes: [5, 8, 9, 10, 11, 12, 17, 18, 19, 20, 38, 39], + floor_index: 0, + index: 41, + offset_point_count: 0, + position: [-30.371999740600586, -0.03533700108528137, -6.709229946136475], + quaternion: { + w: 0.11469446254497373, + x: -0.02573872499203904, + y: -0.9930670736811233, + z: 0.0006983637488723239, + }, + standing_position: [-30.371999740600586, -1.1628593247487784, -6.709229946136475], + visible_nodes: [5, 8, 9, 10, 11, 12, 17, 18, 19, 20, 38, 39], + }, + { + accessible_nodes: [19, 21, 22, 23, 24, 25, 26, 27, 28, 43, 57], + floor_index: 0, + index: 42, + offset_point_count: 0, + position: [-20.669599533081055, -0.05669109895825386, -17.149700164794922], + quaternion: { + w: 0.007807180464564875, + x: -0.023671809216321064, + y: -0.9996891656225555, + z: 0.0005205735891284421, + }, + standing_position: [-20.669599533081055, -0.7839071606977532, -17.149700164794922], + visible_nodes: [19, 21, 22, 23, 24, 25, 26, 27, 28, 43, 57], + }, + { + accessible_nodes: [23, 24, 25, 26, 27, 28, 42], + floor_index: 0, + index: 43, + offset_point_count: 0, + position: [-19.307899475097656, -0.04518419876694679, -16.841299057006836], + quaternion: { + w: -0.6037161040970033, + x: -0.01139642241884968, + y: -0.7968903007160356, + z: -0.019048413287495822, + }, + standing_position: [-19.307899475097656, -1.15733918507121, -16.841299057006836], + visible_nodes: [23, 24, 25, 26, 27, 28, 42], + }, + { + accessible_nodes: [2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 17, 45, 46, 47, 49, 196, 197, 198, 200, 201, 217, 222, 227, 228, 229], + floor_index: 0, + index: 44, + offset_point_count: 0, + position: [9.838330268859863, 0.06724859774112701, -6.620840072631836], + quaternion: { + w: -0.20107560083436857, + x: 0.0032560408700206952, + y: -0.9795643940531672, + z: 0.003406664074605581, + }, + standing_position: [9.838330268859863, -0.7234170389002692, -6.620840072631836], + visible_nodes: [2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 17, 45, 46, 47, 49, 196, 197, 198, 200, 201, 217, 222, 227, 228, 229], + }, + { + accessible_nodes: [16, 44, 46, 47, 48, 49, 55, 194, 195, 196, 217, 222], + floor_index: 0, + index: 45, + offset_point_count: 0, + position: [9.605790138244629, 0.5371410250663757, -4.555019855499268], + quaternion: { + w: -0.7771061551166447, + x: 0.010404684968113202, + y: -0.6292177459579956, + z: 0.00909859508776367, + }, + standing_position: [9.605790138244629, -0.6546412835369171, -4.555019855499268], + visible_nodes: [16, 44, 46, 47, 48, 49, 55, 194, 195, 196, 217, 222], + }, + { + accessible_nodes: [44, 45, 47, 48, 49, 51, 53, 54, 194, 195, 196, 220], + floor_index: 0, + index: 46, + offset_point_count: 0, + position: [9.458720207214355, 0.5834550261497498, -2.6840100288391113], + quaternion: { + w: -0.8228815722925072, + x: 0.00784737146911279, + y: -0.5680725645558118, + z: 0.009894524032351769, + }, + standing_position: [9.458720207214355, -0.5998071270598095, -2.6840100288391113], + visible_nodes: [44, 45, 47, 48, 49, 51, 53, 54, 194, 195, 196, 220], + }, + { + accessible_nodes: [44, 45, 46, 48, 196, 227], + floor_index: 0, + index: 47, + offset_point_count: 0, + position: [7.868249893188477, 0.18488000333309174, -2.7652499675750732], + quaternion: { + w: -0.986797092858421, + x: 0.006100389175196083, + y: 0.16164572237151095, + z: -0.008058850328675518, + }, + standing_position: [7.868249893188477, -0.6081449267641551, -2.7652499675750732], + visible_nodes: [44, 45, 46, 48, 196, 227], + }, + { + accessible_nodes: [45, 46, 47, 49, 54, 228], + floor_index: 0, + index: 48, + offset_point_count: 0, + position: [8.062419891357422, 0.13726000487804413, -4.776340007781982], + quaternion: { + w: 0.8152504223020445, + x: -0.004212767308860337, + y: -0.5789310789768365, + z: 0.01370469991964785, + }, + standing_position: [8.062419891357422, -0.9398455223469229, -4.776340007781982], + visible_nodes: [45, 46, 47, 49, 54, 228], + }, + { + accessible_nodes: [44, 45, 46, 48, 50, 52, 53, 54, 194, 195, 196, 220], + floor_index: 0, + index: 49, + offset_point_count: 0, + position: [9.652179718017578, 0.25293898582458496, -1.4113399982452393], + quaternion: { + w: -0.783595484158393, + x: 0.01770769668525303, + y: -0.6210070945460036, + z: 0.0038431996710834504, + }, + standing_position: [9.652179718017578, -0.826560182589537, -1.4113399982452393], + visible_nodes: [44, 45, 46, 48, 50, 52, 53, 54, 194, 195, 196, 220], + }, + { + accessible_nodes: [49, 51, 52, 53], + floor_index: 0, + index: 50, + offset_point_count: 0, + position: [7.881229877471924, 0.2141450047492981, -1.5216399431228638], + quaternion: { + w: -0.9990009667040565, + x: 0.01196017789531194, + y: -0.04285363597757108, + z: -0.004194952493180016, + }, + standing_position: [7.881229877471924, -0.9094034666200732, -1.5216399431228638], + visible_nodes: [49, 51, 52, 53], + }, + { + accessible_nodes: [46, 50, 52], + floor_index: 0, + index: 51, + offset_point_count: 0, + position: [8.10453987121582, 0.2686559855937958, 0.6270449757575989], + quaternion: { + w: -0.8034424770101788, + x: 0.010345796600936555, + y: -0.5952784853952199, + z: 0.004080148379738131, + }, + standing_position: [8.10453987121582, -0.8421257394323558, 0.6270449757575989], + visible_nodes: [46, 50, 52], + }, + { + accessible_nodes: [49, 50, 51, 53], + floor_index: 0, + index: 52, + offset_point_count: 0, + position: [5.995500087738037, 0.17347200214862823, -1.6261999607086182], + quaternion: { + w: -0.9942355682063257, + x: 0.004273882128878037, + y: 0.10702769565768316, + z: -0.004738956996114532, + }, + standing_position: [5.995500087738037, -0.9117190832270421, -1.6261999607086182], + visible_nodes: [49, 50, 51, 53], + }, + { + accessible_nodes: [46, 49, 50, 52, 54, 55, 56], + floor_index: 0, + index: 53, + offset_point_count: 0, + position: [11.434300422668457, 0.2880080044269562, -1.301990032196045], + quaternion: { + w: -0.31903944682263297, + x: 0.009496898992792735, + y: -0.947544316460728, + z: 0.01683443395763136, + }, + standing_position: [11.434300422668457, -0.8327309371988469, -1.301990032196045], + visible_nodes: [46, 49, 50, 52, 54, 55, 56], + }, + { + accessible_nodes: [46, 48, 49, 53, 55, 56], + floor_index: 0, + index: 54, + offset_point_count: 0, + position: [11.454099655151367, 0.3272959887981415, -0.06534100323915482], + quaternion: { + w: -0.9696052221809107, + x: 0.010439195281148148, + y: -0.24445184089564465, + z: -0.00017262872874756902, + }, + standing_position: [11.454099655151367, -0.7917593585388885, -0.06534100323915482], + visible_nodes: [46, 48, 49, 53, 55, 56], + }, + { + accessible_nodes: [45, 53, 54, 56, 217], + floor_index: 0, + index: 55, + offset_point_count: 0, + position: [11.055100440979004, 0.36573100090026855, 1.457759976387024], + quaternion: { + w: -0.873850177662266, + x: 0.008550732558735154, + y: -0.4859575897819657, + z: 0.012568479883123545, + }, + standing_position: [11.055100440979004, -0.7542006401190977, 1.457759976387024], + visible_nodes: [45, 53, 54, 56, 217], + }, + { + accessible_nodes: [53, 54, 55], + floor_index: 0, + index: 56, + offset_point_count: 0, + position: [9.8748197555542, 0.3534330129623413, 1.6276500225067139], + quaternion: { + w: -0.9923422985519776, + x: 0.001974458012119694, + y: 0.12350125988746696, + z: -0.0005519266582514403, + }, + standing_position: [9.8748197555542, -0.7435369665981464, 1.6276500225067139], + visible_nodes: [53, 54, 55], + }, + { + accessible_nodes: [ + 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 42, 58, 59, 60, 73, 93, 96, 97, 98, 100, 102, 122, 179, 180, 181, 182, 183, 184, + ], + floor_index: 0, + index: 57, + offset_point_count: 0, + position: [-21.6648006439209, -0.06977149844169617, -24.45009994506836], + quaternion: { + w: -0.999797644108776, + x: 0.008714512895598292, + y: -0.017082257753724593, + z: -0.006075826141288069, + }, + standing_position: [-21.6648006439209, -1.1989342921140778, -24.45009994506836], + visible_nodes: [ + 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 42, 58, 59, 60, 73, 93, 96, 97, 98, 100, 102, 122, 179, 180, 181, 182, 183, 184, + ], + }, + { + accessible_nodes: [ + 24, 26, 27, 28, 29, 30, 57, 59, 60, 63, 73, 74, 76, 93, 94, 95, 96, 97, 98, 100, 101, 102, 122, 179, 180, 181, 182, 183, 184, + ], + floor_index: 0, + index: 58, + offset_point_count: 0, + position: [-18.591999053955078, 0.10805600136518478, -24.955699920654297], + quaternion: { + w: -0.9121214561560846, + x: 0.011095311270178638, + y: -0.4096841562582385, + z: -0.008380498863452952, + }, + standing_position: [-18.591999053955078, -1.038726226905007, -24.955699920654297], + visible_nodes: [ + 24, 26, 27, 28, 29, 30, 57, 59, 60, 63, 73, 74, 76, 93, 94, 95, 96, 97, 98, 100, 101, 102, 122, 179, 180, 181, 182, 183, 184, + ], + }, + { + accessible_nodes: [ + 26, 27, 28, 29, 30, 57, 58, 60, 61, 73, 74, 75, 76, 77, 84, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 122, 179, 180, 181, 182, + 183, 184, + ], + floor_index: 0, + index: 59, + offset_point_count: 0, + position: [-15.395400047302246, 0.09665480256080627, -24.766199111938477], + quaternion: { + w: -0.05978093720059805, + x: 0.003551000083202487, + y: -0.9980733461098232, + z: -0.016224286192204024, + }, + standing_position: [-15.395400047302246, -1.0053250018545319, -24.766199111938477], + visible_nodes: [ + 26, 27, 28, 29, 30, 57, 58, 60, 61, 73, 74, 75, 76, 77, 84, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 122, 179, 180, 181, 182, + 183, 184, + ], + }, + { + accessible_nodes: [57, 58, 59, 61, 63, 74, 75, 76, 84, 93, 94, 95, 96, 98, 100, 101, 102, 103, 122], + floor_index: 0, + index: 60, + offset_point_count: 0, + position: [-16.492900848388672, 0.11654700338840485, -22.240400314331055], + quaternion: { + w: -0.8547171756247894, + x: 0.011381969176177207, + y: -0.5189080839116083, + z: -0.007961367496293168, + }, + standing_position: [-16.492900848388672, -1.0238389718730736, -22.240400314331055], + visible_nodes: [57, 58, 59, 61, 63, 74, 75, 76, 84, 93, 94, 95, 96, 98, 100, 101, 102, 103, 122], + }, + { + accessible_nodes: [59, 60, 62, 65, 66, 69, 74, 75, 76, 77, 84, 93, 94, 95, 100, 101, 103], + floor_index: 0, + index: 61, + offset_point_count: 0, + position: [-16.319799423217773, -0.048261601477861404, -19.521699905395508], + quaternion: { + w: -0.9626895470194063, + x: 0.01473110155529307, + y: -0.2697786160734875, + z: -0.015209321590096614, + }, + standing_position: [-16.319799423217773, -1.1690026024222473, -19.521699905395508], + visible_nodes: [59, 60, 62, 65, 66, 69, 74, 75, 76, 77, 84, 93, 94, 95, 100, 101, 103], + }, + { + accessible_nodes: [61, 63, 64, 65, 66, 68], + floor_index: 0, + index: 62, + offset_point_count: 0, + position: [-14.389100074768066, -0.04286180064082146, -19.225500106811523], + quaternion: { + w: -0.07847029729891515, + x: -0.0026232646962242646, + y: -0.9968838120313189, + z: -0.007628372303661756, + }, + standing_position: [-14.389100074768066, -1.151268525629739, -19.225500106811523], + visible_nodes: [61, 63, 64, 65, 66, 68], + }, + { + accessible_nodes: [58, 60, 62, 64], + floor_index: 0, + index: 63, + offset_point_count: 0, + position: [-14.47130012512207, -0.0193473007529974, -17.301599502563477], + quaternion: { + w: -0.7853204337045827, + x: 0.012353025464309882, + y: -0.6189375433008378, + z: -0.005959974276880735, + }, + standing_position: [-14.47130012512207, -1.1520224884957635, -17.301599502563477], + visible_nodes: [58, 60, 62, 64], + }, + { + accessible_nodes: [62, 63, 65, 67], + floor_index: 0, + index: 64, + offset_point_count: 0, + position: [-13.859600067138672, -0.05290419980883598, -21.114599227905273], + quaternion: { + w: 0.5794188694538912, + x: -0.012344535681208496, + y: -0.814935376766109, + z: -0.0013080782843365745, + }, + standing_position: [-13.859600067138672, -1.1762209996094588, -21.114599227905273], + visible_nodes: [62, 63, 65, 67], + }, + { + accessible_nodes: [61, 62, 64, 66, 67], + floor_index: 0, + index: 65, + offset_point_count: 0, + position: [-12.149800300598145, 0.07563000172376633, -19.281999588012695], + quaternion: { + w: -0.09141913922465572, + x: 0.002779919011852144, + y: -0.995773645465042, + z: -0.00834617770103973, + }, + standing_position: [-12.149800300598145, -1.0785085204682634, -19.281999588012695], + visible_nodes: [61, 62, 64, 66, 67], + }, + { + accessible_nodes: [61, 62, 65, 96, 97, 98, 99, 100, 102, 103, 104], + floor_index: 0, + index: 66, + offset_point_count: 0, + position: [-10.278800010681152, 0.07515519857406616, -19.915300369262695], + quaternion: { + w: -0.016456989358306817, + x: 0.0034753054488724632, + y: -0.9998584214958415, + z: 0.0004765429822485858, + }, + standing_position: [-10.278800010681152, -1.0503113745798092, -19.915300369262695], + visible_nodes: [61, 62, 65, 96, 97, 98, 99, 100, 102, 103, 104], + }, + { + accessible_nodes: [64, 65, 68, 69, 70, 97], + floor_index: 0, + index: 67, + offset_point_count: 0, + position: [-12.412099838256836, 0.09150580316781998, -17.182100296020508], + quaternion: { + w: -0.7906358959586033, + x: 0.007955253312814136, + y: -0.6121215972459163, + z: 0.011778536262369245, + }, + standing_position: [-12.412099838256836, -1.0057115022596586, -17.182100296020508], + visible_nodes: [64, 65, 68, 69, 70, 97], + }, + { + accessible_nodes: [62, 67, 69, 70], + floor_index: 0, + index: 68, + offset_point_count: 0, + position: [-10.062199592590332, 0.029577499255537987, -16.93869972229004], + quaternion: { + w: -0.09909640490676949, + x: -0.012272983726700094, + y: -0.9949877938403662, + z: -0.005344508362304999, + }, + standing_position: [-10.062199592590332, -1.023717222943443, -16.93869972229004], + visible_nodes: [62, 67, 69, 70], + }, + { + accessible_nodes: [61, 67, 68, 70], + floor_index: 0, + index: 69, + offset_point_count: 0, + position: [-7.7989301681518555, -0.006987070199102163, -16.8435001373291], + quaternion: { + w: -0.13005473760690328, + x: -0.006995561633156784, + y: -0.9914577007846107, + z: -0.006960205795456711, + }, + standing_position: [-7.7989301681518555, -1.044851955294331, -16.8435001373291], + visible_nodes: [61, 67, 68, 70], + }, + { + accessible_nodes: [67, 68, 69, 71, 72, 73, 97], + floor_index: 0, + index: 70, + offset_point_count: 0, + position: [-5.097949981689453, -0.039032500237226486, -16.952199935913086], + quaternion: { + w: -0.149761323358394, + x: -0.008762748114844978, + y: -0.9886368424664556, + z: -0.0095887823668591, + }, + standing_position: [-5.097949981689453, -1.1405110230683333, -16.952199935913086], + visible_nodes: [67, 68, 69, 71, 72, 73, 97], + }, + { + accessible_nodes: [70, 72, 76, 78, 97, 99], + floor_index: 0, + index: 71, + offset_point_count: 0, + position: [-4.978010177612305, -0.021441999822854996, -19.153499603271484], + quaternion: { + w: 0.6294679139091282, + x: -0.008609315287494744, + y: -0.7769226582241673, + z: -0.009339033088359821, + }, + standing_position: [-4.978010177612305, -1.1288668676688847, -19.153499603271484], + visible_nodes: [70, 72, 76, 78, 97, 99], + }, + { + accessible_nodes: [70, 71, 73, 97], + floor_index: 0, + index: 72, + offset_point_count: 0, + position: [-6.564610004425049, -0.03356590121984482, -20.684999465942383], + quaternion: { + w: 0.6712203053493557, + x: -0.015458350069578571, + y: -0.7410967114353386, + z: 0.00007029876670637937, + }, + standing_position: [-6.564610004425049, -1.0755089136286742, -20.684999465942383], + visible_nodes: [70, 71, 73, 97], + }, + { + accessible_nodes: [26, 27, 29, 30, 57, 58, 59, 70, 72, 93, 94, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184], + floor_index: 0, + index: 73, + offset_point_count: 0, + position: [-6.362180233001709, 0.12268900126218796, -23.51490020751953], + quaternion: { + w: -0.9143145694567131, + x: 0.005004421783940205, + y: 0.40496390240335517, + z: 0.0028387786748154888, + }, + standing_position: [-6.362180233001709, -0.9442691557411269, -23.51490020751953], + visible_nodes: [26, 27, 29, 30, 57, 58, 59, 70, 72, 93, 94, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184], + }, + { + accessible_nodes: [58, 59, 60, 61, 75, 76, 93, 94, 95, 96, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214], + floor_index: 0, + index: 74, + offset_point_count: 0, + position: [-18.894500732421875, 0.027883199974894524, -35.87009811401367], + quaternion: { + w: -0.4080413497846198, + x: -0.026192439443257526, + y: -0.9125867978710877, + z: -0.00124105733072999, + }, + standing_position: [-18.894500732421875, -1.0859623439902157, -35.87009811401367], + visible_nodes: [58, 59, 60, 61, 75, 76, 93, 94, 95, 96, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214], + }, + { + accessible_nodes: [ + 59, 60, 61, 74, 76, 77, 82, 83, 84, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214, + ], + floor_index: 0, + index: 75, + offset_point_count: 0, + position: [-16.13290023803711, 0.013914999552071095, -36.402000427246094], + quaternion: { + w: -0.34629744970970955, + x: -0.026556926132480528, + y: -0.9377485978810897, + z: 0.0006000785242262284, + }, + standing_position: [-16.13290023803711, -1.1006624024775065, -36.402000427246094], + visible_nodes: [ + 59, 60, 61, 74, 76, 77, 82, 83, 84, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214, + ], + }, + { + accessible_nodes: [58, 59, 60, 61, 71, 74, 75, 77, 78, 79, 82, 83, 85, 86, 93, 94, 95, 97, 99, 100], + floor_index: 0, + index: 76, + offset_point_count: 0, + position: [-16.36009979248047, 0.03498430177569389, -38.50510025024414], + quaternion: { + w: 0.6393055844780037, + x: -0.003305186280307508, + y: -0.7687998045124385, + z: 0.014976749557726647, + }, + standing_position: [-16.36009979248047, -1.0667159401248292, -38.50510025024414], + visible_nodes: [58, 59, 60, 61, 71, 74, 75, 77, 78, 79, 82, 83, 85, 86, 93, 94, 95, 97, 99, 100], + }, + { + accessible_nodes: [59, 61, 75, 76, 78, 79, 82, 83, 84, 85, 86, 87, 90, 93, 94, 95, 104], + floor_index: 0, + index: 77, + offset_point_count: 0, + position: [-16.660999298095703, 0.0590486004948616, -40.569801330566406], + quaternion: { + w: 0.6066283382618994, + x: -0.006912477563940697, + y: -0.7949090342691295, + z: 0.0085960158185043, + }, + standing_position: [-16.660999298095703, -1.05199199045643, -40.569801330566406], + visible_nodes: [59, 61, 75, 76, 78, 79, 82, 83, 84, 85, 86, 87, 90, 93, 94, 95, 104], + }, + { + accessible_nodes: [71, 76, 77, 79, 82, 83, 84, 85, 86, 87, 90, 97, 99, 104], + floor_index: 0, + index: 78, + offset_point_count: 0, + position: [-18.609699249267578, 0.09105119854211807, -41.339599609375], + quaternion: { + w: 0.7041204231713113, + x: -0.0061218121207268425, + y: -0.7100227622879793, + z: 0.006680999577888701, + }, + standing_position: [-18.609699249267578, -1.0053084113988662, -41.339599609375], + visible_nodes: [71, 76, 77, 79, 82, 83, 84, 85, 86, 87, 90, 97, 99, 104], + }, + { + accessible_nodes: [76, 77, 78, 80, 81, 85, 86, 87, 90, 100, 104], + floor_index: 0, + index: 79, + offset_point_count: 0, + position: [-19.6476993560791, 0.11155600100755692, -41.338401794433594], + quaternion: { + w: 0.7938233878541714, + x: -0.0034160476819160594, + y: -0.6080042019451025, + z: 0.012791897898548172, + }, + standing_position: [-19.6476993560791, -0.9872749993014356, -41.338401794433594], + visible_nodes: [76, 77, 78, 80, 81, 85, 86, 87, 90, 100, 104], + }, + { + accessible_nodes: [79, 81], + floor_index: 0, + index: 80, + offset_point_count: 0, + position: [-19.87779998779297, 0.13041499257087708, -43.222599029541016], + quaternion: { + w: 0.704597146025378, + x: -0.003744974604482298, + y: -0.7094627233310061, + z: 0.01383772747615811, + }, + standing_position: [-19.87779998779297, -0.9663372214826376, -43.222599029541016], + visible_nodes: [79, 81], + }, + { + accessible_nodes: [79, 80], + floor_index: 0, + index: 81, + offset_point_count: 0, + position: [-19.72949981689453, 0.14289000630378723, -45.0901985168457], + quaternion: { + w: 0.7363219513608041, + x: 0.003225191435719427, + y: -0.6764936426970464, + z: 0.013263717538085586, + }, + standing_position: [-19.72949981689453, -0.9611174142307548, -45.0901985168457], + visible_nodes: [79, 80], + }, + { + accessible_nodes: [75, 76, 77, 78, 83, 84, 85, 86, 87, 90, 104], + floor_index: 0, + index: 82, + offset_point_count: 0, + position: [-18.30970001220703, 0.11087299883365631, -43.52360153198242], + quaternion: { + w: 0.18883200954844398, + x: -0.01875734289264132, + y: -0.981827125487007, + z: 0.002475896840171843, + }, + standing_position: [-18.30970001220703, -0.9691138943621771, -43.52360153198242], + visible_nodes: [75, 76, 77, 78, 83, 84, 85, 86, 87, 90, 104], + }, + { + accessible_nodes: [75, 76, 77, 78, 82, 84, 85, 86, 87, 90], + floor_index: 0, + index: 83, + offset_point_count: 0, + position: [-17.798500061035156, 0.12983599305152893, -45.61970138549805], + quaternion: { + w: 0.5511304478410965, + x: -0.010225194755738534, + y: -0.8343390842808647, + z: 0.005382532928464414, + }, + standing_position: [-17.798500061035156, -0.9875799939570422, -45.61970138549805], + visible_nodes: [75, 76, 77, 78, 82, 84, 85, 86, 87, 90], + }, + { + accessible_nodes: [59, 60, 61, 75, 77, 78, 82, 83, 85, 86, 87, 88, 90, 93, 94, 95], + floor_index: 0, + index: 84, + offset_point_count: 0, + position: [-16.120899200439453, 0.12570799887180328, -46.17110061645508], + quaternion: { + w: -0.04246374795992856, + x: -0.02330782055674857, + y: -0.9988260978525988, + z: 0.00003183997656814632, + }, + standing_position: [-16.120899200439453, -0.9762624989150883, -46.17110061645508], + visible_nodes: [59, 60, 61, 75, 77, 78, 82, 83, 85, 86, 87, 88, 90, 93, 94, 95], + }, + { + accessible_nodes: [76, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 95], + floor_index: 0, + index: 85, + offset_point_count: 0, + position: [-14.670499801635742, 0.09284369647502899, -44.94990158081055], + quaternion: { + w: 0.5344755282449826, + x: -0.006876910788572215, + y: -0.8450429775803494, + z: 0.013819655157476728, + }, + standing_position: [-14.670499801635742, -1.03070440943191, -44.94990158081055], + visible_nodes: [76, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 95], + }, + { + accessible_nodes: [76, 77, 78, 79, 82, 83, 84, 85, 87, 88, 90, 104], + floor_index: 0, + index: 86, + offset_point_count: 0, + position: [-14.951700210571289, 0.0671389028429985, -42.37409973144531], + quaternion: { + w: -0.461157171440235, + x: -0.024120294240372656, + y: -0.8869881745779078, + z: -0.0020628266815998436, + }, + standing_position: [-14.951700210571289, -1.0253943287304947, -42.37409973144531], + visible_nodes: [76, 77, 78, 79, 82, 83, 84, 85, 87, 88, 90, 104], + }, + { + accessible_nodes: [77, 78, 79, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 104], + floor_index: 0, + index: 87, + offset_point_count: 0, + position: [-13.636199951171875, 0.037964798510074615, -41.06100082397461], + quaternion: { + w: -0.13825765877986573, + x: -0.022925171828861796, + y: -0.9901232685304655, + z: 0.0038947163962327323, + }, + standing_position: [-13.636199951171875, -1.0564055252559816, -41.06100082397461], + visible_nodes: [77, 78, 79, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 104], + }, + { + accessible_nodes: [84, 85, 86, 87, 89], + floor_index: 0, + index: 88, + offset_point_count: 0, + position: [-13.631400108337402, 0.031080499291419983, -39.78739929199219], + quaternion: { + w: -0.7435487513085944, + x: -0.026123906086645964, + y: -0.6681675266620986, + z: 0.0022178834313657195, + }, + standing_position: [-13.631400108337402, -1.0864703240934084, -39.78739929199219], + visible_nodes: [84, 85, 86, 87, 89], + }, + { + accessible_nodes: [85, 87, 88], + floor_index: 0, + index: 89, + offset_point_count: 0, + position: [-13.686699867248535, 0.026743900030851364, -38.870601654052734], + quaternion: { + w: -0.9099499710185293, + x: -0.022273011737224496, + y: -0.41410135860919967, + z: -0.003875952407661033, + }, + standing_position: [-13.686699867248535, -1.095446351436738, -38.870601654052734], + visible_nodes: [85, 87, 88], + }, + { + accessible_nodes: [77, 78, 79, 82, 83, 84, 86, 87, 91, 92, 104], + floor_index: 0, + index: 90, + offset_point_count: 0, + position: [-12.163599967956543, 0.027215799316763878, -41.15660095214844], + quaternion: { + w: -0.08369685530626465, + x: -0.01744844155379006, + y: -0.9962768610775679, + z: 0.01108228839304076, + }, + standing_position: [-12.163599967956543, -1.0880943170417066, -41.15660095214844], + visible_nodes: [77, 78, 79, 82, 83, 84, 86, 87, 91, 92, 104], + }, + { + accessible_nodes: [87, 90, 92], + floor_index: 0, + index: 91, + offset_point_count: 0, + position: [-11.81410026550293, 0.04206269979476929, -42.49330139160156], + quaternion: { + w: 0.1266051658000317, + x: -0.013196047539971511, + y: -0.9918140699857467, + z: 0.010091435568474359, + }, + standing_position: [-11.81410026550293, -0.9979283044019194, -42.49330139160156], + visible_nodes: [87, 90, 92], + }, + { + accessible_nodes: [87, 90, 91], + floor_index: 0, + index: 92, + offset_point_count: 0, + position: [-10.97819995880127, 0.05458519980311394, -43.25600051879883], + quaternion: { + w: 0.2365087741403604, + x: -0.008646792629107872, + y: -0.9715514208608869, + z: 0.008756326759123906, + }, + standing_position: [-10.97819995880127, -1.0632186242414066, -43.25600051879883], + visible_nodes: [87, 90, 91], + }, + { + accessible_nodes: [ + 24, 26, 27, 28, 29, 30, 57, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 94, 95, 96, 97, 98, 100, 101, 102, 103, 179, 180, + ], + floor_index: 0, + index: 93, + offset_point_count: 0, + position: [-16.46540069580078, 0.10288099944591522, -27.375099182128906], + quaternion: { + w: -0.12529743426928028, + x: -0.013309070793518632, + y: -0.9920059548639565, + z: 0.006900309432488404, + }, + standing_position: [-16.46540069580078, -1.0096787740421063, -27.375099182128906], + visible_nodes: [24, 26, 27, 28, 29, 30, 57, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 94, 95, 96, 97, 98, 100, 101, 102, 103, 179, 180], + }, + { + accessible_nodes: [23, 24, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 93, 95, 96, 97, 98, 100, 101, 102, 179, 180, 186], + floor_index: 0, + index: 94, + offset_point_count: 0, + position: [-17.026599884033203, 0.12492600083351135, -30.34440040588379], + quaternion: { + w: -0.33139880640635555, + x: 0.00030249152240451646, + y: -0.9434906530554057, + z: -0.0003341131783076677, + }, + standing_position: [-17.026599884033203, -0.9728674138634053, -30.34440040588379], + visible_nodes: [23, 24, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 93, 95, 96, 97, 98, 100, 101, 102, 179, 180, 186], + }, + { + accessible_nodes: [58, 59, 60, 61, 74, 75, 76, 77, 84, 85, 93, 94, 96, 100, 101, 102], + floor_index: 0, + index: 95, + offset_point_count: 0, + position: [-17.186500549316406, 0.15864500403404236, -33.28710174560547], + quaternion: { + w: 0.15232773826232096, + x: 0.006281471960144898, + y: -0.9883083897659983, + z: -0.001826200532351716, + }, + standing_position: [-17.186500549316406, -0.9729891849360981, -33.28710174560547], + visible_nodes: [58, 59, 60, 61, 74, 75, 76, 77, 84, 85, 93, 94, 96, 100, 101, 102], + }, + { + accessible_nodes: [ + 26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 74, 75, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 122, 179, 180, 183, 184, + ], + floor_index: 0, + index: 96, + offset_point_count: 0, + position: [-11.540900230407715, 0.10743299871683121, -25.965200424194336], + quaternion: { + w: -0.16478545524012164, + x: 0.0025306462333222, + y: -0.9862765459227874, + z: 0.009895631625799968, + }, + standing_position: [-11.540900230407715, -0.973172536191039, -25.965200424194336], + visible_nodes: [ + 26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 74, 75, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 122, 179, 180, 183, 184, + ], + }, + { + accessible_nodes: [26, 27, 29, 30, 57, 58, 59, 66, 67, 70, 71, 72, 73, 76, 78, 93, 94, 96, 98, 99, 122, 179, 180, 181, 183, 184], + floor_index: 0, + index: 97, + offset_point_count: 0, + position: [-8.565380096435547, 0.11020900309085846, -25.3031005859375], + quaternion: { + w: -0.2252415515810126, + x: 0.004402227206158639, + y: -0.9742347670081993, + z: 0.010652816277903826, + }, + standing_position: [-8.565380096435547, -0.9500982625409986, -25.3031005859375], + visible_nodes: [26, 27, 29, 30, 57, 58, 59, 66, 67, 70, 71, 72, 73, 76, 78, 93, 94, 96, 98, 99, 122, 179, 180, 181, 183, 184], + }, + { + accessible_nodes: [26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 93, 94, 96, 97, 99, 102, 103, 104, 179, 180, 186], + floor_index: 0, + index: 98, + offset_point_count: 0, + position: [-11.703399658203125, 0.10844799876213074, -27.981399536132812], + quaternion: { + w: 0.6752555509759361, + x: 0.014236435749259079, + y: -0.7374195577809554, + z: 0.006298176880903397, + }, + standing_position: [-11.703399658203125, -1.0043218568223073, -27.981399536132812], + visible_nodes: [26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 93, 94, 96, 97, 99, 102, 103, 104, 179, 180, 186], + }, + { + accessible_nodes: [66, 71, 75, 76, 78, 96, 97, 98, 100, 101, 102, 103, 104], + floor_index: 0, + index: 99, + offset_point_count: 0, + position: [-11.692399978637695, 0.12878400087356567, -30.328100204467773], + quaternion: { + w: 0.67403640084409, + x: 0.0062405711603059294, + y: -0.7384636340842052, + z: -0.01753402797172829, + }, + standing_position: [-11.692399978637695, -0.9922530602526174, -30.328100204467773], + visible_nodes: [66, 71, 75, 76, 78, 96, 97, 98, 100, 101, 102, 103, 104], + }, + { + accessible_nodes: [24, 28, 57, 58, 59, 60, 61, 66, 74, 75, 76, 79, 93, 94, 95, 96, 99, 101, 102, 103, 104, 159, 160, 178], + floor_index: 0, + index: 100, + offset_point_count: 0, + position: [-11.776000022888184, 0.13381999731063843, -33.82229995727539], + quaternion: { + w: -0.2805933879828865, + x: 0.0013298832573164648, + y: -0.9598256866702808, + z: 0.00048742629881045555, + }, + standing_position: [-11.776000022888184, -1.0344386230481883, -33.82229995727539], + visible_nodes: [24, 28, 57, 58, 59, 60, 61, 66, 74, 75, 76, 79, 93, 94, 95, 96, 99, 101, 102, 103, 104, 159, 160, 178], + }, + { + accessible_nodes: [24, 58, 59, 60, 61, 74, 75, 93, 94, 95, 99, 100, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214], + floor_index: 0, + index: 101, + offset_point_count: 0, + position: [-12.733799934387207, -0.019922899082303047, -36.054500579833984], + quaternion: { + w: -0.9898504833543398, + x: -0.013214316780226842, + y: 0.14143365847474632, + z: 0.00423424505669831, + }, + standing_position: [-12.733799934387207, -1.10899138035569, -36.054500579833984], + visible_nodes: [24, 58, 59, 60, 61, 74, 75, 93, 94, 95, 99, 100, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214], + }, + { + accessible_nodes: [ + 24, 57, 58, 59, 60, 66, 74, 75, 93, 94, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 120, 121, 156, 157, 158, 159, 160, 178, + 213, 214, + ], + floor_index: 0, + index: 102, + offset_point_count: 0, + position: [-10.533599853515625, -0.03601120039820671, -36.94060134887695], + quaternion: { + w: -0.6158702595645283, + x: -0.016439370357397363, + y: -0.7876668900806171, + z: 0.003798968542151657, + }, + standing_position: [-10.533599853515625, -1.1496653489117326, -36.94060134887695], + visible_nodes: [ + 24, 57, 58, 59, 60, 66, 74, 75, 93, 94, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 120, 121, 156, 157, 158, 159, 160, 178, + 213, 214, + ], + }, + { + accessible_nodes: [59, 60, 61, 66, 93, 96, 98, 99, 100, 102, 104], + floor_index: 0, + index: 103, + offset_point_count: 0, + position: [-10.811699867248535, -0.003108750097453594, -39.25630187988281], + quaternion: { + w: 0.04849128325575666, + x: -0.0018325776678363764, + y: -0.9988212343529502, + z: -0.0011740658696761368, + }, + standing_position: [-10.811699867248535, -1.1217943794860155, -39.25630187988281], + visible_nodes: [59, 60, 61, 66, 93, 96, 98, 99, 100, 102, 104], + }, + { + accessible_nodes: [66, 77, 78, 79, 82, 86, 87, 90, 96, 98, 99, 100, 102, 103], + floor_index: 0, + index: 104, + offset_point_count: 0, + position: [-10.876399993896484, 0.02068060077726841, -41.01279830932617], + quaternion: { + w: 0.6370092894529085, + x: 0.00390171763727225, + y: -0.7708432080413908, + z: 0.0021650243861543205, + }, + standing_position: [-10.876399993896484, -1.1037952988611752, -41.01279830932617], + visible_nodes: [66, 77, 78, 79, 82, 86, 87, 90, 96, 98, 99, 100, 102, 103], + }, + { + accessible_nodes: [ + 74, 75, 101, 102, 106, 107, 108, 109, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214, + ], + floor_index: 0, + index: 105, + offset_point_count: 0, + position: [-7.829239845275879, -0.056519199162721634, -36.472599029541016], + quaternion: { + w: -0.6805378669891053, + x: -0.009215586525317065, + y: -0.7326460863890307, + z: 0.0036031277205042416, + }, + standing_position: [-7.829239845275879, -1.1599280765992543, -36.472599029541016], + visible_nodes: [ + 74, 75, 101, 102, 106, 107, 108, 109, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214, + ], + }, + { + accessible_nodes: [74, 75, 101, 102, 105, 116, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214], + floor_index: 0, + index: 106, + offset_point_count: 0, + position: [-5.495649814605713, -0.07786480337381363, -36.453399658203125], + quaternion: { + w: -0.8289619949614864, + x: 0.00032387899722233194, + y: -0.559154715664956, + z: 0.012957998887267038, + }, + standing_position: [-5.495649814605713, -1.235346716553175, -36.453399658203125], + visible_nodes: [74, 75, 101, 102, 105, 116, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214], + }, + { + accessible_nodes: [105, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119], + floor_index: 0, + index: 107, + offset_point_count: 0, + position: [-7.699510097503662, -0.047481000423431396, -38.148799896240234], + quaternion: { + w: 0.7047493017433852, + x: 0.0032605442427441306, + y: -0.7094340030822159, + z: 0.0046039521721873145, + }, + standing_position: [-7.699510097503662, -1.1653691002131423, -38.148799896240234], + visible_nodes: [105, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119], + }, + { + accessible_nodes: [105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119], + floor_index: 0, + index: 108, + offset_point_count: 0, + position: [-8.194290161132812, -0.03830850124359131, -39.58340072631836], + quaternion: { + w: 0.539421854723414, + x: 0.004040420298156892, + y: -0.8420079889232794, + z: 0.005502494675192325, + }, + standing_position: [-8.194290161132812, -1.1529108030992485, -39.58340072631836], + visible_nodes: [105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119], + }, + { + accessible_nodes: [105, 107, 108, 110], + floor_index: 0, + index: 109, + offset_point_count: 0, + position: [-6.692200183868408, -0.04798030108213425, -38.93429946899414], + quaternion: { + w: 0.2165744925169343, + x: 0.0020475805443885935, + y: -0.9761596230130709, + z: 0.014272043117714113, + }, + standing_position: [-6.692200183868408, -1.137913648340465, -38.93429946899414], + visible_nodes: [105, 107, 108, 110], + }, + { + accessible_nodes: [108, 109], + floor_index: 0, + index: 110, + offset_point_count: 0, + position: [-6.187449932098389, -0.03979109972715378, -38.4114990234375], + quaternion: { + w: -0.46088854687625036, + x: -0.0010758744180371957, + y: -0.8874064396179858, + z: 0.009507481920400459, + }, + standing_position: [-6.187449932098389, -1.11332895538375, -38.4114990234375], + visible_nodes: [108, 109], + }, + { + accessible_nodes: [107, 108], + floor_index: 0, + index: 111, + offset_point_count: 0, + position: [-6.689499855041504, -0.03567570075392723, -40.028499603271484], + quaternion: { + w: 0.22977868167047344, + x: -0.006320459610911823, + y: -0.9729458328030404, + z: -0.023199774010584383, + }, + standing_position: [-6.689499855041504, -1.1006236560201372, -40.028499603271484], + visible_nodes: [107, 108], + }, + { + accessible_nodes: [105, 107, 108, 113, 114, 115, 116, 117, 118, 119], + floor_index: 0, + index: 112, + offset_point_count: 0, + position: [-7.48567008972168, -0.0364082008600235, -41.043800354003906], + quaternion: { + w: 0.5261820854307611, + x: 0.009637722401532494, + y: -0.8502547695718187, + z: 0.010312568207229074, + }, + standing_position: [-7.48567008972168, -1.1473713087100548, -41.043800354003906], + visible_nodes: [105, 107, 108, 113, 114, 115, 116, 117, 118, 119], + }, + { + accessible_nodes: [105, 107, 108, 112, 114, 115, 116, 117, 118, 119], + floor_index: 0, + index: 113, + offset_point_count: 0, + position: [-7.342710018157959, -0.03520889952778816, -43.12910079956055], + quaternion: { + w: 0.6368919382847611, + x: 0.010819087917239468, + y: -0.7708500076866075, + z: 0.006469694495092488, + }, + standing_position: [-7.342710018157959, -1.1156027312473051, -43.12910079956055], + visible_nodes: [105, 107, 108, 112, 114, 115, 116, 117, 118, 119], + }, + { + accessible_nodes: [105, 107, 108, 112, 113, 115, 116, 117, 118, 119], + floor_index: 0, + index: 114, + offset_point_count: 0, + position: [-7.187160015106201, -0.030244000256061554, -44.82210159301758], + quaternion: { + w: 0.6245138328568458, + x: 0.012697756373074139, + y: -0.7808496021386253, + z: 0.009753736226541711, + }, + standing_position: [-7.187160015106201, -1.1183946197856525, -44.82210159301758], + visible_nodes: [105, 107, 108, 112, 113, 115, 116, 117, 118, 119], + }, + { + accessible_nodes: [105, 107, 108, 112, 113, 114, 116, 117, 118, 119], + floor_index: 0, + index: 115, + offset_point_count: 0, + position: [-7.131549835205078, -0.03332220017910004, -46.09170150756836], + quaternion: { + w: 0.5900876134077754, + x: 0.016400941068799232, + y: -0.8070913814953474, + z: 0.011450542950430543, + }, + standing_position: [-7.131549835205078, -1.1399027640373522, -46.09170150756836], + visible_nodes: [105, 107, 108, 112, 113, 114, 116, 117, 118, 119], + }, + { + accessible_nodes: [102, 105, 106, 107, 108, 112, 113, 114, 115, 117, 118, 119, 214], + floor_index: 0, + index: 116, + offset_point_count: 0, + position: [-7.83951997756958, -0.04751930013298988, -35.33530044555664], + quaternion: { + w: -0.77143085982662, + x: -0.0019112810086248369, + y: -0.6362099340466881, + z: 0.011299769178712981, + }, + standing_position: [-7.83951997756958, -1.1575116117316377, -35.33530044555664], + visible_nodes: [102, 105, 106, 107, 108, 112, 113, 114, 115, 117, 118, 119, 214], + }, + { + accessible_nodes: [105, 107, 112, 113, 114, 115, 116, 118, 119], + floor_index: 0, + index: 117, + offset_point_count: 0, + position: [-8.298199653625488, -0.03429419919848442, -33.488399505615234], + quaternion: { + w: -0.8265138032766498, + x: -0.016399024003638588, + y: -0.562434854973666, + z: 0.016524187557223975, + }, + standing_position: [-8.298199653625488, -1.1297315326161614, -33.488399505615234], + visible_nodes: [105, 107, 112, 113, 114, 115, 116, 118, 119], + }, + { + accessible_nodes: [105, 107, 108, 112, 113, 114, 115, 116, 117, 119], + floor_index: 0, + index: 118, + offset_point_count: 0, + position: [-7.343629837036133, -0.04973199963569641, -31.8789005279541], + quaternion: { + w: -0.7096401242771114, + x: -0.003971932183710707, + y: -0.7043994616119498, + z: 0.014714835207530317, + }, + standing_position: [-7.343629837036133, -1.1661112765777317, -31.8789005279541], + visible_nodes: [105, 107, 108, 112, 113, 114, 115, 116, 117, 119], + }, + { + accessible_nodes: [105, 107, 108, 112, 113, 114, 115, 116, 117, 118], + floor_index: 0, + index: 119, + offset_point_count: 0, + position: [-7.17225980758667, -0.042239099740982056, -30.174699783325195], + quaternion: { + w: -0.7743172165097368, + x: -0.013957325608062007, + y: -0.6322721364138396, + z: 0.021678828043881163, + }, + standing_position: [-7.17225980758667, -1.1274124760137, -30.174699783325195], + visible_nodes: [105, 107, 108, 112, 113, 114, 115, 116, 117, 118], + }, + { + accessible_nodes: [ + 74, 75, 101, 102, 105, 106, 121, 157, 158, 159, 160, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 213, 214, + ], + floor_index: 0, + index: 120, + offset_point_count: 0, + position: [-1.5161499977111816, -0.11580000072717667, -36.74150085449219], + quaternion: { + w: -0.2106313218040101, + x: -0.0064574034084712096, + y: -0.9775442452917366, + z: 0.00002101186564586373, + }, + standing_position: [-1.5161499977111816, -1.255648516284695, -36.74150085449219], + visible_nodes: [ + 74, 75, 101, 102, 105, 106, 121, 157, 158, 159, 160, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 213, 214, + ], + }, + { + accessible_nodes: [74, 75, 101, 102, 105, 106, 120, 158, 159, 160, 178, 213, 214], + floor_index: 0, + index: 121, + offset_point_count: 0, + position: [0.8127599954605103, -0.1198199987411499, -36.5984001159668], + quaternion: { + w: -0.9593939596036094, + x: -0.006888254235207633, + y: -0.28196964254319906, + z: -0.0029834390356266375, + }, + standing_position: [0.8127599954605103, -1.227825849818271, -36.5984001159668], + visible_nodes: [74, 75, 101, 102, 105, 106, 120, 158, 159, 160, 178, 213, 214], + }, + { + accessible_nodes: [26, 27, 28, 29, 30, 31, 32, 57, 58, 59, 60, 73, 96, 97, 123, 127, 129, 154, 155, 156, 179], + floor_index: 0, + index: 122, + offset_point_count: 0, + position: [-33.87839889526367, -0.04105570167303085, -27.49880027770996], + quaternion: { + w: 0.7028922367206492, + x: -0.01437121261822012, + y: -0.7110110247498496, + z: 0.01411779057952335, + }, + standing_position: [-33.87839889526367, -1.1447622875132804, -27.49880027770996], + visible_nodes: [26, 27, 28, 29, 30, 31, 32, 57, 58, 59, 60, 73, 96, 97, 123, 127, 129, 154, 155, 156, 179], + }, + { + accessible_nodes: [29, 31, 32, 122, 124, 126, 127, 128, 129, 131, 154, 155, 156], + floor_index: 0, + index: 123, + offset_point_count: 0, + position: [-34.0526008605957, -0.020269399508833885, -30.208200454711914], + quaternion: { + w: 0.6623612742404446, + x: -0.02197610996926916, + y: -0.7488381070728845, + z: 0.006004163539042349, + }, + standing_position: [-34.0526008605957, -1.1255820097378564, -30.208200454711914], + visible_nodes: [29, 31, 32, 122, 124, 126, 127, 128, 129, 131, 154, 155, 156], + }, + { + accessible_nodes: [123, 125, 126, 127, 128, 129, 132, 155, 156, 163, 164], + floor_index: 0, + index: 124, + offset_point_count: 0, + position: [-36.31050109863281, 0.006043300032615662, -30.78529930114746], + quaternion: { + w: -0.999852683719975, + x: -0.005022223492674917, + y: 0.006297579173815718, + z: -0.015156710038993128, + }, + standing_position: [-36.31050109863281, -1.030065517529435, -30.78529930114746], + visible_nodes: [123, 125, 126, 127, 128, 129, 132, 155, 156, 163, 164], + }, + { + accessible_nodes: [124, 127, 128, 129, 131, 132, 133, 155, 156], + floor_index: 0, + index: 125, + offset_point_count: 0, + position: [-36.647300720214844, -0.024363700300455093, -28.633399963378906], + quaternion: { + w: -0.5757001623770146, + x: -0.03134080746499844, + y: -0.8169208209999905, + z: -0.015081658188178552, + }, + standing_position: [-36.647300720214844, -1.0830197993353885, -28.633399963378906], + visible_nodes: [124, 127, 128, 129, 131, 132, 133, 155, 156], + }, + { + accessible_nodes: [123, 124, 127, 128, 130, 154, 156, 157, 161, 162, 163, 164], + floor_index: 0, + index: 126, + offset_point_count: 0, + position: [-37.86909866333008, 0.01885960064828396, -31.395999908447266], + quaternion: { + w: -0.9031079099285518, + x: 0.004252301767383126, + y: 0.4293384421033928, + z: -0.006821292878989338, + }, + standing_position: [-37.86909866333008, -1.0487425945415227, -31.395999908447266], + visible_nodes: [123, 124, 127, 128, 130, 154, 156, 157, 161, 162, 163, 164], + }, + { + accessible_nodes: [29, 122, 123, 124, 125, 126, 128, 154, 156, 161, 162, 163, 164, 165, 166, 167, 168], + floor_index: 0, + index: 127, + offset_point_count: 0, + position: [-34.69369888305664, 0.0245434008538723, -32.996299743652344], + quaternion: { + w: 0.5042729000330763, + x: -0.023874982045376976, + y: -0.8631946856911068, + z: -0.005810559689479403, + }, + standing_position: [-34.69369888305664, -1.0790790680841704, -32.996299743652344], + visible_nodes: [29, 122, 123, 124, 125, 126, 128, 154, 156, 161, 162, 163, 164, 165, 166, 167, 168], + }, + { + accessible_nodes: [31, 32, 123, 124, 125, 126, 127, 129, 130, 131, 132, 154, 155, 164], + floor_index: 0, + index: 128, + offset_point_count: 0, + position: [-36.64030075073242, 0.06554059684276581, -34.64830017089844], + quaternion: { + w: 0.6304006303907529, + x: -0.013020963858652777, + y: -0.7761601009925347, + z: 0.0009995373594809094, + }, + standing_position: [-36.64030075073242, -1.02403647756279, -34.64830017089844], + visible_nodes: [31, 32, 123, 124, 125, 126, 127, 129, 130, 131, 132, 154, 155, 164], + }, + { + accessible_nodes: [31, 32, 122, 123, 124, 125, 128, 130, 131, 132, 133, 136, 140, 154, 155], + floor_index: 0, + index: 129, + offset_point_count: 0, + position: [-36.7504997253418, 0.11305399984121323, -36.26390075683594], + quaternion: { + w: 0.38839280396152365, + x: -0.01919831545453474, + y: -0.9212919104578391, + z: -0.0019140552831231755, + }, + standing_position: [-36.7504997253418, -0.9891519123662225, -36.26390075683594], + visible_nodes: [31, 32, 122, 123, 124, 125, 128, 130, 131, 132, 133, 136, 140, 154, 155], + }, + { + accessible_nodes: [126, 128, 129, 131, 132, 133, 134, 135, 143, 145, 146, 147, 153, 154, 155, 156], + floor_index: 0, + index: 130, + offset_point_count: 0, + position: [-35.5525016784668, 0.15490199625492096, -37.9734992980957], + quaternion: { + w: 0.45882024991987463, + x: -0.01709016376432794, + y: -0.8883519445653207, + z: -0.00476865206726671, + }, + standing_position: [-35.5525016784668, -0.9189555477782705, -37.9734992980957], + visible_nodes: [126, 128, 129, 131, 132, 133, 134, 135, 143, 145, 146, 147, 153, 154, 155, 156], + }, + { + accessible_nodes: [123, 125, 128, 129, 130, 132, 133, 154, 155, 156], + floor_index: 0, + index: 131, + offset_point_count: 0, + position: [-35.48929977416992, 0.24459800124168396, -40.7244987487793], + quaternion: { + w: 0.6886898204551193, + x: -0.003983824748913662, + y: -0.7250351419697894, + z: 0.003806826922485848, + }, + standing_position: [-35.48929977416992, -0.8698275745231199, -40.7244987487793], + visible_nodes: [123, 125, 128, 129, 130, 132, 133, 154, 155, 156], + }, + { + accessible_nodes: [124, 125, 128, 129, 130, 131, 133, 154, 155, 156], + floor_index: 0, + index: 132, + offset_point_count: 0, + position: [-37.2322998046875, 0.3060239851474762, -42.44540023803711], + quaternion: { + w: 0.8059760341490119, + x: -0.0034458252687732025, + y: -0.5918989880281851, + z: 0.006808352665681404, + }, + standing_position: [-37.2322998046875, -0.8093671682589474, -42.44540023803711], + visible_nodes: [124, 125, 128, 129, 130, 131, 133, 154, 155, 156], + }, + { + accessible_nodes: [125, 129, 130, 131, 132, 134, 135, 143, 144, 145, 146, 147, 153, 155], + floor_index: 0, + index: 133, + offset_point_count: 0, + position: [-33.142799377441406, 0.16558699309825897, -38.88309860229492], + quaternion: { + w: -0.0864088425160972, + x: -0.021877292400649933, + y: -0.9957889539347892, + z: -0.021430229224451407, + }, + standing_position: [-33.142799377441406, -0.9231297419204652, -38.88309860229492], + visible_nodes: [125, 129, 130, 131, 132, 134, 135, 143, 144, 145, 146, 147, 153, 155], + }, + { + accessible_nodes: [130, 133, 135, 136, 143, 144, 145, 146, 147, 153], + floor_index: 0, + index: 134, + offset_point_count: 0, + position: [-31.431499481201172, 0.1677349954843521, -38.870601654052734], + quaternion: { + w: 0.018281597584708622, + x: -0.02240423698883944, + y: -0.999468818791216, + z: -0.015030266749565669, + }, + standing_position: [-31.431499481201172, -0.9088518703050052, -38.870601654052734], + visible_nodes: [130, 133, 135, 136, 143, 144, 145, 146, 147, 153], + }, + { + accessible_nodes: [130, 133, 134, 136, 137, 143, 144, 145, 146, 147, 153], + floor_index: 0, + index: 135, + offset_point_count: 0, + position: [-28.78230094909668, 0.16575400531291962, -38.990501403808594], + quaternion: { + w: 0.18831680656698915, + x: -0.02262360706736722, + y: -0.9817233778246284, + z: -0.01562548366335867, + }, + standing_position: [-28.78230094909668, -0.855066974196717, -38.990501403808594], + visible_nodes: [130, 133, 134, 136, 137, 143, 144, 145, 146, 147, 153], + }, + { + accessible_nodes: [129, 134, 135, 137, 138, 139, 140, 143, 144], + floor_index: 0, + index: 136, + offset_point_count: 0, + position: [-28.695999145507812, 0.24288299679756165, -41.35419845581055], + quaternion: { + w: 0.5739431982609924, + x: -0.01095242210066695, + y: -0.8188100907427371, + z: -0.004392493018909025, + }, + standing_position: [-28.695999145507812, -0.852558535384329, -41.35419845581055], + visible_nodes: [129, 134, 135, 137, 138, 139, 140, 143, 144], + }, + { + accessible_nodes: [135, 136, 138, 139, 140, 143], + floor_index: 0, + index: 137, + offset_point_count: 0, + position: [-28.523799896240234, 0.28904399275779724, -42.408199310302734], + quaternion: { + w: 0.7955374446295144, + x: -0.004658314248017527, + y: -0.6057552767172294, + z: 0.012609521202388717, + }, + standing_position: [-28.523799896240234, -0.8346530052626642, -42.408199310302734], + visible_nodes: [135, 136, 138, 139, 140, 143], + }, + { + accessible_nodes: [136, 137, 139, 140, 144], + floor_index: 0, + index: 138, + offset_point_count: 0, + position: [-30.779699325561523, 0.3026059865951538, -42.76490020751953], + quaternion: { + w: 0.8133875107062281, + x: -0.005175255087259923, + y: -0.5816330731825868, + z: 0.00877159721026679, + }, + standing_position: [-30.779699325561523, -0.7470388457364385, -42.76490020751953], + visible_nodes: [136, 137, 139, 140, 144], + }, + { + accessible_nodes: [136, 137, 138, 140, 145], + floor_index: 0, + index: 139, + offset_point_count: 0, + position: [-32.84400177001953, 0.3188619911670685, -43.221099853515625], + quaternion: { + w: -0.9773020804812723, + x: -0.01364565299471011, + y: 0.21070870239484796, + z: -0.01721259370898205, + }, + standing_position: [-32.84400177001953, -0.7424810910694137, -43.221099853515625], + visible_nodes: [136, 137, 138, 140, 145], + }, + { + accessible_nodes: [129, 136, 137, 138, 139, 141], + floor_index: 0, + index: 140, + offset_point_count: 0, + position: [-27.2007999420166, 0.27938300371170044, -42.29800033569336], + quaternion: { + w: -0.0791402167563006, + x: -0.023368179641704956, + y: -0.9962915635502885, + z: -0.024369521138324732, + }, + standing_position: [-27.2007999420166, -0.8126937672158541, -42.29800033569336], + visible_nodes: [129, 136, 137, 138, 139, 141], + }, + { + accessible_nodes: [140, 142], + floor_index: 0, + index: 141, + offset_point_count: 0, + position: [-27.097200393676758, 0.34661200642585754, -44.16400146484375], + quaternion: { + w: 0.6229142528477389, + x: 0.003940970355852391, + y: -0.7822570366227498, + z: 0.006019934607411899, + }, + standing_position: [-27.097200393676758, -0.753010163177265, -44.16400146484375], + visible_nodes: [140, 142], + }, + { + accessible_nodes: [141], + floor_index: 0, + index: 142, + offset_point_count: 0, + position: [-26.206899642944336, 0.35784798860549927, -44.00310134887695], + quaternion: { + w: 0.1471450006451939, + x: -0.007472984663512431, + y: -0.9890293411072058, + z: -0.010652515535220942, + }, + standing_position: [-26.206899642944336, -0.744339029998629, -44.00310134887695], + visible_nodes: [141], + }, + { + accessible_nodes: [130, 133, 134, 135, 136, 137, 144, 145, 146, 147, 153], + floor_index: 0, + index: 143, + offset_point_count: 0, + position: [-27.45050048828125, 0.13227500021457672, -38.552101135253906], + quaternion: { + w: -0.12027690126730523, + x: -0.02956970478697277, + y: -0.9919715931784983, + z: -0.025523695525213445, + }, + standing_position: [-27.45050048828125, -0.9203364096344491, -38.552101135253906], + visible_nodes: [130, 133, 134, 135, 136, 137, 144, 145, 146, 147, 153], + }, + { + accessible_nodes: [133, 134, 135, 136, 138, 143, 145, 146, 147, 150, 152, 153, 159, 178], + floor_index: 0, + index: 144, + offset_point_count: 0, + position: [-25.513700485229492, 0.12784400582313538, -38.437801361083984], + quaternion: { + w: -0.20187287314456293, + x: -0.027794343646794624, + y: -0.9785521266319458, + z: -0.030175119899325396, + }, + standing_position: [-25.513700485229492, -0.9703878795802725, -38.437801361083984], + visible_nodes: [133, 134, 135, 136, 138, 143, 145, 146, 147, 150, 152, 153, 159, 178], + }, + { + accessible_nodes: [130, 133, 134, 135, 139, 143, 144, 146, 147, 149, 150], + floor_index: 0, + index: 145, + offset_point_count: 0, + position: [-23.52910041809082, 0.16068799793720245, -38.867401123046875], + quaternion: { + w: -0.08757320390727746, + x: -0.027973876545561698, + y: -0.9955476423217334, + z: -0.020815724855997673, + }, + standing_position: [-23.52910041809082, -0.9493454511214341, -38.867401123046875], + visible_nodes: [130, 133, 134, 135, 139, 143, 144, 146, 147, 149, 150], + }, + { + accessible_nodes: [130, 133, 134, 135, 143, 144, 145], + floor_index: 0, + index: 146, + offset_point_count: 0, + position: [-21.607099533081055, 0.1772339940071106, -39.053199768066406], + quaternion: { + w: -0.03755291267125121, + x: -0.02148654756789899, + y: -0.9987067413271767, + z: -0.026701111211710076, + }, + standing_position: [-21.607099533081055, -0.9445979253117815, -39.053199768066406], + visible_nodes: [130, 133, 134, 135, 143, 144, 145], + }, + { + accessible_nodes: [130, 133, 134, 135, 143, 144, 145, 148, 149, 150, 153, 159, 178], + floor_index: 0, + index: 147, + offset_point_count: 0, + position: [-23.282899856567383, 0.2254060059785843, -40.77399826049805], + quaternion: { + w: 0.6181634314100899, + x: -0.010739068526138682, + y: -0.7859738917864916, + z: 0.001916480245457591, + }, + standing_position: [-23.282899856567383, -0.8740894795230802, -40.77399826049805], + visible_nodes: [130, 133, 134, 135, 143, 144, 145, 148, 149, 150, 153, 159, 178], + }, + { + accessible_nodes: [147, 150, 152, 153], + floor_index: 0, + index: 148, + offset_point_count: 0, + position: [-24.398000717163086, 0.2571350038051605, -41.72079849243164], + quaternion: { + w: -0.9875176612264558, + x: -0.015622697805912066, + y: -0.1538342414299921, + z: -0.02999715898039849, + }, + standing_position: [-24.398000717163086, -0.8138781728020661, -41.72079849243164], + visible_nodes: [147, 150, 152, 153], + }, + { + accessible_nodes: [145, 147, 150, 151, 152, 153], + floor_index: 0, + index: 149, + offset_point_count: 0, + position: [-23.454599380493164, 0.29185399413108826, -42.67649841308594], + quaternion: { + w: 0.7095711536137179, + x: -0.0017504871032849082, + y: -0.7046311224129302, + z: 0.0008227251468698095, + }, + standing_position: [-23.454599380493164, -0.8194718158282708, -42.67649841308594], + visible_nodes: [145, 147, 150, 151, 152, 153], + }, + { + accessible_nodes: [144, 145, 147, 148, 149, 151, 152, 153, 159, 178], + floor_index: 0, + index: 150, + offset_point_count: 0, + position: [-23.419200897216797, 0.26276499032974243, -41.65510177612305], + quaternion: { + w: 0.7801156582216114, + x: -0.0020016890442231504, + y: -0.6256255982564758, + z: 0.0028607099627500406, + }, + standing_position: [-23.419200897216797, -0.8516517295411719, -41.65510177612305], + visible_nodes: [144, 145, 147, 148, 149, 151, 152, 153, 159, 178], + }, + { + accessible_nodes: [149, 150, 152, 153], + floor_index: 0, + index: 151, + offset_point_count: 0, + position: [-24.35409927368164, 0.2755360007286072, -42.625701904296875], + quaternion: { + w: -0.9775571259345452, + x: -0.021920673223972117, + y: -0.20748687928536305, + z: -0.029167556649960978, + }, + standing_position: [-24.35409927368164, -0.8164602459851376, -42.625701904296875], + visible_nodes: [149, 150, 152, 153], + }, + { + accessible_nodes: [144, 148, 149, 150, 151], + floor_index: 0, + index: 152, + offset_point_count: 0, + position: [-22.02400016784668, 0.3519740104675293, -43.61949920654297], + quaternion: { + w: -0.13697866736325442, + x: -0.01880720103158797, + y: -0.990170418443963, + z: -0.02111105830109751, + }, + standing_position: [-22.02400016784668, -0.7738820381270655, -43.61949920654297], + visible_nodes: [144, 148, 149, 150, 151], + }, + { + accessible_nodes: [130, 133, 134, 135, 143, 144, 147, 148, 149, 150, 151], + floor_index: 0, + index: 153, + offset_point_count: 0, + position: [-22.391700744628906, 0.22544899582862854, -41.00960159301758], + quaternion: { + w: 0.2109446902612911, + x: -0.019620689511654268, + y: -0.9772026252856925, + z: -0.01387135154129793, + }, + standing_position: [-22.391700744628906, -0.8765128868178138, -41.00960159301758], + visible_nodes: [130, 133, 134, 135, 143, 144, 147, 148, 149, 150, 151], + }, + { + accessible_nodes: [29, 122, 123, 126, 127, 128, 129, 130, 131, 132, 155, 156], + floor_index: 0, + index: 154, + offset_point_count: 0, + position: [-34.58729934692383, 0.3427079916000366, -43.76129913330078], + quaternion: { + w: 0.6348646762864559, + x: -0.009432269668349534, + y: -0.77256560309785, + z: -0.0005007025012598221, + }, + standing_position: [-34.58729934692383, -0.7957632761816991, -43.76129913330078], + visible_nodes: [29, 122, 123, 126, 127, 128, 129, 130, 131, 132, 155, 156], + }, + { + accessible_nodes: [122, 123, 124, 125, 128, 129, 130, 131, 132, 133, 154, 156], + floor_index: 0, + index: 155, + offset_point_count: 0, + position: [-35.8656005859375, 0.3828989863395691, -44.930301666259766], + quaternion: { + w: 0.8367449280227522, + x: -0.0008211855856637765, + y: -0.5475355926902304, + z: 0.007875893510200084, + }, + standing_position: [-35.8656005859375, -0.6450434269345677, -44.930301666259766], + visible_nodes: [122, 123, 124, 125, 128, 129, 130, 131, 132, 133, 154, 156], + }, + { + accessible_nodes: [29, 74, 75, 101, 102, 105, 106, 122, 123, 124, 125, 126, 127, 130, 131, 132, 154, 155, 157, 158, 159, 160, 167], + floor_index: 0, + index: 156, + offset_point_count: 0, + position: [-33.6786994934082, 0.06983769685029984, -35.45790100097656], + quaternion: { + w: 0.3223375407888478, + x: -0.025904041302110326, + y: -0.9462112615232247, + z: -0.010570912673252204, + }, + standing_position: [-33.6786994934082, -1.053847344203496, -35.45790100097656], + visible_nodes: [29, 74, 75, 101, 102, 105, 106, 122, 123, 124, 125, 126, 127, 130, 131, 132, 154, 155, 157, 158, 159, 160, 167], + }, + { + accessible_nodes: [74, 75, 101, 102, 105, 106, 120, 126, 156, 158, 159, 160, 166, 214], + floor_index: 0, + index: 157, + offset_point_count: 0, + position: [-31.249399185180664, 0.026447800919413567, -35.20690155029297], + quaternion: { + w: -0.1034073394526644, + x: -0.02519388332766362, + y: -0.9942091223121535, + z: -0.014846405552222197, + }, + standing_position: [-31.249399185180664, -1.0759122244498875, -35.20690155029297], + visible_nodes: [74, 75, 101, 102, 105, 106, 120, 126, 156, 158, 159, 160, 166, 214], + }, + { + accessible_nodes: [74, 75, 101, 102, 105, 106, 120, 121, 156, 157, 159, 160, 161, 162, 169, 178, 214], + floor_index: 0, + index: 158, + offset_point_count: 0, + position: [-28.72640037536621, 0.013101600110530853, -35.19369888305664], + quaternion: { + w: -0.1357484830275136, + x: -0.02582995951950898, + y: -0.9903183098306924, + z: -0.013221299567519927, + }, + standing_position: [-28.72640037536621, -1.0923748965086606, -35.19369888305664], + visible_nodes: [74, 75, 101, 102, 105, 106, 120, 121, 156, 157, 159, 160, 161, 162, 169, 178, 214], + }, + { + accessible_nodes: [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 156, 157, 158, 160, 178, 214], + floor_index: 0, + index: 159, + offset_point_count: 0, + position: [-26.149999618530273, 0.032781701534986496, -35.82229995727539], + quaternion: { + w: 0.006035561219269308, + x: -0.02237565884450976, + y: -0.9995717606915452, + z: -0.017866035115611353, + }, + standing_position: [-26.149999618530273, -1.0836597476498666, -35.82229995727539], + visible_nodes: [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 156, 157, 158, 160, 178, 214], + }, + { + accessible_nodes: [74, 75, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 178, 214], + floor_index: 0, + index: 160, + offset_point_count: 0, + position: [-22.569799423217773, 0.04269089922308922, -35.94179916381836], + quaternion: { + w: -0.4356933643249327, + x: -0.02926979959541141, + y: -0.899497037657397, + z: -0.01482046351981788, + }, + standing_position: [-22.569799423217773, -1.0715669910141132, -35.94179916381836], + visible_nodes: [74, 75, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 178, 214], + }, + { + accessible_nodes: [126, 127, 158, 162, 163, 164, 165, 166, 167, 168, 170, 177], + floor_index: 0, + index: 161, + offset_point_count: 0, + position: [-28.636899948120117, -0.009825440123677254, -32.56169891357422], + quaternion: { + w: -0.8410476853734637, + x: -0.02039280097598014, + y: -0.5405142902290189, + z: -0.008197239775732706, + }, + standing_position: [-28.636899948120117, -1.114058336691723, -32.56169891357422], + visible_nodes: [126, 127, 158, 162, 163, 164, 165, 166, 167, 168, 170, 177], + }, + { + accessible_nodes: [126, 127, 158, 161, 163, 164, 165, 166, 167, 168], + floor_index: 0, + index: 162, + offset_point_count: 0, + position: [-29.758100509643555, -0.00397044001147151, -32.323001861572266], + quaternion: { + w: -0.9889050200140216, + x: -0.007732019208942826, + y: 0.14769770958437395, + z: -0.013873092974525264, + }, + standing_position: [-29.758100509643555, -1.1179227003512922, -32.323001861572266], + visible_nodes: [126, 127, 158, 161, 163, 164, 165, 166, 167, 168], + }, + { + accessible_nodes: [124, 126, 127, 161, 162, 164, 165, 166, 167, 168], + floor_index: 0, + index: 163, + offset_point_count: 0, + position: [-31.464099884033203, 0.0007996559725143015, -32.400901794433594], + quaternion: { + w: -0.9862122193776643, + x: -0.011585625905887962, + y: 0.1642793608300664, + z: -0.016233247125896952, + }, + standing_position: [-31.464099884033203, -1.1245773551923173, -32.400901794433594], + visible_nodes: [124, 126, 127, 161, 162, 164, 165, 166, 167, 168], + }, + { + accessible_nodes: [124, 126, 127, 128, 161, 162, 163, 165, 166, 167, 168], + floor_index: 0, + index: 164, + offset_point_count: 0, + position: [-32.65879821777344, 0.004259929992258549, -32.38970184326172], + quaternion: { + w: -0.9861562522479358, + x: -0.011918416360850182, + y: 0.1649030556612637, + z: -0.012680182682826271, + }, + standing_position: [-32.65879821777344, -1.1127137238050557, -32.38970184326172], + visible_nodes: [124, 126, 127, 128, 161, 162, 163, 165, 166, 167, 168], + }, + { + accessible_nodes: [127, 161, 162, 163, 164, 166, 167, 168, 169], + floor_index: 0, + index: 165, + offset_point_count: 0, + position: [-26.89900016784668, -0.011188800446689129, -32.181400299072266], + quaternion: { + w: -0.08429735300674031, + x: 0.005268314429728026, + y: -0.99636857224596, + z: -0.01076361178026357, + }, + standing_position: [-26.89900016784668, -1.1062685491333888, -32.181400299072266], + visible_nodes: [127, 161, 162, 163, 164, 166, 167, 168, 169], + }, + { + accessible_nodes: [127, 157, 161, 162, 163, 164, 165, 167, 168, 172], + floor_index: 0, + index: 166, + offset_point_count: 0, + position: [-24.50309944152832, 0.004568899981677532, -32.005401611328125], + quaternion: { + w: -0.015058037781738432, + x: 0.005552527551909374, + y: -0.9998148582851808, + z: -0.010614115769791526, + }, + standing_position: [-24.50309944152832, -1.0721604108108576, -32.005401611328125], + visible_nodes: [127, 157, 161, 162, 163, 164, 165, 167, 168, 172], + }, + { + accessible_nodes: [127, 156, 161, 162, 163, 164, 165, 166, 168, 172, 176], + floor_index: 0, + index: 167, + offset_point_count: 0, + position: [-22.51129913330078, 0.018399400636553764, -32.19960021972656], + quaternion: { + w: -0.05064612364375141, + x: 0.005727310573017095, + y: -0.9986796976323391, + z: -0.0064053797866338085, + }, + standing_position: [-22.51129913330078, -1.0405576078516514, -32.19960021972656], + visible_nodes: [127, 156, 161, 162, 163, 164, 165, 166, 168, 172, 176], + }, + { + accessible_nodes: [127, 161, 162, 163, 164, 165, 166, 167, 172, 176], + floor_index: 0, + index: 168, + offset_point_count: 0, + position: [-21.14240074157715, 0.02997020073235035, -32.67879867553711], + quaternion: { + w: -0.04143189166052709, + x: 0.008136574375892039, + y: -0.9990716663401865, + z: -0.008543933288238884, + }, + standing_position: [-21.14240074157715, -1.0709352690601235, -32.67879867553711], + visible_nodes: [127, 161, 162, 163, 164, 165, 166, 167, 172, 176], + }, + { + accessible_nodes: [158, 165, 170, 171, 172, 174, 176, 177], + floor_index: 0, + index: 169, + offset_point_count: 0, + position: [-26.75149917602539, -0.015499499626457691, -30.591100692749023], + quaternion: { + w: -0.7877694253437808, + x: 0.0161098095881476, + y: -0.6157473680950685, + z: -0.003870207474769515, + }, + standing_position: [-26.75149917602539, -1.1369145623866974, -30.591100692749023], + visible_nodes: [158, 165, 170, 171, 172, 174, 176, 177], + }, + { + accessible_nodes: [161, 169, 171, 172, 174, 176, 177], + floor_index: 0, + index: 170, + offset_point_count: 0, + position: [-25.138999938964844, -0.008414209820330143, -30.365400314331055], + quaternion: { + w: -0.18020224451767744, + x: 0.007542848478958569, + y: -0.983573996396279, + z: -0.007242772360621359, + }, + standing_position: [-25.138999938964844, -1.0596763705907597, -30.365400314331055], + visible_nodes: [161, 169, 171, 172, 174, 176, 177], + }, + { + accessible_nodes: [169, 170, 172, 174, 176, 177], + floor_index: 0, + index: 171, + offset_point_count: 0, + position: [-23.401599884033203, -0.00673652021214366, -30.511899948120117], + quaternion: { + w: -0.06064775372576557, + x: 0.0056005484351463975, + y: -0.9981077142077379, + z: -0.008454098142476744, + }, + standing_position: [-23.401599884033203, -1.0087468230706915, -30.511899948120117], + visible_nodes: [169, 170, 172, 174, 176, 177], + }, + { + accessible_nodes: [166, 167, 168, 169, 170, 171, 173, 174, 176, 177], + floor_index: 0, + index: 172, + offset_point_count: 0, + position: [-27.991199493408203, -0.003735099919140339, -30.514999389648438], + quaternion: { + w: -0.9986158492260793, + x: 0.0007006541258459621, + y: -0.05206079951625265, + z: 0.007455068991459616, + }, + standing_position: [-27.991199493408203, -1.12971617885132, -30.514999389648438], + visible_nodes: [166, 167, 168, 169, 170, 171, 173, 174, 176, 177], + }, + { + accessible_nodes: [172], + floor_index: 0, + index: 173, + offset_point_count: 0, + position: [-28.11090087890625, -0.021497899666428566, -29.347900390625], + quaternion: { + w: -0.7041364270950423, + x: 0.0023338593224055282, + y: -0.7099830285889552, + z: -0.010513812490200058, + }, + standing_position: [-28.11090087890625, -1.1117653088618251, -29.347900390625], + visible_nodes: [172], + }, + { + accessible_nodes: [169, 170, 171, 172, 175, 176, 177], + floor_index: 0, + index: 174, + offset_point_count: 0, + position: [-29.66990089416504, 0.015584399923682213, -30.569900512695312], + quaternion: { + w: -0.9999406096584555, + x: -0.003800707399571962, + y: 0.005789345070644814, + z: 0.008415498915566992, + }, + standing_position: [-29.66990089416504, -1.1127657046014958, -30.569900512695312], + visible_nodes: [169, 170, 171, 172, 175, 176, 177], + }, + { + accessible_nodes: [174, 176], + floor_index: 0, + index: 175, + offset_point_count: 0, + position: [-29.836599349975586, -0.00874148029834032, -29.653099060058594], + quaternion: { + w: -0.9911350089621543, + x: 0.002926140171034223, + y: -0.13281012821405516, + z: 0.0020765694353445004, + }, + standing_position: [-29.836599349975586, -1.1165402576327355, -29.653099060058594], + visible_nodes: [174, 176], + }, + { + accessible_nodes: [167, 168, 169, 170, 171, 172, 174, 175], + floor_index: 0, + index: 176, + offset_point_count: 0, + position: [-31.395999908447266, 0.013253799639642239, -29.91790008544922], + quaternion: { + w: -0.9931462154078944, + x: -0.0019044179782136017, + y: 0.11673963981999183, + z: 0.005368897471892865, + }, + standing_position: [-31.395999908447266, -1.0896033642753584, -29.91790008544922], + visible_nodes: [167, 168, 169, 170, 171, 172, 174, 175], + }, + { + accessible_nodes: [161, 169, 170, 171, 172, 174], + floor_index: 0, + index: 177, + offset_point_count: 0, + position: [-24.78820037841797, -0.00015114199777599424, -29.806499481201172], + quaternion: { + w: -0.3125143445879648, + x: 0.01551938355960373, + y: -0.9497787330841854, + z: -0.0037812395489767174, + }, + standing_position: [-24.78820037841797, -1.0245078035657662, -29.806499481201172], + visible_nodes: [161, 169, 170, 171, 172, 174], + }, + { + accessible_nodes: [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 158, 159, 160, 213, 214], + floor_index: 0, + index: 178, + offset_point_count: 0, + position: [-25.71310043334961, 0.07721160352230072, -36.95209884643555], + quaternion: { + w: 0.6204068985541664, + x: 0.00038780034702352016, + y: -0.7837319812193948, + z: -0.02931404336454186, + }, + standing_position: [-25.71310043334961, -1.0429962685348124, -36.95209884643555], + visible_nodes: [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 158, 159, 160, 213, 214], + }, + { + accessible_nodes: [26, 27, 29, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 122, 180, 181, 182, 183, 184, 186], + floor_index: 0, + index: 179, + offset_point_count: 0, + position: [-5.021009922027588, 0.14278799295425415, -23.741899490356445], + quaternion: { + w: 0.1706542079629859, + x: 0.003814989712559569, + y: -0.9853234792739476, + z: -0.00047986668799815244, + }, + standing_position: [-5.021009922027588, -0.9761321731165453, -23.741899490356445], + visible_nodes: [26, 27, 29, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 122, 180, 181, 182, 183, 184, 186], + }, + { + accessible_nodes: [26, 27, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 179, 181, 182, 183, 184, 186, 187, 189, 190, 203], + floor_index: 0, + index: 180, + offset_point_count: 0, + position: [-2.489799976348877, -0.043093398213386536, -23.51020050048828], + quaternion: { + w: -0.2654402444799251, + x: 0.012584298442877714, + y: -0.9640451284416953, + z: 0.0003162869512206035, + }, + standing_position: [-2.489799976348877, -1.1518788334116161, -23.51020050048828], + visible_nodes: [26, 27, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 179, 181, 182, 183, 184, 186, 187, 189, 190, 203], + }, + { + accessible_nodes: [26, 27, 57, 58, 59, 73, 97, 179, 180, 182, 183, 184, 186], + floor_index: 0, + index: 181, + offset_point_count: 0, + position: [2.652209997177124, 0.030313199386000633, -23.7677001953125], + quaternion: { + w: 0.20740372454215317, + x: 0.00008632681423384986, + y: -0.9781311178168418, + z: 0.015595453000828914, + }, + standing_position: [2.652209997177124, -1.0231923003010366, -23.7677001953125], + visible_nodes: [26, 27, 57, 58, 59, 73, 97, 179, 180, 182, 183, 184, 186], + }, + { + accessible_nodes: [26, 57, 58, 59, 73, 179, 180, 181, 183, 184], + floor_index: 0, + index: 182, + offset_point_count: 0, + position: [4.822659969329834, 0.04652180150151253, -23.909500122070312], + quaternion: { + w: 0.03126081923758042, + x: 0.005728773029643747, + y: -0.9992319898048824, + z: 0.022920933203162734, + }, + standing_position: [4.822659969329834, -1.0773065509476325, -23.909500122070312], + visible_nodes: [26, 57, 58, 59, 73, 179, 180, 181, 183, 184], + }, + { + accessible_nodes: [26, 27, 57, 58, 59, 73, 96, 97, 179, 180, 181, 182, 184, 185, 186, 188, 189, 190, 204], + floor_index: 0, + index: 183, + offset_point_count: 0, + position: [0.8879799842834473, -0.0031612201128154993, -23.65489959716797], + quaternion: { + w: 0.674063653575249, + x: 0.008591608253510654, + y: -0.7384594432296334, + z: 0.015557769148706045, + }, + standing_position: [0.8879799842834473, -1.1146995958475012, -23.65489959716797], + visible_nodes: [26, 27, 57, 58, 59, 73, 96, 97, 179, 180, 181, 182, 184, 185, 186, 188, 189, 190, 204], + }, + { + accessible_nodes: [ + 26, 27, 30, 57, 58, 59, 73, 96, 97, 120, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 203, 206, 209, 210, 212, 213, 214, + ], + floor_index: 0, + index: 184, + offset_point_count: 0, + position: [-1.036810040473938, -0.030545499175786972, -24.220500946044922], + quaternion: { + w: 0.759034147232377, + x: 0.00301172889801254, + y: -0.6508877947487288, + z: 0.01425325427676135, + }, + standing_position: [-1.036810040473938, -1.1010034424014576, -24.220500946044922], + visible_nodes: [ + 26, 27, 30, 57, 58, 59, 73, 96, 97, 120, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 203, 206, 209, 210, 212, 213, 214, + ], + }, + { + accessible_nodes: [183, 184, 187, 188, 189, 190, 203], + floor_index: 0, + index: 185, + offset_point_count: 0, + position: [0.7974439859390259, 0.03306280076503754, -21.10569953918457], + quaternion: { + w: -0.8449994762029465, + x: -0.0009725289873611943, + y: -0.5347618125183319, + z: 0.00218021954014595, + }, + standing_position: [0.7974439859390259, -1.068907370159928, -21.10569953918457], + visible_nodes: [183, 184, 187, 188, 189, 190, 203], + }, + { + accessible_nodes: [94, 98, 120, 179, 180, 181, 183, 184, 187, 188, 189, 190, 203, 206, 209, 210, 212, 213], + floor_index: 0, + index: 186, + offset_point_count: 0, + position: [-0.9787610173225403, 0.014385799877345562, -21.476499557495117], + quaternion: { + w: -0.9058833367064251, + x: 0.0018388595814009532, + y: -0.42347000474204355, + z: 0.006719411646374197, + }, + standing_position: [-0.9787610173225403, -1.1063610951975635, -21.476499557495117], + visible_nodes: [94, 98, 120, 179, 180, 181, 183, 184, 187, 188, 189, 190, 203, 206, 209, 210, 212, 213], + }, + { + accessible_nodes: [120, 180, 184, 185, 186, 188, 189, 190, 191, 193, 203, 206, 209, 210, 212, 213, 221, 222], + floor_index: 0, + index: 187, + offset_point_count: 0, + position: [-1.1446199417114258, 0.062403298914432526, -18.865100860595703], + quaternion: { + w: -0.8008463213175046, + x: -0.0012179571791669811, + y: -0.598809090278823, + z: 0.008445860930048045, + }, + standing_position: [-1.1446199417114258, -1.0252397390843302, -18.865100860595703], + visible_nodes: [120, 180, 184, 185, 186, 188, 189, 190, 191, 193, 203, 206, 209, 210, 212, 213, 221, 222], + }, + { + accessible_nodes: [120, 183, 184, 185, 186, 187, 203, 206, 209, 210, 212, 213], + floor_index: 0, + index: 188, + offset_point_count: 0, + position: [-0.9144970178604126, 0.10752599686384201, -16.267200469970703], + quaternion: { + w: 0.3756091809338468, + x: 0.008149903818202648, + y: -0.9266567999213869, + z: 0.012589775227173618, + }, + standing_position: [-0.9144970178604126, -0.9757755834502182, -16.267200469970703], + visible_nodes: [120, 183, 184, 185, 186, 187, 203, 206, 209, 210, 212, 213], + }, + { + accessible_nodes: [180, 183, 184, 185, 186, 187, 190, 193, 203, 209], + floor_index: 0, + index: 189, + offset_point_count: 0, + position: [1.409409999847412, 0.07706160098314285, -18.714500427246094], + quaternion: { + w: -0.8701685538152434, + x: 0.019414745271955757, + y: 0.4915315711416145, + z: -0.028748371954493167, + }, + standing_position: [1.409409999847412, -1.025188525934501, -18.714500427246094], + visible_nodes: [180, 183, 184, 185, 186, 187, 190, 193, 203, 209], + }, + { + accessible_nodes: [180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 203, 209, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239], + floor_index: 0, + index: 190, + offset_point_count: 0, + position: [1.804710030555725, 0.12200400233268738, -16.577699661254883], + quaternion: { + w: 0.17642228826351797, + x: -0.020476972309824447, + y: -0.9840142860727553, + z: 0.013105269793118953, + }, + standing_position: [1.804710030555725, -0.9987634191031023, -16.577699661254883], + visible_nodes: [180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 203, 209, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239], + }, + { + accessible_nodes: [187, 190, 192, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 231, 237, 238, 239, 240, 244], + floor_index: 0, + index: 191, + offset_point_count: 0, + position: [8.926549911499023, 0.16669100522994995, -16.31209945678711], + quaternion: { + w: -0.7778262450709712, + x: 0.010237422002071212, + y: -0.6281968730401455, + z: -0.01581720594498991, + }, + standing_position: [8.926549911499023, -0.9083304238149628, -16.31209945678711], + visible_nodes: [187, 190, 192, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 231, 237, 238, 239, 240, 244], + }, + { + accessible_nodes: [190, 191, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 227, 236, 237, 238, 239, 240, 246], + floor_index: 0, + index: 192, + offset_point_count: 0, + position: [9.942000389099121, 0.2787329852581024, -18.507299423217773], + quaternion: { + w: 0.791003042369064, + x: -0.025240824521933557, + y: -0.6098948914129432, + z: 0.04129495636231594, + }, + standing_position: [9.942000389099121, -0.7988373856967792, -18.507299423217773], + visible_nodes: [190, 191, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 227, 236, 237, 238, 239, 240, 246], + }, + { + accessible_nodes: [187, 189, 190, 191, 192, 194, 215, 216, 217, 218, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239, 240], + floor_index: 0, + index: 193, + offset_point_count: 0, + position: [5.1349101066589355, 0.09879250079393387, -16.531299591064453], + quaternion: { + w: -0.9628844038508936, + x: 0.02249656756074276, + y: 0.26777201365497316, + z: -0.02541025825077537, + }, + standing_position: [5.1349101066589355, -0.9838068451579178, -16.531299591064453], + visible_nodes: [187, 189, 190, 191, 192, 194, 215, 216, 217, 218, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239, 240], + }, + { + accessible_nodes: [ + 16, 45, 46, 49, 190, 191, 192, 193, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 230, 231, 236, 237, 238, 239, 240, 244, + 257, 260, + ], + floor_index: 0, + index: 194, + offset_point_count: 0, + position: [7.675970077514648, 0.12457100301980972, -17.025299072265625], + quaternion: { + w: 0.8123226288311466, + x: -0.02134275000983927, + y: -0.5819429612241986, + z: 0.0319189539629752, + }, + standing_position: [7.675970077514648, -0.9364998881181168, -17.025299072265625], + visible_nodes: [ + 16, 45, 46, 49, 190, 191, 192, 193, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 230, 231, 236, 237, 238, 239, 240, 244, + 257, 260, + ], + }, + { + accessible_nodes: [16, 45, 46, 49, 191, 192, 194, 215, 216, 218, 220, 221, 222, 223, 224, 225, 236, 237, 238, 239, 240, 244], + floor_index: 0, + index: 195, + offset_point_count: 0, + position: [7.6390700340271, 0.06752990186214447, -19.35890007019043], + quaternion: { + w: 0.6067263820302812, + x: -0.024818223993203423, + y: -0.794165502140743, + z: 0.023839299529319524, + }, + standing_position: [7.6390700340271, -0.9717472727589564, -19.35890007019043], + visible_nodes: [16, 45, 46, 49, 191, 192, 194, 215, 216, 218, 220, 221, 222, 223, 224, 225, 236, 237, 238, 239, 240, 244], + }, + { + accessible_nodes: [2, 3, 13, 15, 16, 44, 45, 46, 47, 49, 197, 198, 202, 227, 228, 229], + floor_index: 0, + index: 196, + offset_point_count: 0, + position: [10.159899711608887, 0.3340429961681366, -8.456040382385254], + quaternion: { + w: 0.7663225981680839, + x: -0.0011790583138470566, + y: -0.6421416171127257, + z: -0.020060054557125832, + }, + standing_position: [10.159899711608887, -0.7687446720492639, -8.456040382385254], + visible_nodes: [2, 3, 13, 15, 16, 44, 45, 46, 47, 49, 197, 198, 202, 227, 228, 229], + }, + { + accessible_nodes: [ + 2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 44, 196, 198, 200, 201, 221, 222, 223, 227, 228, 230, 241, 252, 261, 262, 269, + ], + floor_index: 0, + index: 197, + offset_point_count: 0, + position: [12.531900405883789, 0.037801701575517654, -7.156169891357422], + quaternion: { + w: -0.06933153360450572, + x: -0.024747820353577327, + y: -0.9972778612425376, + z: 0.004189781102569331, + }, + standing_position: [12.531900405883789, -0.9488785189928284, -7.156169891357422], + visible_nodes: [2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 44, 196, 198, 200, 201, 221, 222, 223, 227, 228, 230, 241, 252, 261, 262, 269], + }, + { + accessible_nodes: [2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 44, 196, 197, 199, 200, 201, 202, 228, 229, 230, 231, 232], + floor_index: 0, + index: 198, + offset_point_count: 0, + position: [15.008600234985352, -0.09420280158519745, -6.709889888763428], + quaternion: { + w: 0.0035818229885778994, + x: -0.023359307007944603, + y: -0.9996700040401791, + z: 0.010069650582933421, + }, + standing_position: [15.008600234985352, -1.1200095488644553, -6.709889888763428], + visible_nodes: [2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 44, 196, 197, 199, 200, 201, 202, 228, 229, 230, 231, 232], + }, + { + accessible_nodes: [198, 200, 201, 202, 227, 229, 230], + floor_index: 0, + index: 199, + offset_point_count: 0, + position: [16.704700469970703, -0.17152899503707886, -11.285900115966797], + quaternion: { + w: 0.7018262673830861, + x: -0.01313981418225371, + y: -0.7120507946888632, + z: -0.015840490335044057, + }, + standing_position: [16.704700469970703, -1.2951785897673322, -11.285900115966797], + visible_nodes: [198, 200, 201, 202, 227, 229, 230], + }, + { + accessible_nodes: [2, 3, 15, 44, 197, 198, 199, 201, 202, 227, 229, 230, 231, 232], + floor_index: 0, + index: 200, + offset_point_count: 0, + position: [17.10219955444336, -0.19690699875354767, -8.745570182800293], + quaternion: { + w: -0.812240300338838, + x: -0.020270560176433784, + y: -0.5822531002104641, + z: 0.028916607214050052, + }, + standing_position: [17.10219955444336, -1.2699787286079032, -8.745570182800293], + visible_nodes: [2, 3, 15, 44, 197, 198, 199, 201, 202, 227, 229, 230, 231, 232], + }, + { + accessible_nodes: [44, 197, 198, 199, 200, 202, 227, 229, 230, 231, 232, 233], + floor_index: 0, + index: 201, + offset_point_count: 0, + position: [19.552200317382812, -0.3109680116176605, -10.74120044708252], + quaternion: { + w: 0.18525967277210578, + x: -0.01742399309783235, + y: -0.9825335187023451, + z: 0.001775248092827475, + }, + standing_position: [19.552200317382812, -1.4022921353587259, -10.74120044708252], + visible_nodes: [44, 197, 198, 199, 200, 202, 227, 229, 230, 231, 232, 233], + }, + { + accessible_nodes: [15, 196, 198, 199, 200, 201, 227, 229, 230], + floor_index: 0, + index: 202, + offset_point_count: 0, + position: [18.10650062561035, -0.24382199347019196, -12.211899757385254], + quaternion: { + w: -0.896969142651516, + x: 0.0026190402974725887, + y: 0.4415435560621348, + z: 0.021881219338747353, + }, + standing_position: [18.10650062561035, -1.3354729436084258, -12.211899757385254], + visible_nodes: [15, 196, 198, 199, 200, 201, 227, 229, 230], + }, + { + accessible_nodes: [120, 180, 184, 185, 186, 187, 188, 189, 190, 204, 205, 206, 207, 209, 210, 212, 213, 214], + floor_index: 0, + index: 203, + offset_point_count: 0, + position: [-1.0309799909591675, -0.050251398235559464, -26.00119972229004], + quaternion: { + w: 0.6935688388242189, + x: 0.005646124842538131, + y: -0.7202629487087883, + z: 0.012316355083732092, + }, + standing_position: [-1.0309799909591675, -1.1222510196330433, -26.00119972229004], + visible_nodes: [120, 180, 184, 185, 186, 187, 188, 189, 190, 204, 205, 206, 207, 209, 210, 212, 213, 214], + }, + { + accessible_nodes: [183, 203, 205], + floor_index: 0, + index: 204, + offset_point_count: 0, + position: [-2.767620086669922, -0.08150540292263031, -26.19059944152832], + quaternion: { + w: -0.9999488355541407, + x: -0.003918700067526039, + y: 0.007692118720193155, + z: -0.0052725192238820655, + }, + standing_position: [-2.767620086669922, -1.1531666252512769, -26.19059944152832], + visible_nodes: [183, 203, 205], + }, + { + accessible_nodes: [203, 204], + floor_index: 0, + index: 205, + offset_point_count: 0, + position: [-3.4048800468444824, -0.08525560051202774, -26.107900619506836], + quaternion: { + w: -0.9522709616053752, + x: 0.0024535757364621434, + y: 0.30520306681264475, + z: -0.005008828864659258, + }, + standing_position: [-3.4048800468444824, -1.1348405791731981, -26.107900619506836], + visible_nodes: [203, 204], + }, + { + accessible_nodes: [120, 184, 186, 187, 188, 203, 208, 209, 210, 211, 212, 213, 214], + floor_index: 0, + index: 206, + offset_point_count: 0, + position: [-1.2326099872589111, -0.07540459930896759, -28.341899871826172], + quaternion: { + w: 0.6614347474490854, + x: 0.010791439959327768, + y: -0.7498072709369199, + z: 0.013292003781787848, + }, + standing_position: [-1.2326099872589111, -1.1850459013185937, -28.341899871826172], + visible_nodes: [120, 184, 186, 187, 188, 203, 208, 209, 210, 211, 212, 213, 214], + }, + { + accessible_nodes: [120, 203, 208, 209, 210, 212, 213], + floor_index: 0, + index: 207, + offset_point_count: 0, + position: [-3.5236001014709473, -0.1551010012626648, -29.3789005279541], + quaternion: { + w: -0.9999416006440389, + x: 0.00004487629761721665, + y: 0.007082038871136106, + z: -0.008163973157034248, + }, + standing_position: [-3.5236001014709473, -1.272053308149377, -29.3789005279541], + visible_nodes: [120, 203, 208, 209, 210, 212, 213], + }, + { + accessible_nodes: [120, 206, 207, 209, 210, 212, 213], + floor_index: 0, + index: 208, + offset_point_count: 0, + position: [-3.58447003364563, -0.13600799441337585, -28.15169906616211], + quaternion: { + w: -0.8014958673418254, + x: 0.005763866380014669, + y: -0.5979672165236236, + z: 0.0025226591689112227, + }, + standing_position: [-3.58447003364563, -1.2576836991004159, -28.15169906616211], + visible_nodes: [120, 206, 207, 209, 210, 212, 213], + }, + { + accessible_nodes: [120, 184, 186, 187, 188, 189, 190, 203, 206, 207, 208, 210, 211, 212, 213, 214], + floor_index: 0, + index: 209, + offset_point_count: 0, + position: [-2.1029200553894043, -0.12435200065374374, -29.99180030822754], + quaternion: { + w: 0.2501655433969394, + x: 0.016851276058263292, + y: -0.9677928610814706, + z: 0.022587756852435314, + }, + standing_position: [-2.1029200553894043, -1.223854588967224, -29.99180030822754], + visible_nodes: [120, 184, 186, 187, 188, 189, 190, 203, 206, 207, 208, 210, 211, 212, 213, 214], + }, + { + accessible_nodes: [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 211, 212, 213, 214], + floor_index: 0, + index: 210, + offset_point_count: 0, + position: [-0.9622889757156372, -0.12177900224924088, -31.95870018005371], + quaternion: { + w: -0.3873054247920518, + x: 0.008718170275918733, + y: -0.9219024621784762, + z: 0.003787565256703433, + }, + standing_position: [-0.9622889757156372, -1.2066650706324544, -31.95870018005371], + visible_nodes: [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 211, 212, 213, 214], + }, + { + accessible_nodes: [120, 206, 209, 210, 212, 213, 214], + floor_index: 0, + index: 211, + offset_point_count: 0, + position: [-3.6539199352264404, -0.20712999999523163, -32.58340072631836], + quaternion: { + w: -0.9762790039555368, + x: -0.011847251722244765, + y: 0.21588370832211085, + z: -0.011539375404236893, + }, + standing_position: [-3.6539199352264404, -1.2874672593655647, -32.58340072631836], + visible_nodes: [120, 206, 209, 210, 212, 213, 214], + }, + { + accessible_nodes: [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 213, 214], + floor_index: 0, + index: 212, + offset_point_count: 0, + position: [-1.7270900011062622, -0.1462080031633377, -34.97079849243164], + quaternion: { + w: 0.6074320193654439, + x: 0.01764305040413264, + y: -0.7938877005043935, + z: 0.021386163503717984, + }, + standing_position: [-1.7270900011062622, -1.2279091041283552, -34.97079849243164], + visible_nodes: [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 213, 214], + }, + { + accessible_nodes: [102, 105, 106, 120, 121, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 214], + floor_index: 0, + index: 213, + offset_point_count: 0, + position: [-2.605220079421997, -0.1837339997291565, -36.10179901123047], + quaternion: { + w: 0.8405467436330457, + x: 0.009924167395118488, + y: -0.5410250996885838, + z: 0.025971866305743843, + }, + standing_position: [-2.605220079421997, -1.2752835184648414, -36.10179901123047], + visible_nodes: [102, 105, 106, 120, 121, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 214], + }, + { + accessible_nodes: [74, 75, 101, 102, 105, 106, 116, 120, 121, 157, 158, 159, 160, 178, 184, 203, 206, 209, 210, 211, 212, 213], + floor_index: 0, + index: 214, + offset_point_count: 0, + position: [-3.564610004425049, -0.21077099442481995, -36.86859893798828], + quaternion: { + w: -0.14895169070079864, + x: 0.016792660095933973, + y: -0.9887015312265535, + z: 0.0008298440892027165, + }, + standing_position: [-3.564610004425049, -1.3015357800175964, -36.86859893798828], + visible_nodes: [74, 75, 101, 102, 105, 106, 116, 120, 121, 157, 158, 159, 160, 178, 184, 203, 206, 209, 210, 211, 212, 213], + }, + { + accessible_nodes: [191, 192, 193, 194, 195, 216, 217, 219, 220, 221, 222, 223, 224, 225, 237, 238, 239, 240, 242], + floor_index: 0, + index: 215, + offset_point_count: 0, + position: [6.095200061798096, 0.17161600291728973, -20.10409927368164], + quaternion: { + w: 0.3523910932951324, + x: -0.00618363408246497, + y: -0.9356084018934682, + z: 0.020474413370418575, + }, + standing_position: [6.095200061798096, -0.9443573645064494, -20.10409927368164], + visible_nodes: [191, 192, 193, 194, 195, 216, 217, 219, 220, 221, 222, 223, 224, 225, 237, 238, 239, 240, 242], + }, + { + accessible_nodes: [191, 192, 193, 194, 195, 215, 217, 220, 221, 222, 223, 224, 225, 234, 235, 238, 239, 240, 242], + floor_index: 0, + index: 216, + offset_point_count: 0, + position: [5.92303991317749, 0.15582099556922913, -20.732200622558594], + quaternion: { + w: 0.4154851212170437, + x: 0.00007803103805867667, + y: -0.9092120073681088, + z: 0.0265638781142731, + }, + standing_position: [5.92303991317749, -0.9531899856736967, -20.732200622558594], + visible_nodes: [191, 192, 193, 194, 195, 215, 217, 220, 221, 222, 223, 224, 225, 234, 235, 238, 239, 240, 242], + }, + { + accessible_nodes: [44, 45, 55, 193, 215, 216, 218, 219, 220], + floor_index: 0, + index: 217, + offset_point_count: 0, + position: [6.210820198059082, 0.21616500616073608, -19.101299285888672], + quaternion: { + w: -0.9731470348213022, + x: 0.0059088202292974686, + y: -0.2301076126550319, + z: 0.0006472918870823103, + }, + standing_position: [6.210820198059082, -0.8694438773115112, -19.101299285888672], + visible_nodes: [44, 45, 55, 193, 215, 216, 218, 219, 220], + }, + { + accessible_nodes: [16, 191, 192, 193, 194, 195, 217, 219, 220, 222, 227, 241, 243, 244, 248, 254, 269], + floor_index: 0, + index: 218, + offset_point_count: 0, + position: [7.960820198059082, -0.008376269601285458, -22.674800872802734], + quaternion: { + w: 0.5977065199502312, + x: 0.003827124080754851, + y: -0.8014774738449336, + z: 0.019134169637817285, + }, + standing_position: [7.960820198059082, -1.1228958042461954, -22.674800872802734], + visible_nodes: [16, 191, 192, 193, 194, 195, 217, 219, 220, 222, 227, 241, 243, 244, 248, 254, 269], + }, + { + accessible_nodes: [215, 217, 218, 241, 243, 247, 248], + floor_index: 0, + index: 219, + offset_point_count: 0, + position: [8.947790145874023, 0.003256170079112053, -22.64310073852539], + quaternion: { + w: -0.045437337874438564, + x: 0.009288640832964795, + y: -0.9988003180507922, + z: 0.015719232809788777, + }, + standing_position: [8.947790145874023, -1.102844389590545, -22.64310073852539], + visible_nodes: [215, 217, 218, 241, 243, 247, 248], + }, + { + accessible_nodes: [ + 16, 46, 49, 191, 192, 194, 195, 215, 216, 217, 218, 221, 222, 223, 224, 227, 234, 235, 238, 239, 240, 242, 244, 256, + ], + floor_index: 0, + index: 220, + offset_point_count: 0, + position: [7.879819869995117, 0.03535420075058937, -20.717300415039062], + quaternion: { + w: -0.7556295052288744, + x: 0.009352558232540506, + y: -0.6548907758738852, + z: 0.007393375826983411, + }, + standing_position: [7.879819869995117, -1.0546701733989963, -20.717300415039062], + visible_nodes: [16, 46, 49, 191, 192, 194, 195, 215, 216, 217, 218, 221, 222, 223, 224, 227, 234, 235, 238, 239, 240, 242, 244, 256], + }, + { + accessible_nodes: [ + 187, 190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 222, 223, 224, 225, 226, 227, 228, 231, 238, 239, 240, 241, 252, 261, 262, + 269, 291, 298, + ], + floor_index: 0, + index: 221, + offset_point_count: 0, + position: [12.235199928283691, 0.1265619993209839, -15.662599563598633], + quaternion: { + w: 0.5760313205048866, + x: 0.00825246686559281, + y: -0.8173672117433063, + z: 0.005538312996294494, + }, + standing_position: [12.235199928283691, -0.9553749549140416, -15.662599563598633], + visible_nodes: [ + 187, 190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 222, 223, 224, 225, 226, 227, 228, 231, 238, 239, 240, 241, 252, 261, 262, + 269, 291, 298, + ], + }, + { + accessible_nodes: [ + 44, 45, 187, 191, 192, 194, 195, 197, 215, 216, 218, 220, 221, 223, 227, 228, 239, 240, 241, 252, 261, 262, 269, 291, + ], + floor_index: 0, + index: 222, + offset_point_count: 0, + position: [12.0378999710083, 0.3188070058822632, -12.791299819946289], + quaternion: { + w: -0.7299407796574808, + x: 0.017585457698749918, + y: -0.6831877879018354, + z: 0.011474505451104395, + }, + standing_position: [12.0378999710083, -0.8845550531350543, -12.791299819946289], + visible_nodes: [44, 45, 187, 191, 192, 194, 195, 197, 215, 216, 218, 220, 221, 223, 227, 228, 239, 240, 241, 252, 261, 262, 269, 291], + }, + { + accessible_nodes: [190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 221, 222, 224, 225, 227, 228, 236, 237, 238, 239, 240, 241, 252], + floor_index: 0, + index: 223, + offset_point_count: 0, + position: [11.514800071716309, 0.17930999398231506, -16.92639923095703], + quaternion: { + w: 0.6732867260444271, + x: 0.00082775475472627, + y: -0.7390546456538599, + z: 0.021966819604469907, + }, + standing_position: [11.514800071716309, -0.9518783644551347, -16.92639923095703], + visible_nodes: [190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 221, 222, 224, 225, 227, 228, 236, 237, 238, 239, 240, 241, 252], + }, + { + accessible_nodes: [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 225, 226, 231, 239, 240, 241, 252, 253], + floor_index: 0, + index: 224, + offset_point_count: 0, + position: [14.184399604797363, 0.11288999766111374, -15.58430004119873], + quaternion: { + w: -0.10830386375283821, + x: -0.005914661048872205, + y: -0.9940802999903685, + z: 0.006297328289370291, + }, + standing_position: [14.184399604797363, -0.9987686609538726, -15.58430004119873], + visible_nodes: [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 225, 226, 231, 239, 240, 241, 252, 253], + }, + { + accessible_nodes: [190, 191, 192, 193, 194, 195, 215, 216, 221, 223, 224, 226, 231], + floor_index: 0, + index: 225, + offset_point_count: 0, + position: [16.510799407958984, 0.08271630108356476, -15.21679973602295], + quaternion: { + w: -0.36449591241812807, + x: -0.002973010064870031, + y: -0.9311192491128193, + z: 0.012281534793574859, + }, + standing_position: [16.510799407958984, -1.029039747169426, -15.21679973602295], + visible_nodes: [190, 191, 192, 193, 194, 195, 215, 216, 221, 223, 224, 226, 231], + }, + { + accessible_nodes: [190, 191, 193, 194, 221, 224, 225, 231, 232], + floor_index: 0, + index: 226, + offset_point_count: 0, + position: [19.12540054321289, 0.04917420074343681, -15.024900436401367], + quaternion: { + w: -0.1243633845989019, + x: -0.005127688587254773, + y: -0.9921178868420744, + z: 0.014476124264573448, + }, + standing_position: [19.12540054321289, -1.0246271336887842, -15.024900436401367], + visible_nodes: [190, 191, 193, 194, 221, 224, 225, 231, 232], + }, + { + accessible_nodes: [ + 15, 16, 44, 47, 192, 196, 197, 199, 200, 201, 202, 218, 220, 221, 222, 223, 228, 229, 239, 240, 241, 252, 261, 262, 269, 291, + ], + floor_index: 0, + index: 227, + offset_point_count: 0, + position: [12.241499900817871, 0.07768390327692032, -11.026000022888184], + quaternion: { + w: -0.9771646093036409, + x: -0.0026161458594248952, + y: 0.21176516315142285, + z: 0.017262945493804055, + }, + standing_position: [12.241499900817871, -0.9560613561667004, -11.026000022888184], + visible_nodes: [ + 15, 16, 44, 47, 192, 196, 197, 199, 200, 201, 202, 218, 220, 221, 222, 223, 228, 229, 239, 240, 241, 252, 261, 262, 269, 291, + ], + }, + { + accessible_nodes: [2, 3, 4, 5, 13, 15, 16, 44, 48, 196, 197, 198, 221, 222, 223, 227, 240, 241, 252, 261, 262, 269], + floor_index: 0, + index: 228, + offset_point_count: 0, + position: [12.510100364685059, 0.04357380047440529, -8.435569763183594], + quaternion: { + w: -0.722788453913862, + x: -0.025212064467630607, + y: -0.6903064947009552, + z: 0.02044883396971932, + }, + standing_position: [12.510100364685059, -0.961918185647807, -8.435569763183594], + visible_nodes: [2, 3, 4, 5, 13, 15, 16, 44, 48, 196, 197, 198, 221, 222, 223, 227, 240, 241, 252, 261, 262, 269], + }, + { + accessible_nodes: [15, 44, 196, 198, 199, 200, 201, 202, 227, 230], + floor_index: 0, + index: 229, + offset_point_count: 0, + position: [14.95419979095459, -0.06244479864835739, -11.371199607849121], + quaternion: { + w: -0.10652312642442154, + x: -0.03569924343568769, + y: -0.9936266246719506, + z: 0.009193968852485091, + }, + standing_position: [14.95419979095459, -1.1851181503214971, -11.371199607849121], + visible_nodes: [15, 44, 196, 198, 199, 200, 201, 202, 227, 230], + }, + { + accessible_nodes: [194, 197, 198, 199, 200, 201, 202, 229], + floor_index: 0, + index: 230, + offset_point_count: 0, + position: [15.209500312805176, -0.09400729835033417, -9.13716983795166], + quaternion: { + w: -0.9468494169474257, + x: -0.00037788398619876726, + y: 0.32110310679991505, + z: 0.01920477150618357, + }, + standing_position: [15.209500312805176, -1.1982780369743156, -9.13716983795166], + visible_nodes: [194, 197, 198, 199, 200, 201, 202, 229], + }, + { + accessible_nodes: [190, 191, 193, 194, 198, 200, 201, 221, 224, 225, 226, 232, 233, 235, 236, 248, 249, 265, 266, 275, 294, 295], + floor_index: 0, + index: 231, + offset_point_count: 0, + position: [22.190099716186523, -0.009483260102570057, -14.438699722290039], + quaternion: { + w: 0.4490258592191967, + x: -0.0025865561390395566, + y: -0.8934972692500196, + z: 0.005631475702775825, + }, + standing_position: [22.190099716186523, -1.144592269167893, -14.438699722290039], + visible_nodes: [190, 191, 193, 194, 198, 200, 201, 221, 224, 225, 226, 232, 233, 235, 236, 248, 249, 265, 266, 275, 294, 295], + }, + { + accessible_nodes: [198, 200, 201, 226, 231, 233], + floor_index: 0, + index: 232, + offset_point_count: 0, + position: [24.282699584960938, -0.042493101209402084, -16.618600845336914], + quaternion: { + w: 0.24544632905318034, + x: 0.003860529604702835, + y: -0.9692925964049501, + z: 0.014596683698972723, + }, + standing_position: [24.282699584960938, -1.1301806107565648, -16.618600845336914], + visible_nodes: [198, 200, 201, 226, 231, 233], + }, + { + accessible_nodes: [201, 231, 232, 234, 235], + floor_index: 0, + index: 233, + offset_point_count: 0, + position: [25.67970085144043, -0.09493079781532288, -18.91119956970215], + quaternion: { + w: 0.33908704140950413, + x: 0.0010076542524414366, + y: -0.9406200465835479, + z: 0.015902658417095213, + }, + standing_position: [25.67970085144043, -1.1929628147805453, -18.91119956970215], + visible_nodes: [201, 231, 232, 234, 235], + }, + { + accessible_nodes: [216, 220, 233, 235, 237, 240, 242], + floor_index: 0, + index: 234, + offset_point_count: 0, + position: [23.400299072265625, -0.10714700073003769, -20.639400482177734], + quaternion: { + w: -0.8887824524213799, + x: 0.0050599645492033635, + y: 0.458300497503256, + z: 0.000895393943726334, + }, + standing_position: [23.400299072265625, -1.2171027468742075, -20.639400482177734], + visible_nodes: [216, 220, 233, 235, 237, 240, 242], + }, + { + accessible_nodes: [216, 220, 231, 233, 234, 236, 240, 242, 248, 249, 265, 266, 275, 294, 295, 306, 307], + floor_index: 0, + index: 235, + offset_point_count: 0, + position: [21.355100631713867, -0.08368360251188278, -20.876800537109375], + quaternion: { + w: -0.9964195765740234, + x: 0.010580383015335459, + y: 0.0833905738997513, + z: 0.009060740066312174, + }, + standing_position: [21.355100631713867, -1.1551978257396285, -20.876800537109375], + visible_nodes: [216, 220, 231, 233, 234, 236, 240, 242, 248, 249, 265, 266, 275, 294, 295, 306, 307], + }, + { + accessible_nodes: [190, 192, 193, 194, 195, 223, 231, 235, 237, 238, 239, 248, 249, 265, 266, 275, 294, 295, 306], + floor_index: 0, + index: 236, + offset_point_count: 0, + position: [21.39189910888672, -0.04092720150947571, -17.91670036315918], + quaternion: { + w: -0.9351923037711991, + x: -0.0065474582215429315, + y: -0.3537975074996861, + z: 0.014135433998950954, + }, + standing_position: [21.39189910888672, -1.1165887651965856, -17.91670036315918], + visible_nodes: [190, 192, 193, 194, 195, 223, 231, 235, 237, 238, 239, 248, 249, 265, 266, 275, 294, 295, 306], + }, + { + accessible_nodes: [190, 191, 192, 193, 194, 195, 215, 223, 234, 236, 238, 239], + floor_index: 0, + index: 237, + offset_point_count: 0, + position: [18.603599548339844, 0.021688800305128098, -17.77090072631836], + quaternion: { + w: -0.9992395653841963, + x: -0.0004911092453144542, + y: 0.03697728956434318, + z: 0.01235817286866488, + }, + standing_position: [18.603599548339844, -1.0754451549951674, -17.77090072631836], + visible_nodes: [190, 191, 192, 193, 194, 195, 215, 223, 234, 236, 238, 239], + }, + { + accessible_nodes: [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 236, 237, 239], + floor_index: 0, + index: 238, + offset_point_count: 0, + position: [16.07360076904297, 0.08239100128412247, -17.802000045776367], + quaternion: { + w: -0.9859770650527234, + x: -0.0009746693969333166, + y: 0.1665561628535465, + z: 0.010359444447561096, + }, + standing_position: [16.07360076904297, -1.0261374705226791, -17.802000045776367], + visible_nodes: [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 236, 237, 239], + }, + { + accessible_nodes: [ + 190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 236, 237, 238, 240, 241, 252, 261, 262, 269, 291, 298, 303, + ], + floor_index: 0, + index: 239, + offset_point_count: 0, + position: [12.737600326538086, 0.10183899849653244, -18.048500061035156], + quaternion: { + w: 0.6180544722691159, + x: -0.0034393615282243177, + y: -0.7860816417649472, + z: 0.008514277309869304, + }, + standing_position: [12.737600326538086, -0.9870995424993418, -18.048500061035156], + visible_nodes: [ + 190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 236, 237, 238, 240, 241, 252, 261, 262, 269, 291, 298, 303, + ], + }, + { + accessible_nodes: [ + 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 228, 234, 235, 239, 241, 242, 243, 252, 253, 261, 262, 269, 291, + 298, 303, 309, + ], + floor_index: 0, + index: 240, + offset_point_count: 0, + position: [12.734600067138672, 0.0555821992456913, -20.726200103759766], + quaternion: { + w: 0.61135929811203, + x: -0.0021328553867485845, + y: -0.7912022358743788, + z: 0.01530632330212572, + }, + standing_position: [12.734600067138672, -0.8939458005302766, -20.726200103759766], + visible_nodes: [ + 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 228, 234, 235, 239, 241, 242, 243, 252, 253, 261, 262, 269, 291, + 298, 303, 309, + ], + }, + { + accessible_nodes: [ + 197, 218, 219, 221, 222, 223, 224, 227, 228, 239, 240, 243, 246, 247, 248, 252, 253, 258, 261, 262, 269, 291, 298, 303, 309, 315, + ], + floor_index: 0, + index: 241, + offset_point_count: 0, + position: [12.436800003051758, 0.01908089965581894, -23.21500015258789], + quaternion: { + w: 0.6963577103551213, + x: 0.0008826977271623126, + y: -0.7175111385434761, + z: 0.016215007570207992, + }, + standing_position: [12.436800003051758, -1.0954007616208359, -23.21500015258789], + visible_nodes: [ + 197, 218, 219, 221, 222, 223, 224, 227, 228, 239, 240, 243, 246, 247, 248, 252, 253, 258, 261, 262, 269, 291, 298, 303, 309, 315, + ], + }, + { + accessible_nodes: [215, 216, 220, 234, 235, 240], + floor_index: 0, + index: 242, + offset_point_count: 0, + position: [17.355600357055664, 0.006818700116127729, -20.776500701904297], + quaternion: { + w: -0.6298701790110526, + x: -0.003098729145630665, + y: -0.7764930742994891, + z: 0.01767610060837568, + }, + standing_position: [17.355600357055664, -1.037766003537747, -20.776500701904297], + visible_nodes: [215, 216, 220, 234, 235, 240], + }, + { + accessible_nodes: [218, 219, 240, 241, 246, 247, 251], + floor_index: 0, + index: 243, + offset_point_count: 0, + position: [10.710100173950195, 0.026672400534152985, -22.644800186157227], + quaternion: { + w: -0.9814319362962463, + x: -0.00045061912423457914, + y: 0.19173302511216858, + z: -0.005440902373514956, + }, + standing_position: [10.710100173950195, -1.0797844667722176, -22.644800186157227], + visible_nodes: [218, 219, 240, 241, 246, 247, 251], + }, + { + accessible_nodes: [16, 191, 194, 195, 218, 220, 245, 246, 247, 248, 250, 251, 252, 253], + floor_index: 0, + index: 244, + offset_point_count: 0, + position: [8.153989791870117, -0.06878279894590378, -25.111000061035156], + quaternion: { + w: -0.9993362831860976, + x: 0.004482940132139907, + y: 0.03463030201236693, + z: -0.010374509732535042, + }, + standing_position: [8.153989791870117, -1.184989521328321, -25.111000061035156], + visible_nodes: [16, 191, 194, 195, 218, 220, 245, 246, 247, 248, 250, 251, 252, 253], + }, + { + accessible_nodes: [244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260], + floor_index: 0, + index: 245, + offset_point_count: 0, + position: [9.317219734191895, -0.04773100093007088, -25.26609992980957], + quaternion: { + w: -0.3686279348341942, + x: 0.013430513605166575, + y: -0.9294675518762172, + z: 0.004809757806398297, + }, + standing_position: [9.317219734191895, -1.1406573799965782, -25.26609992980957], + visible_nodes: [244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260], + }, + { + accessible_nodes: [192, 241, 243, 244, 245, 247, 248, 253, 254, 255], + floor_index: 0, + index: 246, + offset_point_count: 0, + position: [14.56779956817627, 0.01308829989284277, -24.690900802612305], + quaternion: { + w: -0.10260249298464225, + x: 0.007798395747545294, + y: -0.9944930585433878, + z: 0.01988616170140738, + }, + standing_position: [14.56779956817627, -1.0815880269413545, -24.690900802612305], + visible_nodes: [192, 241, 243, 244, 245, 247, 248, 253, 254, 255], + }, + { + accessible_nodes: [219, 241, 243, 244, 245, 246, 248], + floor_index: 0, + index: 247, + offset_point_count: 0, + position: [17.965499877929688, 0.0676570013165474, -24.658100128173828], + quaternion: { + w: -0.15250232918813855, + x: 0.0034706917286357083, + y: -0.988171778711084, + z: 0.01573332105789243, + }, + standing_position: [17.965499877929688, -1.0316710240439704, -24.658100128173828], + visible_nodes: [219, 241, 243, 244, 245, 246, 248], + }, + { + accessible_nodes: [218, 219, 231, 235, 236, 241, 244, 245, 246, 247, 249, 265, 266, 275, 294, 295, 306, 307, 318], + floor_index: 0, + index: 248, + offset_point_count: 0, + position: [21.118499755859375, 0.11178900301456451, -24.465999603271484], + quaternion: { + w: -0.18733252661223776, + x: 0.009178675768862034, + y: -0.9821157414545049, + z: 0.01646060662954881, + }, + standing_position: [21.118499755859375, -1.0175774805877473, -24.465999603271484], + visible_nodes: [218, 219, 231, 235, 236, 241, 244, 245, 246, 247, 249, 265, 266, 275, 294, 295, 306, 307, 318], + }, + { + accessible_nodes: [231, 235, 236, 248, 250, 251, 252, 253, 254, 255, 256, 265, 266, 275, 294, 295, 306, 307, 318, 319], + floor_index: 0, + index: 249, + offset_point_count: 0, + position: [21.385700225830078, 0.06298740208148956, -27.388399124145508], + quaternion: { + w: 0.596790354956645, + x: 0.00611242210514215, + y: -0.8022370526575744, + z: 0.014819498537768537, + }, + standing_position: [21.385700225830078, -1.0736098767778202, -27.388399124145508], + visible_nodes: [231, 235, 236, 248, 250, 251, 252, 253, 254, 255, 256, 265, 266, 275, 294, 295, 306, 307, 318, 319], + }, + { + accessible_nodes: [244, 245, 249, 251, 252, 253, 254, 255, 256], + floor_index: 0, + index: 250, + offset_point_count: 0, + position: [19.02199935913086, 0.023422500118613243, -27.755800247192383], + quaternion: { + w: 0.16269503874051836, + x: 0.004301092884738929, + y: -0.9864386845934265, + z: 0.021226072028871966, + }, + standing_position: [19.02199935913086, -1.095132273238745, -27.755800247192383], + visible_nodes: [244, 245, 249, 251, 252, 253, 254, 255, 256], + }, + { + accessible_nodes: [243, 244, 245, 249, 250, 252, 253, 254, 255, 256, 257, 258], + floor_index: 0, + index: 251, + offset_point_count: 0, + position: [15.297699928283691, -0.023276299238204956, -27.819900512695312], + quaternion: { + w: 0.13707629558304898, + x: 0.006614066750936387, + y: -0.9904573704862757, + z: 0.012670487514651012, + }, + standing_position: [15.297699928283691, -1.1363635601244224, -27.819900512695312], + visible_nodes: [243, 244, 245, 249, 250, 252, 253, 254, 255, 256, 257, 258], + }, + { + accessible_nodes: [ + 197, 221, 222, 223, 224, 227, 228, 239, 240, 241, 244, 245, 249, 250, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 269, 291, + 298, 303, 309, 315, 323, + ], + floor_index: 0, + index: 252, + offset_point_count: 0, + position: [12.676600456237793, -0.03457219898700714, -27.576099395751953], + quaternion: { + w: -0.9933196239490801, + x: -0.0013660116181219246, + y: 0.1151340833716035, + z: -0.00764227803233235, + }, + standing_position: [12.676600456237793, -1.1472879617954053, -27.576099395751953], + visible_nodes: [ + 197, 221, 222, 223, 224, 227, 228, 239, 240, 241, 244, 245, 249, 250, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 269, 291, + 298, 303, 309, 315, 323, + ], + }, + { + accessible_nodes: [224, 240, 241, 244, 245, 246, 249, 250, 251, 252, 254, 255], + floor_index: 0, + index: 253, + offset_point_count: 0, + position: [10.84179973602295, -0.017382200807332993, -27.152700424194336], + quaternion: { + w: -0.9994270948582025, + x: -0.0026515601091703666, + y: -0.03364061759815199, + z: -0.002602065020290035, + }, + standing_position: [10.84179973602295, -1.1400012470231313, -27.152700424194336], + visible_nodes: [224, 240, 241, 244, 245, 246, 249, 250, 251, 252, 254, 255], + }, + { + accessible_nodes: [218, 245, 246, 249, 250, 251, 252, 253, 255, 256, 257, 259, 260, 261, 269], + floor_index: 0, + index: 254, + offset_point_count: 0, + position: [9.303930282592773, -0.021984899416565895, -26.958999633789062], + quaternion: { + w: -0.9913646710321524, + x: -0.006274533400510599, + y: 0.1309674992855004, + z: -0.0020577772003925318, + }, + standing_position: [9.303930282592773, -1.1591455252567993, -26.958999633789062], + visible_nodes: [218, 245, 246, 249, 250, 251, 252, 253, 255, 256, 257, 259, 260, 261, 269], + }, + { + accessible_nodes: [245, 246, 249, 250, 251, 252, 253, 254, 256, 261, 262], + floor_index: 0, + index: 255, + offset_point_count: 0, + position: [8.52715015411377, -0.021825600415468216, -27.14259910583496], + quaternion: { + w: -0.9977002447072173, + x: 0.006568581875957607, + y: 0.067307286716166, + z: 0.004561735542257476, + }, + standing_position: [8.52715015411377, -1.1418313077331268, -27.14259910583496], + visible_nodes: [245, 246, 249, 250, 251, 252, 253, 254, 256, 261, 262], + }, + { + accessible_nodes: [220, 245, 249, 250, 251, 254, 255, 257, 258, 259, 260, 261, 262, 263], + floor_index: 0, + index: 256, + offset_point_count: 0, + position: [9.23684024810791, -0.016268299892544746, -29.122499465942383], + quaternion: { + w: -0.7430162058516706, + x: -0.010772054251541716, + y: -0.6653878953785237, + z: -0.0712028740144718, + }, + standing_position: [9.23684024810791, -1.149260063732303, -29.122499465942383], + visible_nodes: [220, 245, 249, 250, 251, 254, 255, 257, 258, 259, 260, 261, 262, 263], + }, + { + accessible_nodes: [194, 245, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 268], + floor_index: 0, + index: 257, + offset_point_count: 0, + position: [9.30309009552002, -0.01622219942510128, -31.018299102783203], + quaternion: { + w: 0.004819230289187101, + x: -0.04399041630780489, + y: -0.9983671238174106, + z: -0.03612066237633471, + }, + standing_position: [9.30309009552002, -1.1443609453873473, -31.018299102783203], + visible_nodes: [194, 245, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 268], + }, + { + accessible_nodes: [241, 251, 252, 256, 257, 259, 260, 261, 262, 263, 264, 265, 268], + floor_index: 0, + index: 258, + offset_point_count: 0, + position: [7.715980052947998, -0.020195800811052322, -31.22010040283203], + quaternion: { + w: 0.8039690369039965, + x: -0.034978485911152955, + y: -0.5936405871620736, + z: 0.0010611064496724085, + }, + standing_position: [7.715980052947998, -1.1190170646365538, -31.22010040283203], + visible_nodes: [241, 251, 252, 256, 257, 259, 260, 261, 262, 263, 264, 265, 268], + }, + { + accessible_nodes: [245, 252, 254, 256, 257, 258, 260, 261, 262, 263, 266, 267, 268], + floor_index: 0, + index: 259, + offset_point_count: 0, + position: [7.946720123291016, -0.014584800228476524, -33.34199905395508], + quaternion: { + w: 0.11360562448378186, + x: -0.03427189027632981, + y: -0.9926688010612541, + z: -0.022975083069604923, + }, + standing_position: [7.946720123291016, -1.1365801693243789, -33.34199905395508], + visible_nodes: [245, 252, 254, 256, 257, 258, 260, 261, 262, 263, 266, 267, 268], + }, + { + accessible_nodes: [194, 245, 252, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 278], + floor_index: 0, + index: 260, + offset_point_count: 0, + position: [9.609430313110352, -0.0345952995121479, -33.44300079345703], + quaternion: { + w: -0.34064565873958114, + x: 0.005273591669665825, + y: -0.9401612577071997, + z: -0.00543449747397009, + }, + standing_position: [9.609430313110352, -1.1382667672076057, -33.44300079345703], + visible_nodes: [194, 245, 252, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 278], + }, + { + accessible_nodes: [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 254, 255, 256, 257, 258, 259, 260, 262, 266, 267, 268, 269, 291, 298, 303, 309, 315, + 323, + ], + floor_index: 0, + index: 261, + offset_point_count: 0, + position: [12.086199760437012, -0.04931579902768135, -33.32820129394531], + quaternion: { + w: -0.4258646232636586, + x: 0.01034350176702549, + y: -0.9047079202590744, + z: -0.005992669687274836, + }, + standing_position: [12.086199760437012, -1.1866615391375819, -33.32820129394531], + visible_nodes: [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 254, 255, 256, 257, 258, 259, 260, 262, 266, 267, 268, 269, 291, 298, 303, 309, 315, + 323, + ], + }, + { + accessible_nodes: [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 269, 291, 298, 303, 309, 315, 323, + ], + floor_index: 0, + index: 262, + offset_point_count: 0, + position: [12.40880012512207, -0.04767540097236633, -31.16029930114746], + quaternion: { + w: -0.5203618082188534, + x: 0.00686904693366301, + y: -0.8539102283744587, + z: -0.0037045246716688384, + }, + standing_position: [12.40880012512207, -1.1877356989781753, -31.16029930114746], + visible_nodes: [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 269, 291, 298, 303, 309, 315, 323, + ], + }, + { + accessible_nodes: [256, 257, 258, 259, 260, 262, 264, 265, 268], + floor_index: 0, + index: 263, + offset_point_count: 0, + position: [15.248700141906738, -0.03791480138897896, -31.257999420166016], + quaternion: { + w: -0.04942922930497513, + x: 0.016329679845613888, + y: -0.9986434691241228, + z: -0.0011436988528619617, + }, + standing_position: [15.248700141906738, -1.151821738865895, -31.257999420166016], + visible_nodes: [256, 257, 258, 259, 260, 262, 264, 265, 268], + }, + { + accessible_nodes: [257, 258, 262, 263, 265], + floor_index: 0, + index: 264, + offset_point_count: 0, + position: [18.435800552368164, -0.021482300013303757, -31.025400161743164], + quaternion: { + w: -0.446668137561625, + x: 0.010579785520689403, + y: -0.8946328251235155, + z: -0.0027843763950214885, + }, + standing_position: [18.435800552368164, -1.0912994133188991, -31.025400161743164], + visible_nodes: [257, 258, 262, 263, 265], + }, + { + accessible_nodes: [231, 235, 236, 248, 249, 257, 258, 262, 263, 264, 266, 275, 294, 295, 306, 307, 318, 319, 320], + floor_index: 0, + index: 265, + offset_point_count: 0, + position: [21.534500122070312, -0.006372199859470129, -30.93910026550293], + quaternion: { + w: -0.3413671990806381, + x: 0.01868074665806769, + y: -0.9397418000948597, + z: 0.0021959982620589472, + }, + standing_position: [21.534500122070312, -1.1387492359706641, -30.93910026550293], + visible_nodes: [231, 235, 236, 248, 249, 257, 258, 262, 263, 264, 266, 275, 294, 295, 306, 307, 318, 319, 320], + }, + { + accessible_nodes: [231, 235, 236, 248, 249, 259, 260, 261, 265, 267, 268, 275, 294, 295, 306, 307, 318, 319, 320], + floor_index: 0, + index: 266, + offset_point_count: 0, + position: [21.259199142456055, -0.04420049861073494, -34.06740188598633], + quaternion: { + w: 0.23056039453572247, + x: 0.002977617031735592, + y: -0.9730534029955668, + z: -0.0003148559990190928, + }, + standing_position: [21.259199142456055, -1.1425163226771455, -34.06740188598633], + visible_nodes: [231, 235, 236, 248, 249, 259, 260, 261, 265, 267, 268, 275, 294, 295, 306, 307, 318, 319, 320], + }, + { + accessible_nodes: [259, 260, 261, 266, 268, 276, 356], + floor_index: 0, + index: 267, + offset_point_count: 0, + position: [18.431100845336914, -0.04072209820151329, -33.937599182128906], + quaternion: { + w: -0.9977032542077842, + x: 0.008266214431018387, + y: 0.06683754630020279, + z: 0.00725433743439289, + }, + standing_position: [18.431100845336914, -1.119381402438307, -33.937599182128906], + visible_nodes: [259, 260, 261, 266, 268, 276, 356], + }, + { + accessible_nodes: [257, 258, 259, 260, 261, 263, 266, 267, 271], + floor_index: 0, + index: 268, + offset_point_count: 0, + position: [14.831999778747559, -0.04515720158815384, -34.38840103149414], + quaternion: { + w: -0.9129492754330553, + x: 0.0015739130967766363, + y: 0.40803247400197856, + z: 0.005535889268718986, + }, + standing_position: [14.831999778747559, -1.1430972479042953, -34.38840103149414], + visible_nodes: [257, 258, 259, 260, 261, 263, 266, 267, 271], + }, + { + accessible_nodes: [ + 197, 218, 221, 222, 227, 228, 239, 240, 241, 252, 254, 261, 262, 270, 271, 273, 274, 275, 276, 277, 278, 291, 298, 299, 301, 303, + 309, 315, 323, + ], + floor_index: 0, + index: 269, + offset_point_count: 0, + position: [12.4822998046875, -0.044119201600551605, -36.31209945678711], + quaternion: { + w: 0.6204582838640722, + x: 0.015589050588961768, + y: -0.7839372100859955, + z: -0.015196578948662727, + }, + standing_position: [12.4822998046875, -1.1619593527468772, -36.31209945678711], + visible_nodes: [ + 197, 218, 221, 222, 227, 228, 239, 240, 241, 252, 254, 261, 262, 270, 271, 273, 274, 275, 276, 277, 278, 291, 298, 299, 301, 303, + 309, 315, 323, + ], + }, + { + accessible_nodes: [269, 271, 273, 274, 275, 276, 277, 278], + floor_index: 0, + index: 270, + offset_point_count: 0, + position: [10.388400077819824, -0.04779199883341789, -36.627899169921875], + quaternion: { + w: 0.7474142620374734, + x: 0.01424452536313719, + y: -0.664143525117152, + z: -0.009077703937697697, + }, + standing_position: [10.388400077819824, -1.1677186529025005, -36.627899169921875], + visible_nodes: [269, 271, 273, 274, 275, 276, 277, 278], + }, + { + accessible_nodes: [268, 269, 270, 272, 273, 274, 275, 276, 277, 278], + floor_index: 0, + index: 271, + offset_point_count: 0, + position: [7.959579944610596, -0.08091740310192108, -36.58769989013672], + quaternion: { + w: -0.8666758445489146, + x: -0.012592044382587625, + y: 0.49847943240492437, + z: 0.015253674235319028, + }, + standing_position: [7.959579944610596, -1.1775352212612438, -36.58769989013672], + visible_nodes: [268, 269, 270, 272, 273, 274, 275, 276, 277, 278], + }, + { + accessible_nodes: [271], + floor_index: 0, + index: 272, + offset_point_count: 0, + position: [7.927720069885254, -0.045523300766944885, -38.25659942626953], + quaternion: { + w: 0.4193113416625294, + x: 0.017096808155712902, + y: -0.9075658387610764, + z: -0.014489864674922191, + }, + standing_position: [7.927720069885254, -1.1021192993677356, -38.25659942626953], + visible_nodes: [271], + }, + { + accessible_nodes: [269, 270, 271, 274, 275, 276, 277], + floor_index: 0, + index: 273, + offset_point_count: 0, + position: [15.032299995422363, -0.022138400003314018, -36.73360061645508], + quaternion: { + w: 0.004467611661953361, + x: 0.009418545985154039, + y: -0.9998145229469128, + z: -0.016194234745787694, + }, + standing_position: [15.032299995422363, -1.144885486054501, -36.73360061645508], + visible_nodes: [269, 270, 271, 274, 275, 276, 277], + }, + { + accessible_nodes: [269, 270, 271, 273, 275, 276, 277], + floor_index: 0, + index: 274, + offset_point_count: 0, + position: [18.115800857543945, -0.0314457006752491, -36.67829895019531], + quaternion: { + w: -0.20252124031337007, + x: 0.008024357707301703, + y: -0.9791837988362456, + z: -0.010947002493434568, + }, + standing_position: [18.115800857543945, -1.1576337276524096, -36.67829895019531], + visible_nodes: [269, 270, 271, 273, 275, 276, 277], + }, + { + accessible_nodes: [231, 235, 236, 248, 249, 265, 266, 269, 270, 271, 273, 274, 276, 277, 278, 294, 295, 306, 307, 318, 319, 320], + floor_index: 0, + index: 275, + offset_point_count: 0, + position: [21.29990005493164, -0.05672220140695572, -36.46730041503906], + quaternion: { + w: -0.1748559737918799, + x: 0.008597996777800597, + y: -0.9845174883092715, + z: -0.008762036473478696, + }, + standing_position: [21.29990005493164, -1.1715182640316868, -36.46730041503906], + visible_nodes: [231, 235, 236, 248, 249, 265, 266, 269, 270, 271, 273, 274, 276, 277, 278, 294, 295, 306, 307, 318, 319, 320], + }, + { + accessible_nodes: [267, 269, 270, 271, 273, 274, 275, 277, 278, 329, 330, 356], + floor_index: 0, + index: 276, + offset_point_count: 0, + position: [24.093900680541992, -0.060192398726940155, -35.800498962402344], + quaternion: { + w: 0.8296334043033802, + x: -0.0028139195482828503, + y: -0.5580304179621448, + z: 0.01739367900153633, + }, + standing_position: [24.093900680541992, -1.1552467197457152, -35.800498962402344], + visible_nodes: [267, 269, 270, 271, 273, 274, 275, 277, 278, 329, 330, 356], + }, + { + accessible_nodes: [269, 270, 271, 273, 274, 275, 276, 278, 324, 325, 326, 327, 328, 329, 330, 331, 356], + floor_index: 0, + index: 277, + offset_point_count: 0, + position: [27.26099967956543, -0.024168100208044052, -36.132301330566406], + quaternion: { + w: -0.08657491952966434, + x: -0.010450339580836045, + y: -0.9959959169102091, + z: 0.019689984773455724, + }, + standing_position: [27.26099967956543, -1.186880989924892, -36.132301330566406], + visible_nodes: [269, 270, 271, 273, 274, 275, 276, 278, 324, 325, 326, 327, 328, 329, 330, 331, 356], + }, + { + accessible_nodes: [260, 269, 270, 271, 275, 276, 277, 279, 324, 325, 326, 327, 328, 329, 330, 331, 356], + floor_index: 0, + index: 278, + offset_point_count: 0, + position: [30.548200607299805, 0.007931649684906006, -36.107200622558594], + quaternion: { + w: -0.1591705594753173, + x: -0.010433710607763018, + y: -0.9870606072610049, + z: 0.016346697641106078, + }, + standing_position: [30.548200607299805, -1.101589102445651, -36.107200622558594], + visible_nodes: [260, 269, 270, 271, 275, 276, 277, 279, 324, 325, 326, 327, 328, 329, 330, 331, 356], + }, + { + accessible_nodes: [278, 280, 281, 282, 283, 284, 285, 286, 287, 288, 290, 324, 325, 326, 327, 328, 329, 330, 331], + floor_index: 0, + index: 279, + offset_point_count: 0, + position: [31.013500213623047, 0.04357349872589111, -33.61909866333008], + quaternion: { + w: -0.8416700340448794, + x: -0.006878822496976979, + y: -0.5398720384685689, + z: -0.009078915091371795, + }, + standing_position: [31.013500213623047, -1.067557065901613, -33.61909866333008], + visible_nodes: [278, 280, 281, 282, 283, 284, 285, 286, 287, 288, 290, 324, 325, 326, 327, 328, 329, 330, 331], + }, + { + accessible_nodes: [279, 281, 282, 283], + floor_index: 0, + index: 280, + offset_point_count: 0, + position: [29.68720054626465, 0.0430959016084671, -32.835899353027344], + quaternion: { + w: -0.9954541415482522, + x: -0.004322666931856833, + y: -0.09205396343726907, + z: -0.024050480948537373, + }, + standing_position: [29.68720054626465, -1.0668311146503244, -32.835899353027344], + visible_nodes: [279, 281, 282, 283], + }, + { + accessible_nodes: [279, 280], + floor_index: 0, + index: 281, + offset_point_count: 0, + position: [27.95039939880371, 0.04911689832806587, -31.683300018310547], + quaternion: { + w: -0.9906422303683852, + x: -0.0007003695994756844, + y: 0.13552246475758206, + z: -0.01615991918245853, + }, + standing_position: [27.95039939880371, -1.0759864123314204, -31.683300018310547], + visible_nodes: [279, 280], + }, + { + accessible_nodes: [279, 280, 283, 284, 285, 286, 287, 288], + floor_index: 0, + index: 282, + offset_point_count: 0, + position: [33.23210144042969, 0.046898700296878815, -33.815799713134766], + quaternion: { + w: -0.14558694012794407, + x: -0.011917164558819696, + y: -0.9891045273684826, + z: 0.018293486084237837, + }, + standing_position: [33.23210144042969, -1.0329158592960357, -33.815799713134766], + visible_nodes: [279, 280, 283, 284, 285, 286, 287, 288], + }, + { + accessible_nodes: [279, 280, 282, 284, 285, 286, 287, 288], + floor_index: 0, + index: 283, + offset_point_count: 0, + position: [36.35369873046875, 0.05988749861717224, -34.047401428222656], + quaternion: { + w: -0.1380789449410691, + x: -0.01824220132690803, + y: -0.9900999937349155, + z: 0.017419025418176342, + }, + standing_position: [36.35369873046875, -1.0319905762714214, -34.047401428222656], + visible_nodes: [279, 280, 282, 284, 285, 286, 287, 288], + }, + { + accessible_nodes: [279, 282, 283, 285, 286, 287, 288, 290], + floor_index: 0, + index: 284, + offset_point_count: 0, + position: [39.37269973754883, 0.08513759821653366, -33.77579879760742], + quaternion: { + w: -0.15999008940750498, + x: -0.0037965340405956664, + y: -0.9868482445852146, + z: 0.02278837381707965, + }, + standing_position: [39.37269973754883, -1.0160642485561828, -33.77579879760742], + visible_nodes: [279, 282, 283, 285, 286, 287, 288, 290], + }, + { + accessible_nodes: [279, 282, 283, 284, 286, 287, 288, 290], + floor_index: 0, + index: 285, + offset_point_count: 0, + position: [41.64630126953125, 0.10570699721574783, -33.480899810791016], + quaternion: { + w: -0.7111708347221892, + x: -0.009066786283853307, + y: -0.7029346186797997, + z: 0.006060744245420836, + }, + standing_position: [41.64630126953125, -0.9703610015378803, -33.480899810791016], + visible_nodes: [279, 282, 283, 284, 286, 287, 288, 290], + }, + { + accessible_nodes: [279, 282, 283, 284, 285, 287, 288, 290], + floor_index: 0, + index: 286, + offset_point_count: 0, + position: [44.47880172729492, 0.15176400542259216, -33.2765007019043], + quaternion: { + w: -0.9926946650415028, + x: 0.00602856882119649, + y: -0.11789402541269867, + z: -0.02493935862414582, + }, + standing_position: [44.47880172729492, -0.9579806752885107, -33.2765007019043], + visible_nodes: [279, 282, 283, 284, 285, 287, 288, 290], + }, + { + accessible_nodes: [279, 282, 283, 284, 285, 286, 288, 290], + floor_index: 0, + index: 287, + offset_point_count: 0, + position: [47.27519989013672, 0.18902799487113953, -33.17070007324219], + quaternion: { + w: -0.6720653576858342, + x: -0.001686979632802413, + y: -0.7404856909439774, + z: -0.002498825860199016, + }, + standing_position: [47.27519989013672, -0.8895384144460494, -33.17070007324219], + visible_nodes: [279, 282, 283, 284, 285, 286, 288, 290], + }, + { + accessible_nodes: [279, 282, 283, 284, 285, 286, 287, 289, 290], + floor_index: 0, + index: 288, + offset_point_count: 0, + position: [50.59669876098633, 0.24998700618743896, -33.179500579833984], + quaternion: { + w: -0.7216906701767053, + x: 0.011558645048797035, + y: -0.6921182074372388, + z: -0.0011707561239094357, + }, + standing_position: [50.59669876098633, -0.8286596668848247, -33.179500579833984], + visible_nodes: [279, 282, 283, 284, 285, 286, 287, 289, 290], + }, + { + accessible_nodes: [288, 290], + floor_index: 0, + index: 289, + offset_point_count: 0, + position: [51.10300064086914, 0.11630299687385559, -35.95280075073242], + quaternion: { + w: 0.0193690699816617, + x: 0.00491230580522964, + y: -0.9990982743588825, + z: 0.037461380360388256, + }, + standing_position: [51.10300064086914, -0.9999847382405214, -35.95280075073242], + visible_nodes: [288, 290], + }, + { + accessible_nodes: [279, 284, 285, 286, 287, 288, 289], + floor_index: 0, + index: 290, + offset_point_count: 0, + position: [51.200801849365234, 0.24274399876594543, -33.865699768066406], + quaternion: { + w: -0.016515804120499782, + x: -0.004652857366199547, + y: -0.9992824602731433, + z: 0.03376597079797637, + }, + standing_position: [51.200801849365234, -0.8484264036467231, -33.865699768066406], + visible_nodes: [279, 284, 285, 286, 287, 288, 289], + }, + { + accessible_nodes: [221, 222, 227, 239, 240, 241, 252, 261, 262, 269, 292, 293, 294, 298, 299, 301, 303, 309, 315, 323], + floor_index: 0, + index: 291, + offset_point_count: 0, + position: [12.606599807739258, -0.01435330044478178, -39.535301208496094], + quaternion: { + w: 0.18993190321907685, + x: 0.012398818406804683, + y: -0.9817127983013637, + z: -0.0034801585982590544, + }, + standing_position: [12.606599807739258, -1.090463699976887, -39.535301208496094], + visible_nodes: [221, 222, 227, 239, 240, 241, 252, 261, 262, 269, 292, 293, 294, 298, 299, 301, 303, 309, 315, 323], + }, + { + accessible_nodes: [291, 293, 294, 299], + floor_index: 0, + index: 292, + offset_point_count: 0, + position: [15.759099960327148, -0.001657159999012947, -39.49720001220703], + quaternion: { + w: -0.010017544523840063, + x: 0.00581905492121357, + y: -0.9999257149523145, + z: -0.0037902617571005937, + }, + standing_position: [15.759099960327148, -1.1081199192722158, -39.49720001220703], + visible_nodes: [291, 293, 294, 299], + }, + { + accessible_nodes: [291, 292, 294, 299, 300], + floor_index: 0, + index: 293, + offset_point_count: 0, + position: [18.114500045776367, -0.010889099910855293, -39.435699462890625], + quaternion: { + w: 0.02298340590634209, + x: 0.0012954949503885935, + y: -0.9997302004324239, + z: -0.0030987872308250487, + }, + standing_position: [18.114500045776367, -1.1320209779205628, -39.435699462890625], + visible_nodes: [291, 292, 294, 299, 300], + }, + { + accessible_nodes: [231, 235, 236, 248, 249, 265, 266, 275, 291, 292, 293, 295, 300, 306, 307, 318, 319, 320], + floor_index: 0, + index: 294, + offset_point_count: 0, + position: [21.162500381469727, -0.06298840045928955, -39.80690002441406], + quaternion: { + w: -0.49856708016439444, + x: 0.005389282047473224, + y: -0.8668308813533736, + z: 0.002459628746667567, + }, + standing_position: [21.162500381469727, -1.1502342035339157, -39.80690002441406], + visible_nodes: [231, 235, 236, 248, 249, 265, 266, 275, 291, 292, 293, 295, 300, 306, 307, 318, 319, 320], + }, + { + accessible_nodes: [231, 235, 236, 248, 249, 265, 266, 275, 294, 296, 297, 298, 300, 301, 302, 306, 307, 318, 319, 320], + floor_index: 0, + index: 295, + offset_point_count: 0, + position: [21.378400802612305, -0.08597420156002045, -43.47819900512695], + quaternion: { + w: 0.5830592809502363, + x: -0.0021957097214746076, + y: -0.8123992710763881, + z: -0.006669595680000595, + }, + standing_position: [21.378400802612305, -1.1839238309600704, -43.47819900512695], + visible_nodes: [231, 235, 236, 248, 249, 265, 266, 275, 294, 296, 297, 298, 300, 301, 302, 306, 307, 318, 319, 320], + }, + { + accessible_nodes: [295, 297, 298, 299, 300, 301, 302], + floor_index: 0, + index: 296, + offset_point_count: 0, + position: [18.92020034790039, -0.0675342008471489, -44.06840133666992], + quaternion: { + w: -0.20134130921347793, + x: -0.0030574090877629662, + y: -0.9795038178838308, + z: 0.004958579050216627, + }, + standing_position: [18.92020034790039, -1.1607241220677746, -44.06840133666992], + visible_nodes: [295, 297, 298, 299, 300, 301, 302], + }, + { + accessible_nodes: [295, 296, 298, 299, 300, 301, 302, 310], + floor_index: 0, + index: 297, + offset_point_count: 0, + position: [15.036800384521484, -0.028685400262475014, -44.09619903564453], + quaternion: { + w: 0.37713161738459916, + x: 0.010452994844568823, + y: -0.9260815242103869, + z: -0.0059562678559575526, + }, + standing_position: [15.036800384521484, -1.1455367545196755, -44.09619903564453], + visible_nodes: [295, 296, 298, 299, 300, 301, 302, 310], + }, + { + accessible_nodes: [221, 239, 240, 241, 252, 261, 262, 269, 291, 295, 296, 297, 299, 301, 302, 303, 309, 315, 323], + floor_index: 0, + index: 298, + offset_point_count: 0, + position: [12.42199993133545, 0.007489549927413464, -44.078399658203125], + quaternion: { + w: 0.7748888377567048, + x: 0.00179067019332532, + y: -0.6320416352983106, + z: -0.008211749857990832, + }, + standing_position: [12.42199993133545, -1.0986819351959614, -44.078399658203125], + visible_nodes: [221, 239, 240, 241, 252, 261, 262, 269, 291, 295, 296, 297, 299, 301, 302, 303, 309, 315, 323], + }, + { + accessible_nodes: [269, 291, 292, 293, 296, 297, 298, 300, 301, 303, 309], + floor_index: 0, + index: 299, + offset_point_count: 0, + position: [11.091099739074707, 0.031314998865127563, -42.56959915161133], + quaternion: { + w: -0.998621362821588, + x: 0.0008643995904673859, + y: 0.05155411509529146, + z: 0.009838211824078591, + }, + standing_position: [11.091099739074707, -1.0164336562820953, -42.56959915161133], + visible_nodes: [269, 291, 292, 293, 296, 297, 298, 300, 301, 303, 309], + }, + { + accessible_nodes: [293, 294, 295, 296, 297, 299], + floor_index: 0, + index: 300, + offset_point_count: 0, + position: [8.690210342407227, 0.06397009640932083, -42.69620132446289], + quaternion: { + w: -0.8730136600465649, + x: -0.0029665317569889573, + y: 0.4873734777421316, + z: 0.01747706998615926, + }, + standing_position: [8.690210342407227, -1.012427885497607, -42.69620132446289], + visible_nodes: [293, 294, 295, 296, 297, 299], + }, + { + accessible_nodes: [269, 291, 295, 296, 297, 298, 299, 302, 304], + floor_index: 0, + index: 301, + offset_point_count: 0, + position: [10.7746000289917, 0.04611780121922493, -45.11349868774414], + quaternion: { + w: -0.9784131329553337, + x: -0.0018337824728930979, + y: 0.2063759440877119, + z: 0.010646171066406432, + }, + standing_position: [10.7746000289917, -1.0576385429394677, -45.11349868774414], + visible_nodes: [269, 291, 295, 296, 297, 298, 299, 302, 304], + }, + { + accessible_nodes: [295, 296, 297, 298, 301, 305, 306], + floor_index: 0, + index: 302, + offset_point_count: 0, + position: [8.994739532470703, 0.07781189680099487, -45.60430145263672], + quaternion: { + w: -0.9364265893019077, + x: -0.0014521324917481963, + y: 0.3504504335330552, + z: 0.01695965938380728, + }, + standing_position: [8.994739532470703, -0.9412196778079254, -45.60430145263672], + visible_nodes: [295, 296, 297, 298, 301, 305, 306], + }, + { + accessible_nodes: [239, 240, 241, 252, 261, 262, 269, 291, 298, 299, 304, 305, 306, 309, 310, 313, 314, 315, 323], + floor_index: 0, + index: 303, + offset_point_count: 0, + position: [12.516900062561035, 0.030166199430823326, -47.74420166015625], + quaternion: { + w: 0.03718140059283346, + x: -0.0039550384962703826, + y: -0.9989908908527978, + z: -0.02488185097487447, + }, + standing_position: [12.516900062561035, -1.080667148152324, -47.74420166015625], + visible_nodes: [239, 240, 241, 252, 261, 262, 269, 291, 298, 299, 304, 305, 306, 309, 310, 313, 314, 315, 323], + }, + { + accessible_nodes: [301, 303, 305, 306, 310], + floor_index: 0, + index: 304, + offset_point_count: 0, + position: [15.967300415039062, -0.001472500036470592, -47.17729949951172], + quaternion: { + w: -0.09759332179931474, + x: 0.005749284587566887, + y: -0.9949704437322915, + z: -0.021824389148060296, + }, + standing_position: [15.967300415039062, -1.132992317688878, -47.17729949951172], + visible_nodes: [301, 303, 305, 306, 310], + }, + { + accessible_nodes: [302, 303, 304, 306, 311], + floor_index: 0, + index: 305, + offset_point_count: 0, + position: [19.295499801635742, -0.03690309822559357, -47.29790115356445], + quaternion: { + w: -0.2223606033681572, + x: -0.006771916430796601, + y: -0.9749104831634344, + z: -0.007710657567514836, + }, + standing_position: [19.295499801635742, -1.1818426270585995, -47.29790115356445], + visible_nodes: [302, 303, 304, 306, 311], + }, + { + accessible_nodes: [235, 236, 248, 249, 265, 266, 275, 294, 295, 302, 303, 304, 305, 307, 311, 318, 319, 320], + floor_index: 0, + index: 306, + offset_point_count: 0, + position: [21.624300003051758, -0.06971780210733414, -47.05590057373047], + quaternion: { + w: -0.845960627018607, + x: 0.010119599189031558, + y: -0.5330771971733999, + z: -0.008770084578458405, + }, + standing_position: [21.624300003051758, -1.1680959746838762, -47.05590057373047], + visible_nodes: [235, 236, 248, 249, 265, 266, 275, 294, 295, 302, 303, 304, 305, 307, 311, 318, 319, 320], + }, + { + accessible_nodes: [235, 248, 249, 265, 266, 275, 294, 295, 306, 308, 309, 310, 311, 318, 319, 320], + floor_index: 0, + index: 307, + offset_point_count: 0, + position: [21.39349937438965, -0.06623010337352753, -50.17430114746094], + quaternion: { + w: 0.4271307752123326, + x: -0.00367936077447413, + y: -0.9041192063534013, + z: -0.010687359291096168, + }, + standing_position: [21.39349937438965, -1.1911171980151603, -50.17430114746094], + visible_nodes: [235, 248, 249, 265, 266, 275, 294, 295, 306, 308, 309, 310, 311, 318, 319, 320], + }, + { + accessible_nodes: [307, 309, 310, 311, 312, 324], + floor_index: 0, + index: 308, + offset_point_count: 0, + position: [17.60759925842285, -0.01757200062274933, -50.28139877319336], + quaternion: { + w: -0.9881976925352797, + x: 0.007174888594694436, + y: 0.15239766180077322, + z: 0.013740045039632475, + }, + standing_position: [17.60759925842285, -1.1178957733636306, -50.28139877319336], + visible_nodes: [307, 309, 310, 311, 312, 324], + }, + { + accessible_nodes: [240, 241, 252, 261, 262, 269, 291, 298, 299, 303, 307, 308, 310, 311, 312, 315, 323], + floor_index: 0, + index: 309, + offset_point_count: 0, + position: [13.079099655151367, 0.049983300268650055, -50.062198638916016], + quaternion: { + w: -0.9952289716922913, + x: 0.010573119889116191, + y: 0.09657653360618527, + z: 0.008970269344720477, + }, + standing_position: [13.079099655151367, -1.0597369692996612, -50.062198638916016], + visible_nodes: [240, 241, 252, 261, 262, 269, 291, 298, 299, 303, 307, 308, 310, 311, 312, 315, 323], + }, + { + accessible_nodes: [297, 303, 304, 307, 308, 309, 311, 312, 313, 314], + floor_index: 0, + index: 310, + offset_point_count: 0, + position: [10.099800109863281, 0.05151839926838875, -48.835899353027344], + quaternion: { + w: 0.7490613487158486, + x: -0.01417362622963535, + y: -0.6622298969303435, + z: -0.012560533279452453, + }, + standing_position: [10.099800109863281, -1.0570639336341976, -48.835899353027344], + visible_nodes: [297, 303, 304, 307, 308, 309, 311, 312, 313, 314], + }, + { + accessible_nodes: [305, 306, 307, 308, 309, 310, 312, 313, 314], + floor_index: 0, + index: 311, + offset_point_count: 0, + position: [7.2520599365234375, 0.08111990243196487, -48.5791015625], + quaternion: { + w: 0.8316398301062372, + x: -0.008342463547773555, + y: -0.5549379441540601, + z: -0.018694099071409374, + }, + standing_position: [7.2520599365234375, -1.0187805489261468, -48.5791015625], + visible_nodes: [305, 306, 307, 308, 309, 310, 312, 313, 314], + }, + { + accessible_nodes: [308, 309, 310, 311, 313, 314], + floor_index: 0, + index: 312, + offset_point_count: 0, + position: [5.347569942474365, 0.10063199698925018, -47.69969940185547], + quaternion: { + w: -0.9014963819962236, + x: 0.0046918282580005405, + y: -0.43275807003201333, + z: -0.001644533406670942, + }, + standing_position: [5.347569942474365, -1.001006045305548, -47.69969940185547], + visible_nodes: [308, 309, 310, 311, 313, 314], + }, + { + accessible_nodes: [303, 310, 311, 312, 314], + floor_index: 0, + index: 313, + offset_point_count: 0, + position: [6.60890007019043, 0.1271969974040985, -51.50040054321289], + quaternion: { + w: 0.4896224128718436, + x: -0.005350624233157128, + y: -0.8716081802335084, + z: -0.023247263377433523, + }, + standing_position: [6.60890007019043, -0.992113280701252, -51.50040054321289], + visible_nodes: [303, 310, 311, 312, 314], + }, + { + accessible_nodes: [303, 310, 311, 312, 313], + floor_index: 0, + index: 314, + offset_point_count: 0, + position: [9.52161979675293, 0.11435099691152573, -52.333900451660156], + quaternion: { + w: -0.9217633082730415, + x: 0.010560524163985972, + y: -0.38756119949333423, + z: -0.006098440263456602, + }, + standing_position: [9.52161979675293, -0.9856274852991258, -52.333900451660156], + visible_nodes: [303, 310, 311, 312, 313], + }, + { + accessible_nodes: [241, 252, 261, 262, 269, 291, 298, 303, 309, 316, 317, 318, 319, 323, 324, 325, 331, 332, 335, 337], + floor_index: 0, + index: 315, + offset_point_count: 0, + position: [12.122200012207031, 0.12959399819374084, -52.99169921875], + quaternion: { + w: 0.7399867740112236, + x: -0.010085610559523572, + y: -0.6720052872795518, + z: -0.0269581082229196, + }, + standing_position: [12.122200012207031, -0.9882115410121333, -52.99169921875], + visible_nodes: [241, 252, 261, 262, 269, 291, 298, 303, 309, 316, 317, 318, 319, 323, 324, 325, 331, 332, 335, 337], + }, + { + accessible_nodes: [315, 317, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341], + floor_index: 0, + index: 316, + offset_point_count: 0, + position: [15.647100448608398, 0.06075099855661392, -53.3755989074707], + quaternion: { + w: -0.022852924680227305, + x: -0.009988288543505109, + y: -0.9994179253487694, + z: -0.023276471295977114, + }, + standing_position: [15.647100448608398, -1.0568004259089216, -53.3755989074707], + visible_nodes: [315, 317, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341], + }, + { + accessible_nodes: [315, 316, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341], + floor_index: 0, + index: 317, + offset_point_count: 0, + position: [19.132200241088867, -0.02653690055012703, -53.280601501464844], + quaternion: { + w: 0.02857056242139864, + x: -0.00718133011808581, + y: -0.9995053751883494, + z: -0.011007222746329162, + }, + standing_position: [19.132200241088867, -1.1367960106005177, -53.280601501464844], + visible_nodes: [315, 316, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341], + }, + { + accessible_nodes: [ + 248, 249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 319, 320, 324, 325, 331, 332, 334, 335, 337, 339, 340, 341, + ], + floor_index: 0, + index: 318, + offset_point_count: 0, + position: [21.944700241088867, -0.07071849703788757, -52.97010040283203], + quaternion: { + w: -0.08626326691433107, + x: -0.005449482558600916, + y: -0.9961080961503287, + z: -0.01725159463262846, + }, + standing_position: [21.944700241088867, -1.1804713648631409, -52.97010040283203], + visible_nodes: [ + 248, 249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 319, 320, 324, 325, 331, 332, 334, 335, 337, 339, 340, 341, + ], + }, + { + accessible_nodes: [249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 318, 320, 328], + floor_index: 0, + index: 319, + offset_point_count: 0, + position: [22.179100036621094, -0.04941299930214882, -55.44540023803711], + quaternion: { + w: 0.1162544641849469, + x: -0.007888682645741454, + y: -0.9929161925254028, + z: -0.0232400747013526, + }, + standing_position: [22.179100036621094, -1.145976699793986, -55.44540023803711], + visible_nodes: [249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 318, 320, 328], + }, + { + accessible_nodes: [265, 266, 275, 294, 295, 306, 307, 318, 319, 321, 322, 323], + floor_index: 0, + index: 320, + offset_point_count: 0, + position: [21.82859992980957, -0.01517259981483221, -58.10110092163086], + quaternion: { + w: 0.7969560939210231, + x: -0.00587392904279133, + y: -0.603782656459731, + z: -0.01652279723661519, + }, + standing_position: [21.82859992980957, -1.1142645683606756, -58.10110092163086], + visible_nodes: [265, 266, 275, 294, 295, 306, 307, 318, 319, 321, 322, 323], + }, + { + accessible_nodes: [320, 322, 323], + floor_index: 0, + index: 321, + offset_point_count: 0, + position: [18.6205997467041, 0.02929529920220375, -57.801998138427734], + quaternion: { + w: -0.9908479448703047, + x: 0.010215841706963035, + y: 0.13399244124619303, + z: 0.012728186492407992, + }, + standing_position: [18.6205997467041, -1.0628083324421258, -57.801998138427734], + visible_nodes: [320, 322, 323], + }, + { + accessible_nodes: [320, 321, 323], + floor_index: 0, + index: 322, + offset_point_count: 0, + position: [15.164299964904785, 0.11178400367498398, -57.5806999206543], + quaternion: { + w: -0.9210986003796557, + x: 0.015336094495872742, + y: 0.38839147011607705, + z: 0.022231308779047162, + }, + standing_position: [15.164299964904785, -0.9909414256449158, -57.5806999206543], + visible_nodes: [320, 321, 323], + }, + { + accessible_nodes: [252, 261, 262, 269, 291, 298, 303, 309, 315, 320, 321, 322], + floor_index: 0, + index: 323, + offset_point_count: 0, + position: [12.240400314331055, 0.18596699833869934, -57.38029861450195], + quaternion: { + w: -0.9920439578774677, + x: 0.0007963882140944306, + y: 0.12398015862589101, + z: 0.021841625893412413, + }, + standing_position: [12.240400314331055, -0.9111703634434762, -57.38029861450195], + visible_nodes: [252, 261, 262, 269, 291, 298, 303, 309, 315, 320, 321, 322], + }, + { + accessible_nodes: [ + 277, 278, 279, 308, 315, 316, 317, 318, 325, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 339, 340, 341, 342, 356, + ], + floor_index: 0, + index: 324, + offset_point_count: 0, + position: [24.775800704956055, -0.09643969684839249, -52.90190124511719], + quaternion: { + w: -0.1005680295577797, + x: 0.004050321272289087, + y: -0.9945332739150915, + z: -0.027806880216696462, + }, + standing_position: [24.775800704956055, -1.184605508220421, -52.90190124511719], + visible_nodes: [ + 277, 278, 279, 308, 315, 316, 317, 318, 325, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 339, 340, 341, 342, 356, + ], + }, + { + accessible_nodes: [ + 277, 278, 279, 315, 316, 317, 318, 324, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 338, 339, 340, 341, 342, 356, + ], + floor_index: 0, + index: 325, + offset_point_count: 0, + position: [27.766000747680664, -0.10344500094652176, -52.4556999206543], + quaternion: { + w: -0.8476493744062653, + x: 0.00399041064613324, + y: -0.5304841032320478, + z: -0.007828151573545302, + }, + standing_position: [27.766000747680664, -1.2348750374861395, -52.4556999206543], + visible_nodes: [ + 277, 278, 279, 315, 316, 317, 318, 324, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 338, 339, 340, 341, 342, 356, + ], + }, + { + accessible_nodes: [277, 278, 279, 324, 325, 327, 328, 329, 330, 331, 332, 334, 356], + floor_index: 0, + index: 326, + offset_point_count: 0, + position: [28.25309944152832, -0.07139790058135986, -55.80580139160156], + quaternion: { + w: 0.48195948878815104, + x: -0.0024920669559109587, + y: -0.876082015308475, + z: -0.01375330488635598, + }, + standing_position: [28.25309944152832, -1.1661349375238237, -55.80580139160156], + visible_nodes: [277, 278, 279, 324, 325, 327, 328, 329, 330, 331, 332, 334, 356], + }, + { + accessible_nodes: [277, 278, 279, 324, 325, 326, 328, 329, 330, 331, 336, 356], + floor_index: 0, + index: 327, + offset_point_count: 0, + position: [28.112300872802734, 0.3714340031147003, -49.941200256347656], + quaternion: { + w: -0.7259006743935777, + x: 0.0038730489662010996, + y: -0.6877565541905819, + z: -0.006642830412243269, + }, + standing_position: [28.112300872802734, -1.14703152187252, -49.941200256347656], + visible_nodes: [277, 278, 279, 324, 325, 326, 328, 329, 330, 331, 336, 356], + }, + { + accessible_nodes: [277, 278, 279, 319, 324, 325, 326, 327, 329, 330, 331, 356], + floor_index: 0, + index: 328, + offset_point_count: 0, + position: [28.239999771118164, -0.12160299718379974, -46.439998626708984], + quaternion: { + w: -0.8809165597695517, + x: 0.0017546392660219672, + y: -0.47324516604304917, + z: -0.004686328235147344, + }, + standing_position: [28.239999771118164, -1.2427895818383234, -46.439998626708984], + visible_nodes: [277, 278, 279, 319, 324, 325, 326, 327, 329, 330, 331, 356], + }, + { + accessible_nodes: [276, 277, 278, 279, 324, 325, 326, 327, 328, 330, 331, 356], + floor_index: 0, + index: 329, + offset_point_count: 0, + position: [28.292800903320312, -0.14049400389194489, -42.93050003051758], + quaternion: { + w: -0.799931744857607, + x: 0.014753935921945616, + y: -0.5998885967723209, + z: -0.005020810571886793, + }, + standing_position: [28.292800903320312, -1.270352602308998, -42.93050003051758], + visible_nodes: [276, 277, 278, 279, 324, 325, 326, 327, 328, 330, 331, 356], + }, + { + accessible_nodes: [276, 277, 278, 279, 324, 325, 326, 327, 328, 329, 331, 356], + floor_index: 0, + index: 330, + offset_point_count: 0, + position: [28.040000915527344, -0.14284099638462067, -40.41859817504883], + quaternion: { + w: -0.8793080322832149, + x: 0.010970303266973262, + y: -0.47604036883698175, + z: -0.009088961338652377, + }, + standing_position: [28.040000915527344, -1.235925314985209, -40.41859817504883], + visible_nodes: [276, 277, 278, 279, 324, 325, 326, 327, 328, 329, 331, 356], + }, + { + accessible_nodes: [ + 277, 278, 279, 315, 316, 317, 318, 324, 325, 326, 327, 328, 329, 330, 332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 356, + ], + floor_index: 0, + index: 331, + offset_point_count: 0, + position: [31.46030044555664, 0.3722490072250366, -52.855201721191406], + quaternion: { + w: -0.12167536008703926, + x: -0.0038076488410477283, + y: -0.9922983002559395, + z: -0.022905945646240093, + }, + standing_position: [31.46030044555664, -0.7505661398965502, -52.855201721191406], + visible_nodes: [ + 277, 278, 279, 315, 316, 317, 318, 324, 325, 326, 327, 328, 329, 330, 332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 356, + ], + }, + { + accessible_nodes: [315, 316, 317, 318, 324, 325, 326, 331, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346], + floor_index: 0, + index: 332, + offset_point_count: 0, + position: [33.84510040283203, 0.3527719974517822, -52.76129913330078], + quaternion: { + w: -0.01801617993510661, + x: -0.004548388633779923, + y: -0.9995246815551357, + z: -0.02459951754510528, + }, + standing_position: [33.84510040283203, -0.7454399278749126, -52.76129913330078], + visible_nodes: [315, 316, 317, 318, 324, 325, 326, 331, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346], + }, + { + accessible_nodes: [332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 347, 350], + floor_index: 0, + index: 333, + offset_point_count: 0, + position: [33.94620132446289, 0.4287720024585724, -56.49489974975586], + quaternion: { + w: 0.6887497853514978, + x: -0.003364923898274484, + y: -0.7245829974563408, + z: -0.02432865859056551, + }, + standing_position: [33.94620132446289, -0.6691506817037431, -56.49489974975586], + visible_nodes: [332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 347, 350], + }, + { + accessible_nodes: [316, 317, 318, 324, 325, 326, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 346], + floor_index: 0, + index: 334, + offset_point_count: 0, + position: [34.88610076904297, 0.3216949999332428, -51.7307014465332], + quaternion: { + w: -0.2741005712511389, + x: -0.005152853365169678, + y: -0.96146631034333, + z: -0.020611902022595444, + }, + standing_position: [34.88610076904297, -0.7703876658186077, -51.7307014465332], + visible_nodes: [316, 317, 318, 324, 325, 326, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 346], + }, + { + accessible_nodes: [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 336, 337, 338, 339, 340, 341, 342, 343, 346, 347, 350], + floor_index: 0, + index: 335, + offset_point_count: 0, + position: [37.18040084838867, 0.3098590075969696, -51.95500183105469], + quaternion: { + w: -0.06926633147719366, + x: -0.003946979583453236, + y: -0.9973101799078434, + z: -0.023643123372239297, + }, + standing_position: [37.18040084838867, -0.8111789716241318, -51.95500183105469], + visible_nodes: [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 336, 337, 338, 339, 340, 341, 342, 343, 346, 347, 350], + }, + { + accessible_nodes: [327, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 346], + floor_index: 0, + index: 336, + offset_point_count: 0, + position: [36.8119010925293, 0.3741219937801361, -55.41590118408203], + quaternion: { + w: 0.06204019926612136, + x: -0.002434611818694482, + y: -0.9976354822373593, + z: -0.029471157845889707, + }, + standing_position: [36.8119010925293, -0.6975053619919431, -55.41590118408203], + visible_nodes: [327, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 346], + }, + { + accessible_nodes: [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 346], + floor_index: 0, + index: 337, + offset_point_count: 0, + position: [39.3125, 0.3031330108642578, -51.99879837036133], + quaternion: { + w: 0.01986416129048617, + x: 0.0003475498429752743, + y: -0.9995452770866731, + z: -0.0226831577396181, + }, + standing_position: [39.3125, -0.7943659517621047, -51.99879837036133], + visible_nodes: [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 346], + }, + { + accessible_nodes: [325, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 345, 346, 348], + floor_index: 0, + index: 338, + offset_point_count: 0, + position: [39.851600646972656, 0.3639320135116577, -55.32749938964844], + quaternion: { + w: 0.5454838082381896, + x: -0.00557907329256666, + y: -0.8377332650763998, + z: -0.024884883782575758, + }, + standing_position: [39.851600646972656, -0.7503840130996302, -55.32749938964844], + visible_nodes: [325, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 345, 346, 348], + }, + { + accessible_nodes: [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 347, 348, 349, 350], + floor_index: 0, + index: 339, + offset_point_count: 0, + position: [42.44139862060547, 0.29492101073265076, -52.172000885009766], + quaternion: { + w: 0.1490216897483225, + x: 0.00001708696425902053, + y: -0.9885137457902466, + z: -0.025161859623474295, + }, + standing_position: [42.44139862060547, -0.7886378230251094, -52.172000885009766], + visible_nodes: [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 347, 348, 349, 350], + }, + { + accessible_nodes: [318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 344, 347, 348, 350], + floor_index: 0, + index: 340, + offset_point_count: 0, + position: [43.098899841308594, 0.327921986579895, -54.37419891357422], + quaternion: { + w: 0.22117125831648857, + x: -0.008463988962103493, + y: -0.9748997074287579, + z: -0.024128950183122815, + }, + standing_position: [43.098899841308594, -0.7719906802556988, -54.37419891357422], + visible_nodes: [318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 344, 347, 348, 350], + }, + { + accessible_nodes: [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 344, 345, 347, 348, 349, 350], + floor_index: 0, + index: 341, + offset_point_count: 0, + position: [45.17190170288086, 0.2856999933719635, -51.975101470947266], + quaternion: { + w: -0.10363007560625782, + x: -0.0007922028698360333, + y: -0.9943299778325286, + z: -0.0238343044940689, + }, + standing_position: [45.17190170288086, -0.8369399653947374, -51.975101470947266], + visible_nodes: [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 344, 345, 347, 348, 349, 350], + }, + { + accessible_nodes: [324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 344, 347, 348, 349, 350], + floor_index: 0, + index: 342, + offset_point_count: 0, + position: [45.78409957885742, 0.32884201407432556, -55.05059814453125], + quaternion: { + w: 0.0309051387931891, + x: -0.00644108884024573, + y: -0.9991521221074784, + z: -0.02642745860850312, + }, + standing_position: [45.78409957885742, -0.7614014470069215, -55.05059814453125], + visible_nodes: [324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 344, 347, 348, 349, 350], + }, + { + accessible_nodes: [335, 336, 337, 338, 344, 345, 346, 347, 348, 349, 350, 354, 355], + floor_index: 0, + index: 343, + offset_point_count: 0, + position: [38.13359832763672, 0.2719700038433075, -49.1598014831543], + quaternion: { + w: -0.6862919570419831, + x: 0.0073651642256369835, + y: -0.7271889663506508, + z: -0.012054614393233486, + }, + standing_position: [38.13359832763672, -0.8305208012981007, -49.1598014831543], + visible_nodes: [335, 336, 337, 338, 344, 345, 346, 347, 348, 349, 350, 354, 355], + }, + { + accessible_nodes: [339, 340, 341, 342, 343, 345, 347, 348, 349, 350, 354, 355], + floor_index: 0, + index: 344, + offset_point_count: 0, + position: [41.26319885253906, 0.25494199991226196, -48.87379837036133], + quaternion: { + w: -0.05808657509493121, + x: 0.0005827335809072308, + y: -0.9981696469515694, + z: -0.016821084474313745, + }, + standing_position: [41.26319885253906, -0.7887870663210257, -48.87379837036133], + visible_nodes: [339, 340, 341, 342, 343, 345, 347, 348, 349, 350, 354, 355], + }, + { + accessible_nodes: [338, 341, 343, 344, 346, 347, 348, 349, 350], + floor_index: 0, + index: 345, + offset_point_count: 0, + position: [38.058998107910156, 0.23661600053310394, -46.44269943237305], + quaternion: { + w: -0.7111648546776823, + x: 0.00511579955185724, + y: -0.7029342435655752, + z: -0.01009140588000043, + }, + standing_position: [38.058998107910156, -0.8623544223213684, -46.44269943237305], + visible_nodes: [338, 341, 343, 344, 346, 347, 348, 349, 350], + }, + { + accessible_nodes: [331, 332, 333, 334, 335, 336, 337, 338, 343, 345, 349, 350], + floor_index: 0, + index: 346, + offset_point_count: 0, + position: [38.36360168457031, 0.27802398800849915, -50.762298583984375], + quaternion: { + w: -0.011195922600748871, + x: 0.002438311071725047, + y: -0.9997075368453835, + z: -0.021296244727495285, + }, + standing_position: [38.36360168457031, -0.7980301243984032, -50.762298583984375], + visible_nodes: [331, 332, 333, 334, 335, 336, 337, 338, 343, 345, 349, 350], + }, + { + accessible_nodes: [333, 335, 339, 340, 341, 342, 343, 344, 345, 348, 349, 350], + floor_index: 0, + index: 347, + offset_point_count: 0, + position: [41.34189987182617, 0.23034200072288513, -46.35599899291992], + quaternion: { + w: -0.13190215632038782, + x: -0.0011598848896348193, + y: -0.9911154414435397, + z: -0.01704847130801159, + }, + standing_position: [41.34189987182617, -0.851362692060263, -46.35599899291992], + visible_nodes: [333, 335, 339, 340, 341, 342, 343, 344, 345, 348, 349, 350], + }, + { + accessible_nodes: [338, 339, 340, 341, 342, 343, 344, 345, 347, 349, 350, 351], + floor_index: 0, + index: 348, + offset_point_count: 0, + position: [44.38249969482422, 0.20860999822616577, -46.231201171875], + quaternion: { + w: -0.13199852262997042, + x: 0.0019055901563094044, + y: -0.9910377087987511, + z: -0.02042103882256451, + }, + standing_position: [44.38249969482422, -0.8841789923049626, -46.231201171875], + visible_nodes: [338, 339, 340, 341, 342, 343, 344, 345, 347, 349, 350, 351], + }, + { + accessible_nodes: [339, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352], + floor_index: 0, + index: 349, + offset_point_count: 0, + position: [38.14820098876953, 0.20968200266361237, -43.77949905395508], + quaternion: { + w: -0.7243860586948022, + x: 0.002587532720350245, + y: -0.6893585919688935, + z: -0.006547001937750037, + }, + standing_position: [38.14820098876953, -0.8939154676679291, -43.77949905395508], + visible_nodes: [339, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352], + }, + { + accessible_nodes: [333, 335, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352], + floor_index: 0, + index: 350, + offset_point_count: 0, + position: [41.8119010925293, 0.19811299443244934, -43.54650115966797], + quaternion: { + w: -0.12360923661218338, + x: 0.0007045811651942125, + y: -0.9922382687172883, + z: -0.01354496275372776, + }, + standing_position: [41.8119010925293, -0.9267440744234907, -43.54650115966797], + visible_nodes: [333, 335, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352], + }, + { + accessible_nodes: [348, 349, 350, 352, 353, 354, 355], + floor_index: 0, + index: 351, + offset_point_count: 0, + position: [36.07680130004883, 0.2305160015821457, -43.67390060424805], + quaternion: { + w: -0.995504070093082, + x: 0.01559398038402796, + y: 0.09244761981477492, + z: 0.013487638105699142, + }, + standing_position: [36.07680130004883, -0.8683842752004203, -43.67390060424805], + visible_nodes: [348, 349, 350, 352, 353, 354, 355], + }, + { + accessible_nodes: [349, 350, 351, 353, 354, 355], + floor_index: 0, + index: 352, + offset_point_count: 0, + position: [34.073001861572266, 0.2491919994354248, -43.28450012207031], + quaternion: { + w: -0.9961142893150869, + x: 0.015152234969230016, + y: 0.08602381204865915, + z: 0.011253283370682099, + }, + standing_position: [34.073001861572266, -0.7794909882945098, -43.28450012207031], + visible_nodes: [349, 350, 351, 353, 354, 355], + }, + { + accessible_nodes: [351, 352, 354, 355], + floor_index: 0, + index: 353, + offset_point_count: 0, + position: [36.025901794433594, 0.27134600281715393, -46.194000244140625], + quaternion: { + w: -0.28964428298835154, + x: -0.0016781222229952655, + y: -0.9568134682877377, + z: -0.02472582439474655, + }, + standing_position: [36.025901794433594, -0.7444400053937019, -46.194000244140625], + visible_nodes: [351, 352, 354, 355], + }, + { + accessible_nodes: [343, 344, 351, 352, 353, 355], + floor_index: 0, + index: 354, + offset_point_count: 0, + position: [35.871299743652344, 0.32545799016952515, -49.179901123046875], + quaternion: { + w: 0.024670789147157677, + x: -0.006807228379695218, + y: -0.999294031810317, + z: -0.02750365578514235, + }, + standing_position: [35.871299743652344, -0.7281608085172868, -49.179901123046875], + visible_nodes: [343, 344, 351, 352, 353, 355], + }, + { + accessible_nodes: [343, 344, 351, 352, 353, 354], + floor_index: 0, + index: 355, + offset_point_count: 0, + position: [33.319801330566406, 0.34193798899650574, -48.94860076904297], + quaternion: { + w: -0.9761400148123802, + x: 0.007829051800903297, + y: 0.2168562304151805, + z: 0.007921327763798931, + }, + standing_position: [33.319801330566406, -0.7623650474597525, -48.94860076904297], + visible_nodes: [343, 344, 351, 352, 353, 354], + }, + { + accessible_nodes: [267, 276, 277, 278, 324, 325, 326, 327, 328, 329, 330, 331], + floor_index: 0, + index: 356, + offset_point_count: 0, + position: [28.183799743652344, -0.14012399315834045, -37.24300003051758], + quaternion: { + w: 0.7723087850556405, + x: -0.01289722127570723, + y: -0.6350330141732972, + z: -0.010289367860783437, + }, + standing_position: [28.183799743652344, -1.2248167431790544, -37.24300003051758], + visible_nodes: [267, 276, 277, 278, 324, 325, 326, 327, 328, 329, 330, 331], + }, + ], + panorama: { + count: 357, + list: [ + { + back: 'images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_b.jpg', + down: 'images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_d.jpg', + front: 'images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_f.jpg', + index: 0, + left: 'images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_l.jpg', + right: 'images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_u.jpg', + }, + { + back: 'images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_b.jpg', + down: 'images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_d.jpg', + front: 'images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_f.jpg', + index: 1, + left: 'images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_l.jpg', + right: 'images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_u.jpg', + }, + { + back: 'images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_b.jpg', + down: 'images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_d.jpg', + front: 'images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_f.jpg', + index: 2, + left: 'images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_l.jpg', + right: 'images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_u.jpg', + }, + { + back: 'images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_b.jpg', + down: 'images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_d.jpg', + front: 'images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_f.jpg', + index: 3, + left: 'images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_l.jpg', + right: 'images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_u.jpg', + }, + { + back: 'images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_b.jpg', + down: 'images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_d.jpg', + front: 'images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_f.jpg', + index: 4, + left: 'images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_l.jpg', + right: 'images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_u.jpg', + }, + { + back: 'images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_b.jpg', + down: 'images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_d.jpg', + front: 'images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_f.jpg', + index: 5, + left: 'images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_l.jpg', + right: 'images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_u.jpg', + }, + { + back: 'images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_b.jpg', + down: 'images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_d.jpg', + front: 'images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_f.jpg', + index: 6, + left: 'images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_l.jpg', + right: 'images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_u.jpg', + }, + { + back: 'images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_b.jpg', + down: 'images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_d.jpg', + front: 'images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_f.jpg', + index: 7, + left: 'images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_l.jpg', + right: 'images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_u.jpg', + }, + { + back: 'images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_b.jpg', + down: 'images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_d.jpg', + front: 'images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_f.jpg', + index: 8, + left: 'images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_l.jpg', + right: 'images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_u.jpg', + }, + { + back: 'images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_b.jpg', + down: 'images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_d.jpg', + front: 'images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_f.jpg', + index: 9, + left: 'images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_l.jpg', + right: 'images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_u.jpg', + }, + { + back: 'images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_b.jpg', + down: 'images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_d.jpg', + front: 'images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_f.jpg', + index: 10, + left: 'images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_l.jpg', + right: 'images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_u.jpg', + }, + { + back: 'images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_b.jpg', + down: 'images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_d.jpg', + front: 'images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_f.jpg', + index: 11, + left: 'images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_l.jpg', + right: 'images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_u.jpg', + }, + { + back: 'images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_b.jpg', + down: 'images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_d.jpg', + front: 'images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_f.jpg', + index: 12, + left: 'images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_l.jpg', + right: 'images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_u.jpg', + }, + { + back: 'images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_b.jpg', + down: 'images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_d.jpg', + front: 'images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_f.jpg', + index: 13, + left: 'images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_l.jpg', + right: 'images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_u.jpg', + }, + { + back: 'images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_b.jpg', + down: 'images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_d.jpg', + front: 'images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_f.jpg', + index: 14, + left: 'images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_l.jpg', + right: 'images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_u.jpg', + }, + { + back: 'images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_b.jpg', + down: 'images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_d.jpg', + front: 'images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_f.jpg', + index: 15, + left: 'images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_l.jpg', + right: 'images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_u.jpg', + }, + { + back: 'images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_b.jpg', + down: 'images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_d.jpg', + front: 'images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_f.jpg', + index: 16, + left: 'images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_l.jpg', + right: 'images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_u.jpg', + }, + { + back: 'images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_b.jpg', + down: 'images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_d.jpg', + front: 'images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_f.jpg', + index: 17, + left: 'images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_l.jpg', + right: 'images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_u.jpg', + }, + { + back: 'images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_b.jpg', + down: 'images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_d.jpg', + front: 'images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_f.jpg', + index: 18, + left: 'images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_l.jpg', + right: 'images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_u.jpg', + }, + { + back: 'images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_b.jpg', + down: 'images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_d.jpg', + front: 'images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_f.jpg', + index: 19, + left: 'images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_l.jpg', + right: 'images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_u.jpg', + }, + { + back: 'images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_b.jpg', + down: 'images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_d.jpg', + front: 'images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_f.jpg', + index: 20, + left: 'images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_l.jpg', + right: 'images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_u.jpg', + }, + { + back: 'images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_b.jpg', + down: 'images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_d.jpg', + front: 'images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_f.jpg', + index: 21, + left: 'images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_l.jpg', + right: 'images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_u.jpg', + }, + { + back: 'images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_b.jpg', + down: 'images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_d.jpg', + front: 'images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_f.jpg', + index: 22, + left: 'images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_l.jpg', + right: 'images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_u.jpg', + }, + { + back: 'images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_b.jpg', + down: 'images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_d.jpg', + front: 'images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_f.jpg', + index: 23, + left: 'images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_l.jpg', + right: 'images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_u.jpg', + }, + { + back: 'images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_b.jpg', + down: 'images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_d.jpg', + front: 'images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_f.jpg', + index: 24, + left: 'images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_l.jpg', + right: 'images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_u.jpg', + }, + { + back: 'images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_b.jpg', + down: 'images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_d.jpg', + front: 'images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_f.jpg', + index: 25, + left: 'images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_l.jpg', + right: 'images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_u.jpg', + }, + { + back: 'images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_b.jpg', + down: 'images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_d.jpg', + front: 'images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_f.jpg', + index: 26, + left: 'images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_l.jpg', + right: 'images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_u.jpg', + }, + { + back: 'images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_b.jpg', + down: 'images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_d.jpg', + front: 'images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_f.jpg', + index: 27, + left: 'images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_l.jpg', + right: 'images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_u.jpg', + }, + { + back: 'images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_b.jpg', + down: 'images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_d.jpg', + front: 'images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_f.jpg', + index: 28, + left: 'images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_l.jpg', + right: 'images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_u.jpg', + }, + { + back: 'images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_b.jpg', + down: 'images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_d.jpg', + front: 'images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_f.jpg', + index: 29, + left: 'images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_l.jpg', + right: 'images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_u.jpg', + }, + { + back: 'images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_b.jpg', + down: 'images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_d.jpg', + front: 'images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_f.jpg', + index: 30, + left: 'images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_l.jpg', + right: 'images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_u.jpg', + }, + { + back: 'images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_b.jpg', + down: 'images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_d.jpg', + front: 'images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_f.jpg', + index: 31, + left: 'images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_l.jpg', + right: 'images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_u.jpg', + }, + { + back: 'images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_b.jpg', + down: 'images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_d.jpg', + front: 'images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_f.jpg', + index: 32, + left: 'images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_l.jpg', + right: 'images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_u.jpg', + }, + { + back: 'images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_b.jpg', + down: 'images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_d.jpg', + front: 'images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_f.jpg', + index: 33, + left: 'images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_l.jpg', + right: 'images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_u.jpg', + }, + { + back: 'images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_b.jpg', + down: 'images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_d.jpg', + front: 'images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_f.jpg', + index: 34, + left: 'images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_l.jpg', + right: 'images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_u.jpg', + }, + { + back: 'images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_b.jpg', + down: 'images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_d.jpg', + front: 'images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_f.jpg', + index: 35, + left: 'images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_l.jpg', + right: 'images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_u.jpg', + }, + { + back: 'images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_b.jpg', + down: 'images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_d.jpg', + front: 'images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_f.jpg', + index: 36, + left: 'images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_l.jpg', + right: 'images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_u.jpg', + }, + { + back: 'images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_b.jpg', + down: 'images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_d.jpg', + front: 'images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_f.jpg', + index: 37, + left: 'images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_l.jpg', + right: 'images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_u.jpg', + }, + { + back: 'images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_b.jpg', + down: 'images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_d.jpg', + front: 'images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_f.jpg', + index: 38, + left: 'images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_l.jpg', + right: 'images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_u.jpg', + }, + { + back: 'images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_b.jpg', + down: 'images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_d.jpg', + front: 'images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_f.jpg', + index: 39, + left: 'images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_l.jpg', + right: 'images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_u.jpg', + }, + { + back: 'images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_b.jpg', + down: 'images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_d.jpg', + front: 'images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_f.jpg', + index: 40, + left: 'images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_l.jpg', + right: 'images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_u.jpg', + }, + { + back: 'images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_b.jpg', + down: 'images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_d.jpg', + front: 'images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_f.jpg', + index: 41, + left: 'images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_l.jpg', + right: 'images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_u.jpg', + }, + { + back: 'images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_b.jpg', + down: 'images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_d.jpg', + front: 'images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_f.jpg', + index: 42, + left: 'images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_l.jpg', + right: 'images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_u.jpg', + }, + { + back: 'images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_b.jpg', + down: 'images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_d.jpg', + front: 'images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_f.jpg', + index: 43, + left: 'images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_l.jpg', + right: 'images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_u.jpg', + }, + { + back: 'images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_b.jpg', + down: 'images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_d.jpg', + front: 'images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_f.jpg', + index: 44, + left: 'images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_l.jpg', + right: 'images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_u.jpg', + }, + { + back: 'images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_b.jpg', + down: 'images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_d.jpg', + front: 'images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_f.jpg', + index: 45, + left: 'images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_l.jpg', + right: 'images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_u.jpg', + }, + { + back: 'images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_b.jpg', + down: 'images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_d.jpg', + front: 'images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_f.jpg', + index: 46, + left: 'images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_l.jpg', + right: 'images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_u.jpg', + }, + { + back: 'images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_b.jpg', + down: 'images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_d.jpg', + front: 'images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_f.jpg', + index: 47, + left: 'images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_l.jpg', + right: 'images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_u.jpg', + }, + { + back: 'images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_b.jpg', + down: 'images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_d.jpg', + front: 'images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_f.jpg', + index: 48, + left: 'images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_l.jpg', + right: 'images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_u.jpg', + }, + { + back: 'images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_b.jpg', + down: 'images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_d.jpg', + front: 'images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_f.jpg', + index: 49, + left: 'images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_l.jpg', + right: 'images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_u.jpg', + }, + { + back: 'images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_b.jpg', + down: 'images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_d.jpg', + front: 'images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_f.jpg', + index: 50, + left: 'images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_l.jpg', + right: 'images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_u.jpg', + }, + { + back: 'images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_b.jpg', + down: 'images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_d.jpg', + front: 'images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_f.jpg', + index: 51, + left: 'images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_l.jpg', + right: 'images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_u.jpg', + }, + { + back: 'images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_b.jpg', + down: 'images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_d.jpg', + front: 'images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_f.jpg', + index: 52, + left: 'images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_l.jpg', + right: 'images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_u.jpg', + }, + { + back: 'images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_b.jpg', + down: 'images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_d.jpg', + front: 'images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_f.jpg', + index: 53, + left: 'images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_l.jpg', + right: 'images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_u.jpg', + }, + { + back: 'images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_b.jpg', + down: 'images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_d.jpg', + front: 'images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_f.jpg', + index: 54, + left: 'images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_l.jpg', + right: 'images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_u.jpg', + }, + { + back: 'images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_b.jpg', + down: 'images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_d.jpg', + front: 'images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_f.jpg', + index: 55, + left: 'images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_l.jpg', + right: 'images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_u.jpg', + }, + { + back: 'images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_b.jpg', + down: 'images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_d.jpg', + front: 'images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_f.jpg', + index: 56, + left: 'images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_l.jpg', + right: 'images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_u.jpg', + }, + { + back: 'images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_b.jpg', + down: 'images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_d.jpg', + front: 'images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_f.jpg', + index: 57, + left: 'images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_l.jpg', + right: 'images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_u.jpg', + }, + { + back: 'images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_b.jpg', + down: 'images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_d.jpg', + front: 'images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_f.jpg', + index: 58, + left: 'images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_l.jpg', + right: 'images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_u.jpg', + }, + { + back: 'images/cube_2048/59/a627521318471a0de8bd961755540a45/59_b.jpg', + down: 'images/cube_2048/59/a627521318471a0de8bd961755540a45/59_d.jpg', + front: 'images/cube_2048/59/a627521318471a0de8bd961755540a45/59_f.jpg', + index: 59, + left: 'images/cube_2048/59/a627521318471a0de8bd961755540a45/59_l.jpg', + right: 'images/cube_2048/59/a627521318471a0de8bd961755540a45/59_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/59/a627521318471a0de8bd961755540a45/59_u.jpg', + }, + { + back: 'images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_b.jpg', + down: 'images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_d.jpg', + front: 'images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_f.jpg', + index: 60, + left: 'images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_l.jpg', + right: 'images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_u.jpg', + }, + { + back: 'images/cube_2048/61/45234019d51032cf663a89738802cc70/61_b.jpg', + down: 'images/cube_2048/61/45234019d51032cf663a89738802cc70/61_d.jpg', + front: 'images/cube_2048/61/45234019d51032cf663a89738802cc70/61_f.jpg', + index: 61, + left: 'images/cube_2048/61/45234019d51032cf663a89738802cc70/61_l.jpg', + right: 'images/cube_2048/61/45234019d51032cf663a89738802cc70/61_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/61/45234019d51032cf663a89738802cc70/61_u.jpg', + }, + { + back: 'images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_b.jpg', + down: 'images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_d.jpg', + front: 'images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_f.jpg', + index: 62, + left: 'images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_l.jpg', + right: 'images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_u.jpg', + }, + { + back: 'images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_b.jpg', + down: 'images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_d.jpg', + front: 'images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_f.jpg', + index: 63, + left: 'images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_l.jpg', + right: 'images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_u.jpg', + }, + { + back: 'images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_b.jpg', + down: 'images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_d.jpg', + front: 'images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_f.jpg', + index: 64, + left: 'images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_l.jpg', + right: 'images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_u.jpg', + }, + { + back: 'images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_b.jpg', + down: 'images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_d.jpg', + front: 'images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_f.jpg', + index: 65, + left: 'images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_l.jpg', + right: 'images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_u.jpg', + }, + { + back: 'images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_b.jpg', + down: 'images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_d.jpg', + front: 'images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_f.jpg', + index: 66, + left: 'images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_l.jpg', + right: 'images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_u.jpg', + }, + { + back: 'images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_b.jpg', + down: 'images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_d.jpg', + front: 'images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_f.jpg', + index: 67, + left: 'images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_l.jpg', + right: 'images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_u.jpg', + }, + { + back: 'images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_b.jpg', + down: 'images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_d.jpg', + front: 'images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_f.jpg', + index: 68, + left: 'images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_l.jpg', + right: 'images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_u.jpg', + }, + { + back: 'images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_b.jpg', + down: 'images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_d.jpg', + front: 'images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_f.jpg', + index: 69, + left: 'images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_l.jpg', + right: 'images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_u.jpg', + }, + { + back: 'images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_b.jpg', + down: 'images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_d.jpg', + front: 'images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_f.jpg', + index: 70, + left: 'images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_l.jpg', + right: 'images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_u.jpg', + }, + { + back: 'images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_b.jpg', + down: 'images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_d.jpg', + front: 'images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_f.jpg', + index: 71, + left: 'images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_l.jpg', + right: 'images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_u.jpg', + }, + { + back: 'images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_b.jpg', + down: 'images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_d.jpg', + front: 'images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_f.jpg', + index: 72, + left: 'images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_l.jpg', + right: 'images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_u.jpg', + }, + { + back: 'images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_b.jpg', + down: 'images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_d.jpg', + front: 'images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_f.jpg', + index: 73, + left: 'images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_l.jpg', + right: 'images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_u.jpg', + }, + { + back: 'images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_b.jpg', + down: 'images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_d.jpg', + front: 'images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_f.jpg', + index: 74, + left: 'images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_l.jpg', + right: 'images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_u.jpg', + }, + { + back: 'images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_b.jpg', + down: 'images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_d.jpg', + front: 'images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_f.jpg', + index: 75, + left: 'images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_l.jpg', + right: 'images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_u.jpg', + }, + { + back: 'images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_b.jpg', + down: 'images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_d.jpg', + front: 'images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_f.jpg', + index: 76, + left: 'images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_l.jpg', + right: 'images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_u.jpg', + }, + { + back: 'images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_b.jpg', + down: 'images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_d.jpg', + front: 'images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_f.jpg', + index: 77, + left: 'images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_l.jpg', + right: 'images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_u.jpg', + }, + { + back: 'images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_b.jpg', + down: 'images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_d.jpg', + front: 'images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_f.jpg', + index: 78, + left: 'images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_l.jpg', + right: 'images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_u.jpg', + }, + { + back: 'images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_b.jpg', + down: 'images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_d.jpg', + front: 'images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_f.jpg', + index: 79, + left: 'images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_l.jpg', + right: 'images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_u.jpg', + }, + { + back: 'images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_b.jpg', + down: 'images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_d.jpg', + front: 'images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_f.jpg', + index: 80, + left: 'images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_l.jpg', + right: 'images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_u.jpg', + }, + { + back: 'images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_b.jpg', + down: 'images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_d.jpg', + front: 'images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_f.jpg', + index: 81, + left: 'images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_l.jpg', + right: 'images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_u.jpg', + }, + { + back: 'images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_b.jpg', + down: 'images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_d.jpg', + front: 'images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_f.jpg', + index: 82, + left: 'images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_l.jpg', + right: 'images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_u.jpg', + }, + { + back: 'images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_b.jpg', + down: 'images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_d.jpg', + front: 'images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_f.jpg', + index: 83, + left: 'images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_l.jpg', + right: 'images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_u.jpg', + }, + { + back: 'images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_b.jpg', + down: 'images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_d.jpg', + front: 'images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_f.jpg', + index: 84, + left: 'images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_l.jpg', + right: 'images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_u.jpg', + }, + { + back: 'images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_b.jpg', + down: 'images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_d.jpg', + front: 'images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_f.jpg', + index: 85, + left: 'images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_l.jpg', + right: 'images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_u.jpg', + }, + { + back: 'images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_b.jpg', + down: 'images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_d.jpg', + front: 'images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_f.jpg', + index: 86, + left: 'images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_l.jpg', + right: 'images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_u.jpg', + }, + { + back: 'images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_b.jpg', + down: 'images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_d.jpg', + front: 'images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_f.jpg', + index: 87, + left: 'images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_l.jpg', + right: 'images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_u.jpg', + }, + { + back: 'images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_b.jpg', + down: 'images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_d.jpg', + front: 'images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_f.jpg', + index: 88, + left: 'images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_l.jpg', + right: 'images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_u.jpg', + }, + { + back: 'images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_b.jpg', + down: 'images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_d.jpg', + front: 'images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_f.jpg', + index: 89, + left: 'images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_l.jpg', + right: 'images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_u.jpg', + }, + { + back: 'images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_b.jpg', + down: 'images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_d.jpg', + front: 'images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_f.jpg', + index: 90, + left: 'images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_l.jpg', + right: 'images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_u.jpg', + }, + { + back: 'images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_b.jpg', + down: 'images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_d.jpg', + front: 'images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_f.jpg', + index: 91, + left: 'images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_l.jpg', + right: 'images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_u.jpg', + }, + { + back: 'images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_b.jpg', + down: 'images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_d.jpg', + front: 'images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_f.jpg', + index: 92, + left: 'images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_l.jpg', + right: 'images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_u.jpg', + }, + { + back: 'images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_b.jpg', + down: 'images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_d.jpg', + front: 'images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_f.jpg', + index: 93, + left: 'images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_l.jpg', + right: 'images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_u.jpg', + }, + { + back: 'images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_b.jpg', + down: 'images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_d.jpg', + front: 'images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_f.jpg', + index: 94, + left: 'images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_l.jpg', + right: 'images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_u.jpg', + }, + { + back: 'images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_b.jpg', + down: 'images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_d.jpg', + front: 'images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_f.jpg', + index: 95, + left: 'images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_l.jpg', + right: 'images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_u.jpg', + }, + { + back: 'images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_b.jpg', + down: 'images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_d.jpg', + front: 'images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_f.jpg', + index: 96, + left: 'images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_l.jpg', + right: 'images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_u.jpg', + }, + { + back: 'images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_b.jpg', + down: 'images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_d.jpg', + front: 'images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_f.jpg', + index: 97, + left: 'images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_l.jpg', + right: 'images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_u.jpg', + }, + { + back: 'images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_b.jpg', + down: 'images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_d.jpg', + front: 'images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_f.jpg', + index: 98, + left: 'images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_l.jpg', + right: 'images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_u.jpg', + }, + { + back: 'images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_b.jpg', + down: 'images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_d.jpg', + front: 'images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_f.jpg', + index: 99, + left: 'images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_l.jpg', + right: 'images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_u.jpg', + }, + { + back: 'images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_b.jpg', + down: 'images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_d.jpg', + front: 'images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_f.jpg', + index: 100, + left: 'images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_l.jpg', + right: 'images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_u.jpg', + }, + { + back: 'images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_b.jpg', + down: 'images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_d.jpg', + front: 'images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_f.jpg', + index: 101, + left: 'images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_l.jpg', + right: 'images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_u.jpg', + }, + { + back: 'images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_b.jpg', + down: 'images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_d.jpg', + front: 'images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_f.jpg', + index: 102, + left: 'images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_l.jpg', + right: 'images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_u.jpg', + }, + { + back: 'images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_b.jpg', + down: 'images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_d.jpg', + front: 'images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_f.jpg', + index: 103, + left: 'images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_l.jpg', + right: 'images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_u.jpg', + }, + { + back: 'images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_b.jpg', + down: 'images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_d.jpg', + front: 'images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_f.jpg', + index: 104, + left: 'images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_l.jpg', + right: 'images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_u.jpg', + }, + { + back: 'images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_b.jpg', + down: 'images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_d.jpg', + front: 'images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_f.jpg', + index: 105, + left: 'images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_l.jpg', + right: 'images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_u.jpg', + }, + { + back: 'images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_b.jpg', + down: 'images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_d.jpg', + front: 'images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_f.jpg', + index: 106, + left: 'images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_l.jpg', + right: 'images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_u.jpg', + }, + { + back: 'images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_b.jpg', + down: 'images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_d.jpg', + front: 'images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_f.jpg', + index: 107, + left: 'images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_l.jpg', + right: 'images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_u.jpg', + }, + { + back: 'images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_b.jpg', + down: 'images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_d.jpg', + front: 'images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_f.jpg', + index: 108, + left: 'images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_l.jpg', + right: 'images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_u.jpg', + }, + { + back: 'images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_b.jpg', + down: 'images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_d.jpg', + front: 'images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_f.jpg', + index: 109, + left: 'images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_l.jpg', + right: 'images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_u.jpg', + }, + { + back: 'images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_b.jpg', + down: 'images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_d.jpg', + front: 'images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_f.jpg', + index: 110, + left: 'images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_l.jpg', + right: 'images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_u.jpg', + }, + { + back: 'images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_b.jpg', + down: 'images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_d.jpg', + front: 'images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_f.jpg', + index: 111, + left: 'images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_l.jpg', + right: 'images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_u.jpg', + }, + { + back: 'images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_b.jpg', + down: 'images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_d.jpg', + front: 'images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_f.jpg', + index: 112, + left: 'images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_l.jpg', + right: 'images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_u.jpg', + }, + { + back: 'images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_b.jpg', + down: 'images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_d.jpg', + front: 'images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_f.jpg', + index: 113, + left: 'images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_l.jpg', + right: 'images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_u.jpg', + }, + { + back: 'images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_b.jpg', + down: 'images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_d.jpg', + front: 'images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_f.jpg', + index: 114, + left: 'images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_l.jpg', + right: 'images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_u.jpg', + }, + { + back: 'images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_b.jpg', + down: 'images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_d.jpg', + front: 'images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_f.jpg', + index: 115, + left: 'images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_l.jpg', + right: 'images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_u.jpg', + }, + { + back: 'images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_b.jpg', + down: 'images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_d.jpg', + front: 'images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_f.jpg', + index: 116, + left: 'images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_l.jpg', + right: 'images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_u.jpg', + }, + { + back: 'images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_b.jpg', + down: 'images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_d.jpg', + front: 'images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_f.jpg', + index: 117, + left: 'images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_l.jpg', + right: 'images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_u.jpg', + }, + { + back: 'images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_b.jpg', + down: 'images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_d.jpg', + front: 'images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_f.jpg', + index: 118, + left: 'images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_l.jpg', + right: 'images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_u.jpg', + }, + { + back: 'images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_b.jpg', + down: 'images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_d.jpg', + front: 'images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_f.jpg', + index: 119, + left: 'images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_l.jpg', + right: 'images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_u.jpg', + }, + { + back: 'images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_b.jpg', + down: 'images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_d.jpg', + front: 'images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_f.jpg', + index: 120, + left: 'images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_l.jpg', + right: 'images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_u.jpg', + }, + { + back: 'images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_b.jpg', + down: 'images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_d.jpg', + front: 'images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_f.jpg', + index: 121, + left: 'images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_l.jpg', + right: 'images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_u.jpg', + }, + { + back: 'images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_b.jpg', + down: 'images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_d.jpg', + front: 'images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_f.jpg', + index: 122, + left: 'images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_l.jpg', + right: 'images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_u.jpg', + }, + { + back: 'images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_b.jpg', + down: 'images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_d.jpg', + front: 'images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_f.jpg', + index: 123, + left: 'images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_l.jpg', + right: 'images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_u.jpg', + }, + { + back: 'images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_b.jpg', + down: 'images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_d.jpg', + front: 'images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_f.jpg', + index: 124, + left: 'images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_l.jpg', + right: 'images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_u.jpg', + }, + { + back: 'images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_b.jpg', + down: 'images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_d.jpg', + front: 'images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_f.jpg', + index: 125, + left: 'images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_l.jpg', + right: 'images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_u.jpg', + }, + { + back: 'images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_b.jpg', + down: 'images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_d.jpg', + front: 'images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_f.jpg', + index: 126, + left: 'images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_l.jpg', + right: 'images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_u.jpg', + }, + { + back: 'images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_b.jpg', + down: 'images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_d.jpg', + front: 'images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_f.jpg', + index: 127, + left: 'images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_l.jpg', + right: 'images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_u.jpg', + }, + { + back: 'images/cube_2048/128/9244244734633c0b550abe6903890a37/128_b.jpg', + down: 'images/cube_2048/128/9244244734633c0b550abe6903890a37/128_d.jpg', + front: 'images/cube_2048/128/9244244734633c0b550abe6903890a37/128_f.jpg', + index: 128, + left: 'images/cube_2048/128/9244244734633c0b550abe6903890a37/128_l.jpg', + right: 'images/cube_2048/128/9244244734633c0b550abe6903890a37/128_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/128/9244244734633c0b550abe6903890a37/128_u.jpg', + }, + { + back: 'images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_b.jpg', + down: 'images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_d.jpg', + front: 'images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_f.jpg', + index: 129, + left: 'images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_l.jpg', + right: 'images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_u.jpg', + }, + { + back: 'images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_b.jpg', + down: 'images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_d.jpg', + front: 'images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_f.jpg', + index: 130, + left: 'images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_l.jpg', + right: 'images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_u.jpg', + }, + { + back: 'images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_b.jpg', + down: 'images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_d.jpg', + front: 'images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_f.jpg', + index: 131, + left: 'images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_l.jpg', + right: 'images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_u.jpg', + }, + { + back: 'images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_b.jpg', + down: 'images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_d.jpg', + front: 'images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_f.jpg', + index: 132, + left: 'images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_l.jpg', + right: 'images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_u.jpg', + }, + { + back: 'images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_b.jpg', + down: 'images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_d.jpg', + front: 'images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_f.jpg', + index: 133, + left: 'images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_l.jpg', + right: 'images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_u.jpg', + }, + { + back: 'images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_b.jpg', + down: 'images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_d.jpg', + front: 'images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_f.jpg', + index: 134, + left: 'images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_l.jpg', + right: 'images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_u.jpg', + }, + { + back: 'images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_b.jpg', + down: 'images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_d.jpg', + front: 'images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_f.jpg', + index: 135, + left: 'images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_l.jpg', + right: 'images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_u.jpg', + }, + { + back: 'images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_b.jpg', + down: 'images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_d.jpg', + front: 'images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_f.jpg', + index: 136, + left: 'images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_l.jpg', + right: 'images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_u.jpg', + }, + { + back: 'images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_b.jpg', + down: 'images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_d.jpg', + front: 'images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_f.jpg', + index: 137, + left: 'images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_l.jpg', + right: 'images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_u.jpg', + }, + { + back: 'images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_b.jpg', + down: 'images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_d.jpg', + front: 'images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_f.jpg', + index: 138, + left: 'images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_l.jpg', + right: 'images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_u.jpg', + }, + { + back: 'images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_b.jpg', + down: 'images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_d.jpg', + front: 'images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_f.jpg', + index: 139, + left: 'images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_l.jpg', + right: 'images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_u.jpg', + }, + { + back: 'images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_b.jpg', + down: 'images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_d.jpg', + front: 'images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_f.jpg', + index: 140, + left: 'images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_l.jpg', + right: 'images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_u.jpg', + }, + { + back: 'images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_b.jpg', + down: 'images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_d.jpg', + front: 'images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_f.jpg', + index: 141, + left: 'images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_l.jpg', + right: 'images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_u.jpg', + }, + { + back: 'images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_b.jpg', + down: 'images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_d.jpg', + front: 'images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_f.jpg', + index: 142, + left: 'images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_l.jpg', + right: 'images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_u.jpg', + }, + { + back: 'images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_b.jpg', + down: 'images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_d.jpg', + front: 'images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_f.jpg', + index: 143, + left: 'images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_l.jpg', + right: 'images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_u.jpg', + }, + { + back: 'images/cube_2048/144/984387d14969064713bec17199a7a401/144_b.jpg', + down: 'images/cube_2048/144/984387d14969064713bec17199a7a401/144_d.jpg', + front: 'images/cube_2048/144/984387d14969064713bec17199a7a401/144_f.jpg', + index: 144, + left: 'images/cube_2048/144/984387d14969064713bec17199a7a401/144_l.jpg', + right: 'images/cube_2048/144/984387d14969064713bec17199a7a401/144_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/144/984387d14969064713bec17199a7a401/144_u.jpg', + }, + { + back: 'images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_b.jpg', + down: 'images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_d.jpg', + front: 'images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_f.jpg', + index: 145, + left: 'images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_l.jpg', + right: 'images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_u.jpg', + }, + { + back: 'images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_b.jpg', + down: 'images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_d.jpg', + front: 'images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_f.jpg', + index: 146, + left: 'images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_l.jpg', + right: 'images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_u.jpg', + }, + { + back: 'images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_b.jpg', + down: 'images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_d.jpg', + front: 'images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_f.jpg', + index: 147, + left: 'images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_l.jpg', + right: 'images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_u.jpg', + }, + { + back: 'images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_b.jpg', + down: 'images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_d.jpg', + front: 'images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_f.jpg', + index: 148, + left: 'images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_l.jpg', + right: 'images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_u.jpg', + }, + { + back: 'images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_b.jpg', + down: 'images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_d.jpg', + front: 'images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_f.jpg', + index: 149, + left: 'images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_l.jpg', + right: 'images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_u.jpg', + }, + { + back: 'images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_b.jpg', + down: 'images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_d.jpg', + front: 'images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_f.jpg', + index: 150, + left: 'images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_l.jpg', + right: 'images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_u.jpg', + }, + { + back: 'images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_b.jpg', + down: 'images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_d.jpg', + front: 'images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_f.jpg', + index: 151, + left: 'images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_l.jpg', + right: 'images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_u.jpg', + }, + { + back: 'images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_b.jpg', + down: 'images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_d.jpg', + front: 'images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_f.jpg', + index: 152, + left: 'images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_l.jpg', + right: 'images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_u.jpg', + }, + { + back: 'images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_b.jpg', + down: 'images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_d.jpg', + front: 'images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_f.jpg', + index: 153, + left: 'images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_l.jpg', + right: 'images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_u.jpg', + }, + { + back: 'images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_b.jpg', + down: 'images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_d.jpg', + front: 'images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_f.jpg', + index: 154, + left: 'images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_l.jpg', + right: 'images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_u.jpg', + }, + { + back: 'images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_b.jpg', + down: 'images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_d.jpg', + front: 'images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_f.jpg', + index: 155, + left: 'images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_l.jpg', + right: 'images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_u.jpg', + }, + { + back: 'images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_b.jpg', + down: 'images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_d.jpg', + front: 'images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_f.jpg', + index: 156, + left: 'images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_l.jpg', + right: 'images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_u.jpg', + }, + { + back: 'images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_b.jpg', + down: 'images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_d.jpg', + front: 'images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_f.jpg', + index: 157, + left: 'images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_l.jpg', + right: 'images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_u.jpg', + }, + { + back: 'images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_b.jpg', + down: 'images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_d.jpg', + front: 'images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_f.jpg', + index: 158, + left: 'images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_l.jpg', + right: 'images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_u.jpg', + }, + { + back: 'images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_b.jpg', + down: 'images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_d.jpg', + front: 'images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_f.jpg', + index: 159, + left: 'images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_l.jpg', + right: 'images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_u.jpg', + }, + { + back: 'images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_b.jpg', + down: 'images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_d.jpg', + front: 'images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_f.jpg', + index: 160, + left: 'images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_l.jpg', + right: 'images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_u.jpg', + }, + { + back: 'images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_b.jpg', + down: 'images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_d.jpg', + front: 'images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_f.jpg', + index: 161, + left: 'images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_l.jpg', + right: 'images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_u.jpg', + }, + { + back: 'images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_b.jpg', + down: 'images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_d.jpg', + front: 'images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_f.jpg', + index: 162, + left: 'images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_l.jpg', + right: 'images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_u.jpg', + }, + { + back: 'images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_b.jpg', + down: 'images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_d.jpg', + front: 'images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_f.jpg', + index: 163, + left: 'images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_l.jpg', + right: 'images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_u.jpg', + }, + { + back: 'images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_b.jpg', + down: 'images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_d.jpg', + front: 'images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_f.jpg', + index: 164, + left: 'images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_l.jpg', + right: 'images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_u.jpg', + }, + { + back: 'images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_b.jpg', + down: 'images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_d.jpg', + front: 'images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_f.jpg', + index: 165, + left: 'images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_l.jpg', + right: 'images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_u.jpg', + }, + { + back: 'images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_b.jpg', + down: 'images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_d.jpg', + front: 'images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_f.jpg', + index: 166, + left: 'images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_l.jpg', + right: 'images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_u.jpg', + }, + { + back: 'images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_b.jpg', + down: 'images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_d.jpg', + front: 'images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_f.jpg', + index: 167, + left: 'images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_l.jpg', + right: 'images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_u.jpg', + }, + { + back: 'images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_b.jpg', + down: 'images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_d.jpg', + front: 'images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_f.jpg', + index: 168, + left: 'images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_l.jpg', + right: 'images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_u.jpg', + }, + { + back: 'images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_b.jpg', + down: 'images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_d.jpg', + front: 'images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_f.jpg', + index: 169, + left: 'images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_l.jpg', + right: 'images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_u.jpg', + }, + { + back: 'images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_b.jpg', + down: 'images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_d.jpg', + front: 'images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_f.jpg', + index: 170, + left: 'images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_l.jpg', + right: 'images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_u.jpg', + }, + { + back: 'images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_b.jpg', + down: 'images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_d.jpg', + front: 'images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_f.jpg', + index: 171, + left: 'images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_l.jpg', + right: 'images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_u.jpg', + }, + { + back: 'images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_b.jpg', + down: 'images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_d.jpg', + front: 'images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_f.jpg', + index: 172, + left: 'images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_l.jpg', + right: 'images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_u.jpg', + }, + { + back: 'images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_b.jpg', + down: 'images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_d.jpg', + front: 'images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_f.jpg', + index: 173, + left: 'images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_l.jpg', + right: 'images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_u.jpg', + }, + { + back: 'images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_b.jpg', + down: 'images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_d.jpg', + front: 'images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_f.jpg', + index: 174, + left: 'images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_l.jpg', + right: 'images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_u.jpg', + }, + { + back: 'images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_b.jpg', + down: 'images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_d.jpg', + front: 'images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_f.jpg', + index: 175, + left: 'images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_l.jpg', + right: 'images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_u.jpg', + }, + { + back: 'images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_b.jpg', + down: 'images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_d.jpg', + front: 'images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_f.jpg', + index: 176, + left: 'images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_l.jpg', + right: 'images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_u.jpg', + }, + { + back: 'images/cube_2048/177/8643392613e61c39efa285969b53db21/177_b.jpg', + down: 'images/cube_2048/177/8643392613e61c39efa285969b53db21/177_d.jpg', + front: 'images/cube_2048/177/8643392613e61c39efa285969b53db21/177_f.jpg', + index: 177, + left: 'images/cube_2048/177/8643392613e61c39efa285969b53db21/177_l.jpg', + right: 'images/cube_2048/177/8643392613e61c39efa285969b53db21/177_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/177/8643392613e61c39efa285969b53db21/177_u.jpg', + }, + { + back: 'images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_b.jpg', + down: 'images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_d.jpg', + front: 'images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_f.jpg', + index: 178, + left: 'images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_l.jpg', + right: 'images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_u.jpg', + }, + { + back: 'images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_b.jpg', + down: 'images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_d.jpg', + front: 'images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_f.jpg', + index: 179, + left: 'images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_l.jpg', + right: 'images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_u.jpg', + }, + { + back: 'images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_b.jpg', + down: 'images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_d.jpg', + front: 'images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_f.jpg', + index: 180, + left: 'images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_l.jpg', + right: 'images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_u.jpg', + }, + { + back: 'images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_b.jpg', + down: 'images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_d.jpg', + front: 'images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_f.jpg', + index: 181, + left: 'images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_l.jpg', + right: 'images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_u.jpg', + }, + { + back: 'images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_b.jpg', + down: 'images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_d.jpg', + front: 'images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_f.jpg', + index: 182, + left: 'images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_l.jpg', + right: 'images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_u.jpg', + }, + { + back: 'images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_b.jpg', + down: 'images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_d.jpg', + front: 'images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_f.jpg', + index: 183, + left: 'images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_l.jpg', + right: 'images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_u.jpg', + }, + { + back: 'images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_b.jpg', + down: 'images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_d.jpg', + front: 'images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_f.jpg', + index: 184, + left: 'images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_l.jpg', + right: 'images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_u.jpg', + }, + { + back: 'images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_b.jpg', + down: 'images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_d.jpg', + front: 'images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_f.jpg', + index: 185, + left: 'images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_l.jpg', + right: 'images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_u.jpg', + }, + { + back: 'images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_b.jpg', + down: 'images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_d.jpg', + front: 'images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_f.jpg', + index: 186, + left: 'images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_l.jpg', + right: 'images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_u.jpg', + }, + { + back: 'images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_b.jpg', + down: 'images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_d.jpg', + front: 'images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_f.jpg', + index: 187, + left: 'images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_l.jpg', + right: 'images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_u.jpg', + }, + { + back: 'images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_b.jpg', + down: 'images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_d.jpg', + front: 'images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_f.jpg', + index: 188, + left: 'images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_l.jpg', + right: 'images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_u.jpg', + }, + { + back: 'images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_b.jpg', + down: 'images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_d.jpg', + front: 'images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_f.jpg', + index: 189, + left: 'images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_l.jpg', + right: 'images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_u.jpg', + }, + { + back: 'images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_b.jpg', + down: 'images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_d.jpg', + front: 'images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_f.jpg', + index: 190, + left: 'images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_l.jpg', + right: 'images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_u.jpg', + }, + { + back: 'images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_b.jpg', + down: 'images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_d.jpg', + front: 'images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_f.jpg', + index: 191, + left: 'images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_l.jpg', + right: 'images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_u.jpg', + }, + { + back: 'images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_b.jpg', + down: 'images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_d.jpg', + front: 'images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_f.jpg', + index: 192, + left: 'images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_l.jpg', + right: 'images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_u.jpg', + }, + { + back: 'images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_b.jpg', + down: 'images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_d.jpg', + front: 'images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_f.jpg', + index: 193, + left: 'images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_l.jpg', + right: 'images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_u.jpg', + }, + { + back: 'images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_b.jpg', + down: 'images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_d.jpg', + front: 'images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_f.jpg', + index: 194, + left: 'images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_l.jpg', + right: 'images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_u.jpg', + }, + { + back: 'images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_b.jpg', + down: 'images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_d.jpg', + front: 'images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_f.jpg', + index: 195, + left: 'images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_l.jpg', + right: 'images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_u.jpg', + }, + { + back: 'images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_b.jpg', + down: 'images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_d.jpg', + front: 'images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_f.jpg', + index: 196, + left: 'images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_l.jpg', + right: 'images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_u.jpg', + }, + { + back: 'images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_b.jpg', + down: 'images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_d.jpg', + front: 'images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_f.jpg', + index: 197, + left: 'images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_l.jpg', + right: 'images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_u.jpg', + }, + { + back: 'images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_b.jpg', + down: 'images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_d.jpg', + front: 'images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_f.jpg', + index: 198, + left: 'images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_l.jpg', + right: 'images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_u.jpg', + }, + { + back: 'images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_b.jpg', + down: 'images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_d.jpg', + front: 'images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_f.jpg', + index: 199, + left: 'images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_l.jpg', + right: 'images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_u.jpg', + }, + { + back: 'images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_b.jpg', + down: 'images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_d.jpg', + front: 'images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_f.jpg', + index: 200, + left: 'images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_l.jpg', + right: 'images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_u.jpg', + }, + { + back: 'images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_b.jpg', + down: 'images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_d.jpg', + front: 'images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_f.jpg', + index: 201, + left: 'images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_l.jpg', + right: 'images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_u.jpg', + }, + { + back: 'images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_b.jpg', + down: 'images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_d.jpg', + front: 'images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_f.jpg', + index: 202, + left: 'images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_l.jpg', + right: 'images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_u.jpg', + }, + { + back: 'images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_b.jpg', + down: 'images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_d.jpg', + front: 'images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_f.jpg', + index: 203, + left: 'images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_l.jpg', + right: 'images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_u.jpg', + }, + { + back: 'images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_b.jpg', + down: 'images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_d.jpg', + front: 'images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_f.jpg', + index: 204, + left: 'images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_l.jpg', + right: 'images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_u.jpg', + }, + { + back: 'images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_b.jpg', + down: 'images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_d.jpg', + front: 'images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_f.jpg', + index: 205, + left: 'images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_l.jpg', + right: 'images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_u.jpg', + }, + { + back: 'images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_b.jpg', + down: 'images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_d.jpg', + front: 'images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_f.jpg', + index: 206, + left: 'images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_l.jpg', + right: 'images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_u.jpg', + }, + { + back: 'images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_b.jpg', + down: 'images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_d.jpg', + front: 'images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_f.jpg', + index: 207, + left: 'images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_l.jpg', + right: 'images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_u.jpg', + }, + { + back: 'images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_b.jpg', + down: 'images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_d.jpg', + front: 'images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_f.jpg', + index: 208, + left: 'images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_l.jpg', + right: 'images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_u.jpg', + }, + { + back: 'images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_b.jpg', + down: 'images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_d.jpg', + front: 'images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_f.jpg', + index: 209, + left: 'images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_l.jpg', + right: 'images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_u.jpg', + }, + { + back: 'images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_b.jpg', + down: 'images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_d.jpg', + front: 'images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_f.jpg', + index: 210, + left: 'images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_l.jpg', + right: 'images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_u.jpg', + }, + { + back: 'images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_b.jpg', + down: 'images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_d.jpg', + front: 'images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_f.jpg', + index: 211, + left: 'images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_l.jpg', + right: 'images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_u.jpg', + }, + { + back: 'images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_b.jpg', + down: 'images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_d.jpg', + front: 'images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_f.jpg', + index: 212, + left: 'images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_l.jpg', + right: 'images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_u.jpg', + }, + { + back: 'images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_b.jpg', + down: 'images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_d.jpg', + front: 'images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_f.jpg', + index: 213, + left: 'images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_l.jpg', + right: 'images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_u.jpg', + }, + { + back: 'images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_b.jpg', + down: 'images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_d.jpg', + front: 'images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_f.jpg', + index: 214, + left: 'images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_l.jpg', + right: 'images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_u.jpg', + }, + { + back: 'images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_b.jpg', + down: 'images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_d.jpg', + front: 'images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_f.jpg', + index: 215, + left: 'images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_l.jpg', + right: 'images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_u.jpg', + }, + { + back: 'images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_b.jpg', + down: 'images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_d.jpg', + front: 'images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_f.jpg', + index: 216, + left: 'images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_l.jpg', + right: 'images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_u.jpg', + }, + { + back: 'images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_b.jpg', + down: 'images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_d.jpg', + front: 'images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_f.jpg', + index: 217, + left: 'images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_l.jpg', + right: 'images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_u.jpg', + }, + { + back: 'images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_b.jpg', + down: 'images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_d.jpg', + front: 'images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_f.jpg', + index: 218, + left: 'images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_l.jpg', + right: 'images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_u.jpg', + }, + { + back: 'images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_b.jpg', + down: 'images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_d.jpg', + front: 'images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_f.jpg', + index: 219, + left: 'images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_l.jpg', + right: 'images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_u.jpg', + }, + { + back: 'images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_b.jpg', + down: 'images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_d.jpg', + front: 'images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_f.jpg', + index: 220, + left: 'images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_l.jpg', + right: 'images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_u.jpg', + }, + { + back: 'images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_b.jpg', + down: 'images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_d.jpg', + front: 'images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_f.jpg', + index: 221, + left: 'images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_l.jpg', + right: 'images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_u.jpg', + }, + { + back: 'images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_b.jpg', + down: 'images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_d.jpg', + front: 'images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_f.jpg', + index: 222, + left: 'images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_l.jpg', + right: 'images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_u.jpg', + }, + { + back: 'images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_b.jpg', + down: 'images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_d.jpg', + front: 'images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_f.jpg', + index: 223, + left: 'images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_l.jpg', + right: 'images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_u.jpg', + }, + { + back: 'images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_b.jpg', + down: 'images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_d.jpg', + front: 'images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_f.jpg', + index: 224, + left: 'images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_l.jpg', + right: 'images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_u.jpg', + }, + { + back: 'images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_b.jpg', + down: 'images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_d.jpg', + front: 'images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_f.jpg', + index: 225, + left: 'images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_l.jpg', + right: 'images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_u.jpg', + }, + { + back: 'images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_b.jpg', + down: 'images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_d.jpg', + front: 'images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_f.jpg', + index: 226, + left: 'images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_l.jpg', + right: 'images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_u.jpg', + }, + { + back: 'images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_b.jpg', + down: 'images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_d.jpg', + front: 'images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_f.jpg', + index: 227, + left: 'images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_l.jpg', + right: 'images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_u.jpg', + }, + { + back: 'images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_b.jpg', + down: 'images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_d.jpg', + front: 'images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_f.jpg', + index: 228, + left: 'images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_l.jpg', + right: 'images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_u.jpg', + }, + { + back: 'images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_b.jpg', + down: 'images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_d.jpg', + front: 'images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_f.jpg', + index: 229, + left: 'images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_l.jpg', + right: 'images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_u.jpg', + }, + { + back: 'images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_b.jpg', + down: 'images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_d.jpg', + front: 'images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_f.jpg', + index: 230, + left: 'images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_l.jpg', + right: 'images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_u.jpg', + }, + { + back: 'images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_b.jpg', + down: 'images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_d.jpg', + front: 'images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_f.jpg', + index: 231, + left: 'images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_l.jpg', + right: 'images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_u.jpg', + }, + { + back: 'images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_b.jpg', + down: 'images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_d.jpg', + front: 'images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_f.jpg', + index: 232, + left: 'images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_l.jpg', + right: 'images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_u.jpg', + }, + { + back: 'images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_b.jpg', + down: 'images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_d.jpg', + front: 'images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_f.jpg', + index: 233, + left: 'images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_l.jpg', + right: 'images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_u.jpg', + }, + { + back: 'images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_b.jpg', + down: 'images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_d.jpg', + front: 'images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_f.jpg', + index: 234, + left: 'images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_l.jpg', + right: 'images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_u.jpg', + }, + { + back: 'images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_b.jpg', + down: 'images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_d.jpg', + front: 'images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_f.jpg', + index: 235, + left: 'images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_l.jpg', + right: 'images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_u.jpg', + }, + { + back: 'images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_b.jpg', + down: 'images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_d.jpg', + front: 'images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_f.jpg', + index: 236, + left: 'images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_l.jpg', + right: 'images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_u.jpg', + }, + { + back: 'images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_b.jpg', + down: 'images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_d.jpg', + front: 'images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_f.jpg', + index: 237, + left: 'images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_l.jpg', + right: 'images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_u.jpg', + }, + { + back: 'images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_b.jpg', + down: 'images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_d.jpg', + front: 'images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_f.jpg', + index: 238, + left: 'images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_l.jpg', + right: 'images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_u.jpg', + }, + { + back: 'images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_b.jpg', + down: 'images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_d.jpg', + front: 'images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_f.jpg', + index: 239, + left: 'images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_l.jpg', + right: 'images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_u.jpg', + }, + { + back: 'images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_b.jpg', + down: 'images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_d.jpg', + front: 'images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_f.jpg', + index: 240, + left: 'images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_l.jpg', + right: 'images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_u.jpg', + }, + { + back: 'images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_b.jpg', + down: 'images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_d.jpg', + front: 'images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_f.jpg', + index: 241, + left: 'images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_l.jpg', + right: 'images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_u.jpg', + }, + { + back: 'images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_b.jpg', + down: 'images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_d.jpg', + front: 'images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_f.jpg', + index: 242, + left: 'images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_l.jpg', + right: 'images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_u.jpg', + }, + { + back: 'images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_b.jpg', + down: 'images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_d.jpg', + front: 'images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_f.jpg', + index: 243, + left: 'images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_l.jpg', + right: 'images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_u.jpg', + }, + { + back: 'images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_b.jpg', + down: 'images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_d.jpg', + front: 'images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_f.jpg', + index: 244, + left: 'images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_l.jpg', + right: 'images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_u.jpg', + }, + { + back: 'images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_b.jpg', + down: 'images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_d.jpg', + front: 'images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_f.jpg', + index: 245, + left: 'images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_l.jpg', + right: 'images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_u.jpg', + }, + { + back: 'images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_b.jpg', + down: 'images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_d.jpg', + front: 'images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_f.jpg', + index: 246, + left: 'images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_l.jpg', + right: 'images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_u.jpg', + }, + { + back: 'images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_b.jpg', + down: 'images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_d.jpg', + front: 'images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_f.jpg', + index: 247, + left: 'images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_l.jpg', + right: 'images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_u.jpg', + }, + { + back: 'images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_b.jpg', + down: 'images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_d.jpg', + front: 'images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_f.jpg', + index: 248, + left: 'images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_l.jpg', + right: 'images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_u.jpg', + }, + { + back: 'images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_b.jpg', + down: 'images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_d.jpg', + front: 'images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_f.jpg', + index: 249, + left: 'images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_l.jpg', + right: 'images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_u.jpg', + }, + { + back: 'images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_b.jpg', + down: 'images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_d.jpg', + front: 'images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_f.jpg', + index: 250, + left: 'images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_l.jpg', + right: 'images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_u.jpg', + }, + { + back: 'images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_b.jpg', + down: 'images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_d.jpg', + front: 'images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_f.jpg', + index: 251, + left: 'images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_l.jpg', + right: 'images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_u.jpg', + }, + { + back: 'images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_b.jpg', + down: 'images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_d.jpg', + front: 'images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_f.jpg', + index: 252, + left: 'images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_l.jpg', + right: 'images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_u.jpg', + }, + { + back: 'images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_b.jpg', + down: 'images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_d.jpg', + front: 'images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_f.jpg', + index: 253, + left: 'images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_l.jpg', + right: 'images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_u.jpg', + }, + { + back: 'images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_b.jpg', + down: 'images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_d.jpg', + front: 'images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_f.jpg', + index: 254, + left: 'images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_l.jpg', + right: 'images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_u.jpg', + }, + { + back: 'images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_b.jpg', + down: 'images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_d.jpg', + front: 'images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_f.jpg', + index: 255, + left: 'images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_l.jpg', + right: 'images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_u.jpg', + }, + { + back: 'images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_b.jpg', + down: 'images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_d.jpg', + front: 'images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_f.jpg', + index: 256, + left: 'images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_l.jpg', + right: 'images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_u.jpg', + }, + { + back: 'images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_b.jpg', + down: 'images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_d.jpg', + front: 'images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_f.jpg', + index: 257, + left: 'images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_l.jpg', + right: 'images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_u.jpg', + }, + { + back: 'images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_b.jpg', + down: 'images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_d.jpg', + front: 'images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_f.jpg', + index: 258, + left: 'images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_l.jpg', + right: 'images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_u.jpg', + }, + { + back: 'images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_b.jpg', + down: 'images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_d.jpg', + front: 'images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_f.jpg', + index: 259, + left: 'images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_l.jpg', + right: 'images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_u.jpg', + }, + { + back: 'images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_b.jpg', + down: 'images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_d.jpg', + front: 'images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_f.jpg', + index: 260, + left: 'images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_l.jpg', + right: 'images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_u.jpg', + }, + { + back: 'images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_b.jpg', + down: 'images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_d.jpg', + front: 'images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_f.jpg', + index: 261, + left: 'images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_l.jpg', + right: 'images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_u.jpg', + }, + { + back: 'images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_b.jpg', + down: 'images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_d.jpg', + front: 'images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_f.jpg', + index: 262, + left: 'images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_l.jpg', + right: 'images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_u.jpg', + }, + { + back: 'images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_b.jpg', + down: 'images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_d.jpg', + front: 'images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_f.jpg', + index: 263, + left: 'images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_l.jpg', + right: 'images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_u.jpg', + }, + { + back: 'images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_b.jpg', + down: 'images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_d.jpg', + front: 'images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_f.jpg', + index: 264, + left: 'images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_l.jpg', + right: 'images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_u.jpg', + }, + { + back: 'images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_b.jpg', + down: 'images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_d.jpg', + front: 'images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_f.jpg', + index: 265, + left: 'images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_l.jpg', + right: 'images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_u.jpg', + }, + { + back: 'images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_b.jpg', + down: 'images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_d.jpg', + front: 'images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_f.jpg', + index: 266, + left: 'images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_l.jpg', + right: 'images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_u.jpg', + }, + { + back: 'images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_b.jpg', + down: 'images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_d.jpg', + front: 'images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_f.jpg', + index: 267, + left: 'images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_l.jpg', + right: 'images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_u.jpg', + }, + { + back: 'images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_b.jpg', + down: 'images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_d.jpg', + front: 'images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_f.jpg', + index: 268, + left: 'images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_l.jpg', + right: 'images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_u.jpg', + }, + { + back: 'images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_b.jpg', + down: 'images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_d.jpg', + front: 'images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_f.jpg', + index: 269, + left: 'images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_l.jpg', + right: 'images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_u.jpg', + }, + { + back: 'images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_b.jpg', + down: 'images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_d.jpg', + front: 'images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_f.jpg', + index: 270, + left: 'images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_l.jpg', + right: 'images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_u.jpg', + }, + { + back: 'images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_b.jpg', + down: 'images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_d.jpg', + front: 'images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_f.jpg', + index: 271, + left: 'images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_l.jpg', + right: 'images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_u.jpg', + }, + { + back: 'images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_b.jpg', + down: 'images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_d.jpg', + front: 'images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_f.jpg', + index: 272, + left: 'images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_l.jpg', + right: 'images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_u.jpg', + }, + { + back: 'images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_b.jpg', + down: 'images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_d.jpg', + front: 'images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_f.jpg', + index: 273, + left: 'images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_l.jpg', + right: 'images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_u.jpg', + }, + { + back: 'images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_b.jpg', + down: 'images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_d.jpg', + front: 'images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_f.jpg', + index: 274, + left: 'images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_l.jpg', + right: 'images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_u.jpg', + }, + { + back: 'images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_b.jpg', + down: 'images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_d.jpg', + front: 'images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_f.jpg', + index: 275, + left: 'images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_l.jpg', + right: 'images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_u.jpg', + }, + { + back: 'images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_b.jpg', + down: 'images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_d.jpg', + front: 'images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_f.jpg', + index: 276, + left: 'images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_l.jpg', + right: 'images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_u.jpg', + }, + { + back: 'images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_b.jpg', + down: 'images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_d.jpg', + front: 'images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_f.jpg', + index: 277, + left: 'images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_l.jpg', + right: 'images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_u.jpg', + }, + { + back: 'images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_b.jpg', + down: 'images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_d.jpg', + front: 'images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_f.jpg', + index: 278, + left: 'images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_l.jpg', + right: 'images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_u.jpg', + }, + { + back: 'images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_b.jpg', + down: 'images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_d.jpg', + front: 'images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_f.jpg', + index: 279, + left: 'images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_l.jpg', + right: 'images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_u.jpg', + }, + { + back: 'images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_b.jpg', + down: 'images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_d.jpg', + front: 'images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_f.jpg', + index: 280, + left: 'images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_l.jpg', + right: 'images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_u.jpg', + }, + { + back: 'images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_b.jpg', + down: 'images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_d.jpg', + front: 'images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_f.jpg', + index: 281, + left: 'images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_l.jpg', + right: 'images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_u.jpg', + }, + { + back: 'images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_b.jpg', + down: 'images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_d.jpg', + front: 'images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_f.jpg', + index: 282, + left: 'images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_l.jpg', + right: 'images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_u.jpg', + }, + { + back: 'images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_b.jpg', + down: 'images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_d.jpg', + front: 'images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_f.jpg', + index: 283, + left: 'images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_l.jpg', + right: 'images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_u.jpg', + }, + { + back: 'images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_b.jpg', + down: 'images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_d.jpg', + front: 'images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_f.jpg', + index: 284, + left: 'images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_l.jpg', + right: 'images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_u.jpg', + }, + { + back: 'images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_b.jpg', + down: 'images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_d.jpg', + front: 'images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_f.jpg', + index: 285, + left: 'images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_l.jpg', + right: 'images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_u.jpg', + }, + { + back: 'images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_b.jpg', + down: 'images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_d.jpg', + front: 'images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_f.jpg', + index: 286, + left: 'images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_l.jpg', + right: 'images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_u.jpg', + }, + { + back: 'images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_b.jpg', + down: 'images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_d.jpg', + front: 'images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_f.jpg', + index: 287, + left: 'images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_l.jpg', + right: 'images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_u.jpg', + }, + { + back: 'images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_b.jpg', + down: 'images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_d.jpg', + front: 'images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_f.jpg', + index: 288, + left: 'images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_l.jpg', + right: 'images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_u.jpg', + }, + { + back: 'images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_b.jpg', + down: 'images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_d.jpg', + front: 'images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_f.jpg', + index: 289, + left: 'images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_l.jpg', + right: 'images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_u.jpg', + }, + { + back: 'images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_b.jpg', + down: 'images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_d.jpg', + front: 'images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_f.jpg', + index: 290, + left: 'images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_l.jpg', + right: 'images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_u.jpg', + }, + { + back: 'images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_b.jpg', + down: 'images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_d.jpg', + front: 'images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_f.jpg', + index: 291, + left: 'images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_l.jpg', + right: 'images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_u.jpg', + }, + { + back: 'images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_b.jpg', + down: 'images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_d.jpg', + front: 'images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_f.jpg', + index: 292, + left: 'images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_l.jpg', + right: 'images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_u.jpg', + }, + { + back: 'images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_b.jpg', + down: 'images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_d.jpg', + front: 'images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_f.jpg', + index: 293, + left: 'images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_l.jpg', + right: 'images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_u.jpg', + }, + { + back: 'images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_b.jpg', + down: 'images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_d.jpg', + front: 'images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_f.jpg', + index: 294, + left: 'images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_l.jpg', + right: 'images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_u.jpg', + }, + { + back: 'images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_b.jpg', + down: 'images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_d.jpg', + front: 'images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_f.jpg', + index: 295, + left: 'images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_l.jpg', + right: 'images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_u.jpg', + }, + { + back: 'images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_b.jpg', + down: 'images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_d.jpg', + front: 'images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_f.jpg', + index: 296, + left: 'images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_l.jpg', + right: 'images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_u.jpg', + }, + { + back: 'images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_b.jpg', + down: 'images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_d.jpg', + front: 'images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_f.jpg', + index: 297, + left: 'images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_l.jpg', + right: 'images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_u.jpg', + }, + { + back: 'images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_b.jpg', + down: 'images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_d.jpg', + front: 'images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_f.jpg', + index: 298, + left: 'images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_l.jpg', + right: 'images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_u.jpg', + }, + { + back: 'images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_b.jpg', + down: 'images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_d.jpg', + front: 'images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_f.jpg', + index: 299, + left: 'images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_l.jpg', + right: 'images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_u.jpg', + }, + { + back: 'images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_b.jpg', + down: 'images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_d.jpg', + front: 'images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_f.jpg', + index: 300, + left: 'images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_l.jpg', + right: 'images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_u.jpg', + }, + { + back: 'images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_b.jpg', + down: 'images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_d.jpg', + front: 'images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_f.jpg', + index: 301, + left: 'images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_l.jpg', + right: 'images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_u.jpg', + }, + { + back: 'images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_b.jpg', + down: 'images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_d.jpg', + front: 'images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_f.jpg', + index: 302, + left: 'images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_l.jpg', + right: 'images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_u.jpg', + }, + { + back: 'images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_b.jpg', + down: 'images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_d.jpg', + front: 'images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_f.jpg', + index: 303, + left: 'images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_l.jpg', + right: 'images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_u.jpg', + }, + { + back: 'images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_b.jpg', + down: 'images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_d.jpg', + front: 'images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_f.jpg', + index: 304, + left: 'images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_l.jpg', + right: 'images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_u.jpg', + }, + { + back: 'images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_b.jpg', + down: 'images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_d.jpg', + front: 'images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_f.jpg', + index: 305, + left: 'images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_l.jpg', + right: 'images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_u.jpg', + }, + { + back: 'images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_b.jpg', + down: 'images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_d.jpg', + front: 'images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_f.jpg', + index: 306, + left: 'images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_l.jpg', + right: 'images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_u.jpg', + }, + { + back: 'images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_b.jpg', + down: 'images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_d.jpg', + front: 'images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_f.jpg', + index: 307, + left: 'images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_l.jpg', + right: 'images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_u.jpg', + }, + { + back: 'images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_b.jpg', + down: 'images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_d.jpg', + front: 'images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_f.jpg', + index: 308, + left: 'images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_l.jpg', + right: 'images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_u.jpg', + }, + { + back: 'images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_b.jpg', + down: 'images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_d.jpg', + front: 'images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_f.jpg', + index: 309, + left: 'images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_l.jpg', + right: 'images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_u.jpg', + }, + { + back: 'images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_b.jpg', + down: 'images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_d.jpg', + front: 'images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_f.jpg', + index: 310, + left: 'images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_l.jpg', + right: 'images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_u.jpg', + }, + { + back: 'images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_b.jpg', + down: 'images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_d.jpg', + front: 'images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_f.jpg', + index: 311, + left: 'images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_l.jpg', + right: 'images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_u.jpg', + }, + { + back: 'images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_b.jpg', + down: 'images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_d.jpg', + front: 'images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_f.jpg', + index: 312, + left: 'images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_l.jpg', + right: 'images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_u.jpg', + }, + { + back: 'images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_b.jpg', + down: 'images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_d.jpg', + front: 'images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_f.jpg', + index: 313, + left: 'images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_l.jpg', + right: 'images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_u.jpg', + }, + { + back: 'images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_b.jpg', + down: 'images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_d.jpg', + front: 'images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_f.jpg', + index: 314, + left: 'images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_l.jpg', + right: 'images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_u.jpg', + }, + { + back: 'images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_b.jpg', + down: 'images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_d.jpg', + front: 'images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_f.jpg', + index: 315, + left: 'images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_l.jpg', + right: 'images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_u.jpg', + }, + { + back: 'images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_b.jpg', + down: 'images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_d.jpg', + front: 'images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_f.jpg', + index: 316, + left: 'images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_l.jpg', + right: 'images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_u.jpg', + }, + { + back: 'images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_b.jpg', + down: 'images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_d.jpg', + front: 'images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_f.jpg', + index: 317, + left: 'images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_l.jpg', + right: 'images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_u.jpg', + }, + { + back: 'images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_b.jpg', + down: 'images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_d.jpg', + front: 'images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_f.jpg', + index: 318, + left: 'images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_l.jpg', + right: 'images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_u.jpg', + }, + { + back: 'images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_b.jpg', + down: 'images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_d.jpg', + front: 'images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_f.jpg', + index: 319, + left: 'images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_l.jpg', + right: 'images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_u.jpg', + }, + { + back: 'images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_b.jpg', + down: 'images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_d.jpg', + front: 'images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_f.jpg', + index: 320, + left: 'images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_l.jpg', + right: 'images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_u.jpg', + }, + { + back: 'images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_b.jpg', + down: 'images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_d.jpg', + front: 'images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_f.jpg', + index: 321, + left: 'images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_l.jpg', + right: 'images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_u.jpg', + }, + { + back: 'images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_b.jpg', + down: 'images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_d.jpg', + front: 'images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_f.jpg', + index: 322, + left: 'images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_l.jpg', + right: 'images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_u.jpg', + }, + { + back: 'images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_b.jpg', + down: 'images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_d.jpg', + front: 'images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_f.jpg', + index: 323, + left: 'images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_l.jpg', + right: 'images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_u.jpg', + }, + { + back: 'images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_b.jpg', + down: 'images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_d.jpg', + front: 'images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_f.jpg', + index: 324, + left: 'images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_l.jpg', + right: 'images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_u.jpg', + }, + { + back: 'images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_b.jpg', + down: 'images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_d.jpg', + front: 'images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_f.jpg', + index: 325, + left: 'images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_l.jpg', + right: 'images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_u.jpg', + }, + { + back: 'images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_b.jpg', + down: 'images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_d.jpg', + front: 'images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_f.jpg', + index: 326, + left: 'images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_l.jpg', + right: 'images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_u.jpg', + }, + { + back: 'images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_b.jpg', + down: 'images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_d.jpg', + front: 'images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_f.jpg', + index: 327, + left: 'images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_l.jpg', + right: 'images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_u.jpg', + }, + { + back: 'images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_b.jpg', + down: 'images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_d.jpg', + front: 'images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_f.jpg', + index: 328, + left: 'images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_l.jpg', + right: 'images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_u.jpg', + }, + { + back: 'images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_b.jpg', + down: 'images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_d.jpg', + front: 'images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_f.jpg', + index: 329, + left: 'images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_l.jpg', + right: 'images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_u.jpg', + }, + { + back: 'images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_b.jpg', + down: 'images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_d.jpg', + front: 'images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_f.jpg', + index: 330, + left: 'images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_l.jpg', + right: 'images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_u.jpg', + }, + { + back: 'images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_b.jpg', + down: 'images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_d.jpg', + front: 'images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_f.jpg', + index: 331, + left: 'images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_l.jpg', + right: 'images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_u.jpg', + }, + { + back: 'images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_b.jpg', + down: 'images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_d.jpg', + front: 'images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_f.jpg', + index: 332, + left: 'images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_l.jpg', + right: 'images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_u.jpg', + }, + { + back: 'images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_b.jpg', + down: 'images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_d.jpg', + front: 'images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_f.jpg', + index: 333, + left: 'images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_l.jpg', + right: 'images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_u.jpg', + }, + { + back: 'images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_b.jpg', + down: 'images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_d.jpg', + front: 'images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_f.jpg', + index: 334, + left: 'images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_l.jpg', + right: 'images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_u.jpg', + }, + { + back: 'images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_b.jpg', + down: 'images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_d.jpg', + front: 'images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_f.jpg', + index: 335, + left: 'images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_l.jpg', + right: 'images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_u.jpg', + }, + { + back: 'images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_b.jpg', + down: 'images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_d.jpg', + front: 'images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_f.jpg', + index: 336, + left: 'images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_l.jpg', + right: 'images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_u.jpg', + }, + { + back: 'images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_b.jpg', + down: 'images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_d.jpg', + front: 'images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_f.jpg', + index: 337, + left: 'images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_l.jpg', + right: 'images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_u.jpg', + }, + { + back: 'images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_b.jpg', + down: 'images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_d.jpg', + front: 'images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_f.jpg', + index: 338, + left: 'images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_l.jpg', + right: 'images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_u.jpg', + }, + { + back: 'images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_b.jpg', + down: 'images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_d.jpg', + front: 'images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_f.jpg', + index: 339, + left: 'images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_l.jpg', + right: 'images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_u.jpg', + }, + { + back: 'images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_b.jpg', + down: 'images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_d.jpg', + front: 'images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_f.jpg', + index: 340, + left: 'images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_l.jpg', + right: 'images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_u.jpg', + }, + { + back: 'images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_b.jpg', + down: 'images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_d.jpg', + front: 'images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_f.jpg', + index: 341, + left: 'images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_l.jpg', + right: 'images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_u.jpg', + }, + { + back: 'images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_b.jpg', + down: 'images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_d.jpg', + front: 'images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_f.jpg', + index: 342, + left: 'images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_l.jpg', + right: 'images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_u.jpg', + }, + { + back: 'images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_b.jpg', + down: 'images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_d.jpg', + front: 'images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_f.jpg', + index: 343, + left: 'images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_l.jpg', + right: 'images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_u.jpg', + }, + { + back: 'images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_b.jpg', + down: 'images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_d.jpg', + front: 'images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_f.jpg', + index: 344, + left: 'images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_l.jpg', + right: 'images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_u.jpg', + }, + { + back: 'images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_b.jpg', + down: 'images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_d.jpg', + front: 'images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_f.jpg', + index: 345, + left: 'images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_l.jpg', + right: 'images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_u.jpg', + }, + { + back: 'images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_b.jpg', + down: 'images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_d.jpg', + front: 'images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_f.jpg', + index: 346, + left: 'images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_l.jpg', + right: 'images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_u.jpg', + }, + { + back: 'images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_b.jpg', + down: 'images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_d.jpg', + front: 'images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_f.jpg', + index: 347, + left: 'images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_l.jpg', + right: 'images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_u.jpg', + }, + { + back: 'images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_b.jpg', + down: 'images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_d.jpg', + front: 'images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_f.jpg', + index: 348, + left: 'images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_l.jpg', + right: 'images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_u.jpg', + }, + { + back: 'images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_b.jpg', + down: 'images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_d.jpg', + front: 'images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_f.jpg', + index: 349, + left: 'images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_l.jpg', + right: 'images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_u.jpg', + }, + { + back: 'images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_b.jpg', + down: 'images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_d.jpg', + front: 'images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_f.jpg', + index: 350, + left: 'images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_l.jpg', + right: 'images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_u.jpg', + }, + { + back: 'images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_b.jpg', + down: 'images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_d.jpg', + front: 'images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_f.jpg', + index: 351, + left: 'images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_l.jpg', + right: 'images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_u.jpg', + }, + { + back: 'images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_b.jpg', + down: 'images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_d.jpg', + front: 'images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_f.jpg', + index: 352, + left: 'images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_l.jpg', + right: 'images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_u.jpg', + }, + { + back: 'images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_b.jpg', + down: 'images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_d.jpg', + front: 'images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_f.jpg', + index: 353, + left: 'images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_l.jpg', + right: 'images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_u.jpg', + }, + { + back: 'images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_b.jpg', + down: 'images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_d.jpg', + front: 'images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_f.jpg', + index: 354, + left: 'images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_l.jpg', + right: 'images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_u.jpg', + }, + { + back: 'images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_b.jpg', + down: 'images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_d.jpg', + front: 'images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_f.jpg', + index: 355, + left: 'images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_l.jpg', + right: 'images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_u.jpg', + }, + { + back: 'images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_b.jpg', + down: 'images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_d.jpg', + front: 'images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_f.jpg', + index: 356, + left: 'images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_l.jpg', + right: 'images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_r.jpg', + tiles: [1, 2], + up: 'images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_u.jpg', + }, + ], + }, + picture_url: + 'https://vrlab-public.ljcdn.com/release/auto3dhd/d960cfe67765728069ada6808aef9f11/screenshot/1646065253_37/pc0_RX6G93B2N.jpg', + title_picture_url: + 'https://vrlab-public.ljcdn.com/release/auto3dhd/d960cfe67765728069ada6808aef9f11/screenshot/1646065253_37/pc1_Ne7LQmsmE.jpg', + vr_code: '80pWLy9ndnVL73Xqja', + vr_type: 'reality', +} diff --git a/open-works/real/pWLy9ndnVL73Xqja/work.json b/open-works/real/pWLy9ndnVL73Xqja/work.json new file mode 100644 index 000000000..070a8bd50 --- /dev/null +++ b/open-works/real/pWLy9ndnVL73Xqja/work.json @@ -0,0 +1,9088 @@ +{ + "_signature": "svW9tEM+5iLIgNDkKVefEEmHiMl3xm6AwFtwWakR6BSnccPFauRVgW4DRyxUA4DuP5a/pzSdG2lWj8rdAQqB5+7a7bLTpZZdJzVNuc85PwSn6CnUtDveuU2qRGQiekfkZLTjGAghNuHDJpsBag6iRNqmI4pLLcUfntDqFrZfv9w=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/d960cfe67765728069ada6808aef9f11/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2022-03-01T11:48:50+08:00", + "expire_at": "1964772839406", + "initial": { + "flag_position": [], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 5.063708532405466, + "pano": 37, + "pano_index": 37 + }, + "model": { + "file_url": "model/auto3d-ZezA6MzKPVtrLYV5WEaWsO.at3d", + "material_base_url": "materials/", + "material_textures": ["texture_0.jpg", "texture_1.jpg", "texture_2.jpg", "texture_3.jpg"], + "modify_time": "2022-03-04T21:13:20+08:00", + "type": 0 + }, + "observers": [ + { + "accessible_nodes": [1, 2], + "floor_index": 0, + "index": 0, + "offset_point_count": 0, + "position": [2.5211000442504883, 0.32936498522758484, -2.4205501079559326], + "quaternion": { + "w": -0.9996840901866689, + "x": 0.0007110896281145103, + "y": -0.008082277657160325, + "z": -0.023788300458560594 + }, + "standing_position": [2.5211000442504883, -0.7557325455457351, -2.4205501079559326], + "visible_nodes": [1, 2] + }, + { + "accessible_nodes": [0, 2], + "floor_index": 0, + "index": 1, + "offset_point_count": 0, + "position": [2.6212499141693115, 0.2935769855976105, -4.605199813842773], + "quaternion": { + "w": -0.05911632504458808, + "x": -0.003391470810747281, + "y": -0.9981591894926323, + "z": 0.013114194786470782 + }, + "standing_position": [2.6212499141693115, -0.8157660901982073, -4.605199813842773], + "visible_nodes": [0, 2] + }, + { + "accessible_nodes": [0, 1, 3, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228], + "floor_index": 0, + "index": 2, + "offset_point_count": 0, + "position": [2.363879919052124, 0.26175999641418457, -7.151939868927002], + "quaternion": { + "w": 0.5820637159095692, + "x": -0.003044567953394121, + "y": -0.8126598439341595, + "z": 0.02786682109002593 + }, + "standing_position": [2.363879919052124, -0.8582683112256941, -7.151939868927002], + "visible_nodes": [0, 1, 3, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228] + }, + { + "accessible_nodes": [2, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228], + "floor_index": 0, + "index": 3, + "offset_point_count": 0, + "position": [4.6568098068237305, 0.30282801389694214, -7.290619850158691], + "quaternion": { + "w": -0.6603931161096389, + "x": 0.002966806524305191, + "y": -0.7508885539141189, + "z": -0.006205334179446633 + }, + "standing_position": [4.6568098068237305, -0.8080939700580674, -7.290619850158691], + "visible_nodes": [2, 4, 5, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 44, 196, 197, 198, 200, 228] + }, + { + "accessible_nodes": [2, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 44, 197, 198, 228], + "floor_index": 0, + "index": 4, + "offset_point_count": 0, + "position": [-0.20135700702667236, 0.2182539999485016, -7.286479949951172], + "quaternion": { + "w": 0.6128818714443386, + "x": 0.00684902247102703, + "y": -0.7899590111009973, + "z": 0.017136135771584116 + }, + "standing_position": [-0.20135700702667236, -0.884501447166846, -7.286479949951172], + "visible_nodes": [2, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 44, 197, 198, 228] + }, + { + "accessible_nodes": [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 41, 44, 197, 198, 228], + "floor_index": 0, + "index": 5, + "offset_point_count": 0, + "position": [-2.765350103378296, 0.17440199851989746, -7.142199993133545], + "quaternion": { + "w": -0.9882881480944993, + "x": 0.0005217426714413645, + "y": 0.1519022656000329, + "z": -0.014559057073984636 + }, + "standing_position": [-2.765350103378296, -0.9169800348699952, -7.142199993133545], + "visible_nodes": [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 41, 44, 197, 198, 228] + }, + { + "accessible_nodes": [5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 20], + "floor_index": 0, + "index": 6, + "offset_point_count": 0, + "position": [-3.431999921798706, 0.16247199475765228, -5.087100028991699], + "quaternion": { + "w": -0.871699238223922, + "x": 0.0081685648427902, + "y": -0.48994744575914023, + "z": -0.005021606606297075 + }, + "standing_position": [-3.431999921798706, -0.926465339387192, -5.087100028991699], + "visible_nodes": [5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 20] + }, + { + "accessible_nodes": [5, 6, 8, 9, 10, 11, 12, 13, 14, 17, 18], + "floor_index": 0, + "index": 7, + "offset_point_count": 0, + "position": [-3.1944899559020996, 0.18850299715995789, -3.0864200592041016], + "quaternion": { + "w": -0.7764472126307502, + "x": 0.007305573413062671, + "y": -0.6300954977148543, + "z": -0.007483640474392808 + }, + "standing_position": [-3.1944899559020996, -0.9239113586033263, -3.0864200592041016], + "visible_nodes": [5, 6, 8, 9, 10, 11, 12, 13, 14, 17, 18] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + "floor_index": 0, + "index": 8, + "offset_point_count": 0, + "position": [-5.324570178985596, 0.12925900518894196, -7.149740219116211], + "quaternion": { + "w": -0.9870550139916311, + "x": -0.0063361559165583115, + "y": 0.16004858819514972, + "z": -0.008166083906280984 + }, + "standing_position": [-5.324570178985596, -0.9941754326156069, -7.149740219116211], + "visible_nodes": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + "floor_index": 0, + "index": 9, + "offset_point_count": 0, + "position": [-10.143600463867188, 0.041226498782634735, -7.327889919281006], + "quaternion": { + "w": 0.0014088812023064152, + "x": 0.012816344808460927, + "y": -0.9998905673350189, + "z": -0.007253490437518057 + }, + "standing_position": [-10.143600463867188, -1.0589639034839358, -7.327889919281006], + "visible_nodes": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + "floor_index": 0, + "index": 10, + "offset_point_count": 0, + "position": [-7.5958099365234375, 0.07031860202550888, -7.277530193328857], + "quaternion": { + "w": -0.2945989511106753, + "x": 0.014886008801634019, + "y": -0.9554692970954283, + "z": -0.008263280810655242 + }, + "standing_position": [-7.5958099365234375, -1.0214655959485515, -7.277530193328857], + "visible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198], + "floor_index": 0, + "index": 11, + "offset_point_count": 0, + "position": [-13.419099807739258, 0.003226940054446459, -7.40024995803833], + "quaternion": { + "w": 0.6409085374553819, + "x": 0.002939973309626017, + "y": -0.7675844633893883, + "z": -0.006455859686279061 + }, + "standing_position": [-13.419099807739258, -1.1019126985354981, -7.40024995803833], + "visible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197, 198] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197], + "floor_index": 0, + "index": 12, + "offset_point_count": 0, + "position": [-16.086200714111328, -0.021425800397992134, -6.919670104980469], + "quaternion": { + "w": -0.9998182638252224, + "x": 0.010872124286063899, + "y": 0.015563051624776695, + "z": 0.0017421700415297396 + }, + "standing_position": [-16.086200714111328, -1.1376782898952922, -6.919670104980469], + "visible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 39, 41, 44, 197] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 196, 228], + "floor_index": 0, + "index": 13, + "offset_point_count": 0, + "position": [-16.461200714111328, -0.023189200088381767, -4.196010112762451], + "quaternion": { + "w": -0.9987316283397111, + "x": 0.009931043838475612, + "y": -0.04935708977578974, + "z": 0.0006141935043559611 + }, + "standing_position": [-16.461200714111328, -1.1308967011703586, -4.196010112762451], + "visible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 196, 228] + }, + { + "accessible_nodes": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 18], + "floor_index": 0, + "index": 14, + "offset_point_count": 0, + "position": [-9.603179931640625, 0.06018330156803131, -4.094009876251221], + "quaternion": { + "w": -0.6963823270610163, + "x": 0.015245978297918163, + "y": -0.7174825010586324, + "z": -0.006171615697752225 + }, + "standing_position": [-9.603179931640625, -1.029843130181187, -4.094009876251221], + "visible_nodes": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 18] + }, + { + "accessible_nodes": [2, 3, 4, 5, 8, 9, 10, 11, 12, 16, 17, 18, 44, 196, 197, 198, 200, 202, 227, 228, 229], + "floor_index": 0, + "index": 15, + "offset_point_count": 0, + "position": [7.17756986618042, 0.38410699367523193, -7.284840106964111], + "quaternion": { + "w": -0.9974709209467633, + "x": 0.013766044533879376, + "y": 0.06043234723616722, + "z": -0.03478774879477381 + }, + "standing_position": [7.17756986618042, -0.7909981482105148, -7.284840106964111], + "visible_nodes": [2, 3, 4, 5, 8, 9, 10, 11, 12, 16, 17, 18, 44, 196, 197, 198, 200, 202, 227, 228, 229] + }, + { + "accessible_nodes": [15, 44, 45, 194, 195, 196, 197, 198, 218, 220, 227, 228, 244], + "floor_index": 0, + "index": 16, + "offset_point_count": 0, + "position": [8.005229949951172, 0.5369309782981873, -9.126709938049316], + "quaternion": { + "w": 0.042117944926709325, + "x": -0.0071434473796623404, + "y": -0.9990591898586789, + "z": 0.007468376269649205 + }, + "standing_position": [8.005229949951172, -0.5333844878944698, -9.126709938049316], + "visible_nodes": [15, 44, 45, 194, 195, 196, 197, 198, 218, 220, 227, 228, 244] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 20, 21, 39, 41, 44], + "floor_index": 0, + "index": 17, + "offset_point_count": 0, + "position": [-19.16010093688965, 0.0008819139911793172, -7.34119987487793], + "quaternion": { + "w": -0.9992278366331874, + "x": 0.005721918601713572, + "y": 0.034681779151182396, + "z": -0.017554556536331256 + }, + "standing_position": [-19.16010093688965, -1.1629165482678627, -7.34119987487793], + "visible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 20, 21, 39, 41, 44] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 57], + "floor_index": 0, + "index": 18, + "offset_point_count": 0, + "position": [-22.220500946044922, -0.02232230082154274, -7.520020008087158], + "quaternion": { + "w": 0.5684004773425013, + "x": -0.016562602996508594, + "y": -0.8224723356748478, + "z": 0.013631686342122803 + }, + "standing_position": [-22.220500946044922, -1.0760261068814592, -7.520020008087158], + "visible_nodes": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 57] + }, + { + "accessible_nodes": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 42, 57], + "floor_index": 0, + "index": 19, + "offset_point_count": 0, + "position": [-25.270299911499023, -0.03033529967069626, -7.523970127105713], + "quaternion": { + "w": 0.7687776246251773, + "x": -0.016539749842883294, + "y": -0.6390927325095079, + "z": 0.01636757069869073 + }, + "standing_position": [-25.270299911499023, -1.1377147481291339, -7.523970127105713], + "visible_nodes": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 39, 41, 42, 57] + }, + { + "accessible_nodes": [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 21, 39, 41], + "floor_index": 0, + "index": 20, + "offset_point_count": 0, + "position": [-28.125600814819336, -0.05325939878821373, -6.872809886932373], + "quaternion": { + "w": -0.8962489132628509, + "x": 0.011743496109203909, + "y": 0.44291266007545527, + "z": -0.020696310225151688 + }, + "standing_position": [-28.125600814819336, -1.1811844663915365, -6.872809886932373], + "visible_nodes": [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 21, 39, 41] + }, + { + "accessible_nodes": [17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 42, 57], + "floor_index": 0, + "index": 21, + "offset_point_count": 0, + "position": [-24.399099349975586, -0.05689509958028793, -10.167499542236328], + "quaternion": { + "w": -0.9853683863433248, + "x": 0.013981146607410688, + "y": -0.16939866403772036, + "z": -0.012560563801201772 + }, + "standing_position": [-24.399099349975586, -1.163166767929582, -10.167499542236328], + "visible_nodes": [17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 42, 57] + }, + { + "accessible_nodes": [18, 19, 21, 23, 24, 25, 26, 27, 28, 42, 57], + "floor_index": 0, + "index": 22, + "offset_point_count": 0, + "position": [-24.47089958190918, -0.05579749867320061, -13.20259952545166], + "quaternion": { + "w": -0.6252542826024352, + "x": 0.00843521529747196, + "y": -0.7802426209171116, + "z": -0.01440097842825415 + }, + "standing_position": [-24.47089958190918, -1.1374054573393009, -13.20259952545166], + "visible_nodes": [18, 19, 21, 23, 24, 25, 26, 27, 28, 42, 57] + }, + { + "accessible_nodes": [18, 19, 21, 22, 24, 25, 26, 27, 28, 42, 43, 57, 94], + "floor_index": 0, + "index": 23, + "offset_point_count": 0, + "position": [-24.624799728393555, -0.0716560035943985, -16.282499313354492], + "quaternion": { + "w": -0.6604117501772465, + "x": 0.010825078133657661, + "y": -0.7507028117969727, + "z": -0.013579511709173946 + }, + "standing_position": [-24.624799728393555, -1.1913567100763498, -16.282499313354492], + "visible_nodes": [18, 19, 21, 22, 24, 25, 26, 27, 28, 42, 43, 57, 94] + }, + { + "accessible_nodes": [18, 19, 21, 22, 23, 25, 26, 27, 28, 42, 43, 57, 58, 93, 94, 100, 101, 102], + "floor_index": 0, + "index": 24, + "offset_point_count": 0, + "position": [-24.56170082092285, -0.08116070181131363, -18.972700119018555], + "quaternion": { + "w": 0.10406122969258114, + "x": -0.0013779937973372018, + "y": -0.9944820230052143, + "z": -0.013223769406192817 + }, + "standing_position": [-24.56170082092285, -1.1416871101609414, -18.972700119018555], + "visible_nodes": [18, 19, 21, 22, 23, 25, 26, 27, 28, 42, 43, 57, 58, 93, 94, 100, 101, 102] + }, + { + "accessible_nodes": [18, 19, 21, 22, 23, 24, 26, 27, 28, 42, 43, 57], + "floor_index": 0, + "index": 25, + "offset_point_count": 0, + "position": [-21.87150001525879, 0.49208199977874756, -18.50349998474121], + "quaternion": { + "w": -0.1540932441315679, + "x": 0.0004956194895935238, + "y": -0.9880513689064567, + "z": -0.003087786268695191 + }, + "standing_position": [-21.87150001525879, -1.0854931378794885, -18.50349998474121], + "visible_nodes": [18, 19, 21, 22, 23, 24, 26, 27, 28, 42, 43, 57] + }, + { + "accessible_nodes": [ + 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184 + ], + "floor_index": 0, + "index": 26, + "offset_point_count": 0, + "position": [-24.484600067138672, -0.07824160158634186, -23.71419906616211], + "quaternion": { + "w": -0.9977434596671982, + "x": 0.012482438442325142, + "y": 0.06594631828993, + "z": 0.0018048754269206072 + }, + "standing_position": [-24.484600067138672, -1.1992072656526898, -23.71419906616211], + "visible_nodes": [ + 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184 + ] + }, + { + "accessible_nodes": [ + 18, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 183, 184 + ], + "floor_index": 0, + "index": 27, + "offset_point_count": 0, + "position": [-26.86910057067871, -0.06642650067806244, -24.388399124145508], + "quaternion": { + "w": -0.9796383749586788, + "x": 0.014646987874756644, + "y": 0.20023492146321709, + "z": -0.0003254370027985956 + }, + "standing_position": [-26.86910057067871, -1.1712418510528386, -24.388399124145508], + "visible_nodes": [18, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 42, 43, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 181, 183, 184] + }, + { + "accessible_nodes": [18, 19, 21, 22, 23, 24, 25, 26, 27, 42, 43, 57, 58, 59, 93, 96, 98, 100, 122], + "floor_index": 0, + "index": 28, + "offset_point_count": 0, + "position": [-24.652299880981445, -0.09265519678592682, -21.359100341796875], + "quaternion": { + "w": -0.9750518329609784, + "x": 0.012906878293395475, + "y": -0.22143906866925764, + "z": -0.008489394055080148 + }, + "standing_position": [-24.652299880981445, -1.1387854093809633, -21.359100341796875], + "visible_nodes": [18, 19, 21, 22, 23, 24, 25, 26, 27, 42, 43, 57, 58, 59, 93, 96, 98, 100, 122] + }, + { + "accessible_nodes": [26, 27, 30, 31, 57, 58, 59, 73, 93, 96, 97, 98, 122, 123, 127, 154, 156, 179], + "floor_index": 0, + "index": 29, + "offset_point_count": 0, + "position": [-33.950401306152344, -0.04713340103626251, -25.054800033569336], + "quaternion": { + "w": -0.9267270049912705, + "x": 0.012464608553873413, + "y": 0.37550356154341324, + "z": 0.00433166317963048 + }, + "standing_position": [-33.950401306152344, -1.1639716644140825, -25.054800033569336], + "visible_nodes": [26, 27, 30, 31, 57, 58, 59, 73, 93, 96, 97, 98, 122, 123, 127, 154, 156, 179] + }, + { + "accessible_nodes": [26, 27, 29, 31, 32, 33, 35, 36, 37, 38, 39, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 184], + "floor_index": 0, + "index": 30, + "offset_point_count": 0, + "position": [-30.582000732421875, -0.04270369932055473, -24.606000900268555], + "quaternion": { + "w": -0.774078827043313, + "x": -0.017185088835463283, + "y": -0.6326962587948062, + "z": -0.014214691083901053 + }, + "standing_position": [-30.582000732421875, -1.1559775591297574, -24.606000900268555], + "visible_nodes": [26, 27, 29, 31, 32, 33, 35, 36, 37, 38, 39, 57, 58, 59, 73, 93, 96, 97, 98, 122, 179, 180, 184] + }, + { + "accessible_nodes": [29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 122, 123, 128, 129], + "floor_index": 0, + "index": 31, + "offset_point_count": 0, + "position": [-30.885499954223633, -0.05347850173711777, -21.681699752807617], + "quaternion": { + "w": -0.911040780835899, + "x": -0.013163675000850078, + "y": -0.41187102017515426, + "z": -0.013916877807366638 + }, + "standing_position": [-30.885499954223633, -1.182390322141796, -21.681699752807617], + "visible_nodes": [29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 122, 123, 128, 129] + }, + { + "accessible_nodes": [30, 31, 33, 34, 122, 123, 128, 129], + "floor_index": 0, + "index": 32, + "offset_point_count": 0, + "position": [-30.277000427246094, -0.057327400892972946, -19.899900436401367], + "quaternion": { + "w": -0.4625641830448888, + "x": -0.020711227002609942, + "y": -0.8862926030511755, + "z": -0.009530575840234106 + }, + "standing_position": [-30.277000427246094, -1.171624846759159, -19.899900436401367], + "visible_nodes": [30, 31, 33, 34, 122, 123, 128, 129] + }, + { + "accessible_nodes": [30, 31, 32, 34, 35, 36, 37, 38, 39, 40], + "floor_index": 0, + "index": 33, + "offset_point_count": 0, + "position": [-31.852100372314453, -0.06544409692287445, -19.708099365234375], + "quaternion": { + "w": 0.28786093291942744, + "x": -0.027366918835993036, + "y": -0.9572582909774684, + "z": 0.006610837955855242 + }, + "standing_position": [-31.852100372314453, -1.1698404328992513, -19.708099365234375], + "visible_nodes": [30, 31, 32, 34, 35, 36, 37, 38, 39, 40] + }, + { + "accessible_nodes": [31, 32, 33, 35, 36, 40], + "floor_index": 0, + "index": 34, + "offset_point_count": 0, + "position": [-33.72570037841797, -0.04280180111527443, -18.99679946899414], + "quaternion": { + "w": -0.9830623457721339, + "x": 0.008018593059626471, + "y": 0.182072751822696, + "z": -0.019330012154352202 + }, + "standing_position": [-33.72570037841797, -1.1128367830146473, -18.99679946899414], + "visible_nodes": [31, 32, 33, 35, 36, 40] + }, + { + "accessible_nodes": [30, 31, 33, 34, 36, 37, 38, 39, 40], + "floor_index": 0, + "index": 35, + "offset_point_count": 0, + "position": [-32.666500091552734, -0.043738700449466705, -16.30389976501465], + "quaternion": { + "w": -0.7595869822464034, + "x": -0.016985091919594995, + "y": -0.6500172502722911, + "z": -0.01472045859848935 + }, + "standing_position": [-32.666500091552734, -1.164470068741938, -16.30389976501465], + "visible_nodes": [30, 31, 33, 34, 36, 37, 38, 39, 40] + }, + { + "accessible_nodes": [30, 31, 33, 34, 35, 37, 38, 39], + "floor_index": 0, + "index": 36, + "offset_point_count": 0, + "position": [-32.6775016784668, -0.03678689897060394, -14.005900382995605], + "quaternion": { + "w": -0.8516629039919913, + "x": -0.002871854961069845, + "y": -0.5236933709100163, + "z": -0.020181133586138295 + }, + "standing_position": [-32.6775016784668, -1.1259208730956487, -14.005900382995605], + "visible_nodes": [30, 31, 33, 34, 35, 37, 38, 39] + }, + { + "accessible_nodes": [30, 31, 33, 35, 36, 38, 39], + "floor_index": 0, + "index": 37, + "offset_point_count": 0, + "position": [-32.70920181274414, -0.015910500660538673, -11.284099578857422], + "quaternion": { + "w": -0.8208762211241026, + "x": -0.010164426878205225, + "y": -0.5705170395263975, + "z": -0.023857674067213026 + }, + "standing_position": [-32.70920181274414, -1.114472484913651, -11.284099578857422], + "visible_nodes": [30, 31, 33, 35, 36, 38, 39] + }, + { + "accessible_nodes": [30, 31, 33, 35, 36, 37, 39, 41], + "floor_index": 0, + "index": 38, + "offset_point_count": 0, + "position": [-33.125999450683594, -0.023238100111484528, -8.896349906921387], + "quaternion": { + "w": -0.9672241576832605, + "x": -0.0027990871518079902, + "y": -0.25316348104817393, + "z": -0.01943839567686986 + }, + "standing_position": [-33.125999450683594, -1.1342414982109186, -8.896349906921387], + "visible_nodes": [30, 31, 33, 35, 36, 37, 39, 41] + }, + { + "accessible_nodes": [8, 9, 10, 11, 12, 17, 18, 19, 20, 30, 31, 33, 35, 36, 37, 38, 41], + "floor_index": 0, + "index": 39, + "offset_point_count": 0, + "position": [-33.20920181274414, -0.030290400609374046, -6.815999984741211], + "quaternion": { + "w": -0.8209727060314068, + "x": -0.014426495321726735, + "y": -0.5705266576551742, + "z": -0.01717611510752576 + }, + "standing_position": [-33.20920181274414, -1.1046777795087084, -6.815999984741211], + "visible_nodes": [8, 9, 10, 11, 12, 17, 18, 19, 20, 30, 31, 33, 35, 36, 37, 38, 41] + }, + { + "accessible_nodes": [31, 33, 34, 35], + "floor_index": 0, + "index": 40, + "offset_point_count": 0, + "position": [-34.96609878540039, -0.020185500383377075, -15.787699699401855], + "quaternion": { + "w": -0.9472368766905547, + "x": -0.007949047234401938, + "y": -0.31972445196783095, + "z": -0.02133998844142693 + }, + "standing_position": [-34.96609878540039, -0.9867782994210328, -15.787699699401855], + "visible_nodes": [31, 33, 34, 35] + }, + { + "accessible_nodes": [5, 8, 9, 10, 11, 12, 17, 18, 19, 20, 38, 39], + "floor_index": 0, + "index": 41, + "offset_point_count": 0, + "position": [-30.371999740600586, -0.03533700108528137, -6.709229946136475], + "quaternion": { + "w": 0.11469446254497373, + "x": -0.02573872499203904, + "y": -0.9930670736811233, + "z": 0.0006983637488723239 + }, + "standing_position": [-30.371999740600586, -1.1628593247487784, -6.709229946136475], + "visible_nodes": [5, 8, 9, 10, 11, 12, 17, 18, 19, 20, 38, 39] + }, + { + "accessible_nodes": [19, 21, 22, 23, 24, 25, 26, 27, 28, 43, 57], + "floor_index": 0, + "index": 42, + "offset_point_count": 0, + "position": [-20.669599533081055, -0.05669109895825386, -17.149700164794922], + "quaternion": { + "w": 0.007807180464564875, + "x": -0.023671809216321064, + "y": -0.9996891656225555, + "z": 0.0005205735891284421 + }, + "standing_position": [-20.669599533081055, -0.7839071606977532, -17.149700164794922], + "visible_nodes": [19, 21, 22, 23, 24, 25, 26, 27, 28, 43, 57] + }, + { + "accessible_nodes": [23, 24, 25, 26, 27, 28, 42], + "floor_index": 0, + "index": 43, + "offset_point_count": 0, + "position": [-19.307899475097656, -0.04518419876694679, -16.841299057006836], + "quaternion": { + "w": -0.6037161040970033, + "x": -0.01139642241884968, + "y": -0.7968903007160356, + "z": -0.019048413287495822 + }, + "standing_position": [-19.307899475097656, -1.15733918507121, -16.841299057006836], + "visible_nodes": [23, 24, 25, 26, 27, 28, 42] + }, + { + "accessible_nodes": [2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 17, 45, 46, 47, 49, 196, 197, 198, 200, 201, 217, 222, 227, 228, 229], + "floor_index": 0, + "index": 44, + "offset_point_count": 0, + "position": [9.838330268859863, 0.06724859774112701, -6.620840072631836], + "quaternion": { + "w": -0.20107560083436857, + "x": 0.0032560408700206952, + "y": -0.9795643940531672, + "z": 0.003406664074605581 + }, + "standing_position": [9.838330268859863, -0.7234170389002692, -6.620840072631836], + "visible_nodes": [2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 17, 45, 46, 47, 49, 196, 197, 198, 200, 201, 217, 222, 227, 228, 229] + }, + { + "accessible_nodes": [16, 44, 46, 47, 48, 49, 55, 194, 195, 196, 217, 222], + "floor_index": 0, + "index": 45, + "offset_point_count": 0, + "position": [9.605790138244629, 0.5371410250663757, -4.555019855499268], + "quaternion": { + "w": -0.7771061551166447, + "x": 0.010404684968113202, + "y": -0.6292177459579956, + "z": 0.00909859508776367 + }, + "standing_position": [9.605790138244629, -0.6546412835369171, -4.555019855499268], + "visible_nodes": [16, 44, 46, 47, 48, 49, 55, 194, 195, 196, 217, 222] + }, + { + "accessible_nodes": [44, 45, 47, 48, 49, 51, 53, 54, 194, 195, 196, 220], + "floor_index": 0, + "index": 46, + "offset_point_count": 0, + "position": [9.458720207214355, 0.5834550261497498, -2.6840100288391113], + "quaternion": { + "w": -0.8228815722925072, + "x": 0.00784737146911279, + "y": -0.5680725645558118, + "z": 0.009894524032351769 + }, + "standing_position": [9.458720207214355, -0.5998071270598095, -2.6840100288391113], + "visible_nodes": [44, 45, 47, 48, 49, 51, 53, 54, 194, 195, 196, 220] + }, + { + "accessible_nodes": [44, 45, 46, 48, 196, 227], + "floor_index": 0, + "index": 47, + "offset_point_count": 0, + "position": [7.868249893188477, 0.18488000333309174, -2.7652499675750732], + "quaternion": { + "w": -0.986797092858421, + "x": 0.006100389175196083, + "y": 0.16164572237151095, + "z": -0.008058850328675518 + }, + "standing_position": [7.868249893188477, -0.6081449267641551, -2.7652499675750732], + "visible_nodes": [44, 45, 46, 48, 196, 227] + }, + { + "accessible_nodes": [45, 46, 47, 49, 54, 228], + "floor_index": 0, + "index": 48, + "offset_point_count": 0, + "position": [8.062419891357422, 0.13726000487804413, -4.776340007781982], + "quaternion": { + "w": 0.8152504223020445, + "x": -0.004212767308860337, + "y": -0.5789310789768365, + "z": 0.01370469991964785 + }, + "standing_position": [8.062419891357422, -0.9398455223469229, -4.776340007781982], + "visible_nodes": [45, 46, 47, 49, 54, 228] + }, + { + "accessible_nodes": [44, 45, 46, 48, 50, 52, 53, 54, 194, 195, 196, 220], + "floor_index": 0, + "index": 49, + "offset_point_count": 0, + "position": [9.652179718017578, 0.25293898582458496, -1.4113399982452393], + "quaternion": { + "w": -0.783595484158393, + "x": 0.01770769668525303, + "y": -0.6210070945460036, + "z": 0.0038431996710834504 + }, + "standing_position": [9.652179718017578, -0.826560182589537, -1.4113399982452393], + "visible_nodes": [44, 45, 46, 48, 50, 52, 53, 54, 194, 195, 196, 220] + }, + { + "accessible_nodes": [49, 51, 52, 53], + "floor_index": 0, + "index": 50, + "offset_point_count": 0, + "position": [7.881229877471924, 0.2141450047492981, -1.5216399431228638], + "quaternion": { + "w": -0.9990009667040565, + "x": 0.01196017789531194, + "y": -0.04285363597757108, + "z": -0.004194952493180016 + }, + "standing_position": [7.881229877471924, -0.9094034666200732, -1.5216399431228638], + "visible_nodes": [49, 51, 52, 53] + }, + { + "accessible_nodes": [46, 50, 52], + "floor_index": 0, + "index": 51, + "offset_point_count": 0, + "position": [8.10453987121582, 0.2686559855937958, 0.6270449757575989], + "quaternion": { + "w": -0.8034424770101788, + "x": 0.010345796600936555, + "y": -0.5952784853952199, + "z": 0.004080148379738131 + }, + "standing_position": [8.10453987121582, -0.8421257394323558, 0.6270449757575989], + "visible_nodes": [46, 50, 52] + }, + { + "accessible_nodes": [49, 50, 51, 53], + "floor_index": 0, + "index": 52, + "offset_point_count": 0, + "position": [5.995500087738037, 0.17347200214862823, -1.6261999607086182], + "quaternion": { + "w": -0.9942355682063257, + "x": 0.004273882128878037, + "y": 0.10702769565768316, + "z": -0.004738956996114532 + }, + "standing_position": [5.995500087738037, -0.9117190832270421, -1.6261999607086182], + "visible_nodes": [49, 50, 51, 53] + }, + { + "accessible_nodes": [46, 49, 50, 52, 54, 55, 56], + "floor_index": 0, + "index": 53, + "offset_point_count": 0, + "position": [11.434300422668457, 0.2880080044269562, -1.301990032196045], + "quaternion": { + "w": -0.31903944682263297, + "x": 0.009496898992792735, + "y": -0.947544316460728, + "z": 0.01683443395763136 + }, + "standing_position": [11.434300422668457, -0.8327309371988469, -1.301990032196045], + "visible_nodes": [46, 49, 50, 52, 54, 55, 56] + }, + { + "accessible_nodes": [46, 48, 49, 53, 55, 56], + "floor_index": 0, + "index": 54, + "offset_point_count": 0, + "position": [11.454099655151367, 0.3272959887981415, -0.06534100323915482], + "quaternion": { + "w": -0.9696052221809107, + "x": 0.010439195281148148, + "y": -0.24445184089564465, + "z": -0.00017262872874756902 + }, + "standing_position": [11.454099655151367, -0.7917593585388885, -0.06534100323915482], + "visible_nodes": [46, 48, 49, 53, 55, 56] + }, + { + "accessible_nodes": [45, 53, 54, 56, 217], + "floor_index": 0, + "index": 55, + "offset_point_count": 0, + "position": [11.055100440979004, 0.36573100090026855, 1.457759976387024], + "quaternion": { + "w": -0.873850177662266, + "x": 0.008550732558735154, + "y": -0.4859575897819657, + "z": 0.012568479883123545 + }, + "standing_position": [11.055100440979004, -0.7542006401190977, 1.457759976387024], + "visible_nodes": [45, 53, 54, 56, 217] + }, + { + "accessible_nodes": [53, 54, 55], + "floor_index": 0, + "index": 56, + "offset_point_count": 0, + "position": [9.8748197555542, 0.3534330129623413, 1.6276500225067139], + "quaternion": { + "w": -0.9923422985519776, + "x": 0.001974458012119694, + "y": 0.12350125988746696, + "z": -0.0005519266582514403 + }, + "standing_position": [9.8748197555542, -0.7435369665981464, 1.6276500225067139], + "visible_nodes": [53, 54, 55] + }, + { + "accessible_nodes": [ + 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 42, 58, 59, 60, 73, 93, 96, 97, 98, 100, 102, 122, 179, 180, 181, 182, 183, 184 + ], + "floor_index": 0, + "index": 57, + "offset_point_count": 0, + "position": [-21.6648006439209, -0.06977149844169617, -24.45009994506836], + "quaternion": { + "w": -0.999797644108776, + "x": 0.008714512895598292, + "y": -0.017082257753724593, + "z": -0.006075826141288069 + }, + "standing_position": [-21.6648006439209, -1.1989342921140778, -24.45009994506836], + "visible_nodes": [ + 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 42, 58, 59, 60, 73, 93, 96, 97, 98, 100, 102, 122, 179, 180, 181, 182, 183, 184 + ] + }, + { + "accessible_nodes": [ + 24, 26, 27, 28, 29, 30, 57, 59, 60, 63, 73, 74, 76, 93, 94, 95, 96, 97, 98, 100, 101, 102, 122, 179, 180, 181, 182, 183, 184 + ], + "floor_index": 0, + "index": 58, + "offset_point_count": 0, + "position": [-18.591999053955078, 0.10805600136518478, -24.955699920654297], + "quaternion": { + "w": -0.9121214561560846, + "x": 0.011095311270178638, + "y": -0.4096841562582385, + "z": -0.008380498863452952 + }, + "standing_position": [-18.591999053955078, -1.038726226905007, -24.955699920654297], + "visible_nodes": [ + 24, 26, 27, 28, 29, 30, 57, 59, 60, 63, 73, 74, 76, 93, 94, 95, 96, 97, 98, 100, 101, 102, 122, 179, 180, 181, 182, 183, 184 + ] + }, + { + "accessible_nodes": [ + 26, 27, 28, 29, 30, 57, 58, 60, 61, 73, 74, 75, 76, 77, 84, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 122, 179, 180, 181, 182, + 183, 184 + ], + "floor_index": 0, + "index": 59, + "offset_point_count": 0, + "position": [-15.395400047302246, 0.09665480256080627, -24.766199111938477], + "quaternion": { + "w": -0.05978093720059805, + "x": 0.003551000083202487, + "y": -0.9980733461098232, + "z": -0.016224286192204024 + }, + "standing_position": [-15.395400047302246, -1.0053250018545319, -24.766199111938477], + "visible_nodes": [ + 26, 27, 28, 29, 30, 57, 58, 60, 61, 73, 74, 75, 76, 77, 84, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 122, 179, 180, 181, 182, + 183, 184 + ] + }, + { + "accessible_nodes": [57, 58, 59, 61, 63, 74, 75, 76, 84, 93, 94, 95, 96, 98, 100, 101, 102, 103, 122], + "floor_index": 0, + "index": 60, + "offset_point_count": 0, + "position": [-16.492900848388672, 0.11654700338840485, -22.240400314331055], + "quaternion": { + "w": -0.8547171756247894, + "x": 0.011381969176177207, + "y": -0.5189080839116083, + "z": -0.007961367496293168 + }, + "standing_position": [-16.492900848388672, -1.0238389718730736, -22.240400314331055], + "visible_nodes": [57, 58, 59, 61, 63, 74, 75, 76, 84, 93, 94, 95, 96, 98, 100, 101, 102, 103, 122] + }, + { + "accessible_nodes": [59, 60, 62, 65, 66, 69, 74, 75, 76, 77, 84, 93, 94, 95, 100, 101, 103], + "floor_index": 0, + "index": 61, + "offset_point_count": 0, + "position": [-16.319799423217773, -0.048261601477861404, -19.521699905395508], + "quaternion": { + "w": -0.9626895470194063, + "x": 0.01473110155529307, + "y": -0.2697786160734875, + "z": -0.015209321590096614 + }, + "standing_position": [-16.319799423217773, -1.1690026024222473, -19.521699905395508], + "visible_nodes": [59, 60, 62, 65, 66, 69, 74, 75, 76, 77, 84, 93, 94, 95, 100, 101, 103] + }, + { + "accessible_nodes": [61, 63, 64, 65, 66, 68], + "floor_index": 0, + "index": 62, + "offset_point_count": 0, + "position": [-14.389100074768066, -0.04286180064082146, -19.225500106811523], + "quaternion": { + "w": -0.07847029729891515, + "x": -0.0026232646962242646, + "y": -0.9968838120313189, + "z": -0.007628372303661756 + }, + "standing_position": [-14.389100074768066, -1.151268525629739, -19.225500106811523], + "visible_nodes": [61, 63, 64, 65, 66, 68] + }, + { + "accessible_nodes": [58, 60, 62, 64], + "floor_index": 0, + "index": 63, + "offset_point_count": 0, + "position": [-14.47130012512207, -0.0193473007529974, -17.301599502563477], + "quaternion": { + "w": -0.7853204337045827, + "x": 0.012353025464309882, + "y": -0.6189375433008378, + "z": -0.005959974276880735 + }, + "standing_position": [-14.47130012512207, -1.1520224884957635, -17.301599502563477], + "visible_nodes": [58, 60, 62, 64] + }, + { + "accessible_nodes": [62, 63, 65, 67], + "floor_index": 0, + "index": 64, + "offset_point_count": 0, + "position": [-13.859600067138672, -0.05290419980883598, -21.114599227905273], + "quaternion": { + "w": 0.5794188694538912, + "x": -0.012344535681208496, + "y": -0.814935376766109, + "z": -0.0013080782843365745 + }, + "standing_position": [-13.859600067138672, -1.1762209996094588, -21.114599227905273], + "visible_nodes": [62, 63, 65, 67] + }, + { + "accessible_nodes": [61, 62, 64, 66, 67], + "floor_index": 0, + "index": 65, + "offset_point_count": 0, + "position": [-12.149800300598145, 0.07563000172376633, -19.281999588012695], + "quaternion": { + "w": -0.09141913922465572, + "x": 0.002779919011852144, + "y": -0.995773645465042, + "z": -0.00834617770103973 + }, + "standing_position": [-12.149800300598145, -1.0785085204682634, -19.281999588012695], + "visible_nodes": [61, 62, 64, 66, 67] + }, + { + "accessible_nodes": [61, 62, 65, 96, 97, 98, 99, 100, 102, 103, 104], + "floor_index": 0, + "index": 66, + "offset_point_count": 0, + "position": [-10.278800010681152, 0.07515519857406616, -19.915300369262695], + "quaternion": { + "w": -0.016456989358306817, + "x": 0.0034753054488724632, + "y": -0.9998584214958415, + "z": 0.0004765429822485858 + }, + "standing_position": [-10.278800010681152, -1.0503113745798092, -19.915300369262695], + "visible_nodes": [61, 62, 65, 96, 97, 98, 99, 100, 102, 103, 104] + }, + { + "accessible_nodes": [64, 65, 68, 69, 70, 97], + "floor_index": 0, + "index": 67, + "offset_point_count": 0, + "position": [-12.412099838256836, 0.09150580316781998, -17.182100296020508], + "quaternion": { + "w": -0.7906358959586033, + "x": 0.007955253312814136, + "y": -0.6121215972459163, + "z": 0.011778536262369245 + }, + "standing_position": [-12.412099838256836, -1.0057115022596586, -17.182100296020508], + "visible_nodes": [64, 65, 68, 69, 70, 97] + }, + { + "accessible_nodes": [62, 67, 69, 70], + "floor_index": 0, + "index": 68, + "offset_point_count": 0, + "position": [-10.062199592590332, 0.029577499255537987, -16.93869972229004], + "quaternion": { + "w": -0.09909640490676949, + "x": -0.012272983726700094, + "y": -0.9949877938403662, + "z": -0.005344508362304999 + }, + "standing_position": [-10.062199592590332, -1.023717222943443, -16.93869972229004], + "visible_nodes": [62, 67, 69, 70] + }, + { + "accessible_nodes": [61, 67, 68, 70], + "floor_index": 0, + "index": 69, + "offset_point_count": 0, + "position": [-7.7989301681518555, -0.006987070199102163, -16.8435001373291], + "quaternion": { + "w": -0.13005473760690328, + "x": -0.006995561633156784, + "y": -0.9914577007846107, + "z": -0.006960205795456711 + }, + "standing_position": [-7.7989301681518555, -1.044851955294331, -16.8435001373291], + "visible_nodes": [61, 67, 68, 70] + }, + { + "accessible_nodes": [67, 68, 69, 71, 72, 73, 97], + "floor_index": 0, + "index": 70, + "offset_point_count": 0, + "position": [-5.097949981689453, -0.039032500237226486, -16.952199935913086], + "quaternion": { + "w": -0.149761323358394, + "x": -0.008762748114844978, + "y": -0.9886368424664556, + "z": -0.0095887823668591 + }, + "standing_position": [-5.097949981689453, -1.1405110230683333, -16.952199935913086], + "visible_nodes": [67, 68, 69, 71, 72, 73, 97] + }, + { + "accessible_nodes": [70, 72, 76, 78, 97, 99], + "floor_index": 0, + "index": 71, + "offset_point_count": 0, + "position": [-4.978010177612305, -0.021441999822854996, -19.153499603271484], + "quaternion": { + "w": 0.6294679139091282, + "x": -0.008609315287494744, + "y": -0.7769226582241673, + "z": -0.009339033088359821 + }, + "standing_position": [-4.978010177612305, -1.1288668676688847, -19.153499603271484], + "visible_nodes": [70, 72, 76, 78, 97, 99] + }, + { + "accessible_nodes": [70, 71, 73, 97], + "floor_index": 0, + "index": 72, + "offset_point_count": 0, + "position": [-6.564610004425049, -0.03356590121984482, -20.684999465942383], + "quaternion": { + "w": 0.6712203053493557, + "x": -0.015458350069578571, + "y": -0.7410967114353386, + "z": 0.00007029876670637937 + }, + "standing_position": [-6.564610004425049, -1.0755089136286742, -20.684999465942383], + "visible_nodes": [70, 71, 73, 97] + }, + { + "accessible_nodes": [26, 27, 29, 30, 57, 58, 59, 70, 72, 93, 94, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184], + "floor_index": 0, + "index": 73, + "offset_point_count": 0, + "position": [-6.362180233001709, 0.12268900126218796, -23.51490020751953], + "quaternion": { + "w": -0.9143145694567131, + "x": 0.005004421783940205, + "y": 0.40496390240335517, + "z": 0.0028387786748154888 + }, + "standing_position": [-6.362180233001709, -0.9442691557411269, -23.51490020751953], + "visible_nodes": [26, 27, 29, 30, 57, 58, 59, 70, 72, 93, 94, 96, 97, 98, 122, 179, 180, 181, 182, 183, 184] + }, + { + "accessible_nodes": [58, 59, 60, 61, 75, 76, 93, 94, 95, 96, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214], + "floor_index": 0, + "index": 74, + "offset_point_count": 0, + "position": [-18.894500732421875, 0.027883199974894524, -35.87009811401367], + "quaternion": { + "w": -0.4080413497846198, + "x": -0.026192439443257526, + "y": -0.9125867978710877, + "z": -0.00124105733072999 + }, + "standing_position": [-18.894500732421875, -1.0859623439902157, -35.87009811401367], + "visible_nodes": [58, 59, 60, 61, 75, 76, 93, 94, 95, 96, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214] + }, + { + "accessible_nodes": [ + 59, 60, 61, 74, 76, 77, 82, 83, 84, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214 + ], + "floor_index": 0, + "index": 75, + "offset_point_count": 0, + "position": [-16.13290023803711, 0.013914999552071095, -36.402000427246094], + "quaternion": { + "w": -0.34629744970970955, + "x": -0.026556926132480528, + "y": -0.9377485978810897, + "z": 0.0006000785242262284 + }, + "standing_position": [-16.13290023803711, -1.1006624024775065, -36.402000427246094], + "visible_nodes": [ + 59, 60, 61, 74, 76, 77, 82, 83, 84, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214 + ] + }, + { + "accessible_nodes": [58, 59, 60, 61, 71, 74, 75, 77, 78, 79, 82, 83, 85, 86, 93, 94, 95, 97, 99, 100], + "floor_index": 0, + "index": 76, + "offset_point_count": 0, + "position": [-16.36009979248047, 0.03498430177569389, -38.50510025024414], + "quaternion": { + "w": 0.6393055844780037, + "x": -0.003305186280307508, + "y": -0.7687998045124385, + "z": 0.014976749557726647 + }, + "standing_position": [-16.36009979248047, -1.0667159401248292, -38.50510025024414], + "visible_nodes": [58, 59, 60, 61, 71, 74, 75, 77, 78, 79, 82, 83, 85, 86, 93, 94, 95, 97, 99, 100] + }, + { + "accessible_nodes": [59, 61, 75, 76, 78, 79, 82, 83, 84, 85, 86, 87, 90, 93, 94, 95, 104], + "floor_index": 0, + "index": 77, + "offset_point_count": 0, + "position": [-16.660999298095703, 0.0590486004948616, -40.569801330566406], + "quaternion": { + "w": 0.6066283382618994, + "x": -0.006912477563940697, + "y": -0.7949090342691295, + "z": 0.0085960158185043 + }, + "standing_position": [-16.660999298095703, -1.05199199045643, -40.569801330566406], + "visible_nodes": [59, 61, 75, 76, 78, 79, 82, 83, 84, 85, 86, 87, 90, 93, 94, 95, 104] + }, + { + "accessible_nodes": [71, 76, 77, 79, 82, 83, 84, 85, 86, 87, 90, 97, 99, 104], + "floor_index": 0, + "index": 78, + "offset_point_count": 0, + "position": [-18.609699249267578, 0.09105119854211807, -41.339599609375], + "quaternion": { + "w": 0.7041204231713113, + "x": -0.0061218121207268425, + "y": -0.7100227622879793, + "z": 0.006680999577888701 + }, + "standing_position": [-18.609699249267578, -1.0053084113988662, -41.339599609375], + "visible_nodes": [71, 76, 77, 79, 82, 83, 84, 85, 86, 87, 90, 97, 99, 104] + }, + { + "accessible_nodes": [76, 77, 78, 80, 81, 85, 86, 87, 90, 100, 104], + "floor_index": 0, + "index": 79, + "offset_point_count": 0, + "position": [-19.6476993560791, 0.11155600100755692, -41.338401794433594], + "quaternion": { + "w": 0.7938233878541714, + "x": -0.0034160476819160594, + "y": -0.6080042019451025, + "z": 0.012791897898548172 + }, + "standing_position": [-19.6476993560791, -0.9872749993014356, -41.338401794433594], + "visible_nodes": [76, 77, 78, 80, 81, 85, 86, 87, 90, 100, 104] + }, + { + "accessible_nodes": [79, 81], + "floor_index": 0, + "index": 80, + "offset_point_count": 0, + "position": [-19.87779998779297, 0.13041499257087708, -43.222599029541016], + "quaternion": { + "w": 0.704597146025378, + "x": -0.003744974604482298, + "y": -0.7094627233310061, + "z": 0.01383772747615811 + }, + "standing_position": [-19.87779998779297, -0.9663372214826376, -43.222599029541016], + "visible_nodes": [79, 81] + }, + { + "accessible_nodes": [79, 80], + "floor_index": 0, + "index": 81, + "offset_point_count": 0, + "position": [-19.72949981689453, 0.14289000630378723, -45.0901985168457], + "quaternion": { + "w": 0.7363219513608041, + "x": 0.003225191435719427, + "y": -0.6764936426970464, + "z": 0.013263717538085586 + }, + "standing_position": [-19.72949981689453, -0.9611174142307548, -45.0901985168457], + "visible_nodes": [79, 80] + }, + { + "accessible_nodes": [75, 76, 77, 78, 83, 84, 85, 86, 87, 90, 104], + "floor_index": 0, + "index": 82, + "offset_point_count": 0, + "position": [-18.30970001220703, 0.11087299883365631, -43.52360153198242], + "quaternion": { + "w": 0.18883200954844398, + "x": -0.01875734289264132, + "y": -0.981827125487007, + "z": 0.002475896840171843 + }, + "standing_position": [-18.30970001220703, -0.9691138943621771, -43.52360153198242], + "visible_nodes": [75, 76, 77, 78, 83, 84, 85, 86, 87, 90, 104] + }, + { + "accessible_nodes": [75, 76, 77, 78, 82, 84, 85, 86, 87, 90], + "floor_index": 0, + "index": 83, + "offset_point_count": 0, + "position": [-17.798500061035156, 0.12983599305152893, -45.61970138549805], + "quaternion": { + "w": 0.5511304478410965, + "x": -0.010225194755738534, + "y": -0.8343390842808647, + "z": 0.005382532928464414 + }, + "standing_position": [-17.798500061035156, -0.9875799939570422, -45.61970138549805], + "visible_nodes": [75, 76, 77, 78, 82, 84, 85, 86, 87, 90] + }, + { + "accessible_nodes": [59, 60, 61, 75, 77, 78, 82, 83, 85, 86, 87, 88, 90, 93, 94, 95], + "floor_index": 0, + "index": 84, + "offset_point_count": 0, + "position": [-16.120899200439453, 0.12570799887180328, -46.17110061645508], + "quaternion": { + "w": -0.04246374795992856, + "x": -0.02330782055674857, + "y": -0.9988260978525988, + "z": 0.00003183997656814632 + }, + "standing_position": [-16.120899200439453, -0.9762624989150883, -46.17110061645508], + "visible_nodes": [59, 60, 61, 75, 77, 78, 82, 83, 85, 86, 87, 88, 90, 93, 94, 95] + }, + { + "accessible_nodes": [76, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 95], + "floor_index": 0, + "index": 85, + "offset_point_count": 0, + "position": [-14.670499801635742, 0.09284369647502899, -44.94990158081055], + "quaternion": { + "w": 0.5344755282449826, + "x": -0.006876910788572215, + "y": -0.8450429775803494, + "z": 0.013819655157476728 + }, + "standing_position": [-14.670499801635742, -1.03070440943191, -44.94990158081055], + "visible_nodes": [76, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 95] + }, + { + "accessible_nodes": [76, 77, 78, 79, 82, 83, 84, 85, 87, 88, 90, 104], + "floor_index": 0, + "index": 86, + "offset_point_count": 0, + "position": [-14.951700210571289, 0.0671389028429985, -42.37409973144531], + "quaternion": { + "w": -0.461157171440235, + "x": -0.024120294240372656, + "y": -0.8869881745779078, + "z": -0.0020628266815998436 + }, + "standing_position": [-14.951700210571289, -1.0253943287304947, -42.37409973144531], + "visible_nodes": [76, 77, 78, 79, 82, 83, 84, 85, 87, 88, 90, 104] + }, + { + "accessible_nodes": [77, 78, 79, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 104], + "floor_index": 0, + "index": 87, + "offset_point_count": 0, + "position": [-13.636199951171875, 0.037964798510074615, -41.06100082397461], + "quaternion": { + "w": -0.13825765877986573, + "x": -0.022925171828861796, + "y": -0.9901232685304655, + "z": 0.0038947163962327323 + }, + "standing_position": [-13.636199951171875, -1.0564055252559816, -41.06100082397461], + "visible_nodes": [77, 78, 79, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 104] + }, + { + "accessible_nodes": [84, 85, 86, 87, 89], + "floor_index": 0, + "index": 88, + "offset_point_count": 0, + "position": [-13.631400108337402, 0.031080499291419983, -39.78739929199219], + "quaternion": { + "w": -0.7435487513085944, + "x": -0.026123906086645964, + "y": -0.6681675266620986, + "z": 0.0022178834313657195 + }, + "standing_position": [-13.631400108337402, -1.0864703240934084, -39.78739929199219], + "visible_nodes": [84, 85, 86, 87, 89] + }, + { + "accessible_nodes": [85, 87, 88], + "floor_index": 0, + "index": 89, + "offset_point_count": 0, + "position": [-13.686699867248535, 0.026743900030851364, -38.870601654052734], + "quaternion": { + "w": -0.9099499710185293, + "x": -0.022273011737224496, + "y": -0.41410135860919967, + "z": -0.003875952407661033 + }, + "standing_position": [-13.686699867248535, -1.095446351436738, -38.870601654052734], + "visible_nodes": [85, 87, 88] + }, + { + "accessible_nodes": [77, 78, 79, 82, 83, 84, 86, 87, 91, 92, 104], + "floor_index": 0, + "index": 90, + "offset_point_count": 0, + "position": [-12.163599967956543, 0.027215799316763878, -41.15660095214844], + "quaternion": { + "w": -0.08369685530626465, + "x": -0.01744844155379006, + "y": -0.9962768610775679, + "z": 0.01108228839304076 + }, + "standing_position": [-12.163599967956543, -1.0880943170417066, -41.15660095214844], + "visible_nodes": [77, 78, 79, 82, 83, 84, 86, 87, 91, 92, 104] + }, + { + "accessible_nodes": [87, 90, 92], + "floor_index": 0, + "index": 91, + "offset_point_count": 0, + "position": [-11.81410026550293, 0.04206269979476929, -42.49330139160156], + "quaternion": { + "w": 0.1266051658000317, + "x": -0.013196047539971511, + "y": -0.9918140699857467, + "z": 0.010091435568474359 + }, + "standing_position": [-11.81410026550293, -0.9979283044019194, -42.49330139160156], + "visible_nodes": [87, 90, 92] + }, + { + "accessible_nodes": [87, 90, 91], + "floor_index": 0, + "index": 92, + "offset_point_count": 0, + "position": [-10.97819995880127, 0.05458519980311394, -43.25600051879883], + "quaternion": { + "w": 0.2365087741403604, + "x": -0.008646792629107872, + "y": -0.9715514208608869, + "z": 0.008756326759123906 + }, + "standing_position": [-10.97819995880127, -1.0632186242414066, -43.25600051879883], + "visible_nodes": [87, 90, 91] + }, + { + "accessible_nodes": [ + 24, 26, 27, 28, 29, 30, 57, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 94, 95, 96, 97, 98, 100, 101, 102, 103, 179, 180 + ], + "floor_index": 0, + "index": 93, + "offset_point_count": 0, + "position": [-16.46540069580078, 0.10288099944591522, -27.375099182128906], + "quaternion": { + "w": -0.12529743426928028, + "x": -0.013309070793518632, + "y": -0.9920059548639565, + "z": 0.006900309432488404 + }, + "standing_position": [-16.46540069580078, -1.0096787740421063, -27.375099182128906], + "visible_nodes": [ + 24, 26, 27, 28, 29, 30, 57, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 94, 95, 96, 97, 98, 100, 101, 102, 103, 179, 180 + ] + }, + { + "accessible_nodes": [23, 24, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 93, 95, 96, 97, 98, 100, 101, 102, 179, 180, 186], + "floor_index": 0, + "index": 94, + "offset_point_count": 0, + "position": [-17.026599884033203, 0.12492600083351135, -30.34440040588379], + "quaternion": { + "w": -0.33139880640635555, + "x": 0.00030249152240451646, + "y": -0.9434906530554057, + "z": -0.0003341131783076677 + }, + "standing_position": [-17.026599884033203, -0.9728674138634053, -30.34440040588379], + "visible_nodes": [23, 24, 58, 59, 60, 61, 73, 74, 75, 76, 77, 84, 93, 95, 96, 97, 98, 100, 101, 102, 179, 180, 186] + }, + { + "accessible_nodes": [58, 59, 60, 61, 74, 75, 76, 77, 84, 85, 93, 94, 96, 100, 101, 102], + "floor_index": 0, + "index": 95, + "offset_point_count": 0, + "position": [-17.186500549316406, 0.15864500403404236, -33.28710174560547], + "quaternion": { + "w": 0.15232773826232096, + "x": 0.006281471960144898, + "y": -0.9883083897659983, + "z": -0.001826200532351716 + }, + "standing_position": [-17.186500549316406, -0.9729891849360981, -33.28710174560547], + "visible_nodes": [58, 59, 60, 61, 74, 75, 76, 77, 84, 85, 93, 94, 96, 100, 101, 102] + }, + { + "accessible_nodes": [ + 26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 74, 75, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 122, 179, 180, 183, 184 + ], + "floor_index": 0, + "index": 96, + "offset_point_count": 0, + "position": [-11.540900230407715, 0.10743299871683121, -25.965200424194336], + "quaternion": { + "w": -0.16478545524012164, + "x": 0.0025306462333222, + "y": -0.9862765459227874, + "z": 0.009895631625799968 + }, + "standing_position": [-11.540900230407715, -0.973172536191039, -25.965200424194336], + "visible_nodes": [ + 26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 74, 75, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 122, 179, 180, 183, 184 + ] + }, + { + "accessible_nodes": [26, 27, 29, 30, 57, 58, 59, 66, 67, 70, 71, 72, 73, 76, 78, 93, 94, 96, 98, 99, 122, 179, 180, 181, 183, 184], + "floor_index": 0, + "index": 97, + "offset_point_count": 0, + "position": [-8.565380096435547, 0.11020900309085846, -25.3031005859375], + "quaternion": { + "w": -0.2252415515810126, + "x": 0.004402227206158639, + "y": -0.9742347670081993, + "z": 0.010652816277903826 + }, + "standing_position": [-8.565380096435547, -0.9500982625409986, -25.3031005859375], + "visible_nodes": [26, 27, 29, 30, 57, 58, 59, 66, 67, 70, 71, 72, 73, 76, 78, 93, 94, 96, 98, 99, 122, 179, 180, 181, 183, 184] + }, + { + "accessible_nodes": [26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 93, 94, 96, 97, 99, 102, 103, 104, 179, 180, 186], + "floor_index": 0, + "index": 98, + "offset_point_count": 0, + "position": [-11.703399658203125, 0.10844799876213074, -27.981399536132812], + "quaternion": { + "w": 0.6752555509759361, + "x": 0.014236435749259079, + "y": -0.7374195577809554, + "z": 0.006298176880903397 + }, + "standing_position": [-11.703399658203125, -1.0043218568223073, -27.981399536132812], + "visible_nodes": [26, 27, 28, 29, 30, 57, 58, 59, 60, 66, 73, 93, 94, 96, 97, 99, 102, 103, 104, 179, 180, 186] + }, + { + "accessible_nodes": [66, 71, 75, 76, 78, 96, 97, 98, 100, 101, 102, 103, 104], + "floor_index": 0, + "index": 99, + "offset_point_count": 0, + "position": [-11.692399978637695, 0.12878400087356567, -30.328100204467773], + "quaternion": { + "w": 0.67403640084409, + "x": 0.0062405711603059294, + "y": -0.7384636340842052, + "z": -0.01753402797172829 + }, + "standing_position": [-11.692399978637695, -0.9922530602526174, -30.328100204467773], + "visible_nodes": [66, 71, 75, 76, 78, 96, 97, 98, 100, 101, 102, 103, 104] + }, + { + "accessible_nodes": [24, 28, 57, 58, 59, 60, 61, 66, 74, 75, 76, 79, 93, 94, 95, 96, 99, 101, 102, 103, 104, 159, 160, 178], + "floor_index": 0, + "index": 100, + "offset_point_count": 0, + "position": [-11.776000022888184, 0.13381999731063843, -33.82229995727539], + "quaternion": { + "w": -0.2805933879828865, + "x": 0.0013298832573164648, + "y": -0.9598256866702808, + "z": 0.00048742629881045555 + }, + "standing_position": [-11.776000022888184, -1.0344386230481883, -33.82229995727539], + "visible_nodes": [24, 28, 57, 58, 59, 60, 61, 66, 74, 75, 76, 79, 93, 94, 95, 96, 99, 101, 102, 103, 104, 159, 160, 178] + }, + { + "accessible_nodes": [24, 58, 59, 60, 61, 74, 75, 93, 94, 95, 99, 100, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214], + "floor_index": 0, + "index": 101, + "offset_point_count": 0, + "position": [-12.733799934387207, -0.019922899082303047, -36.054500579833984], + "quaternion": { + "w": -0.9898504833543398, + "x": -0.013214316780226842, + "y": 0.14143365847474632, + "z": 0.00423424505669831 + }, + "standing_position": [-12.733799934387207, -1.10899138035569, -36.054500579833984], + "visible_nodes": [24, 58, 59, 60, 61, 74, 75, 93, 94, 95, 99, 100, 102, 105, 106, 120, 121, 156, 157, 158, 159, 160, 178, 214] + }, + { + "accessible_nodes": [ + 24, 57, 58, 59, 60, 66, 74, 75, 93, 94, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 120, 121, 156, 157, 158, 159, 160, 178, + 213, 214 + ], + "floor_index": 0, + "index": 102, + "offset_point_count": 0, + "position": [-10.533599853515625, -0.03601120039820671, -36.94060134887695], + "quaternion": { + "w": -0.6158702595645283, + "x": -0.016439370357397363, + "y": -0.7876668900806171, + "z": 0.003798968542151657 + }, + "standing_position": [-10.533599853515625, -1.1496653489117326, -36.94060134887695], + "visible_nodes": [ + 24, 57, 58, 59, 60, 66, 74, 75, 93, 94, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 120, 121, 156, 157, 158, 159, 160, 178, + 213, 214 + ] + }, + { + "accessible_nodes": [59, 60, 61, 66, 93, 96, 98, 99, 100, 102, 104], + "floor_index": 0, + "index": 103, + "offset_point_count": 0, + "position": [-10.811699867248535, -0.003108750097453594, -39.25630187988281], + "quaternion": { + "w": 0.04849128325575666, + "x": -0.0018325776678363764, + "y": -0.9988212343529502, + "z": -0.0011740658696761368 + }, + "standing_position": [-10.811699867248535, -1.1217943794860155, -39.25630187988281], + "visible_nodes": [59, 60, 61, 66, 93, 96, 98, 99, 100, 102, 104] + }, + { + "accessible_nodes": [66, 77, 78, 79, 82, 86, 87, 90, 96, 98, 99, 100, 102, 103], + "floor_index": 0, + "index": 104, + "offset_point_count": 0, + "position": [-10.876399993896484, 0.02068060077726841, -41.01279830932617], + "quaternion": { + "w": 0.6370092894529085, + "x": 0.00390171763727225, + "y": -0.7708432080413908, + "z": 0.0021650243861543205 + }, + "standing_position": [-10.876399993896484, -1.1037952988611752, -41.01279830932617], + "visible_nodes": [66, 77, 78, 79, 82, 86, 87, 90, 96, 98, 99, 100, 102, 103] + }, + { + "accessible_nodes": [ + 74, 75, 101, 102, 106, 107, 108, 109, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214 + ], + "floor_index": 0, + "index": 105, + "offset_point_count": 0, + "position": [-7.829239845275879, -0.056519199162721634, -36.472599029541016], + "quaternion": { + "w": -0.6805378669891053, + "x": -0.009215586525317065, + "y": -0.7326460863890307, + "z": 0.0036031277205042416 + }, + "standing_position": [-7.829239845275879, -1.1599280765992543, -36.472599029541016], + "visible_nodes": [ + 74, 75, 101, 102, 106, 107, 108, 109, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214 + ] + }, + { + "accessible_nodes": [74, 75, 101, 102, 105, 116, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214], + "floor_index": 0, + "index": 106, + "offset_point_count": 0, + "position": [-5.495649814605713, -0.07786480337381363, -36.453399658203125], + "quaternion": { + "w": -0.8289619949614864, + "x": 0.00032387899722233194, + "y": -0.559154715664956, + "z": 0.012957998887267038 + }, + "standing_position": [-5.495649814605713, -1.235346716553175, -36.453399658203125], + "visible_nodes": [74, 75, 101, 102, 105, 116, 120, 121, 156, 157, 158, 159, 160, 178, 213, 214] + }, + { + "accessible_nodes": [105, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119], + "floor_index": 0, + "index": 107, + "offset_point_count": 0, + "position": [-7.699510097503662, -0.047481000423431396, -38.148799896240234], + "quaternion": { + "w": 0.7047493017433852, + "x": 0.0032605442427441306, + "y": -0.7094340030822159, + "z": 0.0046039521721873145 + }, + "standing_position": [-7.699510097503662, -1.1653691002131423, -38.148799896240234], + "visible_nodes": [105, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119] + }, + { + "accessible_nodes": [105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119], + "floor_index": 0, + "index": 108, + "offset_point_count": 0, + "position": [-8.194290161132812, -0.03830850124359131, -39.58340072631836], + "quaternion": { + "w": 0.539421854723414, + "x": 0.004040420298156892, + "y": -0.8420079889232794, + "z": 0.005502494675192325 + }, + "standing_position": [-8.194290161132812, -1.1529108030992485, -39.58340072631836], + "visible_nodes": [105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119] + }, + { + "accessible_nodes": [105, 107, 108, 110], + "floor_index": 0, + "index": 109, + "offset_point_count": 0, + "position": [-6.692200183868408, -0.04798030108213425, -38.93429946899414], + "quaternion": { + "w": 0.2165744925169343, + "x": 0.0020475805443885935, + "y": -0.9761596230130709, + "z": 0.014272043117714113 + }, + "standing_position": [-6.692200183868408, -1.137913648340465, -38.93429946899414], + "visible_nodes": [105, 107, 108, 110] + }, + { + "accessible_nodes": [108, 109], + "floor_index": 0, + "index": 110, + "offset_point_count": 0, + "position": [-6.187449932098389, -0.03979109972715378, -38.4114990234375], + "quaternion": { + "w": -0.46088854687625036, + "x": -0.0010758744180371957, + "y": -0.8874064396179858, + "z": 0.009507481920400459 + }, + "standing_position": [-6.187449932098389, -1.11332895538375, -38.4114990234375], + "visible_nodes": [108, 109] + }, + { + "accessible_nodes": [107, 108], + "floor_index": 0, + "index": 111, + "offset_point_count": 0, + "position": [-6.689499855041504, -0.03567570075392723, -40.028499603271484], + "quaternion": { + "w": 0.22977868167047344, + "x": -0.006320459610911823, + "y": -0.9729458328030404, + "z": -0.023199774010584383 + }, + "standing_position": [-6.689499855041504, -1.1006236560201372, -40.028499603271484], + "visible_nodes": [107, 108] + }, + { + "accessible_nodes": [105, 107, 108, 113, 114, 115, 116, 117, 118, 119], + "floor_index": 0, + "index": 112, + "offset_point_count": 0, + "position": [-7.48567008972168, -0.0364082008600235, -41.043800354003906], + "quaternion": { + "w": 0.5261820854307611, + "x": 0.009637722401532494, + "y": -0.8502547695718187, + "z": 0.010312568207229074 + }, + "standing_position": [-7.48567008972168, -1.1473713087100548, -41.043800354003906], + "visible_nodes": [105, 107, 108, 113, 114, 115, 116, 117, 118, 119] + }, + { + "accessible_nodes": [105, 107, 108, 112, 114, 115, 116, 117, 118, 119], + "floor_index": 0, + "index": 113, + "offset_point_count": 0, + "position": [-7.342710018157959, -0.03520889952778816, -43.12910079956055], + "quaternion": { + "w": 0.6368919382847611, + "x": 0.010819087917239468, + "y": -0.7708500076866075, + "z": 0.006469694495092488 + }, + "standing_position": [-7.342710018157959, -1.1156027312473051, -43.12910079956055], + "visible_nodes": [105, 107, 108, 112, 114, 115, 116, 117, 118, 119] + }, + { + "accessible_nodes": [105, 107, 108, 112, 113, 115, 116, 117, 118, 119], + "floor_index": 0, + "index": 114, + "offset_point_count": 0, + "position": [-7.187160015106201, -0.030244000256061554, -44.82210159301758], + "quaternion": { + "w": 0.6245138328568458, + "x": 0.012697756373074139, + "y": -0.7808496021386253, + "z": 0.009753736226541711 + }, + "standing_position": [-7.187160015106201, -1.1183946197856525, -44.82210159301758], + "visible_nodes": [105, 107, 108, 112, 113, 115, 116, 117, 118, 119] + }, + { + "accessible_nodes": [105, 107, 108, 112, 113, 114, 116, 117, 118, 119], + "floor_index": 0, + "index": 115, + "offset_point_count": 0, + "position": [-7.131549835205078, -0.03332220017910004, -46.09170150756836], + "quaternion": { + "w": 0.5900876134077754, + "x": 0.016400941068799232, + "y": -0.8070913814953474, + "z": 0.011450542950430543 + }, + "standing_position": [-7.131549835205078, -1.1399027640373522, -46.09170150756836], + "visible_nodes": [105, 107, 108, 112, 113, 114, 116, 117, 118, 119] + }, + { + "accessible_nodes": [102, 105, 106, 107, 108, 112, 113, 114, 115, 117, 118, 119, 214], + "floor_index": 0, + "index": 116, + "offset_point_count": 0, + "position": [-7.83951997756958, -0.04751930013298988, -35.33530044555664], + "quaternion": { + "w": -0.77143085982662, + "x": -0.0019112810086248369, + "y": -0.6362099340466881, + "z": 0.011299769178712981 + }, + "standing_position": [-7.83951997756958, -1.1575116117316377, -35.33530044555664], + "visible_nodes": [102, 105, 106, 107, 108, 112, 113, 114, 115, 117, 118, 119, 214] + }, + { + "accessible_nodes": [105, 107, 112, 113, 114, 115, 116, 118, 119], + "floor_index": 0, + "index": 117, + "offset_point_count": 0, + "position": [-8.298199653625488, -0.03429419919848442, -33.488399505615234], + "quaternion": { + "w": -0.8265138032766498, + "x": -0.016399024003638588, + "y": -0.562434854973666, + "z": 0.016524187557223975 + }, + "standing_position": [-8.298199653625488, -1.1297315326161614, -33.488399505615234], + "visible_nodes": [105, 107, 112, 113, 114, 115, 116, 118, 119] + }, + { + "accessible_nodes": [105, 107, 108, 112, 113, 114, 115, 116, 117, 119], + "floor_index": 0, + "index": 118, + "offset_point_count": 0, + "position": [-7.343629837036133, -0.04973199963569641, -31.8789005279541], + "quaternion": { + "w": -0.7096401242771114, + "x": -0.003971932183710707, + "y": -0.7043994616119498, + "z": 0.014714835207530317 + }, + "standing_position": [-7.343629837036133, -1.1661112765777317, -31.8789005279541], + "visible_nodes": [105, 107, 108, 112, 113, 114, 115, 116, 117, 119] + }, + { + "accessible_nodes": [105, 107, 108, 112, 113, 114, 115, 116, 117, 118], + "floor_index": 0, + "index": 119, + "offset_point_count": 0, + "position": [-7.17225980758667, -0.042239099740982056, -30.174699783325195], + "quaternion": { + "w": -0.7743172165097368, + "x": -0.013957325608062007, + "y": -0.6322721364138396, + "z": 0.021678828043881163 + }, + "standing_position": [-7.17225980758667, -1.1274124760137, -30.174699783325195], + "visible_nodes": [105, 107, 108, 112, 113, 114, 115, 116, 117, 118] + }, + { + "accessible_nodes": [ + 74, 75, 101, 102, 105, 106, 121, 157, 158, 159, 160, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 213, 214 + ], + "floor_index": 0, + "index": 120, + "offset_point_count": 0, + "position": [-1.5161499977111816, -0.11580000072717667, -36.74150085449219], + "quaternion": { + "w": -0.2106313218040101, + "x": -0.0064574034084712096, + "y": -0.9775442452917366, + "z": 0.00002101186564586373 + }, + "standing_position": [-1.5161499977111816, -1.255648516284695, -36.74150085449219], + "visible_nodes": [ + 74, 75, 101, 102, 105, 106, 121, 157, 158, 159, 160, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 213, 214 + ] + }, + { + "accessible_nodes": [74, 75, 101, 102, 105, 106, 120, 158, 159, 160, 178, 213, 214], + "floor_index": 0, + "index": 121, + "offset_point_count": 0, + "position": [0.8127599954605103, -0.1198199987411499, -36.5984001159668], + "quaternion": { + "w": -0.9593939596036094, + "x": -0.006888254235207633, + "y": -0.28196964254319906, + "z": -0.0029834390356266375 + }, + "standing_position": [0.8127599954605103, -1.227825849818271, -36.5984001159668], + "visible_nodes": [74, 75, 101, 102, 105, 106, 120, 158, 159, 160, 178, 213, 214] + }, + { + "accessible_nodes": [26, 27, 28, 29, 30, 31, 32, 57, 58, 59, 60, 73, 96, 97, 123, 127, 129, 154, 155, 156, 179], + "floor_index": 0, + "index": 122, + "offset_point_count": 0, + "position": [-33.87839889526367, -0.04105570167303085, -27.49880027770996], + "quaternion": { + "w": 0.7028922367206492, + "x": -0.01437121261822012, + "y": -0.7110110247498496, + "z": 0.01411779057952335 + }, + "standing_position": [-33.87839889526367, -1.1447622875132804, -27.49880027770996], + "visible_nodes": [26, 27, 28, 29, 30, 31, 32, 57, 58, 59, 60, 73, 96, 97, 123, 127, 129, 154, 155, 156, 179] + }, + { + "accessible_nodes": [29, 31, 32, 122, 124, 126, 127, 128, 129, 131, 154, 155, 156], + "floor_index": 0, + "index": 123, + "offset_point_count": 0, + "position": [-34.0526008605957, -0.020269399508833885, -30.208200454711914], + "quaternion": { + "w": 0.6623612742404446, + "x": -0.02197610996926916, + "y": -0.7488381070728845, + "z": 0.006004163539042349 + }, + "standing_position": [-34.0526008605957, -1.1255820097378564, -30.208200454711914], + "visible_nodes": [29, 31, 32, 122, 124, 126, 127, 128, 129, 131, 154, 155, 156] + }, + { + "accessible_nodes": [123, 125, 126, 127, 128, 129, 132, 155, 156, 163, 164], + "floor_index": 0, + "index": 124, + "offset_point_count": 0, + "position": [-36.31050109863281, 0.006043300032615662, -30.78529930114746], + "quaternion": { + "w": -0.999852683719975, + "x": -0.005022223492674917, + "y": 0.006297579173815718, + "z": -0.015156710038993128 + }, + "standing_position": [-36.31050109863281, -1.030065517529435, -30.78529930114746], + "visible_nodes": [123, 125, 126, 127, 128, 129, 132, 155, 156, 163, 164] + }, + { + "accessible_nodes": [124, 127, 128, 129, 131, 132, 133, 155, 156], + "floor_index": 0, + "index": 125, + "offset_point_count": 0, + "position": [-36.647300720214844, -0.024363700300455093, -28.633399963378906], + "quaternion": { + "w": -0.5757001623770146, + "x": -0.03134080746499844, + "y": -0.8169208209999905, + "z": -0.015081658188178552 + }, + "standing_position": [-36.647300720214844, -1.0830197993353885, -28.633399963378906], + "visible_nodes": [124, 127, 128, 129, 131, 132, 133, 155, 156] + }, + { + "accessible_nodes": [123, 124, 127, 128, 130, 154, 156, 157, 161, 162, 163, 164], + "floor_index": 0, + "index": 126, + "offset_point_count": 0, + "position": [-37.86909866333008, 0.01885960064828396, -31.395999908447266], + "quaternion": { + "w": -0.9031079099285518, + "x": 0.004252301767383126, + "y": 0.4293384421033928, + "z": -0.006821292878989338 + }, + "standing_position": [-37.86909866333008, -1.0487425945415227, -31.395999908447266], + "visible_nodes": [123, 124, 127, 128, 130, 154, 156, 157, 161, 162, 163, 164] + }, + { + "accessible_nodes": [29, 122, 123, 124, 125, 126, 128, 154, 156, 161, 162, 163, 164, 165, 166, 167, 168], + "floor_index": 0, + "index": 127, + "offset_point_count": 0, + "position": [-34.69369888305664, 0.0245434008538723, -32.996299743652344], + "quaternion": { + "w": 0.5042729000330763, + "x": -0.023874982045376976, + "y": -0.8631946856911068, + "z": -0.005810559689479403 + }, + "standing_position": [-34.69369888305664, -1.0790790680841704, -32.996299743652344], + "visible_nodes": [29, 122, 123, 124, 125, 126, 128, 154, 156, 161, 162, 163, 164, 165, 166, 167, 168] + }, + { + "accessible_nodes": [31, 32, 123, 124, 125, 126, 127, 129, 130, 131, 132, 154, 155, 164], + "floor_index": 0, + "index": 128, + "offset_point_count": 0, + "position": [-36.64030075073242, 0.06554059684276581, -34.64830017089844], + "quaternion": { + "w": 0.6304006303907529, + "x": -0.013020963858652777, + "y": -0.7761601009925347, + "z": 0.0009995373594809094 + }, + "standing_position": [-36.64030075073242, -1.02403647756279, -34.64830017089844], + "visible_nodes": [31, 32, 123, 124, 125, 126, 127, 129, 130, 131, 132, 154, 155, 164] + }, + { + "accessible_nodes": [31, 32, 122, 123, 124, 125, 128, 130, 131, 132, 133, 136, 140, 154, 155], + "floor_index": 0, + "index": 129, + "offset_point_count": 0, + "position": [-36.7504997253418, 0.11305399984121323, -36.26390075683594], + "quaternion": { + "w": 0.38839280396152365, + "x": -0.01919831545453474, + "y": -0.9212919104578391, + "z": -0.0019140552831231755 + }, + "standing_position": [-36.7504997253418, -0.9891519123662225, -36.26390075683594], + "visible_nodes": [31, 32, 122, 123, 124, 125, 128, 130, 131, 132, 133, 136, 140, 154, 155] + }, + { + "accessible_nodes": [126, 128, 129, 131, 132, 133, 134, 135, 143, 145, 146, 147, 153, 154, 155, 156], + "floor_index": 0, + "index": 130, + "offset_point_count": 0, + "position": [-35.5525016784668, 0.15490199625492096, -37.9734992980957], + "quaternion": { + "w": 0.45882024991987463, + "x": -0.01709016376432794, + "y": -0.8883519445653207, + "z": -0.00476865206726671 + }, + "standing_position": [-35.5525016784668, -0.9189555477782705, -37.9734992980957], + "visible_nodes": [126, 128, 129, 131, 132, 133, 134, 135, 143, 145, 146, 147, 153, 154, 155, 156] + }, + { + "accessible_nodes": [123, 125, 128, 129, 130, 132, 133, 154, 155, 156], + "floor_index": 0, + "index": 131, + "offset_point_count": 0, + "position": [-35.48929977416992, 0.24459800124168396, -40.7244987487793], + "quaternion": { + "w": 0.6886898204551193, + "x": -0.003983824748913662, + "y": -0.7250351419697894, + "z": 0.003806826922485848 + }, + "standing_position": [-35.48929977416992, -0.8698275745231199, -40.7244987487793], + "visible_nodes": [123, 125, 128, 129, 130, 132, 133, 154, 155, 156] + }, + { + "accessible_nodes": [124, 125, 128, 129, 130, 131, 133, 154, 155, 156], + "floor_index": 0, + "index": 132, + "offset_point_count": 0, + "position": [-37.2322998046875, 0.3060239851474762, -42.44540023803711], + "quaternion": { + "w": 0.8059760341490119, + "x": -0.0034458252687732025, + "y": -0.5918989880281851, + "z": 0.006808352665681404 + }, + "standing_position": [-37.2322998046875, -0.8093671682589474, -42.44540023803711], + "visible_nodes": [124, 125, 128, 129, 130, 131, 133, 154, 155, 156] + }, + { + "accessible_nodes": [125, 129, 130, 131, 132, 134, 135, 143, 144, 145, 146, 147, 153, 155], + "floor_index": 0, + "index": 133, + "offset_point_count": 0, + "position": [-33.142799377441406, 0.16558699309825897, -38.88309860229492], + "quaternion": { + "w": -0.0864088425160972, + "x": -0.021877292400649933, + "y": -0.9957889539347892, + "z": -0.021430229224451407 + }, + "standing_position": [-33.142799377441406, -0.9231297419204652, -38.88309860229492], + "visible_nodes": [125, 129, 130, 131, 132, 134, 135, 143, 144, 145, 146, 147, 153, 155] + }, + { + "accessible_nodes": [130, 133, 135, 136, 143, 144, 145, 146, 147, 153], + "floor_index": 0, + "index": 134, + "offset_point_count": 0, + "position": [-31.431499481201172, 0.1677349954843521, -38.870601654052734], + "quaternion": { + "w": 0.018281597584708622, + "x": -0.02240423698883944, + "y": -0.999468818791216, + "z": -0.015030266749565669 + }, + "standing_position": [-31.431499481201172, -0.9088518703050052, -38.870601654052734], + "visible_nodes": [130, 133, 135, 136, 143, 144, 145, 146, 147, 153] + }, + { + "accessible_nodes": [130, 133, 134, 136, 137, 143, 144, 145, 146, 147, 153], + "floor_index": 0, + "index": 135, + "offset_point_count": 0, + "position": [-28.78230094909668, 0.16575400531291962, -38.990501403808594], + "quaternion": { + "w": 0.18831680656698915, + "x": -0.02262360706736722, + "y": -0.9817233778246284, + "z": -0.01562548366335867 + }, + "standing_position": [-28.78230094909668, -0.855066974196717, -38.990501403808594], + "visible_nodes": [130, 133, 134, 136, 137, 143, 144, 145, 146, 147, 153] + }, + { + "accessible_nodes": [129, 134, 135, 137, 138, 139, 140, 143, 144], + "floor_index": 0, + "index": 136, + "offset_point_count": 0, + "position": [-28.695999145507812, 0.24288299679756165, -41.35419845581055], + "quaternion": { + "w": 0.5739431982609924, + "x": -0.01095242210066695, + "y": -0.8188100907427371, + "z": -0.004392493018909025 + }, + "standing_position": [-28.695999145507812, -0.852558535384329, -41.35419845581055], + "visible_nodes": [129, 134, 135, 137, 138, 139, 140, 143, 144] + }, + { + "accessible_nodes": [135, 136, 138, 139, 140, 143], + "floor_index": 0, + "index": 137, + "offset_point_count": 0, + "position": [-28.523799896240234, 0.28904399275779724, -42.408199310302734], + "quaternion": { + "w": 0.7955374446295144, + "x": -0.004658314248017527, + "y": -0.6057552767172294, + "z": 0.012609521202388717 + }, + "standing_position": [-28.523799896240234, -0.8346530052626642, -42.408199310302734], + "visible_nodes": [135, 136, 138, 139, 140, 143] + }, + { + "accessible_nodes": [136, 137, 139, 140, 144], + "floor_index": 0, + "index": 138, + "offset_point_count": 0, + "position": [-30.779699325561523, 0.3026059865951538, -42.76490020751953], + "quaternion": { + "w": 0.8133875107062281, + "x": -0.005175255087259923, + "y": -0.5816330731825868, + "z": 0.00877159721026679 + }, + "standing_position": [-30.779699325561523, -0.7470388457364385, -42.76490020751953], + "visible_nodes": [136, 137, 139, 140, 144] + }, + { + "accessible_nodes": [136, 137, 138, 140, 145], + "floor_index": 0, + "index": 139, + "offset_point_count": 0, + "position": [-32.84400177001953, 0.3188619911670685, -43.221099853515625], + "quaternion": { + "w": -0.9773020804812723, + "x": -0.01364565299471011, + "y": 0.21070870239484796, + "z": -0.01721259370898205 + }, + "standing_position": [-32.84400177001953, -0.7424810910694137, -43.221099853515625], + "visible_nodes": [136, 137, 138, 140, 145] + }, + { + "accessible_nodes": [129, 136, 137, 138, 139, 141], + "floor_index": 0, + "index": 140, + "offset_point_count": 0, + "position": [-27.2007999420166, 0.27938300371170044, -42.29800033569336], + "quaternion": { + "w": -0.0791402167563006, + "x": -0.023368179641704956, + "y": -0.9962915635502885, + "z": -0.024369521138324732 + }, + "standing_position": [-27.2007999420166, -0.8126937672158541, -42.29800033569336], + "visible_nodes": [129, 136, 137, 138, 139, 141] + }, + { + "accessible_nodes": [140, 142], + "floor_index": 0, + "index": 141, + "offset_point_count": 0, + "position": [-27.097200393676758, 0.34661200642585754, -44.16400146484375], + "quaternion": { + "w": 0.6229142528477389, + "x": 0.003940970355852391, + "y": -0.7822570366227498, + "z": 0.006019934607411899 + }, + "standing_position": [-27.097200393676758, -0.753010163177265, -44.16400146484375], + "visible_nodes": [140, 142] + }, + { + "accessible_nodes": [141], + "floor_index": 0, + "index": 142, + "offset_point_count": 0, + "position": [-26.206899642944336, 0.35784798860549927, -44.00310134887695], + "quaternion": { + "w": 0.1471450006451939, + "x": -0.007472984663512431, + "y": -0.9890293411072058, + "z": -0.010652515535220942 + }, + "standing_position": [-26.206899642944336, -0.744339029998629, -44.00310134887695], + "visible_nodes": [141] + }, + { + "accessible_nodes": [130, 133, 134, 135, 136, 137, 144, 145, 146, 147, 153], + "floor_index": 0, + "index": 143, + "offset_point_count": 0, + "position": [-27.45050048828125, 0.13227500021457672, -38.552101135253906], + "quaternion": { + "w": -0.12027690126730523, + "x": -0.02956970478697277, + "y": -0.9919715931784983, + "z": -0.025523695525213445 + }, + "standing_position": [-27.45050048828125, -0.9203364096344491, -38.552101135253906], + "visible_nodes": [130, 133, 134, 135, 136, 137, 144, 145, 146, 147, 153] + }, + { + "accessible_nodes": [133, 134, 135, 136, 138, 143, 145, 146, 147, 150, 152, 153, 159, 178], + "floor_index": 0, + "index": 144, + "offset_point_count": 0, + "position": [-25.513700485229492, 0.12784400582313538, -38.437801361083984], + "quaternion": { + "w": -0.20187287314456293, + "x": -0.027794343646794624, + "y": -0.9785521266319458, + "z": -0.030175119899325396 + }, + "standing_position": [-25.513700485229492, -0.9703878795802725, -38.437801361083984], + "visible_nodes": [133, 134, 135, 136, 138, 143, 145, 146, 147, 150, 152, 153, 159, 178] + }, + { + "accessible_nodes": [130, 133, 134, 135, 139, 143, 144, 146, 147, 149, 150], + "floor_index": 0, + "index": 145, + "offset_point_count": 0, + "position": [-23.52910041809082, 0.16068799793720245, -38.867401123046875], + "quaternion": { + "w": -0.08757320390727746, + "x": -0.027973876545561698, + "y": -0.9955476423217334, + "z": -0.020815724855997673 + }, + "standing_position": [-23.52910041809082, -0.9493454511214341, -38.867401123046875], + "visible_nodes": [130, 133, 134, 135, 139, 143, 144, 146, 147, 149, 150] + }, + { + "accessible_nodes": [130, 133, 134, 135, 143, 144, 145], + "floor_index": 0, + "index": 146, + "offset_point_count": 0, + "position": [-21.607099533081055, 0.1772339940071106, -39.053199768066406], + "quaternion": { + "w": -0.03755291267125121, + "x": -0.02148654756789899, + "y": -0.9987067413271767, + "z": -0.026701111211710076 + }, + "standing_position": [-21.607099533081055, -0.9445979253117815, -39.053199768066406], + "visible_nodes": [130, 133, 134, 135, 143, 144, 145] + }, + { + "accessible_nodes": [130, 133, 134, 135, 143, 144, 145, 148, 149, 150, 153, 159, 178], + "floor_index": 0, + "index": 147, + "offset_point_count": 0, + "position": [-23.282899856567383, 0.2254060059785843, -40.77399826049805], + "quaternion": { + "w": 0.6181634314100899, + "x": -0.010739068526138682, + "y": -0.7859738917864916, + "z": 0.001916480245457591 + }, + "standing_position": [-23.282899856567383, -0.8740894795230802, -40.77399826049805], + "visible_nodes": [130, 133, 134, 135, 143, 144, 145, 148, 149, 150, 153, 159, 178] + }, + { + "accessible_nodes": [147, 150, 152, 153], + "floor_index": 0, + "index": 148, + "offset_point_count": 0, + "position": [-24.398000717163086, 0.2571350038051605, -41.72079849243164], + "quaternion": { + "w": -0.9875176612264558, + "x": -0.015622697805912066, + "y": -0.1538342414299921, + "z": -0.02999715898039849 + }, + "standing_position": [-24.398000717163086, -0.8138781728020661, -41.72079849243164], + "visible_nodes": [147, 150, 152, 153] + }, + { + "accessible_nodes": [145, 147, 150, 151, 152, 153], + "floor_index": 0, + "index": 149, + "offset_point_count": 0, + "position": [-23.454599380493164, 0.29185399413108826, -42.67649841308594], + "quaternion": { + "w": 0.7095711536137179, + "x": -0.0017504871032849082, + "y": -0.7046311224129302, + "z": 0.0008227251468698095 + }, + "standing_position": [-23.454599380493164, -0.8194718158282708, -42.67649841308594], + "visible_nodes": [145, 147, 150, 151, 152, 153] + }, + { + "accessible_nodes": [144, 145, 147, 148, 149, 151, 152, 153, 159, 178], + "floor_index": 0, + "index": 150, + "offset_point_count": 0, + "position": [-23.419200897216797, 0.26276499032974243, -41.65510177612305], + "quaternion": { + "w": 0.7801156582216114, + "x": -0.0020016890442231504, + "y": -0.6256255982564758, + "z": 0.0028607099627500406 + }, + "standing_position": [-23.419200897216797, -0.8516517295411719, -41.65510177612305], + "visible_nodes": [144, 145, 147, 148, 149, 151, 152, 153, 159, 178] + }, + { + "accessible_nodes": [149, 150, 152, 153], + "floor_index": 0, + "index": 151, + "offset_point_count": 0, + "position": [-24.35409927368164, 0.2755360007286072, -42.625701904296875], + "quaternion": { + "w": -0.9775571259345452, + "x": -0.021920673223972117, + "y": -0.20748687928536305, + "z": -0.029167556649960978 + }, + "standing_position": [-24.35409927368164, -0.8164602459851376, -42.625701904296875], + "visible_nodes": [149, 150, 152, 153] + }, + { + "accessible_nodes": [144, 148, 149, 150, 151], + "floor_index": 0, + "index": 152, + "offset_point_count": 0, + "position": [-22.02400016784668, 0.3519740104675293, -43.61949920654297], + "quaternion": { + "w": -0.13697866736325442, + "x": -0.01880720103158797, + "y": -0.990170418443963, + "z": -0.02111105830109751 + }, + "standing_position": [-22.02400016784668, -0.7738820381270655, -43.61949920654297], + "visible_nodes": [144, 148, 149, 150, 151] + }, + { + "accessible_nodes": [130, 133, 134, 135, 143, 144, 147, 148, 149, 150, 151], + "floor_index": 0, + "index": 153, + "offset_point_count": 0, + "position": [-22.391700744628906, 0.22544899582862854, -41.00960159301758], + "quaternion": { + "w": 0.2109446902612911, + "x": -0.019620689511654268, + "y": -0.9772026252856925, + "z": -0.01387135154129793 + }, + "standing_position": [-22.391700744628906, -0.8765128868178138, -41.00960159301758], + "visible_nodes": [130, 133, 134, 135, 143, 144, 147, 148, 149, 150, 151] + }, + { + "accessible_nodes": [29, 122, 123, 126, 127, 128, 129, 130, 131, 132, 155, 156], + "floor_index": 0, + "index": 154, + "offset_point_count": 0, + "position": [-34.58729934692383, 0.3427079916000366, -43.76129913330078], + "quaternion": { + "w": 0.6348646762864559, + "x": -0.009432269668349534, + "y": -0.77256560309785, + "z": -0.0005007025012598221 + }, + "standing_position": [-34.58729934692383, -0.7957632761816991, -43.76129913330078], + "visible_nodes": [29, 122, 123, 126, 127, 128, 129, 130, 131, 132, 155, 156] + }, + { + "accessible_nodes": [122, 123, 124, 125, 128, 129, 130, 131, 132, 133, 154, 156], + "floor_index": 0, + "index": 155, + "offset_point_count": 0, + "position": [-35.8656005859375, 0.3828989863395691, -44.930301666259766], + "quaternion": { + "w": 0.8367449280227522, + "x": -0.0008211855856637765, + "y": -0.5475355926902304, + "z": 0.007875893510200084 + }, + "standing_position": [-35.8656005859375, -0.6450434269345677, -44.930301666259766], + "visible_nodes": [122, 123, 124, 125, 128, 129, 130, 131, 132, 133, 154, 156] + }, + { + "accessible_nodes": [29, 74, 75, 101, 102, 105, 106, 122, 123, 124, 125, 126, 127, 130, 131, 132, 154, 155, 157, 158, 159, 160, 167], + "floor_index": 0, + "index": 156, + "offset_point_count": 0, + "position": [-33.6786994934082, 0.06983769685029984, -35.45790100097656], + "quaternion": { + "w": 0.3223375407888478, + "x": -0.025904041302110326, + "y": -0.9462112615232247, + "z": -0.010570912673252204 + }, + "standing_position": [-33.6786994934082, -1.053847344203496, -35.45790100097656], + "visible_nodes": [29, 74, 75, 101, 102, 105, 106, 122, 123, 124, 125, 126, 127, 130, 131, 132, 154, 155, 157, 158, 159, 160, 167] + }, + { + "accessible_nodes": [74, 75, 101, 102, 105, 106, 120, 126, 156, 158, 159, 160, 166, 214], + "floor_index": 0, + "index": 157, + "offset_point_count": 0, + "position": [-31.249399185180664, 0.026447800919413567, -35.20690155029297], + "quaternion": { + "w": -0.1034073394526644, + "x": -0.02519388332766362, + "y": -0.9942091223121535, + "z": -0.014846405552222197 + }, + "standing_position": [-31.249399185180664, -1.0759122244498875, -35.20690155029297], + "visible_nodes": [74, 75, 101, 102, 105, 106, 120, 126, 156, 158, 159, 160, 166, 214] + }, + { + "accessible_nodes": [74, 75, 101, 102, 105, 106, 120, 121, 156, 157, 159, 160, 161, 162, 169, 178, 214], + "floor_index": 0, + "index": 158, + "offset_point_count": 0, + "position": [-28.72640037536621, 0.013101600110530853, -35.19369888305664], + "quaternion": { + "w": -0.1357484830275136, + "x": -0.02582995951950898, + "y": -0.9903183098306924, + "z": -0.013221299567519927 + }, + "standing_position": [-28.72640037536621, -1.0923748965086606, -35.19369888305664], + "visible_nodes": [74, 75, 101, 102, 105, 106, 120, 121, 156, 157, 159, 160, 161, 162, 169, 178, 214] + }, + { + "accessible_nodes": [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 156, 157, 158, 160, 178, 214], + "floor_index": 0, + "index": 159, + "offset_point_count": 0, + "position": [-26.149999618530273, 0.032781701534986496, -35.82229995727539], + "quaternion": { + "w": 0.006035561219269308, + "x": -0.02237565884450976, + "y": -0.9995717606915452, + "z": -0.017866035115611353 + }, + "standing_position": [-26.149999618530273, -1.0836597476498666, -35.82229995727539], + "visible_nodes": [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 156, 157, 158, 160, 178, 214] + }, + { + "accessible_nodes": [74, 75, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 178, 214], + "floor_index": 0, + "index": 160, + "offset_point_count": 0, + "position": [-22.569799423217773, 0.04269089922308922, -35.94179916381836], + "quaternion": { + "w": -0.4356933643249327, + "x": -0.02926979959541141, + "y": -0.899497037657397, + "z": -0.01482046351981788 + }, + "standing_position": [-22.569799423217773, -1.0715669910141132, -35.94179916381836], + "visible_nodes": [74, 75, 100, 101, 102, 105, 106, 120, 121, 156, 157, 158, 159, 178, 214] + }, + { + "accessible_nodes": [126, 127, 158, 162, 163, 164, 165, 166, 167, 168, 170, 177], + "floor_index": 0, + "index": 161, + "offset_point_count": 0, + "position": [-28.636899948120117, -0.009825440123677254, -32.56169891357422], + "quaternion": { + "w": -0.8410476853734637, + "x": -0.02039280097598014, + "y": -0.5405142902290189, + "z": -0.008197239775732706 + }, + "standing_position": [-28.636899948120117, -1.114058336691723, -32.56169891357422], + "visible_nodes": [126, 127, 158, 162, 163, 164, 165, 166, 167, 168, 170, 177] + }, + { + "accessible_nodes": [126, 127, 158, 161, 163, 164, 165, 166, 167, 168], + "floor_index": 0, + "index": 162, + "offset_point_count": 0, + "position": [-29.758100509643555, -0.00397044001147151, -32.323001861572266], + "quaternion": { + "w": -0.9889050200140216, + "x": -0.007732019208942826, + "y": 0.14769770958437395, + "z": -0.013873092974525264 + }, + "standing_position": [-29.758100509643555, -1.1179227003512922, -32.323001861572266], + "visible_nodes": [126, 127, 158, 161, 163, 164, 165, 166, 167, 168] + }, + { + "accessible_nodes": [124, 126, 127, 161, 162, 164, 165, 166, 167, 168], + "floor_index": 0, + "index": 163, + "offset_point_count": 0, + "position": [-31.464099884033203, 0.0007996559725143015, -32.400901794433594], + "quaternion": { + "w": -0.9862122193776643, + "x": -0.011585625905887962, + "y": 0.1642793608300664, + "z": -0.016233247125896952 + }, + "standing_position": [-31.464099884033203, -1.1245773551923173, -32.400901794433594], + "visible_nodes": [124, 126, 127, 161, 162, 164, 165, 166, 167, 168] + }, + { + "accessible_nodes": [124, 126, 127, 128, 161, 162, 163, 165, 166, 167, 168], + "floor_index": 0, + "index": 164, + "offset_point_count": 0, + "position": [-32.65879821777344, 0.004259929992258549, -32.38970184326172], + "quaternion": { + "w": -0.9861562522479358, + "x": -0.011918416360850182, + "y": 0.1649030556612637, + "z": -0.012680182682826271 + }, + "standing_position": [-32.65879821777344, -1.1127137238050557, -32.38970184326172], + "visible_nodes": [124, 126, 127, 128, 161, 162, 163, 165, 166, 167, 168] + }, + { + "accessible_nodes": [127, 161, 162, 163, 164, 166, 167, 168, 169], + "floor_index": 0, + "index": 165, + "offset_point_count": 0, + "position": [-26.89900016784668, -0.011188800446689129, -32.181400299072266], + "quaternion": { + "w": -0.08429735300674031, + "x": 0.005268314429728026, + "y": -0.99636857224596, + "z": -0.01076361178026357 + }, + "standing_position": [-26.89900016784668, -1.1062685491333888, -32.181400299072266], + "visible_nodes": [127, 161, 162, 163, 164, 166, 167, 168, 169] + }, + { + "accessible_nodes": [127, 157, 161, 162, 163, 164, 165, 167, 168, 172], + "floor_index": 0, + "index": 166, + "offset_point_count": 0, + "position": [-24.50309944152832, 0.004568899981677532, -32.005401611328125], + "quaternion": { + "w": -0.015058037781738432, + "x": 0.005552527551909374, + "y": -0.9998148582851808, + "z": -0.010614115769791526 + }, + "standing_position": [-24.50309944152832, -1.0721604108108576, -32.005401611328125], + "visible_nodes": [127, 157, 161, 162, 163, 164, 165, 167, 168, 172] + }, + { + "accessible_nodes": [127, 156, 161, 162, 163, 164, 165, 166, 168, 172, 176], + "floor_index": 0, + "index": 167, + "offset_point_count": 0, + "position": [-22.51129913330078, 0.018399400636553764, -32.19960021972656], + "quaternion": { + "w": -0.05064612364375141, + "x": 0.005727310573017095, + "y": -0.9986796976323391, + "z": -0.0064053797866338085 + }, + "standing_position": [-22.51129913330078, -1.0405576078516514, -32.19960021972656], + "visible_nodes": [127, 156, 161, 162, 163, 164, 165, 166, 168, 172, 176] + }, + { + "accessible_nodes": [127, 161, 162, 163, 164, 165, 166, 167, 172, 176], + "floor_index": 0, + "index": 168, + "offset_point_count": 0, + "position": [-21.14240074157715, 0.02997020073235035, -32.67879867553711], + "quaternion": { + "w": -0.04143189166052709, + "x": 0.008136574375892039, + "y": -0.9990716663401865, + "z": -0.008543933288238884 + }, + "standing_position": [-21.14240074157715, -1.0709352690601235, -32.67879867553711], + "visible_nodes": [127, 161, 162, 163, 164, 165, 166, 167, 172, 176] + }, + { + "accessible_nodes": [158, 165, 170, 171, 172, 174, 176, 177], + "floor_index": 0, + "index": 169, + "offset_point_count": 0, + "position": [-26.75149917602539, -0.015499499626457691, -30.591100692749023], + "quaternion": { + "w": -0.7877694253437808, + "x": 0.0161098095881476, + "y": -0.6157473680950685, + "z": -0.003870207474769515 + }, + "standing_position": [-26.75149917602539, -1.1369145623866974, -30.591100692749023], + "visible_nodes": [158, 165, 170, 171, 172, 174, 176, 177] + }, + { + "accessible_nodes": [161, 169, 171, 172, 174, 176, 177], + "floor_index": 0, + "index": 170, + "offset_point_count": 0, + "position": [-25.138999938964844, -0.008414209820330143, -30.365400314331055], + "quaternion": { + "w": -0.18020224451767744, + "x": 0.007542848478958569, + "y": -0.983573996396279, + "z": -0.007242772360621359 + }, + "standing_position": [-25.138999938964844, -1.0596763705907597, -30.365400314331055], + "visible_nodes": [161, 169, 171, 172, 174, 176, 177] + }, + { + "accessible_nodes": [169, 170, 172, 174, 176, 177], + "floor_index": 0, + "index": 171, + "offset_point_count": 0, + "position": [-23.401599884033203, -0.00673652021214366, -30.511899948120117], + "quaternion": { + "w": -0.06064775372576557, + "x": 0.0056005484351463975, + "y": -0.9981077142077379, + "z": -0.008454098142476744 + }, + "standing_position": [-23.401599884033203, -1.0087468230706915, -30.511899948120117], + "visible_nodes": [169, 170, 172, 174, 176, 177] + }, + { + "accessible_nodes": [166, 167, 168, 169, 170, 171, 173, 174, 176, 177], + "floor_index": 0, + "index": 172, + "offset_point_count": 0, + "position": [-27.991199493408203, -0.003735099919140339, -30.514999389648438], + "quaternion": { + "w": -0.9986158492260793, + "x": 0.0007006541258459621, + "y": -0.05206079951625265, + "z": 0.007455068991459616 + }, + "standing_position": [-27.991199493408203, -1.12971617885132, -30.514999389648438], + "visible_nodes": [166, 167, 168, 169, 170, 171, 173, 174, 176, 177] + }, + { + "accessible_nodes": [172], + "floor_index": 0, + "index": 173, + "offset_point_count": 0, + "position": [-28.11090087890625, -0.021497899666428566, -29.347900390625], + "quaternion": { + "w": -0.7041364270950423, + "x": 0.0023338593224055282, + "y": -0.7099830285889552, + "z": -0.010513812490200058 + }, + "standing_position": [-28.11090087890625, -1.1117653088618251, -29.347900390625], + "visible_nodes": [172] + }, + { + "accessible_nodes": [169, 170, 171, 172, 175, 176, 177], + "floor_index": 0, + "index": 174, + "offset_point_count": 0, + "position": [-29.66990089416504, 0.015584399923682213, -30.569900512695312], + "quaternion": { + "w": -0.9999406096584555, + "x": -0.003800707399571962, + "y": 0.005789345070644814, + "z": 0.008415498915566992 + }, + "standing_position": [-29.66990089416504, -1.1127657046014958, -30.569900512695312], + "visible_nodes": [169, 170, 171, 172, 175, 176, 177] + }, + { + "accessible_nodes": [174, 176], + "floor_index": 0, + "index": 175, + "offset_point_count": 0, + "position": [-29.836599349975586, -0.00874148029834032, -29.653099060058594], + "quaternion": { + "w": -0.9911350089621543, + "x": 0.002926140171034223, + "y": -0.13281012821405516, + "z": 0.0020765694353445004 + }, + "standing_position": [-29.836599349975586, -1.1165402576327355, -29.653099060058594], + "visible_nodes": [174, 176] + }, + { + "accessible_nodes": [167, 168, 169, 170, 171, 172, 174, 175], + "floor_index": 0, + "index": 176, + "offset_point_count": 0, + "position": [-31.395999908447266, 0.013253799639642239, -29.91790008544922], + "quaternion": { + "w": -0.9931462154078944, + "x": -0.0019044179782136017, + "y": 0.11673963981999183, + "z": 0.005368897471892865 + }, + "standing_position": [-31.395999908447266, -1.0896033642753584, -29.91790008544922], + "visible_nodes": [167, 168, 169, 170, 171, 172, 174, 175] + }, + { + "accessible_nodes": [161, 169, 170, 171, 172, 174], + "floor_index": 0, + "index": 177, + "offset_point_count": 0, + "position": [-24.78820037841797, -0.00015114199777599424, -29.806499481201172], + "quaternion": { + "w": -0.3125143445879648, + "x": 0.01551938355960373, + "y": -0.9497787330841854, + "z": -0.0037812395489767174 + }, + "standing_position": [-24.78820037841797, -1.0245078035657662, -29.806499481201172], + "visible_nodes": [161, 169, 170, 171, 172, 174] + }, + { + "accessible_nodes": [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 158, 159, 160, 213, 214], + "floor_index": 0, + "index": 178, + "offset_point_count": 0, + "position": [-25.71310043334961, 0.07721160352230072, -36.95209884643555], + "quaternion": { + "w": 0.6204068985541664, + "x": 0.00038780034702352016, + "y": -0.7837319812193948, + "z": -0.02931404336454186 + }, + "standing_position": [-25.71310043334961, -1.0429962685348124, -36.95209884643555], + "visible_nodes": [74, 75, 100, 101, 102, 105, 106, 120, 121, 144, 147, 150, 158, 159, 160, 213, 214] + }, + { + "accessible_nodes": [26, 27, 29, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 122, 180, 181, 182, 183, 184, 186], + "floor_index": 0, + "index": 179, + "offset_point_count": 0, + "position": [-5.021009922027588, 0.14278799295425415, -23.741899490356445], + "quaternion": { + "w": 0.1706542079629859, + "x": 0.003814989712559569, + "y": -0.9853234792739476, + "z": -0.00047986668799815244 + }, + "standing_position": [-5.021009922027588, -0.9761321731165453, -23.741899490356445], + "visible_nodes": [26, 27, 29, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 122, 180, 181, 182, 183, 184, 186] + }, + { + "accessible_nodes": [26, 27, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 179, 181, 182, 183, 184, 186, 187, 189, 190, 203], + "floor_index": 0, + "index": 180, + "offset_point_count": 0, + "position": [-2.489799976348877, -0.043093398213386536, -23.51020050048828], + "quaternion": { + "w": -0.2654402444799251, + "x": 0.012584298442877714, + "y": -0.9640451284416953, + "z": 0.0003162869512206035 + }, + "standing_position": [-2.489799976348877, -1.1518788334116161, -23.51020050048828], + "visible_nodes": [26, 27, 30, 57, 58, 59, 73, 93, 94, 96, 97, 98, 179, 181, 182, 183, 184, 186, 187, 189, 190, 203] + }, + { + "accessible_nodes": [26, 27, 57, 58, 59, 73, 97, 179, 180, 182, 183, 184, 186], + "floor_index": 0, + "index": 181, + "offset_point_count": 0, + "position": [2.652209997177124, 0.030313199386000633, -23.7677001953125], + "quaternion": { + "w": 0.20740372454215317, + "x": 0.00008632681423384986, + "y": -0.9781311178168418, + "z": 0.015595453000828914 + }, + "standing_position": [2.652209997177124, -1.0231923003010366, -23.7677001953125], + "visible_nodes": [26, 27, 57, 58, 59, 73, 97, 179, 180, 182, 183, 184, 186] + }, + { + "accessible_nodes": [26, 57, 58, 59, 73, 179, 180, 181, 183, 184], + "floor_index": 0, + "index": 182, + "offset_point_count": 0, + "position": [4.822659969329834, 0.04652180150151253, -23.909500122070312], + "quaternion": { + "w": 0.03126081923758042, + "x": 0.005728773029643747, + "y": -0.9992319898048824, + "z": 0.022920933203162734 + }, + "standing_position": [4.822659969329834, -1.0773065509476325, -23.909500122070312], + "visible_nodes": [26, 57, 58, 59, 73, 179, 180, 181, 183, 184] + }, + { + "accessible_nodes": [26, 27, 57, 58, 59, 73, 96, 97, 179, 180, 181, 182, 184, 185, 186, 188, 189, 190, 204], + "floor_index": 0, + "index": 183, + "offset_point_count": 0, + "position": [0.8879799842834473, -0.0031612201128154993, -23.65489959716797], + "quaternion": { + "w": 0.674063653575249, + "x": 0.008591608253510654, + "y": -0.7384594432296334, + "z": 0.015557769148706045 + }, + "standing_position": [0.8879799842834473, -1.1146995958475012, -23.65489959716797], + "visible_nodes": [26, 27, 57, 58, 59, 73, 96, 97, 179, 180, 181, 182, 184, 185, 186, 188, 189, 190, 204] + }, + { + "accessible_nodes": [ + 26, 27, 30, 57, 58, 59, 73, 96, 97, 120, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 203, 206, 209, 210, 212, 213, 214 + ], + "floor_index": 0, + "index": 184, + "offset_point_count": 0, + "position": [-1.036810040473938, -0.030545499175786972, -24.220500946044922], + "quaternion": { + "w": 0.759034147232377, + "x": 0.00301172889801254, + "y": -0.6508877947487288, + "z": 0.01425325427676135 + }, + "standing_position": [-1.036810040473938, -1.1010034424014576, -24.220500946044922], + "visible_nodes": [ + 26, 27, 30, 57, 58, 59, 73, 96, 97, 120, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 203, 206, 209, 210, 212, 213, 214 + ] + }, + { + "accessible_nodes": [183, 184, 187, 188, 189, 190, 203], + "floor_index": 0, + "index": 185, + "offset_point_count": 0, + "position": [0.7974439859390259, 0.03306280076503754, -21.10569953918457], + "quaternion": { + "w": -0.8449994762029465, + "x": -0.0009725289873611943, + "y": -0.5347618125183319, + "z": 0.00218021954014595 + }, + "standing_position": [0.7974439859390259, -1.068907370159928, -21.10569953918457], + "visible_nodes": [183, 184, 187, 188, 189, 190, 203] + }, + { + "accessible_nodes": [94, 98, 120, 179, 180, 181, 183, 184, 187, 188, 189, 190, 203, 206, 209, 210, 212, 213], + "floor_index": 0, + "index": 186, + "offset_point_count": 0, + "position": [-0.9787610173225403, 0.014385799877345562, -21.476499557495117], + "quaternion": { + "w": -0.9058833367064251, + "x": 0.0018388595814009532, + "y": -0.42347000474204355, + "z": 0.006719411646374197 + }, + "standing_position": [-0.9787610173225403, -1.1063610951975635, -21.476499557495117], + "visible_nodes": [94, 98, 120, 179, 180, 181, 183, 184, 187, 188, 189, 190, 203, 206, 209, 210, 212, 213] + }, + { + "accessible_nodes": [120, 180, 184, 185, 186, 188, 189, 190, 191, 193, 203, 206, 209, 210, 212, 213, 221, 222], + "floor_index": 0, + "index": 187, + "offset_point_count": 0, + "position": [-1.1446199417114258, 0.062403298914432526, -18.865100860595703], + "quaternion": { + "w": -0.8008463213175046, + "x": -0.0012179571791669811, + "y": -0.598809090278823, + "z": 0.008445860930048045 + }, + "standing_position": [-1.1446199417114258, -1.0252397390843302, -18.865100860595703], + "visible_nodes": [120, 180, 184, 185, 186, 188, 189, 190, 191, 193, 203, 206, 209, 210, 212, 213, 221, 222] + }, + { + "accessible_nodes": [120, 183, 184, 185, 186, 187, 203, 206, 209, 210, 212, 213], + "floor_index": 0, + "index": 188, + "offset_point_count": 0, + "position": [-0.9144970178604126, 0.10752599686384201, -16.267200469970703], + "quaternion": { + "w": 0.3756091809338468, + "x": 0.008149903818202648, + "y": -0.9266567999213869, + "z": 0.012589775227173618 + }, + "standing_position": [-0.9144970178604126, -0.9757755834502182, -16.267200469970703], + "visible_nodes": [120, 183, 184, 185, 186, 187, 203, 206, 209, 210, 212, 213] + }, + { + "accessible_nodes": [180, 183, 184, 185, 186, 187, 190, 193, 203, 209], + "floor_index": 0, + "index": 189, + "offset_point_count": 0, + "position": [1.409409999847412, 0.07706160098314285, -18.714500427246094], + "quaternion": { + "w": -0.8701685538152434, + "x": 0.019414745271955757, + "y": 0.4915315711416145, + "z": -0.028748371954493167 + }, + "standing_position": [1.409409999847412, -1.025188525934501, -18.714500427246094], + "visible_nodes": [180, 183, 184, 185, 186, 187, 190, 193, 203, 209] + }, + { + "accessible_nodes": [180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 203, 209, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239], + "floor_index": 0, + "index": 190, + "offset_point_count": 0, + "position": [1.804710030555725, 0.12200400233268738, -16.577699661254883], + "quaternion": { + "w": 0.17642228826351797, + "x": -0.020476972309824447, + "y": -0.9840142860727553, + "z": 0.013105269793118953 + }, + "standing_position": [1.804710030555725, -0.9987634191031023, -16.577699661254883], + "visible_nodes": [180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 203, 209, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239] + }, + { + "accessible_nodes": [187, 190, 192, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 231, 237, 238, 239, 240, 244], + "floor_index": 0, + "index": 191, + "offset_point_count": 0, + "position": [8.926549911499023, 0.16669100522994995, -16.31209945678711], + "quaternion": { + "w": -0.7778262450709712, + "x": 0.010237422002071212, + "y": -0.6281968730401455, + "z": -0.01581720594498991 + }, + "standing_position": [8.926549911499023, -0.9083304238149628, -16.31209945678711], + "visible_nodes": [187, 190, 192, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 231, 237, 238, 239, 240, 244] + }, + { + "accessible_nodes": [190, 191, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 227, 236, 237, 238, 239, 240, 246], + "floor_index": 0, + "index": 192, + "offset_point_count": 0, + "position": [9.942000389099121, 0.2787329852581024, -18.507299423217773], + "quaternion": { + "w": 0.791003042369064, + "x": -0.025240824521933557, + "y": -0.6098948914129432, + "z": 0.04129495636231594 + }, + "standing_position": [9.942000389099121, -0.7988373856967792, -18.507299423217773], + "visible_nodes": [190, 191, 193, 194, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 227, 236, 237, 238, 239, 240, 246] + }, + { + "accessible_nodes": [187, 189, 190, 191, 192, 194, 215, 216, 217, 218, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239, 240], + "floor_index": 0, + "index": 193, + "offset_point_count": 0, + "position": [5.1349101066589355, 0.09879250079393387, -16.531299591064453], + "quaternion": { + "w": -0.9628844038508936, + "x": 0.02249656756074276, + "y": 0.26777201365497316, + "z": -0.02541025825077537 + }, + "standing_position": [5.1349101066589355, -0.9838068451579178, -16.531299591064453], + "visible_nodes": [187, 189, 190, 191, 192, 194, 215, 216, 217, 218, 221, 223, 224, 225, 226, 231, 236, 237, 238, 239, 240] + }, + { + "accessible_nodes": [ + 16, 45, 46, 49, 190, 191, 192, 193, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 230, 231, 236, 237, 238, 239, 240, 244, + 257, 260 + ], + "floor_index": 0, + "index": 194, + "offset_point_count": 0, + "position": [7.675970077514648, 0.12457100301980972, -17.025299072265625], + "quaternion": { + "w": 0.8123226288311466, + "x": -0.02134275000983927, + "y": -0.5819429612241986, + "z": 0.0319189539629752 + }, + "standing_position": [7.675970077514648, -0.9364998881181168, -17.025299072265625], + "visible_nodes": [ + 16, 45, 46, 49, 190, 191, 192, 193, 195, 215, 216, 218, 220, 221, 222, 223, 224, 225, 226, 230, 231, 236, 237, 238, 239, 240, 244, + 257, 260 + ] + }, + { + "accessible_nodes": [16, 45, 46, 49, 191, 192, 194, 215, 216, 218, 220, 221, 222, 223, 224, 225, 236, 237, 238, 239, 240, 244], + "floor_index": 0, + "index": 195, + "offset_point_count": 0, + "position": [7.6390700340271, 0.06752990186214447, -19.35890007019043], + "quaternion": { + "w": 0.6067263820302812, + "x": -0.024818223993203423, + "y": -0.794165502140743, + "z": 0.023839299529319524 + }, + "standing_position": [7.6390700340271, -0.9717472727589564, -19.35890007019043], + "visible_nodes": [16, 45, 46, 49, 191, 192, 194, 215, 216, 218, 220, 221, 222, 223, 224, 225, 236, 237, 238, 239, 240, 244] + }, + { + "accessible_nodes": [2, 3, 13, 15, 16, 44, 45, 46, 47, 49, 197, 198, 202, 227, 228, 229], + "floor_index": 0, + "index": 196, + "offset_point_count": 0, + "position": [10.159899711608887, 0.3340429961681366, -8.456040382385254], + "quaternion": { + "w": 0.7663225981680839, + "x": -0.0011790583138470566, + "y": -0.6421416171127257, + "z": -0.020060054557125832 + }, + "standing_position": [10.159899711608887, -0.7687446720492639, -8.456040382385254], + "visible_nodes": [2, 3, 13, 15, 16, 44, 45, 46, 47, 49, 197, 198, 202, 227, 228, 229] + }, + { + "accessible_nodes": [ + 2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 44, 196, 198, 200, 201, 221, 222, 223, 227, 228, 230, 241, 252, 261, 262, 269 + ], + "floor_index": 0, + "index": 197, + "offset_point_count": 0, + "position": [12.531900405883789, 0.037801701575517654, -7.156169891357422], + "quaternion": { + "w": -0.06933153360450572, + "x": -0.024747820353577327, + "y": -0.9972778612425376, + "z": 0.004189781102569331 + }, + "standing_position": [12.531900405883789, -0.9488785189928284, -7.156169891357422], + "visible_nodes": [2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 44, 196, 198, 200, 201, 221, 222, 223, 227, 228, 230, 241, 252, 261, 262, 269] + }, + { + "accessible_nodes": [2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 44, 196, 197, 199, 200, 201, 202, 228, 229, 230, 231, 232], + "floor_index": 0, + "index": 198, + "offset_point_count": 0, + "position": [15.008600234985352, -0.09420280158519745, -6.709889888763428], + "quaternion": { + "w": 0.0035818229885778994, + "x": -0.023359307007944603, + "y": -0.9996700040401791, + "z": 0.010069650582933421 + }, + "standing_position": [15.008600234985352, -1.1200095488644553, -6.709889888763428], + "visible_nodes": [2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 44, 196, 197, 199, 200, 201, 202, 228, 229, 230, 231, 232] + }, + { + "accessible_nodes": [198, 200, 201, 202, 227, 229, 230], + "floor_index": 0, + "index": 199, + "offset_point_count": 0, + "position": [16.704700469970703, -0.17152899503707886, -11.285900115966797], + "quaternion": { + "w": 0.7018262673830861, + "x": -0.01313981418225371, + "y": -0.7120507946888632, + "z": -0.015840490335044057 + }, + "standing_position": [16.704700469970703, -1.2951785897673322, -11.285900115966797], + "visible_nodes": [198, 200, 201, 202, 227, 229, 230] + }, + { + "accessible_nodes": [2, 3, 15, 44, 197, 198, 199, 201, 202, 227, 229, 230, 231, 232], + "floor_index": 0, + "index": 200, + "offset_point_count": 0, + "position": [17.10219955444336, -0.19690699875354767, -8.745570182800293], + "quaternion": { + "w": -0.812240300338838, + "x": -0.020270560176433784, + "y": -0.5822531002104641, + "z": 0.028916607214050052 + }, + "standing_position": [17.10219955444336, -1.2699787286079032, -8.745570182800293], + "visible_nodes": [2, 3, 15, 44, 197, 198, 199, 201, 202, 227, 229, 230, 231, 232] + }, + { + "accessible_nodes": [44, 197, 198, 199, 200, 202, 227, 229, 230, 231, 232, 233], + "floor_index": 0, + "index": 201, + "offset_point_count": 0, + "position": [19.552200317382812, -0.3109680116176605, -10.74120044708252], + "quaternion": { + "w": 0.18525967277210578, + "x": -0.01742399309783235, + "y": -0.9825335187023451, + "z": 0.001775248092827475 + }, + "standing_position": [19.552200317382812, -1.4022921353587259, -10.74120044708252], + "visible_nodes": [44, 197, 198, 199, 200, 202, 227, 229, 230, 231, 232, 233] + }, + { + "accessible_nodes": [15, 196, 198, 199, 200, 201, 227, 229, 230], + "floor_index": 0, + "index": 202, + "offset_point_count": 0, + "position": [18.10650062561035, -0.24382199347019196, -12.211899757385254], + "quaternion": { + "w": -0.896969142651516, + "x": 0.0026190402974725887, + "y": 0.4415435560621348, + "z": 0.021881219338747353 + }, + "standing_position": [18.10650062561035, -1.3354729436084258, -12.211899757385254], + "visible_nodes": [15, 196, 198, 199, 200, 201, 227, 229, 230] + }, + { + "accessible_nodes": [120, 180, 184, 185, 186, 187, 188, 189, 190, 204, 205, 206, 207, 209, 210, 212, 213, 214], + "floor_index": 0, + "index": 203, + "offset_point_count": 0, + "position": [-1.0309799909591675, -0.050251398235559464, -26.00119972229004], + "quaternion": { + "w": 0.6935688388242189, + "x": 0.005646124842538131, + "y": -0.7202629487087883, + "z": 0.012316355083732092 + }, + "standing_position": [-1.0309799909591675, -1.1222510196330433, -26.00119972229004], + "visible_nodes": [120, 180, 184, 185, 186, 187, 188, 189, 190, 204, 205, 206, 207, 209, 210, 212, 213, 214] + }, + { + "accessible_nodes": [183, 203, 205], + "floor_index": 0, + "index": 204, + "offset_point_count": 0, + "position": [-2.767620086669922, -0.08150540292263031, -26.19059944152832], + "quaternion": { + "w": -0.9999488355541407, + "x": -0.003918700067526039, + "y": 0.007692118720193155, + "z": -0.0052725192238820655 + }, + "standing_position": [-2.767620086669922, -1.1531666252512769, -26.19059944152832], + "visible_nodes": [183, 203, 205] + }, + { + "accessible_nodes": [203, 204], + "floor_index": 0, + "index": 205, + "offset_point_count": 0, + "position": [-3.4048800468444824, -0.08525560051202774, -26.107900619506836], + "quaternion": { + "w": -0.9522709616053752, + "x": 0.0024535757364621434, + "y": 0.30520306681264475, + "z": -0.005008828864659258 + }, + "standing_position": [-3.4048800468444824, -1.1348405791731981, -26.107900619506836], + "visible_nodes": [203, 204] + }, + { + "accessible_nodes": [120, 184, 186, 187, 188, 203, 208, 209, 210, 211, 212, 213, 214], + "floor_index": 0, + "index": 206, + "offset_point_count": 0, + "position": [-1.2326099872589111, -0.07540459930896759, -28.341899871826172], + "quaternion": { + "w": 0.6614347474490854, + "x": 0.010791439959327768, + "y": -0.7498072709369199, + "z": 0.013292003781787848 + }, + "standing_position": [-1.2326099872589111, -1.1850459013185937, -28.341899871826172], + "visible_nodes": [120, 184, 186, 187, 188, 203, 208, 209, 210, 211, 212, 213, 214] + }, + { + "accessible_nodes": [120, 203, 208, 209, 210, 212, 213], + "floor_index": 0, + "index": 207, + "offset_point_count": 0, + "position": [-3.5236001014709473, -0.1551010012626648, -29.3789005279541], + "quaternion": { + "w": -0.9999416006440389, + "x": 0.00004487629761721665, + "y": 0.007082038871136106, + "z": -0.008163973157034248 + }, + "standing_position": [-3.5236001014709473, -1.272053308149377, -29.3789005279541], + "visible_nodes": [120, 203, 208, 209, 210, 212, 213] + }, + { + "accessible_nodes": [120, 206, 207, 209, 210, 212, 213], + "floor_index": 0, + "index": 208, + "offset_point_count": 0, + "position": [-3.58447003364563, -0.13600799441337585, -28.15169906616211], + "quaternion": { + "w": -0.8014958673418254, + "x": 0.005763866380014669, + "y": -0.5979672165236236, + "z": 0.0025226591689112227 + }, + "standing_position": [-3.58447003364563, -1.2576836991004159, -28.15169906616211], + "visible_nodes": [120, 206, 207, 209, 210, 212, 213] + }, + { + "accessible_nodes": [120, 184, 186, 187, 188, 189, 190, 203, 206, 207, 208, 210, 211, 212, 213, 214], + "floor_index": 0, + "index": 209, + "offset_point_count": 0, + "position": [-2.1029200553894043, -0.12435200065374374, -29.99180030822754], + "quaternion": { + "w": 0.2501655433969394, + "x": 0.016851276058263292, + "y": -0.9677928610814706, + "z": 0.022587756852435314 + }, + "standing_position": [-2.1029200553894043, -1.223854588967224, -29.99180030822754], + "visible_nodes": [120, 184, 186, 187, 188, 189, 190, 203, 206, 207, 208, 210, 211, 212, 213, 214] + }, + { + "accessible_nodes": [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 211, 212, 213, 214], + "floor_index": 0, + "index": 210, + "offset_point_count": 0, + "position": [-0.9622889757156372, -0.12177900224924088, -31.95870018005371], + "quaternion": { + "w": -0.3873054247920518, + "x": 0.008718170275918733, + "y": -0.9219024621784762, + "z": 0.003787565256703433 + }, + "standing_position": [-0.9622889757156372, -1.2066650706324544, -31.95870018005371], + "visible_nodes": [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 211, 212, 213, 214] + }, + { + "accessible_nodes": [120, 206, 209, 210, 212, 213, 214], + "floor_index": 0, + "index": 211, + "offset_point_count": 0, + "position": [-3.6539199352264404, -0.20712999999523163, -32.58340072631836], + "quaternion": { + "w": -0.9762790039555368, + "x": -0.011847251722244765, + "y": 0.21588370832211085, + "z": -0.011539375404236893 + }, + "standing_position": [-3.6539199352264404, -1.2874672593655647, -32.58340072631836], + "visible_nodes": [120, 206, 209, 210, 212, 213, 214] + }, + { + "accessible_nodes": [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 213, 214], + "floor_index": 0, + "index": 212, + "offset_point_count": 0, + "position": [-1.7270900011062622, -0.1462080031633377, -34.97079849243164], + "quaternion": { + "w": 0.6074320193654439, + "x": 0.01764305040413264, + "y": -0.7938877005043935, + "z": 0.021386163503717984 + }, + "standing_position": [-1.7270900011062622, -1.2279091041283552, -34.97079849243164], + "visible_nodes": [120, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 213, 214] + }, + { + "accessible_nodes": [102, 105, 106, 120, 121, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 214], + "floor_index": 0, + "index": 213, + "offset_point_count": 0, + "position": [-2.605220079421997, -0.1837339997291565, -36.10179901123047], + "quaternion": { + "w": 0.8405467436330457, + "x": 0.009924167395118488, + "y": -0.5410250996885838, + "z": 0.025971866305743843 + }, + "standing_position": [-2.605220079421997, -1.2752835184648414, -36.10179901123047], + "visible_nodes": [102, 105, 106, 120, 121, 178, 184, 186, 187, 188, 203, 206, 207, 208, 209, 210, 211, 212, 214] + }, + { + "accessible_nodes": [74, 75, 101, 102, 105, 106, 116, 120, 121, 157, 158, 159, 160, 178, 184, 203, 206, 209, 210, 211, 212, 213], + "floor_index": 0, + "index": 214, + "offset_point_count": 0, + "position": [-3.564610004425049, -0.21077099442481995, -36.86859893798828], + "quaternion": { + "w": -0.14895169070079864, + "x": 0.016792660095933973, + "y": -0.9887015312265535, + "z": 0.0008298440892027165 + }, + "standing_position": [-3.564610004425049, -1.3015357800175964, -36.86859893798828], + "visible_nodes": [74, 75, 101, 102, 105, 106, 116, 120, 121, 157, 158, 159, 160, 178, 184, 203, 206, 209, 210, 211, 212, 213] + }, + { + "accessible_nodes": [191, 192, 193, 194, 195, 216, 217, 219, 220, 221, 222, 223, 224, 225, 237, 238, 239, 240, 242], + "floor_index": 0, + "index": 215, + "offset_point_count": 0, + "position": [6.095200061798096, 0.17161600291728973, -20.10409927368164], + "quaternion": { + "w": 0.3523910932951324, + "x": -0.00618363408246497, + "y": -0.9356084018934682, + "z": 0.020474413370418575 + }, + "standing_position": [6.095200061798096, -0.9443573645064494, -20.10409927368164], + "visible_nodes": [191, 192, 193, 194, 195, 216, 217, 219, 220, 221, 222, 223, 224, 225, 237, 238, 239, 240, 242] + }, + { + "accessible_nodes": [191, 192, 193, 194, 195, 215, 217, 220, 221, 222, 223, 224, 225, 234, 235, 238, 239, 240, 242], + "floor_index": 0, + "index": 216, + "offset_point_count": 0, + "position": [5.92303991317749, 0.15582099556922913, -20.732200622558594], + "quaternion": { + "w": 0.4154851212170437, + "x": 0.00007803103805867667, + "y": -0.9092120073681088, + "z": 0.0265638781142731 + }, + "standing_position": [5.92303991317749, -0.9531899856736967, -20.732200622558594], + "visible_nodes": [191, 192, 193, 194, 195, 215, 217, 220, 221, 222, 223, 224, 225, 234, 235, 238, 239, 240, 242] + }, + { + "accessible_nodes": [44, 45, 55, 193, 215, 216, 218, 219, 220], + "floor_index": 0, + "index": 217, + "offset_point_count": 0, + "position": [6.210820198059082, 0.21616500616073608, -19.101299285888672], + "quaternion": { + "w": -0.9731470348213022, + "x": 0.0059088202292974686, + "y": -0.2301076126550319, + "z": 0.0006472918870823103 + }, + "standing_position": [6.210820198059082, -0.8694438773115112, -19.101299285888672], + "visible_nodes": [44, 45, 55, 193, 215, 216, 218, 219, 220] + }, + { + "accessible_nodes": [16, 191, 192, 193, 194, 195, 217, 219, 220, 222, 227, 241, 243, 244, 248, 254, 269], + "floor_index": 0, + "index": 218, + "offset_point_count": 0, + "position": [7.960820198059082, -0.008376269601285458, -22.674800872802734], + "quaternion": { + "w": 0.5977065199502312, + "x": 0.003827124080754851, + "y": -0.8014774738449336, + "z": 0.019134169637817285 + }, + "standing_position": [7.960820198059082, -1.1228958042461954, -22.674800872802734], + "visible_nodes": [16, 191, 192, 193, 194, 195, 217, 219, 220, 222, 227, 241, 243, 244, 248, 254, 269] + }, + { + "accessible_nodes": [215, 217, 218, 241, 243, 247, 248], + "floor_index": 0, + "index": 219, + "offset_point_count": 0, + "position": [8.947790145874023, 0.003256170079112053, -22.64310073852539], + "quaternion": { + "w": -0.045437337874438564, + "x": 0.009288640832964795, + "y": -0.9988003180507922, + "z": 0.015719232809788777 + }, + "standing_position": [8.947790145874023, -1.102844389590545, -22.64310073852539], + "visible_nodes": [215, 217, 218, 241, 243, 247, 248] + }, + { + "accessible_nodes": [ + 16, 46, 49, 191, 192, 194, 195, 215, 216, 217, 218, 221, 222, 223, 224, 227, 234, 235, 238, 239, 240, 242, 244, 256 + ], + "floor_index": 0, + "index": 220, + "offset_point_count": 0, + "position": [7.879819869995117, 0.03535420075058937, -20.717300415039062], + "quaternion": { + "w": -0.7556295052288744, + "x": 0.009352558232540506, + "y": -0.6548907758738852, + "z": 0.007393375826983411 + }, + "standing_position": [7.879819869995117, -1.0546701733989963, -20.717300415039062], + "visible_nodes": [16, 46, 49, 191, 192, 194, 195, 215, 216, 217, 218, 221, 222, 223, 224, 227, 234, 235, 238, 239, 240, 242, 244, 256] + }, + { + "accessible_nodes": [ + 187, 190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 222, 223, 224, 225, 226, 227, 228, 231, 238, 239, 240, 241, 252, 261, 262, + 269, 291, 298 + ], + "floor_index": 0, + "index": 221, + "offset_point_count": 0, + "position": [12.235199928283691, 0.1265619993209839, -15.662599563598633], + "quaternion": { + "w": 0.5760313205048866, + "x": 0.00825246686559281, + "y": -0.8173672117433063, + "z": 0.005538312996294494 + }, + "standing_position": [12.235199928283691, -0.9553749549140416, -15.662599563598633], + "visible_nodes": [ + 187, 190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 222, 223, 224, 225, 226, 227, 228, 231, 238, 239, 240, 241, 252, 261, 262, + 269, 291, 298 + ] + }, + { + "accessible_nodes": [ + 44, 45, 187, 191, 192, 194, 195, 197, 215, 216, 218, 220, 221, 223, 227, 228, 239, 240, 241, 252, 261, 262, 269, 291 + ], + "floor_index": 0, + "index": 222, + "offset_point_count": 0, + "position": [12.0378999710083, 0.3188070058822632, -12.791299819946289], + "quaternion": { + "w": -0.7299407796574808, + "x": 0.017585457698749918, + "y": -0.6831877879018354, + "z": 0.011474505451104395 + }, + "standing_position": [12.0378999710083, -0.8845550531350543, -12.791299819946289], + "visible_nodes": [ + 44, 45, 187, 191, 192, 194, 195, 197, 215, 216, 218, 220, 221, 223, 227, 228, 239, 240, 241, 252, 261, 262, 269, 291 + ] + }, + { + "accessible_nodes": [ + 190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 221, 222, 224, 225, 227, 228, 236, 237, 238, 239, 240, 241, 252 + ], + "floor_index": 0, + "index": 223, + "offset_point_count": 0, + "position": [11.514800071716309, 0.17930999398231506, -16.92639923095703], + "quaternion": { + "w": 0.6732867260444271, + "x": 0.00082775475472627, + "y": -0.7390546456538599, + "z": 0.021966819604469907 + }, + "standing_position": [11.514800071716309, -0.9518783644551347, -16.92639923095703], + "visible_nodes": [190, 191, 192, 193, 194, 195, 197, 215, 216, 220, 221, 222, 224, 225, 227, 228, 236, 237, 238, 239, 240, 241, 252] + }, + { + "accessible_nodes": [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 225, 226, 231, 239, 240, 241, 252, 253], + "floor_index": 0, + "index": 224, + "offset_point_count": 0, + "position": [14.184399604797363, 0.11288999766111374, -15.58430004119873], + "quaternion": { + "w": -0.10830386375283821, + "x": -0.005914661048872205, + "y": -0.9940802999903685, + "z": 0.006297328289370291 + }, + "standing_position": [14.184399604797363, -0.9987686609538726, -15.58430004119873], + "visible_nodes": [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 225, 226, 231, 239, 240, 241, 252, 253] + }, + { + "accessible_nodes": [190, 191, 192, 193, 194, 195, 215, 216, 221, 223, 224, 226, 231], + "floor_index": 0, + "index": 225, + "offset_point_count": 0, + "position": [16.510799407958984, 0.08271630108356476, -15.21679973602295], + "quaternion": { + "w": -0.36449591241812807, + "x": -0.002973010064870031, + "y": -0.9311192491128193, + "z": 0.012281534793574859 + }, + "standing_position": [16.510799407958984, -1.029039747169426, -15.21679973602295], + "visible_nodes": [190, 191, 192, 193, 194, 195, 215, 216, 221, 223, 224, 226, 231] + }, + { + "accessible_nodes": [190, 191, 193, 194, 221, 224, 225, 231, 232], + "floor_index": 0, + "index": 226, + "offset_point_count": 0, + "position": [19.12540054321289, 0.04917420074343681, -15.024900436401367], + "quaternion": { + "w": -0.1243633845989019, + "x": -0.005127688587254773, + "y": -0.9921178868420744, + "z": 0.014476124264573448 + }, + "standing_position": [19.12540054321289, -1.0246271336887842, -15.024900436401367], + "visible_nodes": [190, 191, 193, 194, 221, 224, 225, 231, 232] + }, + { + "accessible_nodes": [ + 15, 16, 44, 47, 192, 196, 197, 199, 200, 201, 202, 218, 220, 221, 222, 223, 228, 229, 239, 240, 241, 252, 261, 262, 269, 291 + ], + "floor_index": 0, + "index": 227, + "offset_point_count": 0, + "position": [12.241499900817871, 0.07768390327692032, -11.026000022888184], + "quaternion": { + "w": -0.9771646093036409, + "x": -0.0026161458594248952, + "y": 0.21176516315142285, + "z": 0.017262945493804055 + }, + "standing_position": [12.241499900817871, -0.9560613561667004, -11.026000022888184], + "visible_nodes": [ + 15, 16, 44, 47, 192, 196, 197, 199, 200, 201, 202, 218, 220, 221, 222, 223, 228, 229, 239, 240, 241, 252, 261, 262, 269, 291 + ] + }, + { + "accessible_nodes": [2, 3, 4, 5, 13, 15, 16, 44, 48, 196, 197, 198, 221, 222, 223, 227, 240, 241, 252, 261, 262, 269], + "floor_index": 0, + "index": 228, + "offset_point_count": 0, + "position": [12.510100364685059, 0.04357380047440529, -8.435569763183594], + "quaternion": { + "w": -0.722788453913862, + "x": -0.025212064467630607, + "y": -0.6903064947009552, + "z": 0.02044883396971932 + }, + "standing_position": [12.510100364685059, -0.961918185647807, -8.435569763183594], + "visible_nodes": [2, 3, 4, 5, 13, 15, 16, 44, 48, 196, 197, 198, 221, 222, 223, 227, 240, 241, 252, 261, 262, 269] + }, + { + "accessible_nodes": [15, 44, 196, 198, 199, 200, 201, 202, 227, 230], + "floor_index": 0, + "index": 229, + "offset_point_count": 0, + "position": [14.95419979095459, -0.06244479864835739, -11.371199607849121], + "quaternion": { + "w": -0.10652312642442154, + "x": -0.03569924343568769, + "y": -0.9936266246719506, + "z": 0.009193968852485091 + }, + "standing_position": [14.95419979095459, -1.1851181503214971, -11.371199607849121], + "visible_nodes": [15, 44, 196, 198, 199, 200, 201, 202, 227, 230] + }, + { + "accessible_nodes": [194, 197, 198, 199, 200, 201, 202, 229], + "floor_index": 0, + "index": 230, + "offset_point_count": 0, + "position": [15.209500312805176, -0.09400729835033417, -9.13716983795166], + "quaternion": { + "w": -0.9468494169474257, + "x": -0.00037788398619876726, + "y": 0.32110310679991505, + "z": 0.01920477150618357 + }, + "standing_position": [15.209500312805176, -1.1982780369743156, -9.13716983795166], + "visible_nodes": [194, 197, 198, 199, 200, 201, 202, 229] + }, + { + "accessible_nodes": [190, 191, 193, 194, 198, 200, 201, 221, 224, 225, 226, 232, 233, 235, 236, 248, 249, 265, 266, 275, 294, 295], + "floor_index": 0, + "index": 231, + "offset_point_count": 0, + "position": [22.190099716186523, -0.009483260102570057, -14.438699722290039], + "quaternion": { + "w": 0.4490258592191967, + "x": -0.0025865561390395566, + "y": -0.8934972692500196, + "z": 0.005631475702775825 + }, + "standing_position": [22.190099716186523, -1.144592269167893, -14.438699722290039], + "visible_nodes": [190, 191, 193, 194, 198, 200, 201, 221, 224, 225, 226, 232, 233, 235, 236, 248, 249, 265, 266, 275, 294, 295] + }, + { + "accessible_nodes": [198, 200, 201, 226, 231, 233], + "floor_index": 0, + "index": 232, + "offset_point_count": 0, + "position": [24.282699584960938, -0.042493101209402084, -16.618600845336914], + "quaternion": { + "w": 0.24544632905318034, + "x": 0.003860529604702835, + "y": -0.9692925964049501, + "z": 0.014596683698972723 + }, + "standing_position": [24.282699584960938, -1.1301806107565648, -16.618600845336914], + "visible_nodes": [198, 200, 201, 226, 231, 233] + }, + { + "accessible_nodes": [201, 231, 232, 234, 235], + "floor_index": 0, + "index": 233, + "offset_point_count": 0, + "position": [25.67970085144043, -0.09493079781532288, -18.91119956970215], + "quaternion": { + "w": 0.33908704140950413, + "x": 0.0010076542524414366, + "y": -0.9406200465835479, + "z": 0.015902658417095213 + }, + "standing_position": [25.67970085144043, -1.1929628147805453, -18.91119956970215], + "visible_nodes": [201, 231, 232, 234, 235] + }, + { + "accessible_nodes": [216, 220, 233, 235, 237, 240, 242], + "floor_index": 0, + "index": 234, + "offset_point_count": 0, + "position": [23.400299072265625, -0.10714700073003769, -20.639400482177734], + "quaternion": { + "w": -0.8887824524213799, + "x": 0.0050599645492033635, + "y": 0.458300497503256, + "z": 0.000895393943726334 + }, + "standing_position": [23.400299072265625, -1.2171027468742075, -20.639400482177734], + "visible_nodes": [216, 220, 233, 235, 237, 240, 242] + }, + { + "accessible_nodes": [216, 220, 231, 233, 234, 236, 240, 242, 248, 249, 265, 266, 275, 294, 295, 306, 307], + "floor_index": 0, + "index": 235, + "offset_point_count": 0, + "position": [21.355100631713867, -0.08368360251188278, -20.876800537109375], + "quaternion": { + "w": -0.9964195765740234, + "x": 0.010580383015335459, + "y": 0.0833905738997513, + "z": 0.009060740066312174 + }, + "standing_position": [21.355100631713867, -1.1551978257396285, -20.876800537109375], + "visible_nodes": [216, 220, 231, 233, 234, 236, 240, 242, 248, 249, 265, 266, 275, 294, 295, 306, 307] + }, + { + "accessible_nodes": [190, 192, 193, 194, 195, 223, 231, 235, 237, 238, 239, 248, 249, 265, 266, 275, 294, 295, 306], + "floor_index": 0, + "index": 236, + "offset_point_count": 0, + "position": [21.39189910888672, -0.04092720150947571, -17.91670036315918], + "quaternion": { + "w": -0.9351923037711991, + "x": -0.0065474582215429315, + "y": -0.3537975074996861, + "z": 0.014135433998950954 + }, + "standing_position": [21.39189910888672, -1.1165887651965856, -17.91670036315918], + "visible_nodes": [190, 192, 193, 194, 195, 223, 231, 235, 237, 238, 239, 248, 249, 265, 266, 275, 294, 295, 306] + }, + { + "accessible_nodes": [190, 191, 192, 193, 194, 195, 215, 223, 234, 236, 238, 239], + "floor_index": 0, + "index": 237, + "offset_point_count": 0, + "position": [18.603599548339844, 0.021688800305128098, -17.77090072631836], + "quaternion": { + "w": -0.9992395653841963, + "x": -0.0004911092453144542, + "y": 0.03697728956434318, + "z": 0.01235817286866488 + }, + "standing_position": [18.603599548339844, -1.0754451549951674, -17.77090072631836], + "visible_nodes": [190, 191, 192, 193, 194, 195, 215, 223, 234, 236, 238, 239] + }, + { + "accessible_nodes": [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 236, 237, 239], + "floor_index": 0, + "index": 238, + "offset_point_count": 0, + "position": [16.07360076904297, 0.08239100128412247, -17.802000045776367], + "quaternion": { + "w": -0.9859770650527234, + "x": -0.0009746693969333166, + "y": 0.1665561628535465, + "z": 0.010359444447561096 + }, + "standing_position": [16.07360076904297, -1.0261374705226791, -17.802000045776367], + "visible_nodes": [190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 223, 236, 237, 239] + }, + { + "accessible_nodes": [ + 190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 236, 237, 238, 240, 241, 252, 261, 262, 269, 291, 298, 303 + ], + "floor_index": 0, + "index": 239, + "offset_point_count": 0, + "position": [12.737600326538086, 0.10183899849653244, -18.048500061035156], + "quaternion": { + "w": 0.6180544722691159, + "x": -0.0034393615282243177, + "y": -0.7860816417649472, + "z": 0.008514277309869304 + }, + "standing_position": [12.737600326538086, -0.9870995424993418, -18.048500061035156], + "visible_nodes": [ + 190, 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 236, 237, 238, 240, 241, 252, 261, 262, 269, 291, 298, 303 + ] + }, + { + "accessible_nodes": [ + 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 228, 234, 235, 239, 241, 242, 243, 252, 253, 261, 262, 269, 291, + 298, 303, 309 + ], + "floor_index": 0, + "index": 240, + "offset_point_count": 0, + "position": [12.734600067138672, 0.0555821992456913, -20.726200103759766], + "quaternion": { + "w": 0.61135929811203, + "x": -0.0021328553867485845, + "y": -0.7912022358743788, + "z": 0.01530632330212572 + }, + "standing_position": [12.734600067138672, -0.8939458005302766, -20.726200103759766], + "visible_nodes": [ + 191, 192, 193, 194, 195, 215, 216, 220, 221, 222, 223, 224, 227, 228, 234, 235, 239, 241, 242, 243, 252, 253, 261, 262, 269, 291, + 298, 303, 309 + ] + }, + { + "accessible_nodes": [ + 197, 218, 219, 221, 222, 223, 224, 227, 228, 239, 240, 243, 246, 247, 248, 252, 253, 258, 261, 262, 269, 291, 298, 303, 309, 315 + ], + "floor_index": 0, + "index": 241, + "offset_point_count": 0, + "position": [12.436800003051758, 0.01908089965581894, -23.21500015258789], + "quaternion": { + "w": 0.6963577103551213, + "x": 0.0008826977271623126, + "y": -0.7175111385434761, + "z": 0.016215007570207992 + }, + "standing_position": [12.436800003051758, -1.0954007616208359, -23.21500015258789], + "visible_nodes": [ + 197, 218, 219, 221, 222, 223, 224, 227, 228, 239, 240, 243, 246, 247, 248, 252, 253, 258, 261, 262, 269, 291, 298, 303, 309, 315 + ] + }, + { + "accessible_nodes": [215, 216, 220, 234, 235, 240], + "floor_index": 0, + "index": 242, + "offset_point_count": 0, + "position": [17.355600357055664, 0.006818700116127729, -20.776500701904297], + "quaternion": { + "w": -0.6298701790110526, + "x": -0.003098729145630665, + "y": -0.7764930742994891, + "z": 0.01767610060837568 + }, + "standing_position": [17.355600357055664, -1.037766003537747, -20.776500701904297], + "visible_nodes": [215, 216, 220, 234, 235, 240] + }, + { + "accessible_nodes": [218, 219, 240, 241, 246, 247, 251], + "floor_index": 0, + "index": 243, + "offset_point_count": 0, + "position": [10.710100173950195, 0.026672400534152985, -22.644800186157227], + "quaternion": { + "w": -0.9814319362962463, + "x": -0.00045061912423457914, + "y": 0.19173302511216858, + "z": -0.005440902373514956 + }, + "standing_position": [10.710100173950195, -1.0797844667722176, -22.644800186157227], + "visible_nodes": [218, 219, 240, 241, 246, 247, 251] + }, + { + "accessible_nodes": [16, 191, 194, 195, 218, 220, 245, 246, 247, 248, 250, 251, 252, 253], + "floor_index": 0, + "index": 244, + "offset_point_count": 0, + "position": [8.153989791870117, -0.06878279894590378, -25.111000061035156], + "quaternion": { + "w": -0.9993362831860976, + "x": 0.004482940132139907, + "y": 0.03463030201236693, + "z": -0.010374509732535042 + }, + "standing_position": [8.153989791870117, -1.184989521328321, -25.111000061035156], + "visible_nodes": [16, 191, 194, 195, 218, 220, 245, 246, 247, 248, 250, 251, 252, 253] + }, + { + "accessible_nodes": [244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260], + "floor_index": 0, + "index": 245, + "offset_point_count": 0, + "position": [9.317219734191895, -0.04773100093007088, -25.26609992980957], + "quaternion": { + "w": -0.3686279348341942, + "x": 0.013430513605166575, + "y": -0.9294675518762172, + "z": 0.004809757806398297 + }, + "standing_position": [9.317219734191895, -1.1406573799965782, -25.26609992980957], + "visible_nodes": [244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260] + }, + { + "accessible_nodes": [192, 241, 243, 244, 245, 247, 248, 253, 254, 255], + "floor_index": 0, + "index": 246, + "offset_point_count": 0, + "position": [14.56779956817627, 0.01308829989284277, -24.690900802612305], + "quaternion": { + "w": -0.10260249298464225, + "x": 0.007798395747545294, + "y": -0.9944930585433878, + "z": 0.01988616170140738 + }, + "standing_position": [14.56779956817627, -1.0815880269413545, -24.690900802612305], + "visible_nodes": [192, 241, 243, 244, 245, 247, 248, 253, 254, 255] + }, + { + "accessible_nodes": [219, 241, 243, 244, 245, 246, 248], + "floor_index": 0, + "index": 247, + "offset_point_count": 0, + "position": [17.965499877929688, 0.0676570013165474, -24.658100128173828], + "quaternion": { + "w": -0.15250232918813855, + "x": 0.0034706917286357083, + "y": -0.988171778711084, + "z": 0.01573332105789243 + }, + "standing_position": [17.965499877929688, -1.0316710240439704, -24.658100128173828], + "visible_nodes": [219, 241, 243, 244, 245, 246, 248] + }, + { + "accessible_nodes": [218, 219, 231, 235, 236, 241, 244, 245, 246, 247, 249, 265, 266, 275, 294, 295, 306, 307, 318], + "floor_index": 0, + "index": 248, + "offset_point_count": 0, + "position": [21.118499755859375, 0.11178900301456451, -24.465999603271484], + "quaternion": { + "w": -0.18733252661223776, + "x": 0.009178675768862034, + "y": -0.9821157414545049, + "z": 0.01646060662954881 + }, + "standing_position": [21.118499755859375, -1.0175774805877473, -24.465999603271484], + "visible_nodes": [218, 219, 231, 235, 236, 241, 244, 245, 246, 247, 249, 265, 266, 275, 294, 295, 306, 307, 318] + }, + { + "accessible_nodes": [231, 235, 236, 248, 250, 251, 252, 253, 254, 255, 256, 265, 266, 275, 294, 295, 306, 307, 318, 319], + "floor_index": 0, + "index": 249, + "offset_point_count": 0, + "position": [21.385700225830078, 0.06298740208148956, -27.388399124145508], + "quaternion": { + "w": 0.596790354956645, + "x": 0.00611242210514215, + "y": -0.8022370526575744, + "z": 0.014819498537768537 + }, + "standing_position": [21.385700225830078, -1.0736098767778202, -27.388399124145508], + "visible_nodes": [231, 235, 236, 248, 250, 251, 252, 253, 254, 255, 256, 265, 266, 275, 294, 295, 306, 307, 318, 319] + }, + { + "accessible_nodes": [244, 245, 249, 251, 252, 253, 254, 255, 256], + "floor_index": 0, + "index": 250, + "offset_point_count": 0, + "position": [19.02199935913086, 0.023422500118613243, -27.755800247192383], + "quaternion": { + "w": 0.16269503874051836, + "x": 0.004301092884738929, + "y": -0.9864386845934265, + "z": 0.021226072028871966 + }, + "standing_position": [19.02199935913086, -1.095132273238745, -27.755800247192383], + "visible_nodes": [244, 245, 249, 251, 252, 253, 254, 255, 256] + }, + { + "accessible_nodes": [243, 244, 245, 249, 250, 252, 253, 254, 255, 256, 257, 258], + "floor_index": 0, + "index": 251, + "offset_point_count": 0, + "position": [15.297699928283691, -0.023276299238204956, -27.819900512695312], + "quaternion": { + "w": 0.13707629558304898, + "x": 0.006614066750936387, + "y": -0.9904573704862757, + "z": 0.012670487514651012 + }, + "standing_position": [15.297699928283691, -1.1363635601244224, -27.819900512695312], + "visible_nodes": [243, 244, 245, 249, 250, 252, 253, 254, 255, 256, 257, 258] + }, + { + "accessible_nodes": [ + 197, 221, 222, 223, 224, 227, 228, 239, 240, 241, 244, 245, 249, 250, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 269, 291, + 298, 303, 309, 315, 323 + ], + "floor_index": 0, + "index": 252, + "offset_point_count": 0, + "position": [12.676600456237793, -0.03457219898700714, -27.576099395751953], + "quaternion": { + "w": -0.9933196239490801, + "x": -0.0013660116181219246, + "y": 0.1151340833716035, + "z": -0.00764227803233235 + }, + "standing_position": [12.676600456237793, -1.1472879617954053, -27.576099395751953], + "visible_nodes": [ + 197, 221, 222, 223, 224, 227, 228, 239, 240, 241, 244, 245, 249, 250, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 269, 291, + 298, 303, 309, 315, 323 + ] + }, + { + "accessible_nodes": [224, 240, 241, 244, 245, 246, 249, 250, 251, 252, 254, 255], + "floor_index": 0, + "index": 253, + "offset_point_count": 0, + "position": [10.84179973602295, -0.017382200807332993, -27.152700424194336], + "quaternion": { + "w": -0.9994270948582025, + "x": -0.0026515601091703666, + "y": -0.03364061759815199, + "z": -0.002602065020290035 + }, + "standing_position": [10.84179973602295, -1.1400012470231313, -27.152700424194336], + "visible_nodes": [224, 240, 241, 244, 245, 246, 249, 250, 251, 252, 254, 255] + }, + { + "accessible_nodes": [218, 245, 246, 249, 250, 251, 252, 253, 255, 256, 257, 259, 260, 261, 269], + "floor_index": 0, + "index": 254, + "offset_point_count": 0, + "position": [9.303930282592773, -0.021984899416565895, -26.958999633789062], + "quaternion": { + "w": -0.9913646710321524, + "x": -0.006274533400510599, + "y": 0.1309674992855004, + "z": -0.0020577772003925318 + }, + "standing_position": [9.303930282592773, -1.1591455252567993, -26.958999633789062], + "visible_nodes": [218, 245, 246, 249, 250, 251, 252, 253, 255, 256, 257, 259, 260, 261, 269] + }, + { + "accessible_nodes": [245, 246, 249, 250, 251, 252, 253, 254, 256, 261, 262], + "floor_index": 0, + "index": 255, + "offset_point_count": 0, + "position": [8.52715015411377, -0.021825600415468216, -27.14259910583496], + "quaternion": { + "w": -0.9977002447072173, + "x": 0.006568581875957607, + "y": 0.067307286716166, + "z": 0.004561735542257476 + }, + "standing_position": [8.52715015411377, -1.1418313077331268, -27.14259910583496], + "visible_nodes": [245, 246, 249, 250, 251, 252, 253, 254, 256, 261, 262] + }, + { + "accessible_nodes": [220, 245, 249, 250, 251, 254, 255, 257, 258, 259, 260, 261, 262, 263], + "floor_index": 0, + "index": 256, + "offset_point_count": 0, + "position": [9.23684024810791, -0.016268299892544746, -29.122499465942383], + "quaternion": { + "w": -0.7430162058516706, + "x": -0.010772054251541716, + "y": -0.6653878953785237, + "z": -0.0712028740144718 + }, + "standing_position": [9.23684024810791, -1.149260063732303, -29.122499465942383], + "visible_nodes": [220, 245, 249, 250, 251, 254, 255, 257, 258, 259, 260, 261, 262, 263] + }, + { + "accessible_nodes": [194, 245, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 268], + "floor_index": 0, + "index": 257, + "offset_point_count": 0, + "position": [9.30309009552002, -0.01622219942510128, -31.018299102783203], + "quaternion": { + "w": 0.004819230289187101, + "x": -0.04399041630780489, + "y": -0.9983671238174106, + "z": -0.03612066237633471 + }, + "standing_position": [9.30309009552002, -1.1443609453873473, -31.018299102783203], + "visible_nodes": [194, 245, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 268] + }, + { + "accessible_nodes": [241, 251, 252, 256, 257, 259, 260, 261, 262, 263, 264, 265, 268], + "floor_index": 0, + "index": 258, + "offset_point_count": 0, + "position": [7.715980052947998, -0.020195800811052322, -31.22010040283203], + "quaternion": { + "w": 0.8039690369039965, + "x": -0.034978485911152955, + "y": -0.5936405871620736, + "z": 0.0010611064496724085 + }, + "standing_position": [7.715980052947998, -1.1190170646365538, -31.22010040283203], + "visible_nodes": [241, 251, 252, 256, 257, 259, 260, 261, 262, 263, 264, 265, 268] + }, + { + "accessible_nodes": [245, 252, 254, 256, 257, 258, 260, 261, 262, 263, 266, 267, 268], + "floor_index": 0, + "index": 259, + "offset_point_count": 0, + "position": [7.946720123291016, -0.014584800228476524, -33.34199905395508], + "quaternion": { + "w": 0.11360562448378186, + "x": -0.03427189027632981, + "y": -0.9926688010612541, + "z": -0.022975083069604923 + }, + "standing_position": [7.946720123291016, -1.1365801693243789, -33.34199905395508], + "visible_nodes": [245, 252, 254, 256, 257, 258, 260, 261, 262, 263, 266, 267, 268] + }, + { + "accessible_nodes": [194, 245, 252, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 278], + "floor_index": 0, + "index": 260, + "offset_point_count": 0, + "position": [9.609430313110352, -0.0345952995121479, -33.44300079345703], + "quaternion": { + "w": -0.34064565873958114, + "x": 0.005273591669665825, + "y": -0.9401612577071997, + "z": -0.00543449747397009 + }, + "standing_position": [9.609430313110352, -1.1382667672076057, -33.44300079345703], + "visible_nodes": [194, 245, 252, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 278] + }, + { + "accessible_nodes": [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 254, 255, 256, 257, 258, 259, 260, 262, 266, 267, 268, 269, 291, 298, 303, 309, 315, + 323 + ], + "floor_index": 0, + "index": 261, + "offset_point_count": 0, + "position": [12.086199760437012, -0.04931579902768135, -33.32820129394531], + "quaternion": { + "w": -0.4258646232636586, + "x": 0.01034350176702549, + "y": -0.9047079202590744, + "z": -0.005992669687274836 + }, + "standing_position": [12.086199760437012, -1.1866615391375819, -33.32820129394531], + "visible_nodes": [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 254, 255, 256, 257, 258, 259, 260, 262, 266, 267, 268, 269, 291, 298, 303, 309, 315, + 323 + ] + }, + { + "accessible_nodes": [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 269, 291, 298, 303, 309, 315, 323 + ], + "floor_index": 0, + "index": 262, + "offset_point_count": 0, + "position": [12.40880012512207, -0.04767540097236633, -31.16029930114746], + "quaternion": { + "w": -0.5203618082188534, + "x": 0.00686904693366301, + "y": -0.8539102283744587, + "z": -0.0037045246716688384 + }, + "standing_position": [12.40880012512207, -1.1877356989781753, -31.16029930114746], + "visible_nodes": [ + 197, 221, 222, 227, 228, 239, 240, 241, 252, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 269, 291, 298, 303, 309, 315, 323 + ] + }, + { + "accessible_nodes": [256, 257, 258, 259, 260, 262, 264, 265, 268], + "floor_index": 0, + "index": 263, + "offset_point_count": 0, + "position": [15.248700141906738, -0.03791480138897896, -31.257999420166016], + "quaternion": { + "w": -0.04942922930497513, + "x": 0.016329679845613888, + "y": -0.9986434691241228, + "z": -0.0011436988528619617 + }, + "standing_position": [15.248700141906738, -1.151821738865895, -31.257999420166016], + "visible_nodes": [256, 257, 258, 259, 260, 262, 264, 265, 268] + }, + { + "accessible_nodes": [257, 258, 262, 263, 265], + "floor_index": 0, + "index": 264, + "offset_point_count": 0, + "position": [18.435800552368164, -0.021482300013303757, -31.025400161743164], + "quaternion": { + "w": -0.446668137561625, + "x": 0.010579785520689403, + "y": -0.8946328251235155, + "z": -0.0027843763950214885 + }, + "standing_position": [18.435800552368164, -1.0912994133188991, -31.025400161743164], + "visible_nodes": [257, 258, 262, 263, 265] + }, + { + "accessible_nodes": [231, 235, 236, 248, 249, 257, 258, 262, 263, 264, 266, 275, 294, 295, 306, 307, 318, 319, 320], + "floor_index": 0, + "index": 265, + "offset_point_count": 0, + "position": [21.534500122070312, -0.006372199859470129, -30.93910026550293], + "quaternion": { + "w": -0.3413671990806381, + "x": 0.01868074665806769, + "y": -0.9397418000948597, + "z": 0.0021959982620589472 + }, + "standing_position": [21.534500122070312, -1.1387492359706641, -30.93910026550293], + "visible_nodes": [231, 235, 236, 248, 249, 257, 258, 262, 263, 264, 266, 275, 294, 295, 306, 307, 318, 319, 320] + }, + { + "accessible_nodes": [231, 235, 236, 248, 249, 259, 260, 261, 265, 267, 268, 275, 294, 295, 306, 307, 318, 319, 320], + "floor_index": 0, + "index": 266, + "offset_point_count": 0, + "position": [21.259199142456055, -0.04420049861073494, -34.06740188598633], + "quaternion": { + "w": 0.23056039453572247, + "x": 0.002977617031735592, + "y": -0.9730534029955668, + "z": -0.0003148559990190928 + }, + "standing_position": [21.259199142456055, -1.1425163226771455, -34.06740188598633], + "visible_nodes": [231, 235, 236, 248, 249, 259, 260, 261, 265, 267, 268, 275, 294, 295, 306, 307, 318, 319, 320] + }, + { + "accessible_nodes": [259, 260, 261, 266, 268, 276, 356], + "floor_index": 0, + "index": 267, + "offset_point_count": 0, + "position": [18.431100845336914, -0.04072209820151329, -33.937599182128906], + "quaternion": { + "w": -0.9977032542077842, + "x": 0.008266214431018387, + "y": 0.06683754630020279, + "z": 0.00725433743439289 + }, + "standing_position": [18.431100845336914, -1.119381402438307, -33.937599182128906], + "visible_nodes": [259, 260, 261, 266, 268, 276, 356] + }, + { + "accessible_nodes": [257, 258, 259, 260, 261, 263, 266, 267, 271], + "floor_index": 0, + "index": 268, + "offset_point_count": 0, + "position": [14.831999778747559, -0.04515720158815384, -34.38840103149414], + "quaternion": { + "w": -0.9129492754330553, + "x": 0.0015739130967766363, + "y": 0.40803247400197856, + "z": 0.005535889268718986 + }, + "standing_position": [14.831999778747559, -1.1430972479042953, -34.38840103149414], + "visible_nodes": [257, 258, 259, 260, 261, 263, 266, 267, 271] + }, + { + "accessible_nodes": [ + 197, 218, 221, 222, 227, 228, 239, 240, 241, 252, 254, 261, 262, 270, 271, 273, 274, 275, 276, 277, 278, 291, 298, 299, 301, 303, + 309, 315, 323 + ], + "floor_index": 0, + "index": 269, + "offset_point_count": 0, + "position": [12.4822998046875, -0.044119201600551605, -36.31209945678711], + "quaternion": { + "w": 0.6204582838640722, + "x": 0.015589050588961768, + "y": -0.7839372100859955, + "z": -0.015196578948662727 + }, + "standing_position": [12.4822998046875, -1.1619593527468772, -36.31209945678711], + "visible_nodes": [ + 197, 218, 221, 222, 227, 228, 239, 240, 241, 252, 254, 261, 262, 270, 271, 273, 274, 275, 276, 277, 278, 291, 298, 299, 301, 303, + 309, 315, 323 + ] + }, + { + "accessible_nodes": [269, 271, 273, 274, 275, 276, 277, 278], + "floor_index": 0, + "index": 270, + "offset_point_count": 0, + "position": [10.388400077819824, -0.04779199883341789, -36.627899169921875], + "quaternion": { + "w": 0.7474142620374734, + "x": 0.01424452536313719, + "y": -0.664143525117152, + "z": -0.009077703937697697 + }, + "standing_position": [10.388400077819824, -1.1677186529025005, -36.627899169921875], + "visible_nodes": [269, 271, 273, 274, 275, 276, 277, 278] + }, + { + "accessible_nodes": [268, 269, 270, 272, 273, 274, 275, 276, 277, 278], + "floor_index": 0, + "index": 271, + "offset_point_count": 0, + "position": [7.959579944610596, -0.08091740310192108, -36.58769989013672], + "quaternion": { + "w": -0.8666758445489146, + "x": -0.012592044382587625, + "y": 0.49847943240492437, + "z": 0.015253674235319028 + }, + "standing_position": [7.959579944610596, -1.1775352212612438, -36.58769989013672], + "visible_nodes": [268, 269, 270, 272, 273, 274, 275, 276, 277, 278] + }, + { + "accessible_nodes": [271], + "floor_index": 0, + "index": 272, + "offset_point_count": 0, + "position": [7.927720069885254, -0.045523300766944885, -38.25659942626953], + "quaternion": { + "w": 0.4193113416625294, + "x": 0.017096808155712902, + "y": -0.9075658387610764, + "z": -0.014489864674922191 + }, + "standing_position": [7.927720069885254, -1.1021192993677356, -38.25659942626953], + "visible_nodes": [271] + }, + { + "accessible_nodes": [269, 270, 271, 274, 275, 276, 277], + "floor_index": 0, + "index": 273, + "offset_point_count": 0, + "position": [15.032299995422363, -0.022138400003314018, -36.73360061645508], + "quaternion": { + "w": 0.004467611661953361, + "x": 0.009418545985154039, + "y": -0.9998145229469128, + "z": -0.016194234745787694 + }, + "standing_position": [15.032299995422363, -1.144885486054501, -36.73360061645508], + "visible_nodes": [269, 270, 271, 274, 275, 276, 277] + }, + { + "accessible_nodes": [269, 270, 271, 273, 275, 276, 277], + "floor_index": 0, + "index": 274, + "offset_point_count": 0, + "position": [18.115800857543945, -0.0314457006752491, -36.67829895019531], + "quaternion": { + "w": -0.20252124031337007, + "x": 0.008024357707301703, + "y": -0.9791837988362456, + "z": -0.010947002493434568 + }, + "standing_position": [18.115800857543945, -1.1576337276524096, -36.67829895019531], + "visible_nodes": [269, 270, 271, 273, 275, 276, 277] + }, + { + "accessible_nodes": [231, 235, 236, 248, 249, 265, 266, 269, 270, 271, 273, 274, 276, 277, 278, 294, 295, 306, 307, 318, 319, 320], + "floor_index": 0, + "index": 275, + "offset_point_count": 0, + "position": [21.29990005493164, -0.05672220140695572, -36.46730041503906], + "quaternion": { + "w": -0.1748559737918799, + "x": 0.008597996777800597, + "y": -0.9845174883092715, + "z": -0.008762036473478696 + }, + "standing_position": [21.29990005493164, -1.1715182640316868, -36.46730041503906], + "visible_nodes": [231, 235, 236, 248, 249, 265, 266, 269, 270, 271, 273, 274, 276, 277, 278, 294, 295, 306, 307, 318, 319, 320] + }, + { + "accessible_nodes": [267, 269, 270, 271, 273, 274, 275, 277, 278, 329, 330, 356], + "floor_index": 0, + "index": 276, + "offset_point_count": 0, + "position": [24.093900680541992, -0.060192398726940155, -35.800498962402344], + "quaternion": { + "w": 0.8296334043033802, + "x": -0.0028139195482828503, + "y": -0.5580304179621448, + "z": 0.01739367900153633 + }, + "standing_position": [24.093900680541992, -1.1552467197457152, -35.800498962402344], + "visible_nodes": [267, 269, 270, 271, 273, 274, 275, 277, 278, 329, 330, 356] + }, + { + "accessible_nodes": [269, 270, 271, 273, 274, 275, 276, 278, 324, 325, 326, 327, 328, 329, 330, 331, 356], + "floor_index": 0, + "index": 277, + "offset_point_count": 0, + "position": [27.26099967956543, -0.024168100208044052, -36.132301330566406], + "quaternion": { + "w": -0.08657491952966434, + "x": -0.010450339580836045, + "y": -0.9959959169102091, + "z": 0.019689984773455724 + }, + "standing_position": [27.26099967956543, -1.186880989924892, -36.132301330566406], + "visible_nodes": [269, 270, 271, 273, 274, 275, 276, 278, 324, 325, 326, 327, 328, 329, 330, 331, 356] + }, + { + "accessible_nodes": [260, 269, 270, 271, 275, 276, 277, 279, 324, 325, 326, 327, 328, 329, 330, 331, 356], + "floor_index": 0, + "index": 278, + "offset_point_count": 0, + "position": [30.548200607299805, 0.007931649684906006, -36.107200622558594], + "quaternion": { + "w": -0.1591705594753173, + "x": -0.010433710607763018, + "y": -0.9870606072610049, + "z": 0.016346697641106078 + }, + "standing_position": [30.548200607299805, -1.101589102445651, -36.107200622558594], + "visible_nodes": [260, 269, 270, 271, 275, 276, 277, 279, 324, 325, 326, 327, 328, 329, 330, 331, 356] + }, + { + "accessible_nodes": [278, 280, 281, 282, 283, 284, 285, 286, 287, 288, 290, 324, 325, 326, 327, 328, 329, 330, 331], + "floor_index": 0, + "index": 279, + "offset_point_count": 0, + "position": [31.013500213623047, 0.04357349872589111, -33.61909866333008], + "quaternion": { + "w": -0.8416700340448794, + "x": -0.006878822496976979, + "y": -0.5398720384685689, + "z": -0.009078915091371795 + }, + "standing_position": [31.013500213623047, -1.067557065901613, -33.61909866333008], + "visible_nodes": [278, 280, 281, 282, 283, 284, 285, 286, 287, 288, 290, 324, 325, 326, 327, 328, 329, 330, 331] + }, + { + "accessible_nodes": [279, 281, 282, 283], + "floor_index": 0, + "index": 280, + "offset_point_count": 0, + "position": [29.68720054626465, 0.0430959016084671, -32.835899353027344], + "quaternion": { + "w": -0.9954541415482522, + "x": -0.004322666931856833, + "y": -0.09205396343726907, + "z": -0.024050480948537373 + }, + "standing_position": [29.68720054626465, -1.0668311146503244, -32.835899353027344], + "visible_nodes": [279, 281, 282, 283] + }, + { + "accessible_nodes": [279, 280], + "floor_index": 0, + "index": 281, + "offset_point_count": 0, + "position": [27.95039939880371, 0.04911689832806587, -31.683300018310547], + "quaternion": { + "w": -0.9906422303683852, + "x": -0.0007003695994756844, + "y": 0.13552246475758206, + "z": -0.01615991918245853 + }, + "standing_position": [27.95039939880371, -1.0759864123314204, -31.683300018310547], + "visible_nodes": [279, 280] + }, + { + "accessible_nodes": [279, 280, 283, 284, 285, 286, 287, 288], + "floor_index": 0, + "index": 282, + "offset_point_count": 0, + "position": [33.23210144042969, 0.046898700296878815, -33.815799713134766], + "quaternion": { + "w": -0.14558694012794407, + "x": -0.011917164558819696, + "y": -0.9891045273684826, + "z": 0.018293486084237837 + }, + "standing_position": [33.23210144042969, -1.0329158592960357, -33.815799713134766], + "visible_nodes": [279, 280, 283, 284, 285, 286, 287, 288] + }, + { + "accessible_nodes": [279, 280, 282, 284, 285, 286, 287, 288], + "floor_index": 0, + "index": 283, + "offset_point_count": 0, + "position": [36.35369873046875, 0.05988749861717224, -34.047401428222656], + "quaternion": { + "w": -0.1380789449410691, + "x": -0.01824220132690803, + "y": -0.9900999937349155, + "z": 0.017419025418176342 + }, + "standing_position": [36.35369873046875, -1.0319905762714214, -34.047401428222656], + "visible_nodes": [279, 280, 282, 284, 285, 286, 287, 288] + }, + { + "accessible_nodes": [279, 282, 283, 285, 286, 287, 288, 290], + "floor_index": 0, + "index": 284, + "offset_point_count": 0, + "position": [39.37269973754883, 0.08513759821653366, -33.77579879760742], + "quaternion": { + "w": -0.15999008940750498, + "x": -0.0037965340405956664, + "y": -0.9868482445852146, + "z": 0.02278837381707965 + }, + "standing_position": [39.37269973754883, -1.0160642485561828, -33.77579879760742], + "visible_nodes": [279, 282, 283, 285, 286, 287, 288, 290] + }, + { + "accessible_nodes": [279, 282, 283, 284, 286, 287, 288, 290], + "floor_index": 0, + "index": 285, + "offset_point_count": 0, + "position": [41.64630126953125, 0.10570699721574783, -33.480899810791016], + "quaternion": { + "w": -0.7111708347221892, + "x": -0.009066786283853307, + "y": -0.7029346186797997, + "z": 0.006060744245420836 + }, + "standing_position": [41.64630126953125, -0.9703610015378803, -33.480899810791016], + "visible_nodes": [279, 282, 283, 284, 286, 287, 288, 290] + }, + { + "accessible_nodes": [279, 282, 283, 284, 285, 287, 288, 290], + "floor_index": 0, + "index": 286, + "offset_point_count": 0, + "position": [44.47880172729492, 0.15176400542259216, -33.2765007019043], + "quaternion": { + "w": -0.9926946650415028, + "x": 0.00602856882119649, + "y": -0.11789402541269867, + "z": -0.02493935862414582 + }, + "standing_position": [44.47880172729492, -0.9579806752885107, -33.2765007019043], + "visible_nodes": [279, 282, 283, 284, 285, 287, 288, 290] + }, + { + "accessible_nodes": [279, 282, 283, 284, 285, 286, 288, 290], + "floor_index": 0, + "index": 287, + "offset_point_count": 0, + "position": [47.27519989013672, 0.18902799487113953, -33.17070007324219], + "quaternion": { + "w": -0.6720653576858342, + "x": -0.001686979632802413, + "y": -0.7404856909439774, + "z": -0.002498825860199016 + }, + "standing_position": [47.27519989013672, -0.8895384144460494, -33.17070007324219], + "visible_nodes": [279, 282, 283, 284, 285, 286, 288, 290] + }, + { + "accessible_nodes": [279, 282, 283, 284, 285, 286, 287, 289, 290], + "floor_index": 0, + "index": 288, + "offset_point_count": 0, + "position": [50.59669876098633, 0.24998700618743896, -33.179500579833984], + "quaternion": { + "w": -0.7216906701767053, + "x": 0.011558645048797035, + "y": -0.6921182074372388, + "z": -0.0011707561239094357 + }, + "standing_position": [50.59669876098633, -0.8286596668848247, -33.179500579833984], + "visible_nodes": [279, 282, 283, 284, 285, 286, 287, 289, 290] + }, + { + "accessible_nodes": [288, 290], + "floor_index": 0, + "index": 289, + "offset_point_count": 0, + "position": [51.10300064086914, 0.11630299687385559, -35.95280075073242], + "quaternion": { + "w": 0.0193690699816617, + "x": 0.00491230580522964, + "y": -0.9990982743588825, + "z": 0.037461380360388256 + }, + "standing_position": [51.10300064086914, -0.9999847382405214, -35.95280075073242], + "visible_nodes": [288, 290] + }, + { + "accessible_nodes": [279, 284, 285, 286, 287, 288, 289], + "floor_index": 0, + "index": 290, + "offset_point_count": 0, + "position": [51.200801849365234, 0.24274399876594543, -33.865699768066406], + "quaternion": { + "w": -0.016515804120499782, + "x": -0.004652857366199547, + "y": -0.9992824602731433, + "z": 0.03376597079797637 + }, + "standing_position": [51.200801849365234, -0.8484264036467231, -33.865699768066406], + "visible_nodes": [279, 284, 285, 286, 287, 288, 289] + }, + { + "accessible_nodes": [221, 222, 227, 239, 240, 241, 252, 261, 262, 269, 292, 293, 294, 298, 299, 301, 303, 309, 315, 323], + "floor_index": 0, + "index": 291, + "offset_point_count": 0, + "position": [12.606599807739258, -0.01435330044478178, -39.535301208496094], + "quaternion": { + "w": 0.18993190321907685, + "x": 0.012398818406804683, + "y": -0.9817127983013637, + "z": -0.0034801585982590544 + }, + "standing_position": [12.606599807739258, -1.090463699976887, -39.535301208496094], + "visible_nodes": [221, 222, 227, 239, 240, 241, 252, 261, 262, 269, 292, 293, 294, 298, 299, 301, 303, 309, 315, 323] + }, + { + "accessible_nodes": [291, 293, 294, 299], + "floor_index": 0, + "index": 292, + "offset_point_count": 0, + "position": [15.759099960327148, -0.001657159999012947, -39.49720001220703], + "quaternion": { + "w": -0.010017544523840063, + "x": 0.00581905492121357, + "y": -0.9999257149523145, + "z": -0.0037902617571005937 + }, + "standing_position": [15.759099960327148, -1.1081199192722158, -39.49720001220703], + "visible_nodes": [291, 293, 294, 299] + }, + { + "accessible_nodes": [291, 292, 294, 299, 300], + "floor_index": 0, + "index": 293, + "offset_point_count": 0, + "position": [18.114500045776367, -0.010889099910855293, -39.435699462890625], + "quaternion": { + "w": 0.02298340590634209, + "x": 0.0012954949503885935, + "y": -0.9997302004324239, + "z": -0.0030987872308250487 + }, + "standing_position": [18.114500045776367, -1.1320209779205628, -39.435699462890625], + "visible_nodes": [291, 292, 294, 299, 300] + }, + { + "accessible_nodes": [231, 235, 236, 248, 249, 265, 266, 275, 291, 292, 293, 295, 300, 306, 307, 318, 319, 320], + "floor_index": 0, + "index": 294, + "offset_point_count": 0, + "position": [21.162500381469727, -0.06298840045928955, -39.80690002441406], + "quaternion": { + "w": -0.49856708016439444, + "x": 0.005389282047473224, + "y": -0.8668308813533736, + "z": 0.002459628746667567 + }, + "standing_position": [21.162500381469727, -1.1502342035339157, -39.80690002441406], + "visible_nodes": [231, 235, 236, 248, 249, 265, 266, 275, 291, 292, 293, 295, 300, 306, 307, 318, 319, 320] + }, + { + "accessible_nodes": [231, 235, 236, 248, 249, 265, 266, 275, 294, 296, 297, 298, 300, 301, 302, 306, 307, 318, 319, 320], + "floor_index": 0, + "index": 295, + "offset_point_count": 0, + "position": [21.378400802612305, -0.08597420156002045, -43.47819900512695], + "quaternion": { + "w": 0.5830592809502363, + "x": -0.0021957097214746076, + "y": -0.8123992710763881, + "z": -0.006669595680000595 + }, + "standing_position": [21.378400802612305, -1.1839238309600704, -43.47819900512695], + "visible_nodes": [231, 235, 236, 248, 249, 265, 266, 275, 294, 296, 297, 298, 300, 301, 302, 306, 307, 318, 319, 320] + }, + { + "accessible_nodes": [295, 297, 298, 299, 300, 301, 302], + "floor_index": 0, + "index": 296, + "offset_point_count": 0, + "position": [18.92020034790039, -0.0675342008471489, -44.06840133666992], + "quaternion": { + "w": -0.20134130921347793, + "x": -0.0030574090877629662, + "y": -0.9795038178838308, + "z": 0.004958579050216627 + }, + "standing_position": [18.92020034790039, -1.1607241220677746, -44.06840133666992], + "visible_nodes": [295, 297, 298, 299, 300, 301, 302] + }, + { + "accessible_nodes": [295, 296, 298, 299, 300, 301, 302, 310], + "floor_index": 0, + "index": 297, + "offset_point_count": 0, + "position": [15.036800384521484, -0.028685400262475014, -44.09619903564453], + "quaternion": { + "w": 0.37713161738459916, + "x": 0.010452994844568823, + "y": -0.9260815242103869, + "z": -0.0059562678559575526 + }, + "standing_position": [15.036800384521484, -1.1455367545196755, -44.09619903564453], + "visible_nodes": [295, 296, 298, 299, 300, 301, 302, 310] + }, + { + "accessible_nodes": [221, 239, 240, 241, 252, 261, 262, 269, 291, 295, 296, 297, 299, 301, 302, 303, 309, 315, 323], + "floor_index": 0, + "index": 298, + "offset_point_count": 0, + "position": [12.42199993133545, 0.007489549927413464, -44.078399658203125], + "quaternion": { + "w": 0.7748888377567048, + "x": 0.00179067019332532, + "y": -0.6320416352983106, + "z": -0.008211749857990832 + }, + "standing_position": [12.42199993133545, -1.0986819351959614, -44.078399658203125], + "visible_nodes": [221, 239, 240, 241, 252, 261, 262, 269, 291, 295, 296, 297, 299, 301, 302, 303, 309, 315, 323] + }, + { + "accessible_nodes": [269, 291, 292, 293, 296, 297, 298, 300, 301, 303, 309], + "floor_index": 0, + "index": 299, + "offset_point_count": 0, + "position": [11.091099739074707, 0.031314998865127563, -42.56959915161133], + "quaternion": { + "w": -0.998621362821588, + "x": 0.0008643995904673859, + "y": 0.05155411509529146, + "z": 0.009838211824078591 + }, + "standing_position": [11.091099739074707, -1.0164336562820953, -42.56959915161133], + "visible_nodes": [269, 291, 292, 293, 296, 297, 298, 300, 301, 303, 309] + }, + { + "accessible_nodes": [293, 294, 295, 296, 297, 299], + "floor_index": 0, + "index": 300, + "offset_point_count": 0, + "position": [8.690210342407227, 0.06397009640932083, -42.69620132446289], + "quaternion": { + "w": -0.8730136600465649, + "x": -0.0029665317569889573, + "y": 0.4873734777421316, + "z": 0.01747706998615926 + }, + "standing_position": [8.690210342407227, -1.012427885497607, -42.69620132446289], + "visible_nodes": [293, 294, 295, 296, 297, 299] + }, + { + "accessible_nodes": [269, 291, 295, 296, 297, 298, 299, 302, 304], + "floor_index": 0, + "index": 301, + "offset_point_count": 0, + "position": [10.7746000289917, 0.04611780121922493, -45.11349868774414], + "quaternion": { + "w": -0.9784131329553337, + "x": -0.0018337824728930979, + "y": 0.2063759440877119, + "z": 0.010646171066406432 + }, + "standing_position": [10.7746000289917, -1.0576385429394677, -45.11349868774414], + "visible_nodes": [269, 291, 295, 296, 297, 298, 299, 302, 304] + }, + { + "accessible_nodes": [295, 296, 297, 298, 301, 305, 306], + "floor_index": 0, + "index": 302, + "offset_point_count": 0, + "position": [8.994739532470703, 0.07781189680099487, -45.60430145263672], + "quaternion": { + "w": -0.9364265893019077, + "x": -0.0014521324917481963, + "y": 0.3504504335330552, + "z": 0.01695965938380728 + }, + "standing_position": [8.994739532470703, -0.9412196778079254, -45.60430145263672], + "visible_nodes": [295, 296, 297, 298, 301, 305, 306] + }, + { + "accessible_nodes": [239, 240, 241, 252, 261, 262, 269, 291, 298, 299, 304, 305, 306, 309, 310, 313, 314, 315, 323], + "floor_index": 0, + "index": 303, + "offset_point_count": 0, + "position": [12.516900062561035, 0.030166199430823326, -47.74420166015625], + "quaternion": { + "w": 0.03718140059283346, + "x": -0.0039550384962703826, + "y": -0.9989908908527978, + "z": -0.02488185097487447 + }, + "standing_position": [12.516900062561035, -1.080667148152324, -47.74420166015625], + "visible_nodes": [239, 240, 241, 252, 261, 262, 269, 291, 298, 299, 304, 305, 306, 309, 310, 313, 314, 315, 323] + }, + { + "accessible_nodes": [301, 303, 305, 306, 310], + "floor_index": 0, + "index": 304, + "offset_point_count": 0, + "position": [15.967300415039062, -0.001472500036470592, -47.17729949951172], + "quaternion": { + "w": -0.09759332179931474, + "x": 0.005749284587566887, + "y": -0.9949704437322915, + "z": -0.021824389148060296 + }, + "standing_position": [15.967300415039062, -1.132992317688878, -47.17729949951172], + "visible_nodes": [301, 303, 305, 306, 310] + }, + { + "accessible_nodes": [302, 303, 304, 306, 311], + "floor_index": 0, + "index": 305, + "offset_point_count": 0, + "position": [19.295499801635742, -0.03690309822559357, -47.29790115356445], + "quaternion": { + "w": -0.2223606033681572, + "x": -0.006771916430796601, + "y": -0.9749104831634344, + "z": -0.007710657567514836 + }, + "standing_position": [19.295499801635742, -1.1818426270585995, -47.29790115356445], + "visible_nodes": [302, 303, 304, 306, 311] + }, + { + "accessible_nodes": [235, 236, 248, 249, 265, 266, 275, 294, 295, 302, 303, 304, 305, 307, 311, 318, 319, 320], + "floor_index": 0, + "index": 306, + "offset_point_count": 0, + "position": [21.624300003051758, -0.06971780210733414, -47.05590057373047], + "quaternion": { + "w": -0.845960627018607, + "x": 0.010119599189031558, + "y": -0.5330771971733999, + "z": -0.008770084578458405 + }, + "standing_position": [21.624300003051758, -1.1680959746838762, -47.05590057373047], + "visible_nodes": [235, 236, 248, 249, 265, 266, 275, 294, 295, 302, 303, 304, 305, 307, 311, 318, 319, 320] + }, + { + "accessible_nodes": [235, 248, 249, 265, 266, 275, 294, 295, 306, 308, 309, 310, 311, 318, 319, 320], + "floor_index": 0, + "index": 307, + "offset_point_count": 0, + "position": [21.39349937438965, -0.06623010337352753, -50.17430114746094], + "quaternion": { + "w": 0.4271307752123326, + "x": -0.00367936077447413, + "y": -0.9041192063534013, + "z": -0.010687359291096168 + }, + "standing_position": [21.39349937438965, -1.1911171980151603, -50.17430114746094], + "visible_nodes": [235, 248, 249, 265, 266, 275, 294, 295, 306, 308, 309, 310, 311, 318, 319, 320] + }, + { + "accessible_nodes": [307, 309, 310, 311, 312, 324], + "floor_index": 0, + "index": 308, + "offset_point_count": 0, + "position": [17.60759925842285, -0.01757200062274933, -50.28139877319336], + "quaternion": { + "w": -0.9881976925352797, + "x": 0.007174888594694436, + "y": 0.15239766180077322, + "z": 0.013740045039632475 + }, + "standing_position": [17.60759925842285, -1.1178957733636306, -50.28139877319336], + "visible_nodes": [307, 309, 310, 311, 312, 324] + }, + { + "accessible_nodes": [240, 241, 252, 261, 262, 269, 291, 298, 299, 303, 307, 308, 310, 311, 312, 315, 323], + "floor_index": 0, + "index": 309, + "offset_point_count": 0, + "position": [13.079099655151367, 0.049983300268650055, -50.062198638916016], + "quaternion": { + "w": -0.9952289716922913, + "x": 0.010573119889116191, + "y": 0.09657653360618527, + "z": 0.008970269344720477 + }, + "standing_position": [13.079099655151367, -1.0597369692996612, -50.062198638916016], + "visible_nodes": [240, 241, 252, 261, 262, 269, 291, 298, 299, 303, 307, 308, 310, 311, 312, 315, 323] + }, + { + "accessible_nodes": [297, 303, 304, 307, 308, 309, 311, 312, 313, 314], + "floor_index": 0, + "index": 310, + "offset_point_count": 0, + "position": [10.099800109863281, 0.05151839926838875, -48.835899353027344], + "quaternion": { + "w": 0.7490613487158486, + "x": -0.01417362622963535, + "y": -0.6622298969303435, + "z": -0.012560533279452453 + }, + "standing_position": [10.099800109863281, -1.0570639336341976, -48.835899353027344], + "visible_nodes": [297, 303, 304, 307, 308, 309, 311, 312, 313, 314] + }, + { + "accessible_nodes": [305, 306, 307, 308, 309, 310, 312, 313, 314], + "floor_index": 0, + "index": 311, + "offset_point_count": 0, + "position": [7.2520599365234375, 0.08111990243196487, -48.5791015625], + "quaternion": { + "w": 0.8316398301062372, + "x": -0.008342463547773555, + "y": -0.5549379441540601, + "z": -0.018694099071409374 + }, + "standing_position": [7.2520599365234375, -1.0187805489261468, -48.5791015625], + "visible_nodes": [305, 306, 307, 308, 309, 310, 312, 313, 314] + }, + { + "accessible_nodes": [308, 309, 310, 311, 313, 314], + "floor_index": 0, + "index": 312, + "offset_point_count": 0, + "position": [5.347569942474365, 0.10063199698925018, -47.69969940185547], + "quaternion": { + "w": -0.9014963819962236, + "x": 0.0046918282580005405, + "y": -0.43275807003201333, + "z": -0.001644533406670942 + }, + "standing_position": [5.347569942474365, -1.001006045305548, -47.69969940185547], + "visible_nodes": [308, 309, 310, 311, 313, 314] + }, + { + "accessible_nodes": [303, 310, 311, 312, 314], + "floor_index": 0, + "index": 313, + "offset_point_count": 0, + "position": [6.60890007019043, 0.1271969974040985, -51.50040054321289], + "quaternion": { + "w": 0.4896224128718436, + "x": -0.005350624233157128, + "y": -0.8716081802335084, + "z": -0.023247263377433523 + }, + "standing_position": [6.60890007019043, -0.992113280701252, -51.50040054321289], + "visible_nodes": [303, 310, 311, 312, 314] + }, + { + "accessible_nodes": [303, 310, 311, 312, 313], + "floor_index": 0, + "index": 314, + "offset_point_count": 0, + "position": [9.52161979675293, 0.11435099691152573, -52.333900451660156], + "quaternion": { + "w": -0.9217633082730415, + "x": 0.010560524163985972, + "y": -0.38756119949333423, + "z": -0.006098440263456602 + }, + "standing_position": [9.52161979675293, -0.9856274852991258, -52.333900451660156], + "visible_nodes": [303, 310, 311, 312, 313] + }, + { + "accessible_nodes": [241, 252, 261, 262, 269, 291, 298, 303, 309, 316, 317, 318, 319, 323, 324, 325, 331, 332, 335, 337], + "floor_index": 0, + "index": 315, + "offset_point_count": 0, + "position": [12.122200012207031, 0.12959399819374084, -52.99169921875], + "quaternion": { + "w": 0.7399867740112236, + "x": -0.010085610559523572, + "y": -0.6720052872795518, + "z": -0.0269581082229196 + }, + "standing_position": [12.122200012207031, -0.9882115410121333, -52.99169921875], + "visible_nodes": [241, 252, 261, 262, 269, 291, 298, 303, 309, 316, 317, 318, 319, 323, 324, 325, 331, 332, 335, 337] + }, + { + "accessible_nodes": [315, 317, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341], + "floor_index": 0, + "index": 316, + "offset_point_count": 0, + "position": [15.647100448608398, 0.06075099855661392, -53.3755989074707], + "quaternion": { + "w": -0.022852924680227305, + "x": -0.009988288543505109, + "y": -0.9994179253487694, + "z": -0.023276471295977114 + }, + "standing_position": [15.647100448608398, -1.0568004259089216, -53.3755989074707], + "visible_nodes": [315, 317, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341] + }, + { + "accessible_nodes": [315, 316, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341], + "floor_index": 0, + "index": 317, + "offset_point_count": 0, + "position": [19.132200241088867, -0.02653690055012703, -53.280601501464844], + "quaternion": { + "w": 0.02857056242139864, + "x": -0.00718133011808581, + "y": -0.9995053751883494, + "z": -0.011007222746329162 + }, + "standing_position": [19.132200241088867, -1.1367960106005177, -53.280601501464844], + "visible_nodes": [315, 316, 318, 319, 324, 325, 331, 332, 334, 335, 337, 339, 341] + }, + { + "accessible_nodes": [ + 248, 249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 319, 320, 324, 325, 331, 332, 334, 335, 337, 339, 340, 341 + ], + "floor_index": 0, + "index": 318, + "offset_point_count": 0, + "position": [21.944700241088867, -0.07071849703788757, -52.97010040283203], + "quaternion": { + "w": -0.08626326691433107, + "x": -0.005449482558600916, + "y": -0.9961080961503287, + "z": -0.01725159463262846 + }, + "standing_position": [21.944700241088867, -1.1804713648631409, -52.97010040283203], + "visible_nodes": [ + 248, 249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 319, 320, 324, 325, 331, 332, 334, 335, 337, 339, 340, 341 + ] + }, + { + "accessible_nodes": [249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 318, 320, 328], + "floor_index": 0, + "index": 319, + "offset_point_count": 0, + "position": [22.179100036621094, -0.04941299930214882, -55.44540023803711], + "quaternion": { + "w": 0.1162544641849469, + "x": -0.007888682645741454, + "y": -0.9929161925254028, + "z": -0.0232400747013526 + }, + "standing_position": [22.179100036621094, -1.145976699793986, -55.44540023803711], + "visible_nodes": [249, 265, 266, 275, 294, 295, 306, 307, 315, 316, 317, 318, 320, 328] + }, + { + "accessible_nodes": [265, 266, 275, 294, 295, 306, 307, 318, 319, 321, 322, 323], + "floor_index": 0, + "index": 320, + "offset_point_count": 0, + "position": [21.82859992980957, -0.01517259981483221, -58.10110092163086], + "quaternion": { + "w": 0.7969560939210231, + "x": -0.00587392904279133, + "y": -0.603782656459731, + "z": -0.01652279723661519 + }, + "standing_position": [21.82859992980957, -1.1142645683606756, -58.10110092163086], + "visible_nodes": [265, 266, 275, 294, 295, 306, 307, 318, 319, 321, 322, 323] + }, + { + "accessible_nodes": [320, 322, 323], + "floor_index": 0, + "index": 321, + "offset_point_count": 0, + "position": [18.6205997467041, 0.02929529920220375, -57.801998138427734], + "quaternion": { + "w": -0.9908479448703047, + "x": 0.010215841706963035, + "y": 0.13399244124619303, + "z": 0.012728186492407992 + }, + "standing_position": [18.6205997467041, -1.0628083324421258, -57.801998138427734], + "visible_nodes": [320, 322, 323] + }, + { + "accessible_nodes": [320, 321, 323], + "floor_index": 0, + "index": 322, + "offset_point_count": 0, + "position": [15.164299964904785, 0.11178400367498398, -57.5806999206543], + "quaternion": { + "w": -0.9210986003796557, + "x": 0.015336094495872742, + "y": 0.38839147011607705, + "z": 0.022231308779047162 + }, + "standing_position": [15.164299964904785, -0.9909414256449158, -57.5806999206543], + "visible_nodes": [320, 321, 323] + }, + { + "accessible_nodes": [252, 261, 262, 269, 291, 298, 303, 309, 315, 320, 321, 322], + "floor_index": 0, + "index": 323, + "offset_point_count": 0, + "position": [12.240400314331055, 0.18596699833869934, -57.38029861450195], + "quaternion": { + "w": -0.9920439578774677, + "x": 0.0007963882140944306, + "y": 0.12398015862589101, + "z": 0.021841625893412413 + }, + "standing_position": [12.240400314331055, -0.9111703634434762, -57.38029861450195], + "visible_nodes": [252, 261, 262, 269, 291, 298, 303, 309, 315, 320, 321, 322] + }, + { + "accessible_nodes": [ + 277, 278, 279, 308, 315, 316, 317, 318, 325, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 339, 340, 341, 342, 356 + ], + "floor_index": 0, + "index": 324, + "offset_point_count": 0, + "position": [24.775800704956055, -0.09643969684839249, -52.90190124511719], + "quaternion": { + "w": -0.1005680295577797, + "x": 0.004050321272289087, + "y": -0.9945332739150915, + "z": -0.027806880216696462 + }, + "standing_position": [24.775800704956055, -1.184605508220421, -52.90190124511719], + "visible_nodes": [ + 277, 278, 279, 308, 315, 316, 317, 318, 325, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 339, 340, 341, 342, 356 + ] + }, + { + "accessible_nodes": [ + 277, 278, 279, 315, 316, 317, 318, 324, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 338, 339, 340, 341, 342, 356 + ], + "floor_index": 0, + "index": 325, + "offset_point_count": 0, + "position": [27.766000747680664, -0.10344500094652176, -52.4556999206543], + "quaternion": { + "w": -0.8476493744062653, + "x": 0.00399041064613324, + "y": -0.5304841032320478, + "z": -0.007828151573545302 + }, + "standing_position": [27.766000747680664, -1.2348750374861395, -52.4556999206543], + "visible_nodes": [ + 277, 278, 279, 315, 316, 317, 318, 324, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 338, 339, 340, 341, 342, 356 + ] + }, + { + "accessible_nodes": [277, 278, 279, 324, 325, 327, 328, 329, 330, 331, 332, 334, 356], + "floor_index": 0, + "index": 326, + "offset_point_count": 0, + "position": [28.25309944152832, -0.07139790058135986, -55.80580139160156], + "quaternion": { + "w": 0.48195948878815104, + "x": -0.0024920669559109587, + "y": -0.876082015308475, + "z": -0.01375330488635598 + }, + "standing_position": [28.25309944152832, -1.1661349375238237, -55.80580139160156], + "visible_nodes": [277, 278, 279, 324, 325, 327, 328, 329, 330, 331, 332, 334, 356] + }, + { + "accessible_nodes": [277, 278, 279, 324, 325, 326, 328, 329, 330, 331, 336, 356], + "floor_index": 0, + "index": 327, + "offset_point_count": 0, + "position": [28.112300872802734, 0.3714340031147003, -49.941200256347656], + "quaternion": { + "w": -0.7259006743935777, + "x": 0.0038730489662010996, + "y": -0.6877565541905819, + "z": -0.006642830412243269 + }, + "standing_position": [28.112300872802734, -1.14703152187252, -49.941200256347656], + "visible_nodes": [277, 278, 279, 324, 325, 326, 328, 329, 330, 331, 336, 356] + }, + { + "accessible_nodes": [277, 278, 279, 319, 324, 325, 326, 327, 329, 330, 331, 356], + "floor_index": 0, + "index": 328, + "offset_point_count": 0, + "position": [28.239999771118164, -0.12160299718379974, -46.439998626708984], + "quaternion": { + "w": -0.8809165597695517, + "x": 0.0017546392660219672, + "y": -0.47324516604304917, + "z": -0.004686328235147344 + }, + "standing_position": [28.239999771118164, -1.2427895818383234, -46.439998626708984], + "visible_nodes": [277, 278, 279, 319, 324, 325, 326, 327, 329, 330, 331, 356] + }, + { + "accessible_nodes": [276, 277, 278, 279, 324, 325, 326, 327, 328, 330, 331, 356], + "floor_index": 0, + "index": 329, + "offset_point_count": 0, + "position": [28.292800903320312, -0.14049400389194489, -42.93050003051758], + "quaternion": { + "w": -0.799931744857607, + "x": 0.014753935921945616, + "y": -0.5998885967723209, + "z": -0.005020810571886793 + }, + "standing_position": [28.292800903320312, -1.270352602308998, -42.93050003051758], + "visible_nodes": [276, 277, 278, 279, 324, 325, 326, 327, 328, 330, 331, 356] + }, + { + "accessible_nodes": [276, 277, 278, 279, 324, 325, 326, 327, 328, 329, 331, 356], + "floor_index": 0, + "index": 330, + "offset_point_count": 0, + "position": [28.040000915527344, -0.14284099638462067, -40.41859817504883], + "quaternion": { + "w": -0.8793080322832149, + "x": 0.010970303266973262, + "y": -0.47604036883698175, + "z": -0.009088961338652377 + }, + "standing_position": [28.040000915527344, -1.235925314985209, -40.41859817504883], + "visible_nodes": [276, 277, 278, 279, 324, 325, 326, 327, 328, 329, 331, 356] + }, + { + "accessible_nodes": [ + 277, 278, 279, 315, 316, 317, 318, 324, 325, 326, 327, 328, 329, 330, 332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 356 + ], + "floor_index": 0, + "index": 331, + "offset_point_count": 0, + "position": [31.46030044555664, 0.3722490072250366, -52.855201721191406], + "quaternion": { + "w": -0.12167536008703926, + "x": -0.0038076488410477283, + "y": -0.9922983002559395, + "z": -0.022905945646240093 + }, + "standing_position": [31.46030044555664, -0.7505661398965502, -52.855201721191406], + "visible_nodes": [ + 277, 278, 279, 315, 316, 317, 318, 324, 325, 326, 327, 328, 329, 330, 332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 356 + ] + }, + { + "accessible_nodes": [315, 316, 317, 318, 324, 325, 326, 331, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346], + "floor_index": 0, + "index": 332, + "offset_point_count": 0, + "position": [33.84510040283203, 0.3527719974517822, -52.76129913330078], + "quaternion": { + "w": -0.01801617993510661, + "x": -0.004548388633779923, + "y": -0.9995246815551357, + "z": -0.02459951754510528 + }, + "standing_position": [33.84510040283203, -0.7454399278749126, -52.76129913330078], + "visible_nodes": [315, 316, 317, 318, 324, 325, 326, 331, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346] + }, + { + "accessible_nodes": [332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 347, 350], + "floor_index": 0, + "index": 333, + "offset_point_count": 0, + "position": [33.94620132446289, 0.4287720024585724, -56.49489974975586], + "quaternion": { + "w": 0.6887497853514978, + "x": -0.003364923898274484, + "y": -0.7245829974563408, + "z": -0.02432865859056551 + }, + "standing_position": [33.94620132446289, -0.6691506817037431, -56.49489974975586], + "visible_nodes": [332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 347, 350] + }, + { + "accessible_nodes": [316, 317, 318, 324, 325, 326, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 346], + "floor_index": 0, + "index": 334, + "offset_point_count": 0, + "position": [34.88610076904297, 0.3216949999332428, -51.7307014465332], + "quaternion": { + "w": -0.2741005712511389, + "x": -0.005152853365169678, + "y": -0.96146631034333, + "z": -0.020611902022595444 + }, + "standing_position": [34.88610076904297, -0.7703876658186077, -51.7307014465332], + "visible_nodes": [316, 317, 318, 324, 325, 326, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 346] + }, + { + "accessible_nodes": [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 336, 337, 338, 339, 340, 341, 342, 343, 346, 347, 350], + "floor_index": 0, + "index": 335, + "offset_point_count": 0, + "position": [37.18040084838867, 0.3098590075969696, -51.95500183105469], + "quaternion": { + "w": -0.06926633147719366, + "x": -0.003946979583453236, + "y": -0.9973101799078434, + "z": -0.023643123372239297 + }, + "standing_position": [37.18040084838867, -0.8111789716241318, -51.95500183105469], + "visible_nodes": [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 336, 337, 338, 339, 340, 341, 342, 343, 346, 347, 350] + }, + { + "accessible_nodes": [327, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 346], + "floor_index": 0, + "index": 336, + "offset_point_count": 0, + "position": [36.8119010925293, 0.3741219937801361, -55.41590118408203], + "quaternion": { + "w": 0.06204019926612136, + "x": -0.002434611818694482, + "y": -0.9976354822373593, + "z": -0.029471157845889707 + }, + "standing_position": [36.8119010925293, -0.6975053619919431, -55.41590118408203], + "visible_nodes": [327, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 346] + }, + { + "accessible_nodes": [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 346], + "floor_index": 0, + "index": 337, + "offset_point_count": 0, + "position": [39.3125, 0.3031330108642578, -51.99879837036133], + "quaternion": { + "w": 0.01986416129048617, + "x": 0.0003475498429752743, + "y": -0.9995452770866731, + "z": -0.0226831577396181 + }, + "standing_position": [39.3125, -0.7943659517621047, -51.99879837036133], + "visible_nodes": [315, 316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 346] + }, + { + "accessible_nodes": [325, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 345, 346, 348], + "floor_index": 0, + "index": 338, + "offset_point_count": 0, + "position": [39.851600646972656, 0.3639320135116577, -55.32749938964844], + "quaternion": { + "w": 0.5454838082381896, + "x": -0.00557907329256666, + "y": -0.8377332650763998, + "z": -0.024884883782575758 + }, + "standing_position": [39.851600646972656, -0.7503840130996302, -55.32749938964844], + "visible_nodes": [325, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 345, 346, 348] + }, + { + "accessible_nodes": [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 347, 348, 349, 350], + "floor_index": 0, + "index": 339, + "offset_point_count": 0, + "position": [42.44139862060547, 0.29492101073265076, -52.172000885009766], + "quaternion": { + "w": 0.1490216897483225, + "x": 0.00001708696425902053, + "y": -0.9885137457902466, + "z": -0.025161859623474295 + }, + "standing_position": [42.44139862060547, -0.7886378230251094, -52.172000885009766], + "visible_nodes": [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 347, 348, 349, 350] + }, + { + "accessible_nodes": [318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 344, 347, 348, 350], + "floor_index": 0, + "index": 340, + "offset_point_count": 0, + "position": [43.098899841308594, 0.327921986579895, -54.37419891357422], + "quaternion": { + "w": 0.22117125831648857, + "x": -0.008463988962103493, + "y": -0.9748997074287579, + "z": -0.024128950183122815 + }, + "standing_position": [43.098899841308594, -0.7719906802556988, -54.37419891357422], + "visible_nodes": [318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 344, 347, 348, 350] + }, + { + "accessible_nodes": [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 344, 345, 347, 348, 349, 350], + "floor_index": 0, + "index": 341, + "offset_point_count": 0, + "position": [45.17190170288086, 0.2856999933719635, -51.975101470947266], + "quaternion": { + "w": -0.10363007560625782, + "x": -0.0007922028698360333, + "y": -0.9943299778325286, + "z": -0.0238343044940689 + }, + "standing_position": [45.17190170288086, -0.8369399653947374, -51.975101470947266], + "visible_nodes": [316, 317, 318, 324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 344, 345, 347, 348, 349, 350] + }, + { + "accessible_nodes": [324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 344, 347, 348, 349, 350], + "floor_index": 0, + "index": 342, + "offset_point_count": 0, + "position": [45.78409957885742, 0.32884201407432556, -55.05059814453125], + "quaternion": { + "w": 0.0309051387931891, + "x": -0.00644108884024573, + "y": -0.9991521221074784, + "z": -0.02642745860850312 + }, + "standing_position": [45.78409957885742, -0.7614014470069215, -55.05059814453125], + "visible_nodes": [324, 325, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 344, 347, 348, 349, 350] + }, + { + "accessible_nodes": [335, 336, 337, 338, 344, 345, 346, 347, 348, 349, 350, 354, 355], + "floor_index": 0, + "index": 343, + "offset_point_count": 0, + "position": [38.13359832763672, 0.2719700038433075, -49.1598014831543], + "quaternion": { + "w": -0.6862919570419831, + "x": 0.0073651642256369835, + "y": -0.7271889663506508, + "z": -0.012054614393233486 + }, + "standing_position": [38.13359832763672, -0.8305208012981007, -49.1598014831543], + "visible_nodes": [335, 336, 337, 338, 344, 345, 346, 347, 348, 349, 350, 354, 355] + }, + { + "accessible_nodes": [339, 340, 341, 342, 343, 345, 347, 348, 349, 350, 354, 355], + "floor_index": 0, + "index": 344, + "offset_point_count": 0, + "position": [41.26319885253906, 0.25494199991226196, -48.87379837036133], + "quaternion": { + "w": -0.05808657509493121, + "x": 0.0005827335809072308, + "y": -0.9981696469515694, + "z": -0.016821084474313745 + }, + "standing_position": [41.26319885253906, -0.7887870663210257, -48.87379837036133], + "visible_nodes": [339, 340, 341, 342, 343, 345, 347, 348, 349, 350, 354, 355] + }, + { + "accessible_nodes": [338, 341, 343, 344, 346, 347, 348, 349, 350], + "floor_index": 0, + "index": 345, + "offset_point_count": 0, + "position": [38.058998107910156, 0.23661600053310394, -46.44269943237305], + "quaternion": { + "w": -0.7111648546776823, + "x": 0.00511579955185724, + "y": -0.7029342435655752, + "z": -0.01009140588000043 + }, + "standing_position": [38.058998107910156, -0.8623544223213684, -46.44269943237305], + "visible_nodes": [338, 341, 343, 344, 346, 347, 348, 349, 350] + }, + { + "accessible_nodes": [331, 332, 333, 334, 335, 336, 337, 338, 343, 345, 349, 350], + "floor_index": 0, + "index": 346, + "offset_point_count": 0, + "position": [38.36360168457031, 0.27802398800849915, -50.762298583984375], + "quaternion": { + "w": -0.011195922600748871, + "x": 0.002438311071725047, + "y": -0.9997075368453835, + "z": -0.021296244727495285 + }, + "standing_position": [38.36360168457031, -0.7980301243984032, -50.762298583984375], + "visible_nodes": [331, 332, 333, 334, 335, 336, 337, 338, 343, 345, 349, 350] + }, + { + "accessible_nodes": [333, 335, 339, 340, 341, 342, 343, 344, 345, 348, 349, 350], + "floor_index": 0, + "index": 347, + "offset_point_count": 0, + "position": [41.34189987182617, 0.23034200072288513, -46.35599899291992], + "quaternion": { + "w": -0.13190215632038782, + "x": -0.0011598848896348193, + "y": -0.9911154414435397, + "z": -0.01704847130801159 + }, + "standing_position": [41.34189987182617, -0.851362692060263, -46.35599899291992], + "visible_nodes": [333, 335, 339, 340, 341, 342, 343, 344, 345, 348, 349, 350] + }, + { + "accessible_nodes": [338, 339, 340, 341, 342, 343, 344, 345, 347, 349, 350, 351], + "floor_index": 0, + "index": 348, + "offset_point_count": 0, + "position": [44.38249969482422, 0.20860999822616577, -46.231201171875], + "quaternion": { + "w": -0.13199852262997042, + "x": 0.0019055901563094044, + "y": -0.9910377087987511, + "z": -0.02042103882256451 + }, + "standing_position": [44.38249969482422, -0.8841789923049626, -46.231201171875], + "visible_nodes": [338, 339, 340, 341, 342, 343, 344, 345, 347, 349, 350, 351] + }, + { + "accessible_nodes": [339, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352], + "floor_index": 0, + "index": 349, + "offset_point_count": 0, + "position": [38.14820098876953, 0.20968200266361237, -43.77949905395508], + "quaternion": { + "w": -0.7243860586948022, + "x": 0.002587532720350245, + "y": -0.6893585919688935, + "z": -0.006547001937750037 + }, + "standing_position": [38.14820098876953, -0.8939154676679291, -43.77949905395508], + "visible_nodes": [339, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352] + }, + { + "accessible_nodes": [333, 335, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352], + "floor_index": 0, + "index": 350, + "offset_point_count": 0, + "position": [41.8119010925293, 0.19811299443244934, -43.54650115966797], + "quaternion": { + "w": -0.12360923661218338, + "x": 0.0007045811651942125, + "y": -0.9922382687172883, + "z": -0.01354496275372776 + }, + "standing_position": [41.8119010925293, -0.9267440744234907, -43.54650115966797], + "visible_nodes": [333, 335, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352] + }, + { + "accessible_nodes": [348, 349, 350, 352, 353, 354, 355], + "floor_index": 0, + "index": 351, + "offset_point_count": 0, + "position": [36.07680130004883, 0.2305160015821457, -43.67390060424805], + "quaternion": { + "w": -0.995504070093082, + "x": 0.01559398038402796, + "y": 0.09244761981477492, + "z": 0.013487638105699142 + }, + "standing_position": [36.07680130004883, -0.8683842752004203, -43.67390060424805], + "visible_nodes": [348, 349, 350, 352, 353, 354, 355] + }, + { + "accessible_nodes": [349, 350, 351, 353, 354, 355], + "floor_index": 0, + "index": 352, + "offset_point_count": 0, + "position": [34.073001861572266, 0.2491919994354248, -43.28450012207031], + "quaternion": { + "w": -0.9961142893150869, + "x": 0.015152234969230016, + "y": 0.08602381204865915, + "z": 0.011253283370682099 + }, + "standing_position": [34.073001861572266, -0.7794909882945098, -43.28450012207031], + "visible_nodes": [349, 350, 351, 353, 354, 355] + }, + { + "accessible_nodes": [351, 352, 354, 355], + "floor_index": 0, + "index": 353, + "offset_point_count": 0, + "position": [36.025901794433594, 0.27134600281715393, -46.194000244140625], + "quaternion": { + "w": -0.28964428298835154, + "x": -0.0016781222229952655, + "y": -0.9568134682877377, + "z": -0.02472582439474655 + }, + "standing_position": [36.025901794433594, -0.7444400053937019, -46.194000244140625], + "visible_nodes": [351, 352, 354, 355] + }, + { + "accessible_nodes": [343, 344, 351, 352, 353, 355], + "floor_index": 0, + "index": 354, + "offset_point_count": 0, + "position": [35.871299743652344, 0.32545799016952515, -49.179901123046875], + "quaternion": { + "w": 0.024670789147157677, + "x": -0.006807228379695218, + "y": -0.999294031810317, + "z": -0.02750365578514235 + }, + "standing_position": [35.871299743652344, -0.7281608085172868, -49.179901123046875], + "visible_nodes": [343, 344, 351, 352, 353, 355] + }, + { + "accessible_nodes": [343, 344, 351, 352, 353, 354], + "floor_index": 0, + "index": 355, + "offset_point_count": 0, + "position": [33.319801330566406, 0.34193798899650574, -48.94860076904297], + "quaternion": { + "w": -0.9761400148123802, + "x": 0.007829051800903297, + "y": 0.2168562304151805, + "z": 0.007921327763798931 + }, + "standing_position": [33.319801330566406, -0.7623650474597525, -48.94860076904297], + "visible_nodes": [343, 344, 351, 352, 353, 354] + }, + { + "accessible_nodes": [267, 276, 277, 278, 324, 325, 326, 327, 328, 329, 330, 331], + "floor_index": 0, + "index": 356, + "offset_point_count": 0, + "position": [28.183799743652344, -0.14012399315834045, -37.24300003051758], + "quaternion": { + "w": 0.7723087850556405, + "x": -0.01289722127570723, + "y": -0.6350330141732972, + "z": -0.010289367860783437 + }, + "standing_position": [28.183799743652344, -1.2248167431790544, -37.24300003051758], + "visible_nodes": [267, 276, 277, 278, 324, 325, 326, 327, 328, 329, 330, 331] + } + ], + "panorama": { + "count": 357, + "list": [ + { + "back": "images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_b.jpg", + "down": "images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_d.jpg", + "front": "images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_f.jpg", + "index": 0, + "left": "images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_l.jpg", + "right": "images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/0/d34db1de6b2bf85e1fded5bcaf3aa2b7/0_u.jpg" + }, + { + "back": "images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_b.jpg", + "down": "images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_d.jpg", + "front": "images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_f.jpg", + "index": 1, + "left": "images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_l.jpg", + "right": "images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/1/b30341ec87825e468d0ac12567776652/1_u.jpg" + }, + { + "back": "images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_b.jpg", + "down": "images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_d.jpg", + "front": "images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_f.jpg", + "index": 2, + "left": "images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_l.jpg", + "right": "images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/2/1cfbac7c96aa8f128ec6eba3300adf02/2_u.jpg" + }, + { + "back": "images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_b.jpg", + "down": "images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_d.jpg", + "front": "images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_f.jpg", + "index": 3, + "left": "images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_l.jpg", + "right": "images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/3/4b9f70c50971c49db4aa374f5446abb3/3_u.jpg" + }, + { + "back": "images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_b.jpg", + "down": "images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_d.jpg", + "front": "images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_f.jpg", + "index": 4, + "left": "images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_l.jpg", + "right": "images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/4/29ea915d37cc2e2f3e40b9a2a4e2f5e2/4_u.jpg" + }, + { + "back": "images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_b.jpg", + "down": "images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_d.jpg", + "front": "images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_f.jpg", + "index": 5, + "left": "images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_l.jpg", + "right": "images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/5/675d2722a173edbb942efdc1b8404cc9/5_u.jpg" + }, + { + "back": "images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_b.jpg", + "down": "images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_d.jpg", + "front": "images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_f.jpg", + "index": 6, + "left": "images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_l.jpg", + "right": "images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/6/4c1e96cd1dde85c82d10f1e78f41846d/6_u.jpg" + }, + { + "back": "images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_b.jpg", + "down": "images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_d.jpg", + "front": "images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_f.jpg", + "index": 7, + "left": "images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_l.jpg", + "right": "images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/7/d50cd4f968ef8f59be160e1be9ca58ba/7_u.jpg" + }, + { + "back": "images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_b.jpg", + "down": "images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_d.jpg", + "front": "images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_f.jpg", + "index": 8, + "left": "images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_l.jpg", + "right": "images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/8/0ba6c4c30eb01469afc4e914916a1faa/8_u.jpg" + }, + { + "back": "images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_b.jpg", + "down": "images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_d.jpg", + "front": "images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_f.jpg", + "index": 9, + "left": "images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_l.jpg", + "right": "images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/9/a017980449cf1538a0b6d5d0a03ba4f7/9_u.jpg" + }, + { + "back": "images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_b.jpg", + "down": "images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_d.jpg", + "front": "images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_f.jpg", + "index": 10, + "left": "images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_l.jpg", + "right": "images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/10/f2e1ec5dac3819a928ff92098bcad558/10_u.jpg" + }, + { + "back": "images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_b.jpg", + "down": "images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_d.jpg", + "front": "images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_f.jpg", + "index": 11, + "left": "images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_l.jpg", + "right": "images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/11/ecb4c4b60087e6261224816e8ac25390/11_u.jpg" + }, + { + "back": "images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_b.jpg", + "down": "images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_d.jpg", + "front": "images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_f.jpg", + "index": 12, + "left": "images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_l.jpg", + "right": "images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/12/25561dad7b9d2d5e7547f4ceb83290dc/12_u.jpg" + }, + { + "back": "images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_b.jpg", + "down": "images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_d.jpg", + "front": "images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_f.jpg", + "index": 13, + "left": "images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_l.jpg", + "right": "images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/13/e1d926b32eb0bfeb577e0240a5d18ac1/13_u.jpg" + }, + { + "back": "images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_b.jpg", + "down": "images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_d.jpg", + "front": "images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_f.jpg", + "index": 14, + "left": "images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_l.jpg", + "right": "images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/14/13a0bb172f5f82ff3eaefc42878a9aa2/14_u.jpg" + }, + { + "back": "images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_b.jpg", + "down": "images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_d.jpg", + "front": "images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_f.jpg", + "index": 15, + "left": "images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_l.jpg", + "right": "images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/15/aa7e82ab94708cbb4151dcd83ab13413/15_u.jpg" + }, + { + "back": "images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_b.jpg", + "down": "images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_d.jpg", + "front": "images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_f.jpg", + "index": 16, + "left": "images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_l.jpg", + "right": "images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/16/b6f06d414b0e60958d0f30a43b483c53/16_u.jpg" + }, + { + "back": "images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_b.jpg", + "down": "images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_d.jpg", + "front": "images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_f.jpg", + "index": 17, + "left": "images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_l.jpg", + "right": "images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/17/e19ae1c36beec826295ee3dd54e2e74d/17_u.jpg" + }, + { + "back": "images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_b.jpg", + "down": "images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_d.jpg", + "front": "images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_f.jpg", + "index": 18, + "left": "images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_l.jpg", + "right": "images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/18/d293c7cba102d658c29555982ff552af/18_u.jpg" + }, + { + "back": "images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_b.jpg", + "down": "images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_d.jpg", + "front": "images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_f.jpg", + "index": 19, + "left": "images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_l.jpg", + "right": "images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/19/74a0ea48a3333ca8078824a047fa0468/19_u.jpg" + }, + { + "back": "images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_b.jpg", + "down": "images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_d.jpg", + "front": "images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_f.jpg", + "index": 20, + "left": "images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_l.jpg", + "right": "images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/20/736beb2861389d2dda1bfa3f25848901/20_u.jpg" + }, + { + "back": "images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_b.jpg", + "down": "images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_d.jpg", + "front": "images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_f.jpg", + "index": 21, + "left": "images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_l.jpg", + "right": "images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/21/b922e7aa6e0163bbfbea12e327e06949/21_u.jpg" + }, + { + "back": "images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_b.jpg", + "down": "images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_d.jpg", + "front": "images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_f.jpg", + "index": 22, + "left": "images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_l.jpg", + "right": "images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/22/46c7e64935c9e19724e5d9e55a93af7d/22_u.jpg" + }, + { + "back": "images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_b.jpg", + "down": "images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_d.jpg", + "front": "images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_f.jpg", + "index": 23, + "left": "images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_l.jpg", + "right": "images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/23/82585c2d9ed79f60c4c2bd47a1ff7ce5/23_u.jpg" + }, + { + "back": "images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_b.jpg", + "down": "images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_d.jpg", + "front": "images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_f.jpg", + "index": 24, + "left": "images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_l.jpg", + "right": "images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/24/2645b436e3c0e7523ae82b048c64cc99/24_u.jpg" + }, + { + "back": "images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_b.jpg", + "down": "images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_d.jpg", + "front": "images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_f.jpg", + "index": 25, + "left": "images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_l.jpg", + "right": "images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/25/fd9f29a6b92afae22a1ddfa2b31054fd/25_u.jpg" + }, + { + "back": "images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_b.jpg", + "down": "images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_d.jpg", + "front": "images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_f.jpg", + "index": 26, + "left": "images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_l.jpg", + "right": "images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/26/1a64c3d8f003f8bae4ff3426325e394c/26_u.jpg" + }, + { + "back": "images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_b.jpg", + "down": "images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_d.jpg", + "front": "images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_f.jpg", + "index": 27, + "left": "images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_l.jpg", + "right": "images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/27/2d1fbc78f16a1b0d777b568ff2b08467/27_u.jpg" + }, + { + "back": "images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_b.jpg", + "down": "images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_d.jpg", + "front": "images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_f.jpg", + "index": 28, + "left": "images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_l.jpg", + "right": "images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/28/c4e35e555e88dedb248d03194e053391/28_u.jpg" + }, + { + "back": "images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_b.jpg", + "down": "images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_d.jpg", + "front": "images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_f.jpg", + "index": 29, + "left": "images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_l.jpg", + "right": "images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/29/afc1fafb66028117f984ce7ff759451d/29_u.jpg" + }, + { + "back": "images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_b.jpg", + "down": "images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_d.jpg", + "front": "images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_f.jpg", + "index": 30, + "left": "images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_l.jpg", + "right": "images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/30/10d899fe833f469ca5425172ded07b0e/30_u.jpg" + }, + { + "back": "images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_b.jpg", + "down": "images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_d.jpg", + "front": "images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_f.jpg", + "index": 31, + "left": "images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_l.jpg", + "right": "images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/31/405fd39fe37a9ea4719750b9a063b696/31_u.jpg" + }, + { + "back": "images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_b.jpg", + "down": "images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_d.jpg", + "front": "images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_f.jpg", + "index": 32, + "left": "images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_l.jpg", + "right": "images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/32/cfafb00d0890b93c5f62f0b98cc04fd0/32_u.jpg" + }, + { + "back": "images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_b.jpg", + "down": "images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_d.jpg", + "front": "images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_f.jpg", + "index": 33, + "left": "images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_l.jpg", + "right": "images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/33/1e1f5e7db28d52489e4e554fef32ab41/33_u.jpg" + }, + { + "back": "images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_b.jpg", + "down": "images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_d.jpg", + "front": "images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_f.jpg", + "index": 34, + "left": "images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_l.jpg", + "right": "images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/34/d3847abce96e4070f966c143c1689d07/34_u.jpg" + }, + { + "back": "images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_b.jpg", + "down": "images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_d.jpg", + "front": "images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_f.jpg", + "index": 35, + "left": "images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_l.jpg", + "right": "images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/35/690fd46c4af2b492969b00d7a09199fb/35_u.jpg" + }, + { + "back": "images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_b.jpg", + "down": "images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_d.jpg", + "front": "images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_f.jpg", + "index": 36, + "left": "images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_l.jpg", + "right": "images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/36/d9fc7222d14ed58d54023168ed2f847d/36_u.jpg" + }, + { + "back": "images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_b.jpg", + "down": "images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_d.jpg", + "front": "images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_f.jpg", + "index": 37, + "left": "images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_l.jpg", + "right": "images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/37/d90e1ade4c2bddd229a12a2d68983a5e/37_u.jpg" + }, + { + "back": "images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_b.jpg", + "down": "images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_d.jpg", + "front": "images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_f.jpg", + "index": 38, + "left": "images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_l.jpg", + "right": "images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/38/28624653fc30e0e55b82b6e24dea07be/38_u.jpg" + }, + { + "back": "images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_b.jpg", + "down": "images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_d.jpg", + "front": "images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_f.jpg", + "index": 39, + "left": "images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_l.jpg", + "right": "images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/39/32e2fe0174ed486d24bfe1e20ee02794/39_u.jpg" + }, + { + "back": "images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_b.jpg", + "down": "images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_d.jpg", + "front": "images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_f.jpg", + "index": 40, + "left": "images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_l.jpg", + "right": "images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/40/9dd4206c90fb7d4f4610f591385005e9/40_u.jpg" + }, + { + "back": "images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_b.jpg", + "down": "images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_d.jpg", + "front": "images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_f.jpg", + "index": 41, + "left": "images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_l.jpg", + "right": "images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/41/fc9e288ab97d622f81461be3ae281311/41_u.jpg" + }, + { + "back": "images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_b.jpg", + "down": "images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_d.jpg", + "front": "images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_f.jpg", + "index": 42, + "left": "images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_l.jpg", + "right": "images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/42/be14553fae917fff2d4eb56960be05bb/42_u.jpg" + }, + { + "back": "images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_b.jpg", + "down": "images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_d.jpg", + "front": "images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_f.jpg", + "index": 43, + "left": "images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_l.jpg", + "right": "images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/43/7309cc0b864c5ff9d53afba2cf598484/43_u.jpg" + }, + { + "back": "images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_b.jpg", + "down": "images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_d.jpg", + "front": "images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_f.jpg", + "index": 44, + "left": "images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_l.jpg", + "right": "images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/44/131db188937c1c5a00732d550f500ac2/44_u.jpg" + }, + { + "back": "images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_b.jpg", + "down": "images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_d.jpg", + "front": "images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_f.jpg", + "index": 45, + "left": "images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_l.jpg", + "right": "images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/45/9b674e6ef74e04066a581c64d716a6e6/45_u.jpg" + }, + { + "back": "images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_b.jpg", + "down": "images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_d.jpg", + "front": "images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_f.jpg", + "index": 46, + "left": "images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_l.jpg", + "right": "images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/46/2f014dd32b7b9575edab348ded077d06/46_u.jpg" + }, + { + "back": "images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_b.jpg", + "down": "images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_d.jpg", + "front": "images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_f.jpg", + "index": 47, + "left": "images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_l.jpg", + "right": "images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/47/d512a5d7577acb076a6bb5888e97f1c1/47_u.jpg" + }, + { + "back": "images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_b.jpg", + "down": "images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_d.jpg", + "front": "images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_f.jpg", + "index": 48, + "left": "images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_l.jpg", + "right": "images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/48/98a1e0079735a55958fc34bfa3791e5b/48_u.jpg" + }, + { + "back": "images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_b.jpg", + "down": "images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_d.jpg", + "front": "images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_f.jpg", + "index": 49, + "left": "images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_l.jpg", + "right": "images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/49/ac21b9fafa2c94525d4c12d560591399/49_u.jpg" + }, + { + "back": "images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_b.jpg", + "down": "images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_d.jpg", + "front": "images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_f.jpg", + "index": 50, + "left": "images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_l.jpg", + "right": "images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/50/110b87912d5d7389f43e2c63cc992f1b/50_u.jpg" + }, + { + "back": "images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_b.jpg", + "down": "images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_d.jpg", + "front": "images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_f.jpg", + "index": 51, + "left": "images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_l.jpg", + "right": "images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/51/56f6b971c31173d731dec298576d2f5e/51_u.jpg" + }, + { + "back": "images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_b.jpg", + "down": "images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_d.jpg", + "front": "images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_f.jpg", + "index": 52, + "left": "images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_l.jpg", + "right": "images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/52/2c92868c50a45e0c0e9f6890ccb42976/52_u.jpg" + }, + { + "back": "images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_b.jpg", + "down": "images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_d.jpg", + "front": "images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_f.jpg", + "index": 53, + "left": "images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_l.jpg", + "right": "images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/53/57d3bed3c2fc2ba62878277a145e0d25/53_u.jpg" + }, + { + "back": "images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_b.jpg", + "down": "images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_d.jpg", + "front": "images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_f.jpg", + "index": 54, + "left": "images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_l.jpg", + "right": "images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/54/5dd232db3058faec0a86d0062fd0ff9b/54_u.jpg" + }, + { + "back": "images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_b.jpg", + "down": "images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_d.jpg", + "front": "images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_f.jpg", + "index": 55, + "left": "images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_l.jpg", + "right": "images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/55/4c3b1e93d2bad9dda30a18e25124429b/55_u.jpg" + }, + { + "back": "images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_b.jpg", + "down": "images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_d.jpg", + "front": "images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_f.jpg", + "index": 56, + "left": "images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_l.jpg", + "right": "images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/56/9a4f2b7130239c812039a76ef94fe6b0/56_u.jpg" + }, + { + "back": "images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_b.jpg", + "down": "images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_d.jpg", + "front": "images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_f.jpg", + "index": 57, + "left": "images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_l.jpg", + "right": "images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/57/bf9d7eaa2d1b0e460c2d14f33ec19c68/57_u.jpg" + }, + { + "back": "images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_b.jpg", + "down": "images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_d.jpg", + "front": "images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_f.jpg", + "index": 58, + "left": "images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_l.jpg", + "right": "images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/58/94fa8e25e67b292270ea1f648f78310b/58_u.jpg" + }, + { + "back": "images/cube_2048/59/a627521318471a0de8bd961755540a45/59_b.jpg", + "down": "images/cube_2048/59/a627521318471a0de8bd961755540a45/59_d.jpg", + "front": "images/cube_2048/59/a627521318471a0de8bd961755540a45/59_f.jpg", + "index": 59, + "left": "images/cube_2048/59/a627521318471a0de8bd961755540a45/59_l.jpg", + "right": "images/cube_2048/59/a627521318471a0de8bd961755540a45/59_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/59/a627521318471a0de8bd961755540a45/59_u.jpg" + }, + { + "back": "images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_b.jpg", + "down": "images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_d.jpg", + "front": "images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_f.jpg", + "index": 60, + "left": "images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_l.jpg", + "right": "images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/60/7b6e746a98d658ecabc3a1be3102a0a2/60_u.jpg" + }, + { + "back": "images/cube_2048/61/45234019d51032cf663a89738802cc70/61_b.jpg", + "down": "images/cube_2048/61/45234019d51032cf663a89738802cc70/61_d.jpg", + "front": "images/cube_2048/61/45234019d51032cf663a89738802cc70/61_f.jpg", + "index": 61, + "left": "images/cube_2048/61/45234019d51032cf663a89738802cc70/61_l.jpg", + "right": "images/cube_2048/61/45234019d51032cf663a89738802cc70/61_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/61/45234019d51032cf663a89738802cc70/61_u.jpg" + }, + { + "back": "images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_b.jpg", + "down": "images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_d.jpg", + "front": "images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_f.jpg", + "index": 62, + "left": "images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_l.jpg", + "right": "images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/62/66575508383da1f90c3fb4dfe9cd4ca9/62_u.jpg" + }, + { + "back": "images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_b.jpg", + "down": "images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_d.jpg", + "front": "images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_f.jpg", + "index": 63, + "left": "images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_l.jpg", + "right": "images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/63/f4a1623beda7ad7bb4c17fb1c013aacd/63_u.jpg" + }, + { + "back": "images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_b.jpg", + "down": "images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_d.jpg", + "front": "images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_f.jpg", + "index": 64, + "left": "images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_l.jpg", + "right": "images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/64/babfb8747f7f46d814ee7f638c8cc09e/64_u.jpg" + }, + { + "back": "images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_b.jpg", + "down": "images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_d.jpg", + "front": "images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_f.jpg", + "index": 65, + "left": "images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_l.jpg", + "right": "images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/65/1a9df787ccc32aa01e033f1736e0d827/65_u.jpg" + }, + { + "back": "images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_b.jpg", + "down": "images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_d.jpg", + "front": "images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_f.jpg", + "index": 66, + "left": "images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_l.jpg", + "right": "images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/66/36138b8c159ed2b0b3f8805a1767789e/66_u.jpg" + }, + { + "back": "images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_b.jpg", + "down": "images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_d.jpg", + "front": "images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_f.jpg", + "index": 67, + "left": "images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_l.jpg", + "right": "images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/67/84077e074cf3a773a673d3763cfc3fbe/67_u.jpg" + }, + { + "back": "images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_b.jpg", + "down": "images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_d.jpg", + "front": "images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_f.jpg", + "index": 68, + "left": "images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_l.jpg", + "right": "images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/68/fc8d5420e91f95d8cf728c7a213294eb/68_u.jpg" + }, + { + "back": "images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_b.jpg", + "down": "images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_d.jpg", + "front": "images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_f.jpg", + "index": 69, + "left": "images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_l.jpg", + "right": "images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/69/e92b6bcc924eda763d8eb396d6b31e9b/69_u.jpg" + }, + { + "back": "images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_b.jpg", + "down": "images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_d.jpg", + "front": "images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_f.jpg", + "index": 70, + "left": "images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_l.jpg", + "right": "images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/70/087976d9a219134bc87ce8d022f53626/70_u.jpg" + }, + { + "back": "images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_b.jpg", + "down": "images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_d.jpg", + "front": "images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_f.jpg", + "index": 71, + "left": "images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_l.jpg", + "right": "images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/71/c29953f5d652cf04aa2a2bf9c4ecc299/71_u.jpg" + }, + { + "back": "images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_b.jpg", + "down": "images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_d.jpg", + "front": "images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_f.jpg", + "index": 72, + "left": "images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_l.jpg", + "right": "images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/72/1f4dddf15bc5b0a9e139111a231ede4b/72_u.jpg" + }, + { + "back": "images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_b.jpg", + "down": "images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_d.jpg", + "front": "images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_f.jpg", + "index": 73, + "left": "images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_l.jpg", + "right": "images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/73/053a1136637a8a64fbc4e1dec46c046c/73_u.jpg" + }, + { + "back": "images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_b.jpg", + "down": "images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_d.jpg", + "front": "images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_f.jpg", + "index": 74, + "left": "images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_l.jpg", + "right": "images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/74/69e8fc7c0253cf377146c6e2a2b1ba4e/74_u.jpg" + }, + { + "back": "images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_b.jpg", + "down": "images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_d.jpg", + "front": "images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_f.jpg", + "index": 75, + "left": "images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_l.jpg", + "right": "images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/75/4b40053264d01d737454e2033ea99043/75_u.jpg" + }, + { + "back": "images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_b.jpg", + "down": "images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_d.jpg", + "front": "images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_f.jpg", + "index": 76, + "left": "images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_l.jpg", + "right": "images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/76/dfc4da5dab4e60fe7bf97df6777882ca/76_u.jpg" + }, + { + "back": "images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_b.jpg", + "down": "images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_d.jpg", + "front": "images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_f.jpg", + "index": 77, + "left": "images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_l.jpg", + "right": "images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/77/7a08338075bb32bcc82ee6f7c4a5ec88/77_u.jpg" + }, + { + "back": "images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_b.jpg", + "down": "images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_d.jpg", + "front": "images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_f.jpg", + "index": 78, + "left": "images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_l.jpg", + "right": "images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/78/043402d4211cb983e7852eb304af76c1/78_u.jpg" + }, + { + "back": "images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_b.jpg", + "down": "images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_d.jpg", + "front": "images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_f.jpg", + "index": 79, + "left": "images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_l.jpg", + "right": "images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/79/b080b0f5a1781710ad278f6e90bab214/79_u.jpg" + }, + { + "back": "images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_b.jpg", + "down": "images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_d.jpg", + "front": "images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_f.jpg", + "index": 80, + "left": "images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_l.jpg", + "right": "images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/80/367ea5785f3f987089e7e6878306a8d8/80_u.jpg" + }, + { + "back": "images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_b.jpg", + "down": "images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_d.jpg", + "front": "images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_f.jpg", + "index": 81, + "left": "images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_l.jpg", + "right": "images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/81/b0bab4274e5646f35638a3910ad8becc/81_u.jpg" + }, + { + "back": "images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_b.jpg", + "down": "images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_d.jpg", + "front": "images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_f.jpg", + "index": 82, + "left": "images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_l.jpg", + "right": "images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/82/7e95847866dda7d3c01d877350cf21c9/82_u.jpg" + }, + { + "back": "images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_b.jpg", + "down": "images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_d.jpg", + "front": "images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_f.jpg", + "index": 83, + "left": "images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_l.jpg", + "right": "images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/83/5f753ce39e51d7286d6cc41aa3d24983/83_u.jpg" + }, + { + "back": "images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_b.jpg", + "down": "images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_d.jpg", + "front": "images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_f.jpg", + "index": 84, + "left": "images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_l.jpg", + "right": "images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/84/b029e5d28ebf3d2564cad15d2ba52453/84_u.jpg" + }, + { + "back": "images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_b.jpg", + "down": "images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_d.jpg", + "front": "images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_f.jpg", + "index": 85, + "left": "images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_l.jpg", + "right": "images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/85/f4163dc11b626f42d8483c2e1ae484cb/85_u.jpg" + }, + { + "back": "images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_b.jpg", + "down": "images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_d.jpg", + "front": "images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_f.jpg", + "index": 86, + "left": "images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_l.jpg", + "right": "images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/86/c19707558401cf2adf5ac86ded506dcf/86_u.jpg" + }, + { + "back": "images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_b.jpg", + "down": "images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_d.jpg", + "front": "images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_f.jpg", + "index": 87, + "left": "images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_l.jpg", + "right": "images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/87/1af1a887774da2b38671401cabce7bc6/87_u.jpg" + }, + { + "back": "images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_b.jpg", + "down": "images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_d.jpg", + "front": "images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_f.jpg", + "index": 88, + "left": "images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_l.jpg", + "right": "images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/88/5d63fc93de43372de204169295375d2b/88_u.jpg" + }, + { + "back": "images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_b.jpg", + "down": "images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_d.jpg", + "front": "images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_f.jpg", + "index": 89, + "left": "images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_l.jpg", + "right": "images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/89/9dbdde5930faf82e515a761b6ad78e43/89_u.jpg" + }, + { + "back": "images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_b.jpg", + "down": "images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_d.jpg", + "front": "images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_f.jpg", + "index": 90, + "left": "images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_l.jpg", + "right": "images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/90/1f6a02232c33ef8718d004671d64da5b/90_u.jpg" + }, + { + "back": "images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_b.jpg", + "down": "images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_d.jpg", + "front": "images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_f.jpg", + "index": 91, + "left": "images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_l.jpg", + "right": "images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/91/87bcbe84f7ab9586c7efbe596cfd02ce/91_u.jpg" + }, + { + "back": "images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_b.jpg", + "down": "images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_d.jpg", + "front": "images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_f.jpg", + "index": 92, + "left": "images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_l.jpg", + "right": "images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/92/6eb917135d6653a4dedf8e4372784b9e/92_u.jpg" + }, + { + "back": "images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_b.jpg", + "down": "images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_d.jpg", + "front": "images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_f.jpg", + "index": 93, + "left": "images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_l.jpg", + "right": "images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/93/ac3f90f4e9ed0ee95a999591f988e42d/93_u.jpg" + }, + { + "back": "images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_b.jpg", + "down": "images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_d.jpg", + "front": "images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_f.jpg", + "index": 94, + "left": "images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_l.jpg", + "right": "images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/94/21541a5603687b69f1d7e9ff8e148955/94_u.jpg" + }, + { + "back": "images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_b.jpg", + "down": "images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_d.jpg", + "front": "images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_f.jpg", + "index": 95, + "left": "images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_l.jpg", + "right": "images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/95/e2f76d4cdcec4ac90956f1234ef76635/95_u.jpg" + }, + { + "back": "images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_b.jpg", + "down": "images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_d.jpg", + "front": "images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_f.jpg", + "index": 96, + "left": "images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_l.jpg", + "right": "images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/96/6d11a13c84ad50613f6d1e1f38e1e8b9/96_u.jpg" + }, + { + "back": "images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_b.jpg", + "down": "images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_d.jpg", + "front": "images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_f.jpg", + "index": 97, + "left": "images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_l.jpg", + "right": "images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/97/949206f2da8bcf624d5cbc78a5849783/97_u.jpg" + }, + { + "back": "images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_b.jpg", + "down": "images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_d.jpg", + "front": "images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_f.jpg", + "index": 98, + "left": "images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_l.jpg", + "right": "images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/98/e26baa7c193e06d4014f5b2f268335e2/98_u.jpg" + }, + { + "back": "images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_b.jpg", + "down": "images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_d.jpg", + "front": "images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_f.jpg", + "index": 99, + "left": "images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_l.jpg", + "right": "images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/99/66a13fb00cd5bbb90148076a40e859c5/99_u.jpg" + }, + { + "back": "images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_b.jpg", + "down": "images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_d.jpg", + "front": "images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_f.jpg", + "index": 100, + "left": "images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_l.jpg", + "right": "images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/100/0e86d0fe5c6ae80e1b75b84ef5d0cf8a/100_u.jpg" + }, + { + "back": "images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_b.jpg", + "down": "images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_d.jpg", + "front": "images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_f.jpg", + "index": 101, + "left": "images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_l.jpg", + "right": "images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/101/18add728d2322ea3a91d20f6ac5d6412/101_u.jpg" + }, + { + "back": "images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_b.jpg", + "down": "images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_d.jpg", + "front": "images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_f.jpg", + "index": 102, + "left": "images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_l.jpg", + "right": "images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/102/0b28cc1044f0ac2933c73866cc41e80b/102_u.jpg" + }, + { + "back": "images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_b.jpg", + "down": "images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_d.jpg", + "front": "images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_f.jpg", + "index": 103, + "left": "images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_l.jpg", + "right": "images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/103/ea6fd0bade5889b43cbd2e761c065706/103_u.jpg" + }, + { + "back": "images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_b.jpg", + "down": "images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_d.jpg", + "front": "images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_f.jpg", + "index": 104, + "left": "images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_l.jpg", + "right": "images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/104/80b91b4baebfd65145725f49f6cb8ec2/104_u.jpg" + }, + { + "back": "images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_b.jpg", + "down": "images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_d.jpg", + "front": "images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_f.jpg", + "index": 105, + "left": "images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_l.jpg", + "right": "images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/105/528278f0c195f49b3aaea477e7a26ee4/105_u.jpg" + }, + { + "back": "images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_b.jpg", + "down": "images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_d.jpg", + "front": "images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_f.jpg", + "index": 106, + "left": "images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_l.jpg", + "right": "images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/106/e2bf1821017c118bdfc292a9b2407e9a/106_u.jpg" + }, + { + "back": "images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_b.jpg", + "down": "images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_d.jpg", + "front": "images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_f.jpg", + "index": 107, + "left": "images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_l.jpg", + "right": "images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/107/e6e63e9d0fb4064a19736e2c5fd6a94a/107_u.jpg" + }, + { + "back": "images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_b.jpg", + "down": "images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_d.jpg", + "front": "images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_f.jpg", + "index": 108, + "left": "images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_l.jpg", + "right": "images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/108/32b420fd1bfc5f74d821fdf1b234b456/108_u.jpg" + }, + { + "back": "images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_b.jpg", + "down": "images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_d.jpg", + "front": "images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_f.jpg", + "index": 109, + "left": "images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_l.jpg", + "right": "images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/109/390cdc0c4bbdc160a248b572662f600c/109_u.jpg" + }, + { + "back": "images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_b.jpg", + "down": "images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_d.jpg", + "front": "images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_f.jpg", + "index": 110, + "left": "images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_l.jpg", + "right": "images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/110/f0c978432cfecf2ff7184f97712b03ec/110_u.jpg" + }, + { + "back": "images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_b.jpg", + "down": "images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_d.jpg", + "front": "images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_f.jpg", + "index": 111, + "left": "images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_l.jpg", + "right": "images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/111/4eebe73ddad8828300a52d293edf3424/111_u.jpg" + }, + { + "back": "images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_b.jpg", + "down": "images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_d.jpg", + "front": "images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_f.jpg", + "index": 112, + "left": "images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_l.jpg", + "right": "images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/112/676fff7d386935db2ade1908cc7cf040/112_u.jpg" + }, + { + "back": "images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_b.jpg", + "down": "images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_d.jpg", + "front": "images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_f.jpg", + "index": 113, + "left": "images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_l.jpg", + "right": "images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/113/4ad3842b07c983921936f0d392782dfb/113_u.jpg" + }, + { + "back": "images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_b.jpg", + "down": "images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_d.jpg", + "front": "images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_f.jpg", + "index": 114, + "left": "images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_l.jpg", + "right": "images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/114/87a6196a04fac8a5200f1e1469112992/114_u.jpg" + }, + { + "back": "images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_b.jpg", + "down": "images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_d.jpg", + "front": "images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_f.jpg", + "index": 115, + "left": "images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_l.jpg", + "right": "images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/115/e62bccf1581b1902f7d1376b109274b1/115_u.jpg" + }, + { + "back": "images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_b.jpg", + "down": "images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_d.jpg", + "front": "images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_f.jpg", + "index": 116, + "left": "images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_l.jpg", + "right": "images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/116/339fda2a5f03e8f38de36c4477580947/116_u.jpg" + }, + { + "back": "images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_b.jpg", + "down": "images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_d.jpg", + "front": "images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_f.jpg", + "index": 117, + "left": "images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_l.jpg", + "right": "images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/117/69af4199b9b275f8975f09771507d93e/117_u.jpg" + }, + { + "back": "images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_b.jpg", + "down": "images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_d.jpg", + "front": "images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_f.jpg", + "index": 118, + "left": "images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_l.jpg", + "right": "images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/118/1d111290b33aac1a41464d0b9f8f2b9f/118_u.jpg" + }, + { + "back": "images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_b.jpg", + "down": "images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_d.jpg", + "front": "images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_f.jpg", + "index": 119, + "left": "images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_l.jpg", + "right": "images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/119/b6549e8a07d7fdbdcbf767a31bf297e6/119_u.jpg" + }, + { + "back": "images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_b.jpg", + "down": "images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_d.jpg", + "front": "images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_f.jpg", + "index": 120, + "left": "images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_l.jpg", + "right": "images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/120/73e625fe56d78d1bb42f54bbb16af86b/120_u.jpg" + }, + { + "back": "images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_b.jpg", + "down": "images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_d.jpg", + "front": "images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_f.jpg", + "index": 121, + "left": "images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_l.jpg", + "right": "images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/121/afb45e8db820ffa0bb4eb77bbf80ac08/121_u.jpg" + }, + { + "back": "images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_b.jpg", + "down": "images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_d.jpg", + "front": "images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_f.jpg", + "index": 122, + "left": "images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_l.jpg", + "right": "images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/122/964a96157b5c4f2749850b7299822059/122_u.jpg" + }, + { + "back": "images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_b.jpg", + "down": "images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_d.jpg", + "front": "images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_f.jpg", + "index": 123, + "left": "images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_l.jpg", + "right": "images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/123/d8aab96de1a4d70eca4c92c5ba4b8600/123_u.jpg" + }, + { + "back": "images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_b.jpg", + "down": "images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_d.jpg", + "front": "images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_f.jpg", + "index": 124, + "left": "images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_l.jpg", + "right": "images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/124/1583cff9b0662352d5340112a0474775/124_u.jpg" + }, + { + "back": "images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_b.jpg", + "down": "images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_d.jpg", + "front": "images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_f.jpg", + "index": 125, + "left": "images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_l.jpg", + "right": "images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/125/f39b3e939e7f6621a07653ff4b667005/125_u.jpg" + }, + { + "back": "images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_b.jpg", + "down": "images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_d.jpg", + "front": "images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_f.jpg", + "index": 126, + "left": "images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_l.jpg", + "right": "images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/126/0a5f1925b914a6ab378e2faaa4ad276e/126_u.jpg" + }, + { + "back": "images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_b.jpg", + "down": "images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_d.jpg", + "front": "images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_f.jpg", + "index": 127, + "left": "images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_l.jpg", + "right": "images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/127/d3de6ce1ec1cdfba4f55bdeb95df8999/127_u.jpg" + }, + { + "back": "images/cube_2048/128/9244244734633c0b550abe6903890a37/128_b.jpg", + "down": "images/cube_2048/128/9244244734633c0b550abe6903890a37/128_d.jpg", + "front": "images/cube_2048/128/9244244734633c0b550abe6903890a37/128_f.jpg", + "index": 128, + "left": "images/cube_2048/128/9244244734633c0b550abe6903890a37/128_l.jpg", + "right": "images/cube_2048/128/9244244734633c0b550abe6903890a37/128_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/128/9244244734633c0b550abe6903890a37/128_u.jpg" + }, + { + "back": "images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_b.jpg", + "down": "images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_d.jpg", + "front": "images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_f.jpg", + "index": 129, + "left": "images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_l.jpg", + "right": "images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/129/575de9188cabf5c854facba4c9e6c9bb/129_u.jpg" + }, + { + "back": "images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_b.jpg", + "down": "images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_d.jpg", + "front": "images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_f.jpg", + "index": 130, + "left": "images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_l.jpg", + "right": "images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/130/32941b55ca715cb11e8d3bf2ce5343e9/130_u.jpg" + }, + { + "back": "images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_b.jpg", + "down": "images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_d.jpg", + "front": "images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_f.jpg", + "index": 131, + "left": "images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_l.jpg", + "right": "images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/131/6e94ec959608f9657f911fb1668cf518/131_u.jpg" + }, + { + "back": "images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_b.jpg", + "down": "images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_d.jpg", + "front": "images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_f.jpg", + "index": 132, + "left": "images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_l.jpg", + "right": "images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/132/8bb01b348440fe15c57c5e019aa77b7a/132_u.jpg" + }, + { + "back": "images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_b.jpg", + "down": "images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_d.jpg", + "front": "images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_f.jpg", + "index": 133, + "left": "images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_l.jpg", + "right": "images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/133/5ffeeff9cef86e6bf02da7f5575b8ce5/133_u.jpg" + }, + { + "back": "images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_b.jpg", + "down": "images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_d.jpg", + "front": "images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_f.jpg", + "index": 134, + "left": "images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_l.jpg", + "right": "images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/134/8346fad111b433c6cbe23f053b51de7e/134_u.jpg" + }, + { + "back": "images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_b.jpg", + "down": "images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_d.jpg", + "front": "images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_f.jpg", + "index": 135, + "left": "images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_l.jpg", + "right": "images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/135/3b6cdec64134afc3dd7dd9afbac8a3c7/135_u.jpg" + }, + { + "back": "images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_b.jpg", + "down": "images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_d.jpg", + "front": "images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_f.jpg", + "index": 136, + "left": "images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_l.jpg", + "right": "images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/136/caabcf34012ff1383ec56d78110794f2/136_u.jpg" + }, + { + "back": "images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_b.jpg", + "down": "images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_d.jpg", + "front": "images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_f.jpg", + "index": 137, + "left": "images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_l.jpg", + "right": "images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/137/e0fc26748cd4b713f7f5b1b59319c529/137_u.jpg" + }, + { + "back": "images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_b.jpg", + "down": "images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_d.jpg", + "front": "images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_f.jpg", + "index": 138, + "left": "images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_l.jpg", + "right": "images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/138/6de65ec11472232ea243c16a8f7617c9/138_u.jpg" + }, + { + "back": "images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_b.jpg", + "down": "images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_d.jpg", + "front": "images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_f.jpg", + "index": 139, + "left": "images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_l.jpg", + "right": "images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/139/5cc34ba9728061df1b1446859d307881/139_u.jpg" + }, + { + "back": "images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_b.jpg", + "down": "images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_d.jpg", + "front": "images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_f.jpg", + "index": 140, + "left": "images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_l.jpg", + "right": "images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/140/aa108659280b48aa9478861afee75ffb/140_u.jpg" + }, + { + "back": "images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_b.jpg", + "down": "images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_d.jpg", + "front": "images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_f.jpg", + "index": 141, + "left": "images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_l.jpg", + "right": "images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/141/fa79bb13fe6aae8c7e1e265d665ae628/141_u.jpg" + }, + { + "back": "images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_b.jpg", + "down": "images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_d.jpg", + "front": "images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_f.jpg", + "index": 142, + "left": "images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_l.jpg", + "right": "images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/142/4918e105ffa7acf155c46397defb3db4/142_u.jpg" + }, + { + "back": "images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_b.jpg", + "down": "images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_d.jpg", + "front": "images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_f.jpg", + "index": 143, + "left": "images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_l.jpg", + "right": "images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/143/0552028a815003d68dd4b39506253e40/143_u.jpg" + }, + { + "back": "images/cube_2048/144/984387d14969064713bec17199a7a401/144_b.jpg", + "down": "images/cube_2048/144/984387d14969064713bec17199a7a401/144_d.jpg", + "front": "images/cube_2048/144/984387d14969064713bec17199a7a401/144_f.jpg", + "index": 144, + "left": "images/cube_2048/144/984387d14969064713bec17199a7a401/144_l.jpg", + "right": "images/cube_2048/144/984387d14969064713bec17199a7a401/144_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/144/984387d14969064713bec17199a7a401/144_u.jpg" + }, + { + "back": "images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_b.jpg", + "down": "images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_d.jpg", + "front": "images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_f.jpg", + "index": 145, + "left": "images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_l.jpg", + "right": "images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/145/6351131ee5e712db57482be4b9c34647/145_u.jpg" + }, + { + "back": "images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_b.jpg", + "down": "images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_d.jpg", + "front": "images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_f.jpg", + "index": 146, + "left": "images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_l.jpg", + "right": "images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/146/c057e4e689d99eee15f0fb0b1a41f271/146_u.jpg" + }, + { + "back": "images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_b.jpg", + "down": "images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_d.jpg", + "front": "images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_f.jpg", + "index": 147, + "left": "images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_l.jpg", + "right": "images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/147/2b65b5daf04bdbf48b8196950ccd2610/147_u.jpg" + }, + { + "back": "images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_b.jpg", + "down": "images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_d.jpg", + "front": "images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_f.jpg", + "index": 148, + "left": "images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_l.jpg", + "right": "images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/148/a7479db694b3ef72c2866550122dbf1a/148_u.jpg" + }, + { + "back": "images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_b.jpg", + "down": "images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_d.jpg", + "front": "images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_f.jpg", + "index": 149, + "left": "images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_l.jpg", + "right": "images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/149/fd503c2e299193e4a826d74a2b017abf/149_u.jpg" + }, + { + "back": "images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_b.jpg", + "down": "images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_d.jpg", + "front": "images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_f.jpg", + "index": 150, + "left": "images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_l.jpg", + "right": "images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/150/aa784942637d7360791b1703b13f889b/150_u.jpg" + }, + { + "back": "images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_b.jpg", + "down": "images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_d.jpg", + "front": "images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_f.jpg", + "index": 151, + "left": "images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_l.jpg", + "right": "images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/151/1e8b4f747adcb285ce50ac298fa25ad5/151_u.jpg" + }, + { + "back": "images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_b.jpg", + "down": "images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_d.jpg", + "front": "images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_f.jpg", + "index": 152, + "left": "images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_l.jpg", + "right": "images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/152/b245ef42c7e23012b9431620b2afa558/152_u.jpg" + }, + { + "back": "images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_b.jpg", + "down": "images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_d.jpg", + "front": "images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_f.jpg", + "index": 153, + "left": "images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_l.jpg", + "right": "images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/153/2a7ae869279e77163ca0a17017681f12/153_u.jpg" + }, + { + "back": "images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_b.jpg", + "down": "images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_d.jpg", + "front": "images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_f.jpg", + "index": 154, + "left": "images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_l.jpg", + "right": "images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/154/66d4c3f49bc2f0ad2593d4a7008ecbcf/154_u.jpg" + }, + { + "back": "images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_b.jpg", + "down": "images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_d.jpg", + "front": "images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_f.jpg", + "index": 155, + "left": "images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_l.jpg", + "right": "images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/155/ae3f45cfb65d9aaadeecd7aab22d5dd3/155_u.jpg" + }, + { + "back": "images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_b.jpg", + "down": "images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_d.jpg", + "front": "images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_f.jpg", + "index": 156, + "left": "images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_l.jpg", + "right": "images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/156/7706a972c52bc3ade218b5cc3b63043c/156_u.jpg" + }, + { + "back": "images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_b.jpg", + "down": "images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_d.jpg", + "front": "images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_f.jpg", + "index": 157, + "left": "images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_l.jpg", + "right": "images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/157/ba59aa60813f6b72ac7ac349f9ab9879/157_u.jpg" + }, + { + "back": "images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_b.jpg", + "down": "images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_d.jpg", + "front": "images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_f.jpg", + "index": 158, + "left": "images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_l.jpg", + "right": "images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/158/b82c62a0b9df72e7bdd0eb944b387b06/158_u.jpg" + }, + { + "back": "images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_b.jpg", + "down": "images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_d.jpg", + "front": "images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_f.jpg", + "index": 159, + "left": "images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_l.jpg", + "right": "images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/159/20d637102b90997242e02f278e6e546a/159_u.jpg" + }, + { + "back": "images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_b.jpg", + "down": "images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_d.jpg", + "front": "images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_f.jpg", + "index": 160, + "left": "images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_l.jpg", + "right": "images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/160/f9a4380b07e72e0b20a78f12f0f8dd22/160_u.jpg" + }, + { + "back": "images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_b.jpg", + "down": "images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_d.jpg", + "front": "images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_f.jpg", + "index": 161, + "left": "images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_l.jpg", + "right": "images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/161/fadd7171b8d3ac708bc48a2742de8af1/161_u.jpg" + }, + { + "back": "images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_b.jpg", + "down": "images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_d.jpg", + "front": "images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_f.jpg", + "index": 162, + "left": "images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_l.jpg", + "right": "images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/162/4bf938532e4d39b0a8857ed4752938cb/162_u.jpg" + }, + { + "back": "images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_b.jpg", + "down": "images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_d.jpg", + "front": "images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_f.jpg", + "index": 163, + "left": "images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_l.jpg", + "right": "images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/163/4f0f38be2429468b4b352ceb7a8549c7/163_u.jpg" + }, + { + "back": "images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_b.jpg", + "down": "images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_d.jpg", + "front": "images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_f.jpg", + "index": 164, + "left": "images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_l.jpg", + "right": "images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/164/43678a0134e123dbded17cd7de0205c4/164_u.jpg" + }, + { + "back": "images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_b.jpg", + "down": "images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_d.jpg", + "front": "images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_f.jpg", + "index": 165, + "left": "images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_l.jpg", + "right": "images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/165/41454c43ddf52434f07fd4c62528da17/165_u.jpg" + }, + { + "back": "images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_b.jpg", + "down": "images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_d.jpg", + "front": "images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_f.jpg", + "index": 166, + "left": "images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_l.jpg", + "right": "images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/166/24381ec5aab36470eceb41664025d118/166_u.jpg" + }, + { + "back": "images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_b.jpg", + "down": "images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_d.jpg", + "front": "images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_f.jpg", + "index": 167, + "left": "images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_l.jpg", + "right": "images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/167/2425df649e9f197185102265d3616ba7/167_u.jpg" + }, + { + "back": "images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_b.jpg", + "down": "images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_d.jpg", + "front": "images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_f.jpg", + "index": 168, + "left": "images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_l.jpg", + "right": "images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/168/59309ead7d0ae544a842088d21e1227f/168_u.jpg" + }, + { + "back": "images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_b.jpg", + "down": "images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_d.jpg", + "front": "images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_f.jpg", + "index": 169, + "left": "images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_l.jpg", + "right": "images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/169/b79507f47ddebbaa9ad770c9212c2074/169_u.jpg" + }, + { + "back": "images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_b.jpg", + "down": "images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_d.jpg", + "front": "images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_f.jpg", + "index": 170, + "left": "images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_l.jpg", + "right": "images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/170/9a73ad4944cf97165ced1885517d0483/170_u.jpg" + }, + { + "back": "images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_b.jpg", + "down": "images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_d.jpg", + "front": "images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_f.jpg", + "index": 171, + "left": "images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_l.jpg", + "right": "images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/171/a52a52f3234ce6fc2391f248ad751418/171_u.jpg" + }, + { + "back": "images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_b.jpg", + "down": "images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_d.jpg", + "front": "images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_f.jpg", + "index": 172, + "left": "images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_l.jpg", + "right": "images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/172/56dd0102b176f3ec4a5fc0afb6b7dc9b/172_u.jpg" + }, + { + "back": "images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_b.jpg", + "down": "images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_d.jpg", + "front": "images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_f.jpg", + "index": 173, + "left": "images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_l.jpg", + "right": "images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/173/391be521fcb0564321923a2498e451eb/173_u.jpg" + }, + { + "back": "images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_b.jpg", + "down": "images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_d.jpg", + "front": "images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_f.jpg", + "index": 174, + "left": "images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_l.jpg", + "right": "images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/174/0e167d453cce77712f9781b218c92f6d/174_u.jpg" + }, + { + "back": "images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_b.jpg", + "down": "images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_d.jpg", + "front": "images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_f.jpg", + "index": 175, + "left": "images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_l.jpg", + "right": "images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/175/bfd14f9dac0ca3eb7ac853c5b119e4d9/175_u.jpg" + }, + { + "back": "images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_b.jpg", + "down": "images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_d.jpg", + "front": "images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_f.jpg", + "index": 176, + "left": "images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_l.jpg", + "right": "images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/176/d395fa41aa7bdb5371e30edc58ce0423/176_u.jpg" + }, + { + "back": "images/cube_2048/177/8643392613e61c39efa285969b53db21/177_b.jpg", + "down": "images/cube_2048/177/8643392613e61c39efa285969b53db21/177_d.jpg", + "front": "images/cube_2048/177/8643392613e61c39efa285969b53db21/177_f.jpg", + "index": 177, + "left": "images/cube_2048/177/8643392613e61c39efa285969b53db21/177_l.jpg", + "right": "images/cube_2048/177/8643392613e61c39efa285969b53db21/177_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/177/8643392613e61c39efa285969b53db21/177_u.jpg" + }, + { + "back": "images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_b.jpg", + "down": "images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_d.jpg", + "front": "images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_f.jpg", + "index": 178, + "left": "images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_l.jpg", + "right": "images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/178/fda2f892085e690fcf51fadedca97657/178_u.jpg" + }, + { + "back": "images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_b.jpg", + "down": "images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_d.jpg", + "front": "images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_f.jpg", + "index": 179, + "left": "images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_l.jpg", + "right": "images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/179/60ac6dc3554e44fad828914e7f559b00/179_u.jpg" + }, + { + "back": "images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_b.jpg", + "down": "images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_d.jpg", + "front": "images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_f.jpg", + "index": 180, + "left": "images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_l.jpg", + "right": "images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/180/28cc8fdd525e70b51ec7c0b7cc389263/180_u.jpg" + }, + { + "back": "images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_b.jpg", + "down": "images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_d.jpg", + "front": "images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_f.jpg", + "index": 181, + "left": "images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_l.jpg", + "right": "images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/181/af2eb055957e83a6506a8d1c0742a595/181_u.jpg" + }, + { + "back": "images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_b.jpg", + "down": "images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_d.jpg", + "front": "images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_f.jpg", + "index": 182, + "left": "images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_l.jpg", + "right": "images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/182/ecd1e2b4e367a22504e52dc1a62a96a2/182_u.jpg" + }, + { + "back": "images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_b.jpg", + "down": "images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_d.jpg", + "front": "images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_f.jpg", + "index": 183, + "left": "images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_l.jpg", + "right": "images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/183/c21f6d4e1776dc646e4af2b26f8551af/183_u.jpg" + }, + { + "back": "images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_b.jpg", + "down": "images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_d.jpg", + "front": "images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_f.jpg", + "index": 184, + "left": "images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_l.jpg", + "right": "images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/184/9f61ced48563cbe0f1335a5e8a632b23/184_u.jpg" + }, + { + "back": "images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_b.jpg", + "down": "images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_d.jpg", + "front": "images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_f.jpg", + "index": 185, + "left": "images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_l.jpg", + "right": "images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/185/bca2c0db0a65675822461d9fd83bd356/185_u.jpg" + }, + { + "back": "images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_b.jpg", + "down": "images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_d.jpg", + "front": "images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_f.jpg", + "index": 186, + "left": "images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_l.jpg", + "right": "images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/186/fc3ebcf733239121f393ff3da3578fe7/186_u.jpg" + }, + { + "back": "images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_b.jpg", + "down": "images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_d.jpg", + "front": "images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_f.jpg", + "index": 187, + "left": "images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_l.jpg", + "right": "images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/187/69bc721036e350a2474a3929a87e0636/187_u.jpg" + }, + { + "back": "images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_b.jpg", + "down": "images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_d.jpg", + "front": "images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_f.jpg", + "index": 188, + "left": "images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_l.jpg", + "right": "images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/188/540ed727493d577ecc1f52f2d74f58d7/188_u.jpg" + }, + { + "back": "images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_b.jpg", + "down": "images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_d.jpg", + "front": "images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_f.jpg", + "index": 189, + "left": "images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_l.jpg", + "right": "images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/189/bb0ee9a899550acfda27506de69b77c4/189_u.jpg" + }, + { + "back": "images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_b.jpg", + "down": "images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_d.jpg", + "front": "images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_f.jpg", + "index": 190, + "left": "images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_l.jpg", + "right": "images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/190/2a1dcc0927d63c536944d12bcf62c7ae/190_u.jpg" + }, + { + "back": "images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_b.jpg", + "down": "images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_d.jpg", + "front": "images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_f.jpg", + "index": 191, + "left": "images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_l.jpg", + "right": "images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/191/7cfc49b3b71716df68dfc077b1c9f72c/191_u.jpg" + }, + { + "back": "images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_b.jpg", + "down": "images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_d.jpg", + "front": "images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_f.jpg", + "index": 192, + "left": "images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_l.jpg", + "right": "images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/192/75b9a93aee5c8e3c26adfcb3ff3ede7a/192_u.jpg" + }, + { + "back": "images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_b.jpg", + "down": "images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_d.jpg", + "front": "images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_f.jpg", + "index": 193, + "left": "images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_l.jpg", + "right": "images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/193/4e79d3cf39268430249d4b394bd5a75f/193_u.jpg" + }, + { + "back": "images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_b.jpg", + "down": "images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_d.jpg", + "front": "images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_f.jpg", + "index": 194, + "left": "images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_l.jpg", + "right": "images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/194/696dcec21cb191c13ce43cf25ea5bd6f/194_u.jpg" + }, + { + "back": "images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_b.jpg", + "down": "images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_d.jpg", + "front": "images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_f.jpg", + "index": 195, + "left": "images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_l.jpg", + "right": "images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/195/ce2baf41d81cbf557055ad9492294af6/195_u.jpg" + }, + { + "back": "images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_b.jpg", + "down": "images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_d.jpg", + "front": "images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_f.jpg", + "index": 196, + "left": "images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_l.jpg", + "right": "images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/196/949519351019f8fdcfe82b7b91a0f4e0/196_u.jpg" + }, + { + "back": "images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_b.jpg", + "down": "images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_d.jpg", + "front": "images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_f.jpg", + "index": 197, + "left": "images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_l.jpg", + "right": "images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/197/1cd86ec78e01fe1346089d1ef6aaaa92/197_u.jpg" + }, + { + "back": "images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_b.jpg", + "down": "images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_d.jpg", + "front": "images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_f.jpg", + "index": 198, + "left": "images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_l.jpg", + "right": "images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/198/5fee12bb343f674d571060256249f2cf/198_u.jpg" + }, + { + "back": "images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_b.jpg", + "down": "images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_d.jpg", + "front": "images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_f.jpg", + "index": 199, + "left": "images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_l.jpg", + "right": "images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/199/71dacd2b551706487be91d4c54b8ef95/199_u.jpg" + }, + { + "back": "images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_b.jpg", + "down": "images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_d.jpg", + "front": "images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_f.jpg", + "index": 200, + "left": "images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_l.jpg", + "right": "images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/200/06cad6cc4068ddb253a06d21ef850598/200_u.jpg" + }, + { + "back": "images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_b.jpg", + "down": "images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_d.jpg", + "front": "images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_f.jpg", + "index": 201, + "left": "images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_l.jpg", + "right": "images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/201/1a3f8bce1eb55adb4d4cf32c5f5ee8b4/201_u.jpg" + }, + { + "back": "images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_b.jpg", + "down": "images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_d.jpg", + "front": "images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_f.jpg", + "index": 202, + "left": "images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_l.jpg", + "right": "images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/202/dbee90dfb7ecc8989e76f6f1a0752b15/202_u.jpg" + }, + { + "back": "images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_b.jpg", + "down": "images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_d.jpg", + "front": "images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_f.jpg", + "index": 203, + "left": "images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_l.jpg", + "right": "images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/203/057aa2fa603e00a990ce09e2b99da07e/203_u.jpg" + }, + { + "back": "images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_b.jpg", + "down": "images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_d.jpg", + "front": "images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_f.jpg", + "index": 204, + "left": "images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_l.jpg", + "right": "images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/204/cfed7c7e8bb471b51f987f3eee1cd6ec/204_u.jpg" + }, + { + "back": "images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_b.jpg", + "down": "images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_d.jpg", + "front": "images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_f.jpg", + "index": 205, + "left": "images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_l.jpg", + "right": "images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/205/477e3f060bbb16193f1099cb3f0fdf9f/205_u.jpg" + }, + { + "back": "images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_b.jpg", + "down": "images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_d.jpg", + "front": "images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_f.jpg", + "index": 206, + "left": "images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_l.jpg", + "right": "images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/206/e7a6435c0aea679717f7d89ebc13bcd7/206_u.jpg" + }, + { + "back": "images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_b.jpg", + "down": "images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_d.jpg", + "front": "images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_f.jpg", + "index": 207, + "left": "images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_l.jpg", + "right": "images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/207/0de2eab844f0826d3e021a4bb8d3792b/207_u.jpg" + }, + { + "back": "images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_b.jpg", + "down": "images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_d.jpg", + "front": "images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_f.jpg", + "index": 208, + "left": "images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_l.jpg", + "right": "images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/208/960199ed92550fa0b2dd83cf5491b05c/208_u.jpg" + }, + { + "back": "images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_b.jpg", + "down": "images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_d.jpg", + "front": "images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_f.jpg", + "index": 209, + "left": "images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_l.jpg", + "right": "images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/209/55afba25148b6facad9766744e396fe7/209_u.jpg" + }, + { + "back": "images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_b.jpg", + "down": "images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_d.jpg", + "front": "images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_f.jpg", + "index": 210, + "left": "images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_l.jpg", + "right": "images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/210/f1a791087bfcb6f96bd875d75e1131ff/210_u.jpg" + }, + { + "back": "images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_b.jpg", + "down": "images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_d.jpg", + "front": "images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_f.jpg", + "index": 211, + "left": "images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_l.jpg", + "right": "images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/211/21bcb465a303a5d5c7a4273f724c7c03/211_u.jpg" + }, + { + "back": "images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_b.jpg", + "down": "images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_d.jpg", + "front": "images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_f.jpg", + "index": 212, + "left": "images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_l.jpg", + "right": "images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/212/2bbd229eb9cbe67cd86f808cc1ac522b/212_u.jpg" + }, + { + "back": "images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_b.jpg", + "down": "images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_d.jpg", + "front": "images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_f.jpg", + "index": 213, + "left": "images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_l.jpg", + "right": "images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/213/3373f92a87b6561ab3c6ca8e8d8942fa/213_u.jpg" + }, + { + "back": "images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_b.jpg", + "down": "images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_d.jpg", + "front": "images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_f.jpg", + "index": 214, + "left": "images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_l.jpg", + "right": "images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/214/21098773d07ae6106dff3b21d599f194/214_u.jpg" + }, + { + "back": "images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_b.jpg", + "down": "images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_d.jpg", + "front": "images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_f.jpg", + "index": 215, + "left": "images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_l.jpg", + "right": "images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/215/04de07d307fd357318180654cd4ae7c0/215_u.jpg" + }, + { + "back": "images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_b.jpg", + "down": "images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_d.jpg", + "front": "images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_f.jpg", + "index": 216, + "left": "images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_l.jpg", + "right": "images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/216/d35c5872897a50469c3f1f858c4d1f6c/216_u.jpg" + }, + { + "back": "images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_b.jpg", + "down": "images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_d.jpg", + "front": "images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_f.jpg", + "index": 217, + "left": "images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_l.jpg", + "right": "images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/217/5a6bd7e3a7ed1d3f57924ee6a30e5343/217_u.jpg" + }, + { + "back": "images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_b.jpg", + "down": "images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_d.jpg", + "front": "images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_f.jpg", + "index": 218, + "left": "images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_l.jpg", + "right": "images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/218/4907f68b95bbe8c41ce3d00dd73d8067/218_u.jpg" + }, + { + "back": "images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_b.jpg", + "down": "images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_d.jpg", + "front": "images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_f.jpg", + "index": 219, + "left": "images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_l.jpg", + "right": "images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/219/7598d815787fe8daf53dbcfc2fbcf819/219_u.jpg" + }, + { + "back": "images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_b.jpg", + "down": "images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_d.jpg", + "front": "images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_f.jpg", + "index": 220, + "left": "images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_l.jpg", + "right": "images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/220/4fdcb72749be6b2764572dc44f73b841/220_u.jpg" + }, + { + "back": "images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_b.jpg", + "down": "images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_d.jpg", + "front": "images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_f.jpg", + "index": 221, + "left": "images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_l.jpg", + "right": "images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/221/2744129ad61cb4f80f30a2d3d82c2d5f/221_u.jpg" + }, + { + "back": "images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_b.jpg", + "down": "images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_d.jpg", + "front": "images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_f.jpg", + "index": 222, + "left": "images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_l.jpg", + "right": "images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/222/3c53c87c91f0b643bc2112d310e81915/222_u.jpg" + }, + { + "back": "images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_b.jpg", + "down": "images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_d.jpg", + "front": "images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_f.jpg", + "index": 223, + "left": "images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_l.jpg", + "right": "images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/223/85829ca130ea4f8d5c31afb150627c63/223_u.jpg" + }, + { + "back": "images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_b.jpg", + "down": "images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_d.jpg", + "front": "images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_f.jpg", + "index": 224, + "left": "images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_l.jpg", + "right": "images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/224/7d76798dcded3e960967ba69e0767b6d/224_u.jpg" + }, + { + "back": "images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_b.jpg", + "down": "images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_d.jpg", + "front": "images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_f.jpg", + "index": 225, + "left": "images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_l.jpg", + "right": "images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/225/adb65d1bafdbc5c5919b9f54f6cd06dd/225_u.jpg" + }, + { + "back": "images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_b.jpg", + "down": "images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_d.jpg", + "front": "images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_f.jpg", + "index": 226, + "left": "images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_l.jpg", + "right": "images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/226/bd65ed3d971dc59f94296c2689c7acff/226_u.jpg" + }, + { + "back": "images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_b.jpg", + "down": "images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_d.jpg", + "front": "images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_f.jpg", + "index": 227, + "left": "images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_l.jpg", + "right": "images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/227/87507815a7d17dca594a6dd81dc6d4d6/227_u.jpg" + }, + { + "back": "images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_b.jpg", + "down": "images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_d.jpg", + "front": "images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_f.jpg", + "index": 228, + "left": "images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_l.jpg", + "right": "images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/228/7eccacabb2005dbe61e0561185b3b174/228_u.jpg" + }, + { + "back": "images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_b.jpg", + "down": "images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_d.jpg", + "front": "images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_f.jpg", + "index": 229, + "left": "images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_l.jpg", + "right": "images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/229/4bec9f8f4ad68e72957e039a6967b9c4/229_u.jpg" + }, + { + "back": "images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_b.jpg", + "down": "images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_d.jpg", + "front": "images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_f.jpg", + "index": 230, + "left": "images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_l.jpg", + "right": "images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/230/913a14986c6987bd0c51782565e5efc9/230_u.jpg" + }, + { + "back": "images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_b.jpg", + "down": "images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_d.jpg", + "front": "images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_f.jpg", + "index": 231, + "left": "images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_l.jpg", + "right": "images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/231/5000ea7de91e204d5d43699635c8798b/231_u.jpg" + }, + { + "back": "images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_b.jpg", + "down": "images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_d.jpg", + "front": "images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_f.jpg", + "index": 232, + "left": "images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_l.jpg", + "right": "images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/232/3b952db5e2c2d8cdfb11601e12730a69/232_u.jpg" + }, + { + "back": "images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_b.jpg", + "down": "images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_d.jpg", + "front": "images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_f.jpg", + "index": 233, + "left": "images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_l.jpg", + "right": "images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/233/6179c2247b45dc750606429a8cec0cee/233_u.jpg" + }, + { + "back": "images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_b.jpg", + "down": "images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_d.jpg", + "front": "images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_f.jpg", + "index": 234, + "left": "images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_l.jpg", + "right": "images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/234/5cb77c1072c12c9e2c426831bdc0f465/234_u.jpg" + }, + { + "back": "images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_b.jpg", + "down": "images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_d.jpg", + "front": "images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_f.jpg", + "index": 235, + "left": "images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_l.jpg", + "right": "images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/235/1a4726adc5550bb3c1dbac7267306ce7/235_u.jpg" + }, + { + "back": "images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_b.jpg", + "down": "images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_d.jpg", + "front": "images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_f.jpg", + "index": 236, + "left": "images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_l.jpg", + "right": "images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/236/2a8d6d24c342191e8cf289389b070900/236_u.jpg" + }, + { + "back": "images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_b.jpg", + "down": "images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_d.jpg", + "front": "images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_f.jpg", + "index": 237, + "left": "images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_l.jpg", + "right": "images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/237/01b4250adea928dacecebc99debb013f/237_u.jpg" + }, + { + "back": "images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_b.jpg", + "down": "images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_d.jpg", + "front": "images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_f.jpg", + "index": 238, + "left": "images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_l.jpg", + "right": "images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/238/62879a010ebe79943c8ad326dcb87491/238_u.jpg" + }, + { + "back": "images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_b.jpg", + "down": "images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_d.jpg", + "front": "images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_f.jpg", + "index": 239, + "left": "images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_l.jpg", + "right": "images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/239/b4fd04b4110a9b2c4db47120a8c03f8a/239_u.jpg" + }, + { + "back": "images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_b.jpg", + "down": "images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_d.jpg", + "front": "images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_f.jpg", + "index": 240, + "left": "images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_l.jpg", + "right": "images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/240/3dccac195aa8d6a44aed6044efd44c2f/240_u.jpg" + }, + { + "back": "images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_b.jpg", + "down": "images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_d.jpg", + "front": "images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_f.jpg", + "index": 241, + "left": "images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_l.jpg", + "right": "images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/241/1bfb02afb70f46b7fdaa54a6c0ce1812/241_u.jpg" + }, + { + "back": "images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_b.jpg", + "down": "images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_d.jpg", + "front": "images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_f.jpg", + "index": 242, + "left": "images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_l.jpg", + "right": "images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/242/ce6b5c64a3e9c6f752b0c204d8d63f35/242_u.jpg" + }, + { + "back": "images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_b.jpg", + "down": "images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_d.jpg", + "front": "images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_f.jpg", + "index": 243, + "left": "images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_l.jpg", + "right": "images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/243/da73a6eab27bb566e05077e83bc7ded5/243_u.jpg" + }, + { + "back": "images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_b.jpg", + "down": "images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_d.jpg", + "front": "images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_f.jpg", + "index": 244, + "left": "images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_l.jpg", + "right": "images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/244/600d2937d47cce3c220860b1375521b5/244_u.jpg" + }, + { + "back": "images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_b.jpg", + "down": "images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_d.jpg", + "front": "images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_f.jpg", + "index": 245, + "left": "images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_l.jpg", + "right": "images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/245/11e41b9f13eb08a02c474db5609713c1/245_u.jpg" + }, + { + "back": "images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_b.jpg", + "down": "images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_d.jpg", + "front": "images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_f.jpg", + "index": 246, + "left": "images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_l.jpg", + "right": "images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/246/d303ac3f90686f2579730e36750a5f92/246_u.jpg" + }, + { + "back": "images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_b.jpg", + "down": "images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_d.jpg", + "front": "images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_f.jpg", + "index": 247, + "left": "images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_l.jpg", + "right": "images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/247/3d829407db38e27f9d20d5d61235dd0e/247_u.jpg" + }, + { + "back": "images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_b.jpg", + "down": "images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_d.jpg", + "front": "images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_f.jpg", + "index": 248, + "left": "images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_l.jpg", + "right": "images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/248/d2f792ae6136e0e6895548c66df5d9a8/248_u.jpg" + }, + { + "back": "images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_b.jpg", + "down": "images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_d.jpg", + "front": "images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_f.jpg", + "index": 249, + "left": "images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_l.jpg", + "right": "images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/249/2ec848a53493f5048b1fa85ced2e6581/249_u.jpg" + }, + { + "back": "images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_b.jpg", + "down": "images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_d.jpg", + "front": "images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_f.jpg", + "index": 250, + "left": "images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_l.jpg", + "right": "images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/250/0b477281a80a60490339d80b271e60bc/250_u.jpg" + }, + { + "back": "images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_b.jpg", + "down": "images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_d.jpg", + "front": "images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_f.jpg", + "index": 251, + "left": "images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_l.jpg", + "right": "images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/251/0b3684f321b8211e8789dc812390f025/251_u.jpg" + }, + { + "back": "images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_b.jpg", + "down": "images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_d.jpg", + "front": "images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_f.jpg", + "index": 252, + "left": "images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_l.jpg", + "right": "images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/252/e3524b2daee91ef2bfd95ce1e768410a/252_u.jpg" + }, + { + "back": "images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_b.jpg", + "down": "images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_d.jpg", + "front": "images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_f.jpg", + "index": 253, + "left": "images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_l.jpg", + "right": "images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/253/f23ec84f504619eb2248da7862bc6742/253_u.jpg" + }, + { + "back": "images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_b.jpg", + "down": "images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_d.jpg", + "front": "images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_f.jpg", + "index": 254, + "left": "images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_l.jpg", + "right": "images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/254/fed78627b43e95e0829e0c8fa8567108/254_u.jpg" + }, + { + "back": "images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_b.jpg", + "down": "images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_d.jpg", + "front": "images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_f.jpg", + "index": 255, + "left": "images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_l.jpg", + "right": "images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/255/271b9d3c759ea9ff3761709ba9faaeb9/255_u.jpg" + }, + { + "back": "images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_b.jpg", + "down": "images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_d.jpg", + "front": "images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_f.jpg", + "index": 256, + "left": "images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_l.jpg", + "right": "images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/256/db4002c163bcfc7c5f14ad45b14df1c4/256_u.jpg" + }, + { + "back": "images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_b.jpg", + "down": "images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_d.jpg", + "front": "images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_f.jpg", + "index": 257, + "left": "images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_l.jpg", + "right": "images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/257/9ad07d1c1f0377f74d96d543a6186f95/257_u.jpg" + }, + { + "back": "images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_b.jpg", + "down": "images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_d.jpg", + "front": "images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_f.jpg", + "index": 258, + "left": "images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_l.jpg", + "right": "images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/258/6987a841d8cec5e3f098c24d25588589/258_u.jpg" + }, + { + "back": "images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_b.jpg", + "down": "images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_d.jpg", + "front": "images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_f.jpg", + "index": 259, + "left": "images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_l.jpg", + "right": "images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/259/e9c612ed6a40adb4689d2d79730ce7fb/259_u.jpg" + }, + { + "back": "images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_b.jpg", + "down": "images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_d.jpg", + "front": "images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_f.jpg", + "index": 260, + "left": "images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_l.jpg", + "right": "images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/260/a6fdb4e5e2ac2e8eadf66fa6d2285040/260_u.jpg" + }, + { + "back": "images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_b.jpg", + "down": "images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_d.jpg", + "front": "images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_f.jpg", + "index": 261, + "left": "images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_l.jpg", + "right": "images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/261/f53a9bdac9b285213c1e4fe25ceb3004/261_u.jpg" + }, + { + "back": "images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_b.jpg", + "down": "images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_d.jpg", + "front": "images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_f.jpg", + "index": 262, + "left": "images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_l.jpg", + "right": "images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/262/1a0fe951d5291bea4231cc3aa0cc7b8f/262_u.jpg" + }, + { + "back": "images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_b.jpg", + "down": "images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_d.jpg", + "front": "images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_f.jpg", + "index": 263, + "left": "images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_l.jpg", + "right": "images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/263/3c670f58903420aa5b73d0992e32f488/263_u.jpg" + }, + { + "back": "images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_b.jpg", + "down": "images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_d.jpg", + "front": "images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_f.jpg", + "index": 264, + "left": "images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_l.jpg", + "right": "images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/264/39abe69bb17792b3649bd41bbb642016/264_u.jpg" + }, + { + "back": "images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_b.jpg", + "down": "images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_d.jpg", + "front": "images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_f.jpg", + "index": 265, + "left": "images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_l.jpg", + "right": "images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/265/ce609ed848eafc6127e0309df0ae3c14/265_u.jpg" + }, + { + "back": "images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_b.jpg", + "down": "images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_d.jpg", + "front": "images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_f.jpg", + "index": 266, + "left": "images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_l.jpg", + "right": "images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/266/959a3c77bd494b0999974c5541766719/266_u.jpg" + }, + { + "back": "images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_b.jpg", + "down": "images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_d.jpg", + "front": "images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_f.jpg", + "index": 267, + "left": "images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_l.jpg", + "right": "images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/267/2498e9c5aeeda7f22a5819361f5abd7e/267_u.jpg" + }, + { + "back": "images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_b.jpg", + "down": "images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_d.jpg", + "front": "images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_f.jpg", + "index": 268, + "left": "images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_l.jpg", + "right": "images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/268/232219268acdd12f708f81de0b12571b/268_u.jpg" + }, + { + "back": "images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_b.jpg", + "down": "images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_d.jpg", + "front": "images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_f.jpg", + "index": 269, + "left": "images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_l.jpg", + "right": "images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/269/ce964c0b9f25d4c8452bf2aa78bed48d/269_u.jpg" + }, + { + "back": "images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_b.jpg", + "down": "images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_d.jpg", + "front": "images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_f.jpg", + "index": 270, + "left": "images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_l.jpg", + "right": "images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/270/2e6851a4e2ffc6046909bde940c06c40/270_u.jpg" + }, + { + "back": "images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_b.jpg", + "down": "images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_d.jpg", + "front": "images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_f.jpg", + "index": 271, + "left": "images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_l.jpg", + "right": "images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/271/799031aa14f317181be6e4d8b6b63544/271_u.jpg" + }, + { + "back": "images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_b.jpg", + "down": "images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_d.jpg", + "front": "images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_f.jpg", + "index": 272, + "left": "images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_l.jpg", + "right": "images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/272/55e9ea377b2db55db2efe1f59439bdd6/272_u.jpg" + }, + { + "back": "images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_b.jpg", + "down": "images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_d.jpg", + "front": "images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_f.jpg", + "index": 273, + "left": "images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_l.jpg", + "right": "images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/273/80be47e6705ed42b1f4999aa7dd3a3ec/273_u.jpg" + }, + { + "back": "images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_b.jpg", + "down": "images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_d.jpg", + "front": "images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_f.jpg", + "index": 274, + "left": "images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_l.jpg", + "right": "images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/274/374195dc33f61ea37f56c9926810c382/274_u.jpg" + }, + { + "back": "images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_b.jpg", + "down": "images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_d.jpg", + "front": "images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_f.jpg", + "index": 275, + "left": "images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_l.jpg", + "right": "images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/275/95abe2619ea07307ba389773a5fa4eff/275_u.jpg" + }, + { + "back": "images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_b.jpg", + "down": "images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_d.jpg", + "front": "images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_f.jpg", + "index": 276, + "left": "images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_l.jpg", + "right": "images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/276/7260c03625c0c7c3bd60f8e204b528af/276_u.jpg" + }, + { + "back": "images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_b.jpg", + "down": "images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_d.jpg", + "front": "images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_f.jpg", + "index": 277, + "left": "images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_l.jpg", + "right": "images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/277/876b8273ad22fc922aed3b71fe42ada0/277_u.jpg" + }, + { + "back": "images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_b.jpg", + "down": "images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_d.jpg", + "front": "images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_f.jpg", + "index": 278, + "left": "images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_l.jpg", + "right": "images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/278/a39d4d0d5e24396876d20aa0efbe2114/278_u.jpg" + }, + { + "back": "images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_b.jpg", + "down": "images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_d.jpg", + "front": "images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_f.jpg", + "index": 279, + "left": "images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_l.jpg", + "right": "images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/279/8f80f86ccaf3d3d9431cad39ecace615/279_u.jpg" + }, + { + "back": "images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_b.jpg", + "down": "images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_d.jpg", + "front": "images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_f.jpg", + "index": 280, + "left": "images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_l.jpg", + "right": "images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/280/7fb24ab7d6ad950b0a8e1368aed09ec0/280_u.jpg" + }, + { + "back": "images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_b.jpg", + "down": "images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_d.jpg", + "front": "images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_f.jpg", + "index": 281, + "left": "images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_l.jpg", + "right": "images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/281/e2da5090fa9d779a7636d8adc7e8bfd5/281_u.jpg" + }, + { + "back": "images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_b.jpg", + "down": "images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_d.jpg", + "front": "images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_f.jpg", + "index": 282, + "left": "images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_l.jpg", + "right": "images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/282/7f26978d8dc679415c755b9b2203dffc/282_u.jpg" + }, + { + "back": "images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_b.jpg", + "down": "images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_d.jpg", + "front": "images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_f.jpg", + "index": 283, + "left": "images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_l.jpg", + "right": "images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/283/41bc5183e37b23cc29c2ecc64b3f8722/283_u.jpg" + }, + { + "back": "images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_b.jpg", + "down": "images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_d.jpg", + "front": "images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_f.jpg", + "index": 284, + "left": "images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_l.jpg", + "right": "images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/284/0a158cf642d54f259f783bbf3296c6d3/284_u.jpg" + }, + { + "back": "images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_b.jpg", + "down": "images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_d.jpg", + "front": "images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_f.jpg", + "index": 285, + "left": "images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_l.jpg", + "right": "images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/285/f287eed3583f7537b246580eadb5f4a4/285_u.jpg" + }, + { + "back": "images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_b.jpg", + "down": "images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_d.jpg", + "front": "images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_f.jpg", + "index": 286, + "left": "images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_l.jpg", + "right": "images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/286/a06c64fdb3c3772476fe4b64fc15dac7/286_u.jpg" + }, + { + "back": "images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_b.jpg", + "down": "images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_d.jpg", + "front": "images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_f.jpg", + "index": 287, + "left": "images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_l.jpg", + "right": "images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/287/227215dd3eae5834cd547d0c55cfe814/287_u.jpg" + }, + { + "back": "images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_b.jpg", + "down": "images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_d.jpg", + "front": "images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_f.jpg", + "index": 288, + "left": "images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_l.jpg", + "right": "images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/288/c4d773fd04a4a152b3e00c6d0c5953fb/288_u.jpg" + }, + { + "back": "images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_b.jpg", + "down": "images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_d.jpg", + "front": "images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_f.jpg", + "index": 289, + "left": "images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_l.jpg", + "right": "images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/289/fbe3056a819b1d68f0b9768b8675445f/289_u.jpg" + }, + { + "back": "images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_b.jpg", + "down": "images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_d.jpg", + "front": "images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_f.jpg", + "index": 290, + "left": "images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_l.jpg", + "right": "images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/290/ffec711ccd0b46b567d6cc5bdb048c00/290_u.jpg" + }, + { + "back": "images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_b.jpg", + "down": "images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_d.jpg", + "front": "images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_f.jpg", + "index": 291, + "left": "images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_l.jpg", + "right": "images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/291/5b1867529bbb4724d8ab5060c84415df/291_u.jpg" + }, + { + "back": "images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_b.jpg", + "down": "images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_d.jpg", + "front": "images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_f.jpg", + "index": 292, + "left": "images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_l.jpg", + "right": "images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/292/051d9837a3fe3ccb946f6283b1972d24/292_u.jpg" + }, + { + "back": "images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_b.jpg", + "down": "images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_d.jpg", + "front": "images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_f.jpg", + "index": 293, + "left": "images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_l.jpg", + "right": "images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/293/aa8028d2124f661b88c5c08f88f5369d/293_u.jpg" + }, + { + "back": "images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_b.jpg", + "down": "images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_d.jpg", + "front": "images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_f.jpg", + "index": 294, + "left": "images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_l.jpg", + "right": "images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/294/b6c54c50ac18cf0e967c1ad08d8edcfc/294_u.jpg" + }, + { + "back": "images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_b.jpg", + "down": "images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_d.jpg", + "front": "images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_f.jpg", + "index": 295, + "left": "images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_l.jpg", + "right": "images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/295/50b6e590b3804ba41b6af6218a9d715b/295_u.jpg" + }, + { + "back": "images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_b.jpg", + "down": "images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_d.jpg", + "front": "images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_f.jpg", + "index": 296, + "left": "images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_l.jpg", + "right": "images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/296/0ce1e6c4a034b4de5bc8d11663aa3786/296_u.jpg" + }, + { + "back": "images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_b.jpg", + "down": "images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_d.jpg", + "front": "images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_f.jpg", + "index": 297, + "left": "images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_l.jpg", + "right": "images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/297/def463048cfb1c63cef552bae006a4ab/297_u.jpg" + }, + { + "back": "images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_b.jpg", + "down": "images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_d.jpg", + "front": "images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_f.jpg", + "index": 298, + "left": "images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_l.jpg", + "right": "images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/298/efa3926f2141f6ea0012e2c1a5ef088b/298_u.jpg" + }, + { + "back": "images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_b.jpg", + "down": "images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_d.jpg", + "front": "images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_f.jpg", + "index": 299, + "left": "images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_l.jpg", + "right": "images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/299/20b4024ed6bbb74d0b030c945b5b5e4c/299_u.jpg" + }, + { + "back": "images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_b.jpg", + "down": "images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_d.jpg", + "front": "images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_f.jpg", + "index": 300, + "left": "images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_l.jpg", + "right": "images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/300/d7ddf606f8c2351149c65327b2a82e4e/300_u.jpg" + }, + { + "back": "images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_b.jpg", + "down": "images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_d.jpg", + "front": "images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_f.jpg", + "index": 301, + "left": "images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_l.jpg", + "right": "images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/301/72dfc6ca1e72dc63bf71278959fb82b3/301_u.jpg" + }, + { + "back": "images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_b.jpg", + "down": "images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_d.jpg", + "front": "images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_f.jpg", + "index": 302, + "left": "images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_l.jpg", + "right": "images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/302/257a415f4185ee49b5212579dccb5c54/302_u.jpg" + }, + { + "back": "images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_b.jpg", + "down": "images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_d.jpg", + "front": "images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_f.jpg", + "index": 303, + "left": "images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_l.jpg", + "right": "images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/303/8f3f85ab3ad1f656d02b42b5f4647a37/303_u.jpg" + }, + { + "back": "images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_b.jpg", + "down": "images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_d.jpg", + "front": "images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_f.jpg", + "index": 304, + "left": "images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_l.jpg", + "right": "images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/304/145ef7d85e4ee0350f289536d802959a/304_u.jpg" + }, + { + "back": "images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_b.jpg", + "down": "images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_d.jpg", + "front": "images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_f.jpg", + "index": 305, + "left": "images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_l.jpg", + "right": "images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/305/53070b208a74bd7adf0c5b3abbf8deb1/305_u.jpg" + }, + { + "back": "images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_b.jpg", + "down": "images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_d.jpg", + "front": "images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_f.jpg", + "index": 306, + "left": "images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_l.jpg", + "right": "images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/306/d48b3db5d8d4da341af00a4c68b6e7e3/306_u.jpg" + }, + { + "back": "images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_b.jpg", + "down": "images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_d.jpg", + "front": "images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_f.jpg", + "index": 307, + "left": "images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_l.jpg", + "right": "images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/307/175b5c4f787f0fdc2cb3f70af93c97bd/307_u.jpg" + }, + { + "back": "images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_b.jpg", + "down": "images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_d.jpg", + "front": "images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_f.jpg", + "index": 308, + "left": "images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_l.jpg", + "right": "images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/308/b03565e93de3dce1f5b82c185a967251/308_u.jpg" + }, + { + "back": "images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_b.jpg", + "down": "images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_d.jpg", + "front": "images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_f.jpg", + "index": 309, + "left": "images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_l.jpg", + "right": "images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/309/f616a0ce0f8c36730fd28fea0d224972/309_u.jpg" + }, + { + "back": "images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_b.jpg", + "down": "images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_d.jpg", + "front": "images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_f.jpg", + "index": 310, + "left": "images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_l.jpg", + "right": "images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/310/5c1bed547857aa37ca924b6b433f1016/310_u.jpg" + }, + { + "back": "images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_b.jpg", + "down": "images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_d.jpg", + "front": "images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_f.jpg", + "index": 311, + "left": "images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_l.jpg", + "right": "images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/311/2ef9cee01655482dea4688d5edcebd66/311_u.jpg" + }, + { + "back": "images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_b.jpg", + "down": "images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_d.jpg", + "front": "images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_f.jpg", + "index": 312, + "left": "images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_l.jpg", + "right": "images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/312/358f4e0da4c5bb9c6705548588bee8d1/312_u.jpg" + }, + { + "back": "images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_b.jpg", + "down": "images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_d.jpg", + "front": "images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_f.jpg", + "index": 313, + "left": "images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_l.jpg", + "right": "images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/313/d27805983686f2b0d2c7461b4726cd72/313_u.jpg" + }, + { + "back": "images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_b.jpg", + "down": "images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_d.jpg", + "front": "images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_f.jpg", + "index": 314, + "left": "images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_l.jpg", + "right": "images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/314/fc7e926dca0333c4c3435f25ecd98eb8/314_u.jpg" + }, + { + "back": "images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_b.jpg", + "down": "images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_d.jpg", + "front": "images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_f.jpg", + "index": 315, + "left": "images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_l.jpg", + "right": "images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/315/643b042ce032c2646a292f23568d861c/315_u.jpg" + }, + { + "back": "images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_b.jpg", + "down": "images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_d.jpg", + "front": "images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_f.jpg", + "index": 316, + "left": "images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_l.jpg", + "right": "images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/316/c4044f31c8f9917518cf28dcffe33493/316_u.jpg" + }, + { + "back": "images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_b.jpg", + "down": "images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_d.jpg", + "front": "images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_f.jpg", + "index": 317, + "left": "images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_l.jpg", + "right": "images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/317/3cd5257d32c5d76c744c82b6f9bdf723/317_u.jpg" + }, + { + "back": "images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_b.jpg", + "down": "images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_d.jpg", + "front": "images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_f.jpg", + "index": 318, + "left": "images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_l.jpg", + "right": "images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/318/6255544ab41352c5d4b0935f50c3f324/318_u.jpg" + }, + { + "back": "images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_b.jpg", + "down": "images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_d.jpg", + "front": "images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_f.jpg", + "index": 319, + "left": "images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_l.jpg", + "right": "images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/319/73d3c0b96b20fd2ec853fb7f66585f38/319_u.jpg" + }, + { + "back": "images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_b.jpg", + "down": "images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_d.jpg", + "front": "images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_f.jpg", + "index": 320, + "left": "images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_l.jpg", + "right": "images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/320/db5384ede669000cf4c4f9ae0b40e164/320_u.jpg" + }, + { + "back": "images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_b.jpg", + "down": "images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_d.jpg", + "front": "images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_f.jpg", + "index": 321, + "left": "images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_l.jpg", + "right": "images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/321/072f35b2f906e04804e030623e02526d/321_u.jpg" + }, + { + "back": "images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_b.jpg", + "down": "images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_d.jpg", + "front": "images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_f.jpg", + "index": 322, + "left": "images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_l.jpg", + "right": "images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/322/0493d44d2e7f7142ded342031e412fa9/322_u.jpg" + }, + { + "back": "images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_b.jpg", + "down": "images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_d.jpg", + "front": "images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_f.jpg", + "index": 323, + "left": "images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_l.jpg", + "right": "images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/323/efe73ec062eed5c4c1c4758204e96336/323_u.jpg" + }, + { + "back": "images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_b.jpg", + "down": "images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_d.jpg", + "front": "images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_f.jpg", + "index": 324, + "left": "images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_l.jpg", + "right": "images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/324/c55713760872cf1f0c037cc2a896ebd7/324_u.jpg" + }, + { + "back": "images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_b.jpg", + "down": "images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_d.jpg", + "front": "images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_f.jpg", + "index": 325, + "left": "images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_l.jpg", + "right": "images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/325/d5c31b417da572f47f690aa1a8a35f99/325_u.jpg" + }, + { + "back": "images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_b.jpg", + "down": "images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_d.jpg", + "front": "images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_f.jpg", + "index": 326, + "left": "images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_l.jpg", + "right": "images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/326/51529bbf18bd2afc633323851aaafe8c/326_u.jpg" + }, + { + "back": "images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_b.jpg", + "down": "images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_d.jpg", + "front": "images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_f.jpg", + "index": 327, + "left": "images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_l.jpg", + "right": "images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/327/9b3d43da76fbf4e54df1cc5f572d4926/327_u.jpg" + }, + { + "back": "images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_b.jpg", + "down": "images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_d.jpg", + "front": "images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_f.jpg", + "index": 328, + "left": "images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_l.jpg", + "right": "images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/328/b743fd6869132932eec8f8a3aae0505d/328_u.jpg" + }, + { + "back": "images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_b.jpg", + "down": "images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_d.jpg", + "front": "images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_f.jpg", + "index": 329, + "left": "images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_l.jpg", + "right": "images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/329/656a4b74110e1a4919d06d2b123a06ce/329_u.jpg" + }, + { + "back": "images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_b.jpg", + "down": "images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_d.jpg", + "front": "images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_f.jpg", + "index": 330, + "left": "images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_l.jpg", + "right": "images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/330/903e350b4bea7d9d23eceb25481da1d1/330_u.jpg" + }, + { + "back": "images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_b.jpg", + "down": "images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_d.jpg", + "front": "images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_f.jpg", + "index": 331, + "left": "images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_l.jpg", + "right": "images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/331/e0cb9d0ca248b15dff2b31f12638ce88/331_u.jpg" + }, + { + "back": "images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_b.jpg", + "down": "images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_d.jpg", + "front": "images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_f.jpg", + "index": 332, + "left": "images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_l.jpg", + "right": "images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/332/a1886d7ef9650745a83af9c956093f73/332_u.jpg" + }, + { + "back": "images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_b.jpg", + "down": "images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_d.jpg", + "front": "images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_f.jpg", + "index": 333, + "left": "images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_l.jpg", + "right": "images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/333/4f6b588bdfede4ff8062fe48e54871fd/333_u.jpg" + }, + { + "back": "images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_b.jpg", + "down": "images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_d.jpg", + "front": "images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_f.jpg", + "index": 334, + "left": "images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_l.jpg", + "right": "images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/334/1a88045a453363a34d05c6838e3bbc7c/334_u.jpg" + }, + { + "back": "images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_b.jpg", + "down": "images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_d.jpg", + "front": "images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_f.jpg", + "index": 335, + "left": "images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_l.jpg", + "right": "images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/335/cedb79bcf6207de7d8eced3f4594ae21/335_u.jpg" + }, + { + "back": "images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_b.jpg", + "down": "images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_d.jpg", + "front": "images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_f.jpg", + "index": 336, + "left": "images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_l.jpg", + "right": "images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/336/d2a96676bdde6ee42f89b0fdae100830/336_u.jpg" + }, + { + "back": "images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_b.jpg", + "down": "images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_d.jpg", + "front": "images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_f.jpg", + "index": 337, + "left": "images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_l.jpg", + "right": "images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/337/b14c10340b1a40320bc7fe211562abd4/337_u.jpg" + }, + { + "back": "images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_b.jpg", + "down": "images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_d.jpg", + "front": "images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_f.jpg", + "index": 338, + "left": "images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_l.jpg", + "right": "images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/338/913f08dc0b8401339865e377ef692826/338_u.jpg" + }, + { + "back": "images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_b.jpg", + "down": "images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_d.jpg", + "front": "images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_f.jpg", + "index": 339, + "left": "images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_l.jpg", + "right": "images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/339/69941119b3c575b2f99ae2d1c28a19e4/339_u.jpg" + }, + { + "back": "images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_b.jpg", + "down": "images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_d.jpg", + "front": "images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_f.jpg", + "index": 340, + "left": "images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_l.jpg", + "right": "images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/340/067c266bee1b5d75f969ed85745c3e9f/340_u.jpg" + }, + { + "back": "images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_b.jpg", + "down": "images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_d.jpg", + "front": "images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_f.jpg", + "index": 341, + "left": "images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_l.jpg", + "right": "images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/341/649131db9d737cd390024a0d0570e05f/341_u.jpg" + }, + { + "back": "images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_b.jpg", + "down": "images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_d.jpg", + "front": "images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_f.jpg", + "index": 342, + "left": "images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_l.jpg", + "right": "images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/342/25d5ba66262934d7c185259511cb16f4/342_u.jpg" + }, + { + "back": "images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_b.jpg", + "down": "images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_d.jpg", + "front": "images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_f.jpg", + "index": 343, + "left": "images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_l.jpg", + "right": "images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/343/39558588fadcce39bd15f65cc4aaec36/343_u.jpg" + }, + { + "back": "images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_b.jpg", + "down": "images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_d.jpg", + "front": "images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_f.jpg", + "index": 344, + "left": "images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_l.jpg", + "right": "images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/344/4b9912a4358bbc76cf6169375ede2d7f/344_u.jpg" + }, + { + "back": "images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_b.jpg", + "down": "images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_d.jpg", + "front": "images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_f.jpg", + "index": 345, + "left": "images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_l.jpg", + "right": "images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/345/c146db93a1791307db0bb0cb97e43c28/345_u.jpg" + }, + { + "back": "images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_b.jpg", + "down": "images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_d.jpg", + "front": "images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_f.jpg", + "index": 346, + "left": "images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_l.jpg", + "right": "images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/346/f32554a00905503f36aaa1732341d6e0/346_u.jpg" + }, + { + "back": "images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_b.jpg", + "down": "images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_d.jpg", + "front": "images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_f.jpg", + "index": 347, + "left": "images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_l.jpg", + "right": "images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/347/c04993afb6bec19f863f0187af83d92b/347_u.jpg" + }, + { + "back": "images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_b.jpg", + "down": "images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_d.jpg", + "front": "images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_f.jpg", + "index": 348, + "left": "images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_l.jpg", + "right": "images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/348/b40f19759041f3d347b37adefe525222/348_u.jpg" + }, + { + "back": "images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_b.jpg", + "down": "images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_d.jpg", + "front": "images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_f.jpg", + "index": 349, + "left": "images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_l.jpg", + "right": "images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/349/099fbd1e85d77ff98733c9c76e3dbb3a/349_u.jpg" + }, + { + "back": "images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_b.jpg", + "down": "images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_d.jpg", + "front": "images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_f.jpg", + "index": 350, + "left": "images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_l.jpg", + "right": "images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/350/20f5681adf1f74ad0f5ffb70313ab171/350_u.jpg" + }, + { + "back": "images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_b.jpg", + "down": "images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_d.jpg", + "front": "images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_f.jpg", + "index": 351, + "left": "images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_l.jpg", + "right": "images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/351/3296f4ad8548e7b80f52c07644392510/351_u.jpg" + }, + { + "back": "images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_b.jpg", + "down": "images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_d.jpg", + "front": "images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_f.jpg", + "index": 352, + "left": "images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_l.jpg", + "right": "images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/352/ac9186bcba6cc6cb5d267aeee664fb9a/352_u.jpg" + }, + { + "back": "images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_b.jpg", + "down": "images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_d.jpg", + "front": "images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_f.jpg", + "index": 353, + "left": "images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_l.jpg", + "right": "images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/353/e9cda9edbd7d47548eed35797842bdee/353_u.jpg" + }, + { + "back": "images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_b.jpg", + "down": "images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_d.jpg", + "front": "images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_f.jpg", + "index": 354, + "left": "images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_l.jpg", + "right": "images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/354/6de325f5e0db43073998fd93056ae393/354_u.jpg" + }, + { + "back": "images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_b.jpg", + "down": "images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_d.jpg", + "front": "images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_f.jpg", + "index": 355, + "left": "images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_l.jpg", + "right": "images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/355/8905fcf79f48ca59a89a14b88c0693f4/355_u.jpg" + }, + { + "back": "images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_b.jpg", + "down": "images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_d.jpg", + "front": "images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_f.jpg", + "index": 356, + "left": "images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_l.jpg", + "right": "images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_r.jpg", + "tiles": [1, 2], + "up": "images/cube_2048/356/0f6ca48b71aeec9a1693f95640463e76/356_u.jpg" + } + ] + }, + "picture_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/d960cfe67765728069ada6808aef9f11/screenshot/1646065253_37/pc0_RX6G93B2N.jpg", + "title_picture_url": "https://vrlab-public.ljcdn.com/release/auto3dhd/d960cfe67765728069ada6808aef9f11/screenshot/1646065253_37/pc1_Ne7LQmsmE.jpg", + "vr_code": "80pWLy9ndnVL73Xqja", + "vr_type": "reality" +} diff --git a/open-works/real/qingxiesheying/work.json b/open-works/real/qingxiesheying/work.json new file mode 100644 index 000000000..a00802d1f --- /dev/null +++ b/open-works/real/qingxiesheying/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"Nens9hFppNrCZ8BMmNRxGHVCV/juhq3g9Kl6Nl8KMa2qNwU7AqVtWrccKHy6WYbDr/JB+iK2LMYWfxsWlDQy/VvaKrLBUnPt73DCFVFdEA6oUuifdYk3JV3CjxVrehqiToWnJPiWM4LyB+g4mbDsbJ0dpZQoOK21diIoHNLCfAk=\",\"allow_hosts\":[\"share.3dvr.pro\",\"rsvr.cn\",\"realsee.com\",\"realsee.cn\",\"rushivr.cn\",\"rushivr.com\"],\"base_url\":\"//vr-public.realsee-cdn.cn\",\"basic_code\":\"80aGKl9JwBoNKDXx8d\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-05-23 18:53:02\",\"expire_at\":\"1717578658892\",\"from_type\":\"aerophoto\",\"initial\":{\"distance\":235.11986541859233,\"fov\":60,\"heading\":0,\"latitude\":0.7853981633974483,\"longitude\":6.083930837401663,\"mode\":\"Mapview\",\"offset\":{\"x\":-24.845265288318537,\"y\":173.8911097779951,\"z\":6.523664162929606},\"panoIndex\":0,\"pano_index\":0,\"workCode\":\"gmYKdd2pdkTz0avsNo\"},\"is_active\":true,\"model\":{\"layers\":[{\"name\":\"aerophoto\",\"tileset_url\":\"https://vrlab-public.ljcdn.com/release/aerophoto/d0f8494d049e05d0d81ea13c0e284e1b/mesh/0cec354f213146f4b282dd41d56e80a9/tileset.json\",\"tileset_url_checksum\":\"8b2bf2b14b0718198ec68f4564cff44b\",\"type\":\"mesh\",\"up_axis\":\"WGS84\"}]},\"name\":\"实验项目\",\"picture_url\":\"https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/REALSEE_TECH/gmYKdd2pdkTz0avsNo/2024-05-23_19-25-46.image/png\",\"project_id\":\"aerophoto-GAv7ZjnyvOPZWxpE\",\"resource_code\":\"gmYKdd2pdkTz0avsNo\",\"title_picture_url\":\"https://vr-public.realsee-cdn.cn/release/uwork/vrcustomer/REALSEE_TECH/gmYKdd2pdkTz0avsNo/2024-05-23_19-25-46.image/png\"}" \ No newline at end of file diff --git a/open-works/real/test/work.json b/open-works/real/test/work.json new file mode 100644 index 000000000..9c38ec7d0 --- /dev/null +++ b/open-works/real/test/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"uZTWj4bxEO/tYu/PKF0HSRRcNkGw3ylkHuhGE9hLYrW0/oJ1ZSbu5rbE8KNgYxTGQqR5FZIQ02QkZFcxlxiiCytwJNTAcKH15tiGzAcsVcoP+eJL0kr5nC4DQxZTwLS3tAXlFdxpmd7022vddcoWbvD1OwI8m3X2dF+uAnfDr5w=\",\"allow_hosts\":[\"realsee.ai\",\"realsee.jp\"],\"base_url\":\"https://global-public.realsee-cdn.com/release/auto3dhd/46ace8107f9546b41933b2020de0ed40/\",\"basic_code\":\"80g17DQv4jw6zB4MnL\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-11-01 16:34:36\",\"device_type\":4,\"expire_at\":\"1731047717812\",\"from_type\":\"vr\",\"initial\":{\"derivedId\":1688745439,\"distance\":0,\"fov\":70,\"heading\":0,\"is_user_set\":true,\"latitude\":0.335241662168409,\"longitude\":5.736788906497851,\"mode\":\"Panorama\",\"offset\":{\"x\":-0.0291821827,\"y\":-0.000483119,\"z\":0.0125608958},\"panoIndex\":0,\"pano_index\":0,\"workCode\":\"AmOZy19n8fzkJdi0D6\"},\"is_active\":true,\"model\":{\"file_url\":\"model/9d9bb5f06fb68e45748394f20db51639/auto3d-light-g4dbE08PjBg0PLND-copy.at3d\",\"layers\":[],\"material_base_url\":\"materials/9d9bb5f06fb68e45748394f20db51639/\",\"material_textures\":[\"texture_0.jpg\",\"texture_1.jpg\",\"texture_2.jpg\",\"texture_3.jpg\"],\"tiles\":{},\"type\":0},\"name\":\"woodenville-copy-copy\",\"observers\":[{\"accessible_nodes\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,49],\"floor_index\":0,\"index\":0,\"offset_point_count\":0,\"position\":[-0.0291821827,-0.000483119,0.0125608958],\"quaternion\":{\"w\":-0.004127225980340901,\"x\":-0.0019806173837731483,\"y\":-0.9999893801936098,\"z\":-0.0005316503460236194},\"standing_position\":[-0.0291821827,-1.4203241701016847,0.0125608958],\"visible_nodes\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,49]},{\"accessible_nodes\":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,28,43],\"floor_index\":0,\"index\":1,\"offset_point_count\":0,\"position\":[1.4382735567,-0.1459222584,-0.2867324655],\"quaternion\":{\"w\":-0.02761157407206674,\"x\":-0.009190892978922826,\"y\":-0.9995620198241828,\"z\":-0.005375591502511268},\"standing_position\":[1.4382735567,-1.5516390352478393,-0.2867324655],\"visible_nodes\":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,28,43]},{\"accessible_nodes\":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,43,48,54],\"floor_index\":0,\"index\":2,\"offset_point_count\":0,\"position\":[1.5485657066,-0.1518016868,1.1626295882],\"quaternion\":{\"w\":-0.03072275517131777,\"x\":-0.0037644433771920048,\"y\":-0.9994892134110303,\"z\":0.00795321056829766},\"standing_position\":[1.5485657066,-1.552821498430249,1.1626295882],\"visible_nodes\":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,43,48,54]},{\"accessible_nodes\":[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,27,28,43,49,51,52,53],\"floor_index\":0,\"index\":3,\"offset_point_count\":0,\"position\":[3.1494729644,-0.1401509003,1.9076866461],\"quaternion\":{\"w\":-0.053012845809807266,\"x\":-0.008932865571915133,\"y\":-0.9985538630564702,\"z\":-0.00015704623536267758},\"standing_position\":[3.1494729644,-1.537757273133252,1.9076866461],\"visible_nodes\":[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,27,28,43,49,51,52,53]},{\"accessible_nodes\":[0,1,2,3,5,6,7,8,9,10,11,14,15,16,17,18,19,28,43,44,48,51],\"floor_index\":0,\"index\":4,\"offset_point_count\":0,\"position\":[4.6924953454,-0.1497004529,1.7984982805],\"quaternion\":{\"w\":-0.01987721714847336,\"x\":-0.01500602957876609,\"y\":-0.9996572458597998,\"z\":0.008068835726852096},\"standing_position\":[4.6924953454,-1.5508347054482177,1.7984982805],\"visible_nodes\":[0,1,2,3,5,6,7,8,9,10,11,14,15,16,17,18,19,28,43,44,48,51]},{\"accessible_nodes\":[0,1,2,3,4,6,7,8,9,10,11,14,15,16,17,18,19,29,43,44,51],\"floor_index\":0,\"index\":5,\"offset_point_count\":0,\"position\":[4.7590428863,-0.1506446575,0.4615663824],\"quaternion\":{\"w\":-0.013599530488146463,\"x\":-0.015764034293030638,\"y\":-0.9997678660194076,\"z\":0.005546358698322558},\"standing_position\":[4.7590428863,-1.5446977590396118,0.4615663824],\"visible_nodes\":[0,1,2,3,4,6,7,8,9,10,11,14,15,16,17,18,19,29,43,44,51]},{\"accessible_nodes\":[0,1,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,28,43,44,49,51],\"floor_index\":0,\"index\":6,\"offset_point_count\":0,\"position\":[3.2494718649,-0.1335462519,0.382002851],\"quaternion\":{\"w\":0.0066971078345541895,\"x\":-0.0015019111722167058,\"y\":-0.9999759658111789,\"z\":0.0009802040334089446},\"standing_position\":[3.2494718649,-1.5354379602740234,0.382002851],\"visible_nodes\":[0,1,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,28,43,44,49,51]},{\"accessible_nodes\":[0,1,2,3,4,5,6,8,10,11,15,16,17,45],\"floor_index\":0,\"index\":7,\"offset_point_count\":0,\"position\":[4.8811536091,-0.1510195072,-1.1726960408],\"quaternion\":{\"w\":-0.02108824985140755,\"x\":-0.015327731238035368,\"y\":-0.9995974167383588,\"z\":0.011196017154103413},\"standing_position\":[4.8811536091,-1.5531317527596924,-1.1726960408],\"visible_nodes\":[0,1,2,3,4,5,6,8,10,11,15,16,17,45]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,29,43,44,45],\"floor_index\":0,\"index\":8,\"offset_point_count\":0,\"position\":[3.2693450922,-0.1437396367,-1.2860714246],\"quaternion\":{\"w\":-0.017394441395001892,\"x\":-0.0005486535812922185,\"y\":-0.9998454739108439,\"z\":0.002482073470106456},\"standing_position\":[3.2693450922,-1.5411120016978637,-1.2860714246],\"visible_nodes\":[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,29,43,44,45]},{\"accessible_nodes\":[0,1,2,3,4,5,6,8,10,11,12,13,14,15,16,17,18,19,29,43,44,45],\"floor_index\":0,\"index\":9,\"offset_point_count\":0,\"position\":[3.3927381903,0.0099456293,-2.6549546015],\"quaternion\":{\"w\":-0.04576187459717888,\"x\":-0.011087335533014714,\"y\":-0.9988849883745375,\"z\":0.003420791547343695},\"standing_position\":[3.3927381903,-1.408057333766101,-2.6549546015],\"visible_nodes\":[0,1,2,3,4,5,6,8,10,11,12,13,14,15,16,17,18,19,29,43,44,45]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,28,29,43,44,45],\"floor_index\":0,\"index\":10,\"offset_point_count\":0,\"position\":[2.2549909554,0.0140837926,-2.6068119724],\"quaternion\":{\"w\":-0.03297242609526225,\"x\":-0.008569548844670361,\"y\":-0.9994140362857629,\"z\":0.00331149726723852},\"standing_position\":[2.2549909554,-1.410072634783423,-2.6068119724],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,28,29,43,44,45]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20,26,27,28,43],\"floor_index\":0,\"index\":11,\"offset_point_count\":0,\"position\":[1.270167498,-0.1404813825,-1.2831036306],\"quaternion\":{\"w\":0.020231821936717118,\"x\":-0.006485758973876477,\"y\":-0.9996394140013688,\"z\":-0.016421031769138904},\"standing_position\":[1.270167498,-1.5481825171817016,-1.2831036306],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20,26,27,28,43]},{\"accessible_nodes\":[0,1,2,3,6,8,9,10,11,13,14,15,16,17,18,19,43,44,45,46],\"floor_index\":0,\"index\":12,\"offset_point_count\":0,\"position\":[3.6019656155,0.0038636541,-4.6443044438],\"quaternion\":{\"w\":-0.04313508300116022,\"x\":-0.005224914155126815,\"y\":-0.9990336769223548,\"z\":0.006616437866602428},\"standing_position\":[3.6019656155,-1.4066026592621217,-4.6443044438],\"visible_nodes\":[0,1,2,3,6,8,9,10,11,13,14,15,16,17,18,19,43,44,45,46]},{\"accessible_nodes\":[0,1,2,3,6,8,9,10,11,12,14,15,16,17,18,19,43,44,45,46],\"floor_index\":0,\"index\":13,\"offset_point_count\":0,\"position\":[3.2722647857,-0.0129438061,-6.1806169553],\"quaternion\":{\"w\":-0.06442175302564773,\"x\":-0.006881032855699494,\"y\":-0.9978529123448004,\"z\":0.009594500683976489},\"standing_position\":[3.2722647857,-1.4253249782801758,-6.1806169553],\"visible_nodes\":[0,1,2,3,6,8,9,10,11,12,14,15,16,17,18,19,43,44,45,46]},{\"accessible_nodes\":[0,1,2,3,4,5,6,8,9,10,11,12,13,15,16,17,18,19,43,44,45,46],\"floor_index\":0,\"index\":14,\"offset_point_count\":0,\"position\":[2.1562638029,-0.0074150326,-6.2489362595],\"quaternion\":{\"w\":0.05989824727856817,\"x\":-0.007215204471704155,\"y\":-0.9981715249019079,\"z\":-0.0037077855936268897},\"standing_position\":[2.1562638029,-1.4322179319606567,-6.2489362595],\"visible_nodes\":[0,1,2,3,4,5,6,8,9,10,11,12,13,15,16,17,18,19,43,44,45,46]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,26,27],\"floor_index\":0,\"index\":15,\"offset_point_count\":0,\"position\":[0.0033596509,-0.0020075628,-1.2890991277],\"quaternion\":{\"w\":-0.054970365435714166,\"x\":-0.00471066807561128,\"y\":-0.9984763943253742,\"z\":0.0009790407971142958},\"standing_position\":[0.0033596509,-1.4147466012674073,-1.2890991277],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,26,27]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,26,27,43],\"floor_index\":0,\"index\":16,\"offset_point_count\":0,\"position\":[0.138728687,0.0018706729,-2.3549142988],\"quaternion\":{\"w\":0.045828623867758246,\"x\":0.0009492044324220117,\"y\":-0.9989356271552237,\"z\":0.005142864875718191},\"standing_position\":[0.138728687,-1.4184770176822754,-2.3549142988],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,26,27,43]},{\"accessible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,26,27,28,43,44,45,46,73],\"floor_index\":0,\"index\":17,\"offset_point_count\":0,\"position\":[0.3030104788,-0.0109701007,-4.2091479951],\"quaternion\":{\"w\":0.032386119463410336,\"x\":-0.002403828585248497,\"y\":-0.9994368316206883,\"z\":0.008448694712708775},\"standing_position\":[0.3030104788,-1.4274519532314331,-4.2091479951],\"visible_nodes\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,26,27,28,43,44,45,46,73]},{\"accessible_nodes\":[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,19,29,43,44,45,46,73,76],\"floor_index\":0,\"index\":18,\"offset_point_count\":0,\"position\":[1.4696290517,0.0015809189,-4.7094812228],\"quaternion\":{\"w\":-0.02897826098793795,\"x\":-0.005124839796593509,\"y\":-0.9995399667722147,\"z\":0.007338339179859617},\"standing_position\":[1.4696290517,-1.4241856683573852,-4.7094812228],\"visible_nodes\":[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,19,29,43,44,45,46,73,76]},{\"accessible_nodes\":[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,20,25,26,27,28,43,44,45,46,48,73,76],\"floor_index\":0,\"index\":19,\"offset_point_count\":0,\"position\":[0.0413349832,-0.0233655049,-5.7862193908],\"quaternion\":{\"w\":-0.008162461438185518,\"x\":-0.002152807168492149,\"y\":-0.9999386412800537,\"z\":0.0071730972820674005},\"standing_position\":[0.0413349832,-1.4381477905903077,-5.7862193908],\"visible_nodes\":[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,20,25,26,27,28,43,44,45,46,48,73,76]},{\"accessible_nodes\":[0,1,2,3,6,10,11,15,16,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,42,48],\"floor_index\":0,\"index\":20,\"offset_point_count\":0,\"position\":[-0.0405654813,-0.0318986365,-7.7821638779],\"quaternion\":{\"w\":-0.03141888682110289,\"x\":-0.002825796941881808,\"y\":-0.9995007454849646,\"z\":0.001768668365667282},\"standing_position\":[-0.0405654813,-1.4550473877588501,-7.7821638779],\"visible_nodes\":[0,1,2,3,6,10,11,15,16,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,42,48]},{\"accessible_nodes\":[20,22,23,24,25,26,27,28,29,30,31,32,33,34,35,42,43,46],\"floor_index\":0,\"index\":21,\"offset_point_count\":0,\"position\":[1.5155931034,-0.0212211047,-8.1624074393],\"quaternion\":{\"w\":-0.0404809666329808,\"x\":-0.0030444387906183703,\"y\":-0.999168536208982,\"z\":-0.0037761087727153364},\"standing_position\":[1.5155931034,-1.4489771757906982,-8.1624074393],\"visible_nodes\":[20,22,23,24,25,26,27,28,29,30,31,32,33,34,35,42,43,46]},{\"accessible_nodes\":[20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,42],\"floor_index\":0,\"index\":22,\"offset_point_count\":0,\"position\":[2.6494072452,-0.0256534189,-8.2167145389],\"quaternion\":{\"w\":0.004113155871336726,\"x\":-0.005421619195452861,\"y\":-0.9999713793154282,\"z\":0.003305837390329317},\"standing_position\":[2.6494072452,-1.4436895221485961,-8.2167145389],\"visible_nodes\":[20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,42]},{\"accessible_nodes\":[20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,42,43],\"floor_index\":0,\"index\":23,\"offset_point_count\":0,\"position\":[2.825451569,-0.0282978023,-9.5361405377],\"quaternion\":{\"w\":-0.0004654860794963485,\"x\":-0.006179511167627473,\"y\":-0.999953318697928,\"z\":0.0074133253886819505},\"standing_position\":[2.825451569,-1.4499157870717285,-9.5361405377],\"visible_nodes\":[20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,42,43]},{\"accessible_nodes\":[20,21,22,23,25,26,27,28,29,30,31,32,33,34,35,42,43],\"floor_index\":0,\"index\":24,\"offset_point_count\":0,\"position\":[2.7609799743,-0.0388635173,-10.9803794316],\"quaternion\":{\"w\":-0.027329468439584576,\"x\":-0.005750567137747108,\"y\":-0.9995828910975817,\"z\":0.007353569089131748},\"standing_position\":[2.7609799743,-1.454794503704419,-10.9803794316],\"visible_nodes\":[20,21,22,23,25,26,27,28,29,30,31,32,33,34,35,42,43]},{\"accessible_nodes\":[19,20,21,22,23,24,26,27,28,29,30,31,32,33,34,35,42],\"floor_index\":0,\"index\":25,\"offset_point_count\":0,\"position\":[1.3598372777,-0.04189655,-10.7960518316],\"quaternion\":{\"w\":-0.13741623998183813,\"x\":-0.002798139972593504,\"y\":-0.9904787652317439,\"z\":0.0077950637065840175},\"standing_position\":[1.3598372777,-1.4580526035430907,-10.7960518316],\"visible_nodes\":[19,20,21,22,23,24,26,27,28,29,30,31,32,33,34,35,42]},{\"accessible_nodes\":[0,1,2,11,15,16,17,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,42],\"floor_index\":0,\"index\":26,\"offset_point_count\":0,\"position\":[-0.0643723361,-0.0420974027,-10.6991923561],\"quaternion\":{\"w\":-0.10560401524628135,\"x\":-0.0039361525037180396,\"y\":-0.9943856332555293,\"z\":0.005432405642582309},\"standing_position\":[-0.0643723361,-1.4587921630225709,-10.6991923561],\"visible_nodes\":[0,1,2,11,15,16,17,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,42]},{\"accessible_nodes\":[0,1,2,3,11,15,16,17,19,20,21,22,23,24,25,26,28,29,30,31,32,33,34,35,42],\"floor_index\":0,\"index\":27,\"offset_point_count\":0,\"position\":[-0.3441411433,-0.0396724558,-9.2672822626],\"quaternion\":{\"w\":0.0037730328478148933,\"x\":-0.004435015009128872,\"y\":-0.9999560240205566,\"z\":0.007351522940421827},\"standing_position\":[-0.3441411433,-1.4587163543824584,-9.2672822626],\"visible_nodes\":[0,1,2,3,11,15,16,17,19,20,21,22,23,24,25,26,28,29,30,31,32,33,34,35,42]},{\"accessible_nodes\":[1,3,4,6,10,11,17,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,42],\"floor_index\":0,\"index\":28,\"offset_point_count\":0,\"position\":[-1.7023362585,-0.0516841728,-10.9747945052],\"quaternion\":{\"w\":0.03445213648273799,\"x\":-0.005554686088005133,\"y\":-0.9993596824467155,\"z\":0.00790068659831202},\"standing_position\":[-1.7023362585,-1.4617203790454223,-10.9747945052],\"visible_nodes\":[1,3,4,6,10,11,17,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,42]},{\"accessible_nodes\":[5,8,9,10,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,35,36,41,42],\"floor_index\":0,\"index\":29,\"offset_point_count\":0,\"position\":[-3.1342047679,-0.0558454861,-10.9914953296],\"quaternion\":{\"w\":0.009608447909138692,\"x\":-0.0028418575273135,\"y\":-0.9999497151732181,\"z\":0.00041069705183023364},\"standing_position\":[-3.1342047679,-1.4778337349250732,-10.9914953296],\"visible_nodes\":[5,8,9,10,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,35,36,41,42]},{\"accessible_nodes\":[20,21,22,23,24,25,26,27,28,29,31,32,33,34,35,36,41,42],\"floor_index\":0,\"index\":30,\"offset_point_count\":0,\"position\":[-4.4766465593,-0.0676096123,-10.9137938555],\"quaternion\":{\"w\":-0.01347009113256927,\"x\":-0.005632336719540659,\"y\":-0.9998622739407663,\"z\":0.007890917835017277},\"standing_position\":[-4.4766465593,-1.4812150638838624,-10.9137938555],\"visible_nodes\":[20,21,22,23,24,25,26,27,28,29,31,32,33,34,35,36,41,42]},{\"accessible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,32,33,34,35,36,42],\"floor_index\":0,\"index\":31,\"offset_point_count\":0,\"position\":[-6.5366164941,-0.0867667066,-10.9799161488],\"quaternion\":{\"w\":0.04047806520731226,\"x\":-0.00321457272909066,\"y\":-0.9991511456356341,\"z\":0.0069412474832204},\"standing_position\":[-6.5366164941,-1.4857189523122802,-10.9799161488],\"visible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,32,33,34,35,36,42]},{\"accessible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,42],\"floor_index\":0,\"index\":32,\"offset_point_count\":0,\"position\":[-6.5804543706,-0.0807647025,-9.2702884432],\"quaternion\":{\"w\":0.011550471760237015,\"x\":-0.009343809997042315,\"y\":-0.9998731168503332,\"z\":0.0057471750446714785},\"standing_position\":[-6.5804543706,-1.4842078005682373,-9.2702884432],\"visible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,42]},{\"accessible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,42],\"floor_index\":0,\"index\":33,\"offset_point_count\":0,\"position\":[-6.6123860424,-0.0779771478,-7.48332677],\"quaternion\":{\"w\":-0.023510975211383834,\"x\":-0.008059182597940353,\"y\":-0.9996703173171643,\"z\":0.006445176062935901},\"standing_position\":[-6.6123860424,-1.4870950848880127,-7.48332677],\"visible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,42]},{\"accessible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,41,42],\"floor_index\":0,\"index\":34,\"offset_point_count\":0,\"position\":[-4.1546652382,-0.0624707039,-9.0200561526],\"quaternion\":{\"w\":0.00841524796350466,\"x\":-0.005819961075060965,\"y\":-0.9999222288508242,\"z\":0.007130771043258666},\"standing_position\":[-4.1546652382,-1.485588460743567,-9.0200561526],\"visible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,41,42]},{\"accessible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,41,42],\"floor_index\":0,\"index\":35,\"offset_point_count\":0,\"position\":[-4.3563513391,-0.0672333389,-7.5376750994],\"quaternion\":{\"w\":-0.013776544565517595,\"x\":-0.00264630267348244,\"y\":-0.9998961103409694,\"z\":0.003312463180670514},\"standing_position\":[-4.3563513391,-1.4803116470054687,-7.5376750994],\"visible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,41,42]},{\"accessible_nodes\":[28,29,30,31,34,35,37,38,41],\"floor_index\":0,\"index\":36,\"offset_point_count\":0,\"position\":[-4.2886814697,-0.0547926824,-6.1343925941],\"quaternion\":{\"w\":-0.013194679888337876,\"x\":-0.00016834614995201878,\"y\":-0.9999007999171717,\"z\":0.004925689403796965},\"standing_position\":[-4.2886814697,-1.4868429105188965,-6.1343925941],\"visible_nodes\":[28,29,30,31,34,35,37,38,41]},{\"accessible_nodes\":[36,38,39],\"floor_index\":0,\"index\":37,\"offset_point_count\":0,\"position\":[-5.691820772,-0.0779632192,-6.153111291],\"quaternion\":{\"w\":0.04136108335411412,\"x\":-0.007059216817863895,\"y\":-0.9991143255653979,\"z\":-0.0031611217246961055},\"standing_position\":[-5.691820772,-1.4896557193144409,-6.153111291],\"visible_nodes\":[36,38,39]},{\"accessible_nodes\":[36,37,39,40],\"floor_index\":0,\"index\":38,\"offset_point_count\":0,\"position\":[-6.8273133331,-0.0684032584,-6.0850947628],\"quaternion\":{\"w\":0.026048748500665932,\"x\":-0.005715099457751633,\"y\":-0.9996344756959916,\"z\":0.004440194749095448},\"standing_position\":[-6.8273133331,-1.4873466635513672,-6.0850947628],\"visible_nodes\":[36,37,39,40]},{\"accessible_nodes\":[37,38,40],\"floor_index\":0,\"index\":39,\"offset_point_count\":0,\"position\":[-6.7311405511,-0.0689691838,-4.9832542061],\"quaternion\":{\"w\":-0.008193657507250193,\"x\":-0.0076760226398069975,\"y\":-0.9999017310341052,\"z\":0.008394696313125814},\"standing_position\":[-6.7311405511,-1.4864194925997436,-4.9832542061],\"visible_nodes\":[37,38,40]},{\"accessible_nodes\":[38,39],\"floor_index\":0,\"index\":40,\"offset_point_count\":0,\"position\":[-6.4014241927,-0.0667318275,-3.4477420107],\"quaternion\":{\"w\":-0.047460205013325374,\"x\":-0.00994849302494906,\"y\":-0.9987256989659372,\"z\":0.013983370949060192},\"standing_position\":[-6.4014241927,-1.4801191260839843,-3.4477420107],\"visible_nodes\":[38,39]},{\"accessible_nodes\":[29,30,34,35,36],\"floor_index\":0,\"index\":41,\"offset_point_count\":0,\"position\":[-4.2761952912,-0.0393234408,-4.4837741506],\"quaternion\":{\"w\":-0.0006275296394922187,\"x\":-0.003952438481446631,\"y\":-0.9998949619460036,\"z\":0.013930166122541481},\"standing_position\":[-4.2761952912,-1.4598733103373536,-4.4837741506],\"visible_nodes\":[29,30,34,35,36]},{\"accessible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35],\"floor_index\":0,\"index\":42,\"offset_point_count\":0,\"position\":[-2.3610988871,-0.0515168315,-8.2040312528],\"quaternion\":{\"w\":-0.05351342483657594,\"x\":-0.004926694829484936,\"y\":-0.9985472858107421,\"z\":0.00391906140110608},\"standing_position\":[-2.3610988871,-1.4715771084851685,-8.2040312528],\"visible_nodes\":[20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]},{\"accessible_nodes\":[1,2,3,4,5,6,8,9,10,11,12,13,14,16,17,18,19,21,23,24,44,45,46,48,73,76,77],\"floor_index\":0,\"index\":43,\"offset_point_count\":0,\"position\":[-1.0460722921,0.3939279339,-6.0205149985],\"quaternion\":{\"w\":0.09605667477194114,\"x\":-0.000055032931247667187,\"y\":-0.9951550600408963,\"z\":0.020964700188674863},\"standing_position\":[-1.0460722921,-1.0869631746128783,-6.0205149985],\"visible_nodes\":[1,2,3,4,5,6,8,9,10,11,12,13,14,16,17,18,19,21,23,24,44,45,46,48,73,76,77]},{\"accessible_nodes\":[4,5,6,8,9,10,12,13,14,17,18,19,43,45,46,47,48,73],\"floor_index\":0,\"index\":44,\"offset_point_count\":0,\"position\":[-1.8421142827,0.9282561134,-5.9991542528],\"quaternion\":{\"w\":0.11294786815494716,\"x\":0.002458332384798159,\"y\":-0.9934061765209636,\"z\":0.019516765506632606},\"standing_position\":[-1.8421142827,-0.5291976143221679,-5.9991542528],\"visible_nodes\":[4,5,6,8,9,10,12,13,14,17,18,19,43,45,46,47,48,73]},{\"accessible_nodes\":[7,8,9,10,12,13,14,17,18,19,43,44,46,47,48,49],\"floor_index\":0,\"index\":45,\"offset_point_count\":0,\"position\":[-2.865902941,1.20580087,-6.0029971198],\"quaternion\":{\"w\":-0.013303019409116967,\"x\":-0.002683316063149212,\"y\":-0.9998927304341201,\"z\":0.005509730526401805},\"standing_position\":[-2.865902941,-0.19026353067291257,-6.0029971198],\"visible_nodes\":[7,8,9,10,12,13,14,17,18,19,43,44,46,47,48,49]},{\"accessible_nodes\":[12,13,14,17,18,19,21,43,44,45,47,48,49,50,51,55,62,63],\"floor_index\":0,\"index\":46,\"offset_point_count\":0,\"position\":[-2.9373694274,1.4607142064,-4.8543446029],\"quaternion\":{\"w\":0.006959257383165015,\"x\":-0.0007334702257741505,\"y\":-0.9999627786197844,\"z\":-0.005046992581029679},\"standing_position\":[-2.9373694274,0.15711997479447026,-4.8543446029],\"visible_nodes\":[12,13,14,17,18,19,21,43,44,45,47,48,49,50,51,55,62,63]},{\"accessible_nodes\":[44,45,46,48,49,50,51,52,53,54,55,56,58,62,63,64,66,67,70,73,76,77],\"floor_index\":0,\"index\":47,\"offset_point_count\":0,\"position\":[-2.9005084409,1.9548288483,-3.2526284085],\"quaternion\":{\"w\":-0.022005068110447855,\"x\":-0.004731824885928194,\"y\":-0.9997270533125528,\"z\":0.006261444165443717},\"standing_position\":[-2.9005084409,0.5496735472059449,-3.2526284085],\"visible_nodes\":[44,45,46,48,49,50,51,52,53,54,55,56,58,62,63,64,66,67,70,73,76,77]},{\"accessible_nodes\":[2,4,19,20,43,44,45,46,47,49,50,51,52,53,54,55,56,57,58,61,62,63,68,73,76,77],\"floor_index\":0,\"index\":48,\"offset_point_count\":0,\"position\":[-1.6646084194,2.4213658923,-3.1082228538],\"quaternion\":{\"w\":-0.12183830505470716,\"x\":0.004790529249835449,\"y\":-0.9924974312939051,\"z\":0.009018155002508656},\"standing_position\":[-1.6646084194,1.067673241505017,-3.1082228538],\"visible_nodes\":[2,4,19,20,43,44,45,46,47,49,50,51,52,53,54,55,56,57,58,61,62,63,68,73,76,77]},{\"accessible_nodes\":[0,3,6,45,46,47,48,50,51,52,53,54,55,56,57,58,60,62,63,67,73,76,77],\"floor_index\":1,\"index\":49,\"offset_point_count\":0,\"position\":[0.1657824307,2.718154059,-3.2343792775],\"quaternion\":{\"w\":0.00279657811375633,\"x\":-0.01671632488599289,\"y\":-0.9996991542084048,\"z\":0.017729769001390148},\"standing_position\":[0.1657824307,1.3193859916400759,-3.2343792775],\"visible_nodes\":[0,3,6,45,46,47,48,50,51,52,53,54,55,56,57,58,60,62,63,67,73,76,77]},{\"accessible_nodes\":[46,47,48,49,51,52,53,54,55,56,57,58,62,63,67,73,76,77],\"active\":false,\"floor_index\":1,\"index\":50,\"offset_point_count\":0,\"position\":[1.6355922491,2.7371620616,-2.4844245179],\"quaternion\":{\"w\":-0.04509836502569781,\"x\":-0.005312970067113854,\"y\":-0.9988199882486333,\"z\":0.017220362755414314},\"standing_position\":[1.6355922491,1.316254564193994,-2.4844245179],\"visible_nodes\":[46,47,48,49,51,52,53,54,55,56,57,58,62,63,67,73,76,77]},{\"accessible_nodes\":[3,4,5,6,46,47,48,49,50,52,53,54,55,56,57,63,67,73,76,77],\"floor_index\":1,\"index\":51,\"offset_point_count\":0,\"position\":[3.4563228726,2.745221717,-2.4591178952],\"quaternion\":{\"w\":-0.043791861113818734,\"x\":0.0035302809132247612,\"y\":-0.9988820328121835,\"z\":0.017449771547024595},\"standing_position\":[3.4563228726,1.3227914401292726,-2.4591178952],\"visible_nodes\":[3,4,5,6,46,47,48,49,50,52,53,54,55,56,57,63,67,73,76,77]},{\"accessible_nodes\":[3,47,48,49,50,51,53,54,55,56,57,62,63,67,73,74,76,77],\"floor_index\":1,\"index\":52,\"offset_point_count\":0,\"position\":[3.5484921596,2.7426069608,-4.4995538328],\"quaternion\":{\"w\":0.011981108054137721,\"x\":0.0002865499193484083,\"y\":-0.9998433280019425,\"z\":0.013026526316905937},\"standing_position\":[3.5484921596,1.3367638221052367,-4.4995538328],\"visible_nodes\":[3,47,48,49,50,51,53,54,55,56,57,62,63,67,73,74,76,77]},{\"accessible_nodes\":[3,47,48,49,50,51,52,54,55,56,57,58,62,63,67,73,74,76,77],\"floor_index\":1,\"index\":53,\"offset_point_count\":0,\"position\":[1.6966691752,2.7191885086,-5.2308056457],\"quaternion\":{\"w\":0.07377284734359267,\"x\":-0.000837492120454445,\"y\":-0.9972641886431097,\"z\":0.004582974403421339},\"standing_position\":[1.6966691752,1.3155187936723265,-5.2308056457],\"visible_nodes\":[3,47,48,49,50,51,52,54,55,56,57,58,62,63,67,73,74,76,77]},{\"accessible_nodes\":[2,47,48,49,50,51,52,53,55,56,57,58,60,62,63,67,73,76,77],\"floor_index\":1,\"index\":54,\"offset_point_count\":0,\"position\":[1.3883239419,2.7276222769,-4.0724688374],\"quaternion\":{\"w\":-0.05106749923447162,\"x\":-0.01065507114421792,\"y\":-0.9985833605413221,\"z\":0.010481032118667096},\"standing_position\":[1.3883239419,1.3155096832491822,-4.0724688374],\"visible_nodes\":[2,47,48,49,50,51,52,53,55,56,57,58,60,62,63,67,73,76,77]},{\"accessible_nodes\":[46,47,48,49,50,51,52,53,54,56,57,58,60,63,67,73,74,76,77],\"floor_index\":1,\"index\":55,\"offset_point_count\":0,\"position\":[0.4633166439,2.7109949416,-5.3978369322],\"quaternion\":{\"w\":-0.022601111513775453,\"x\":-0.011455229211935784,\"y\":-0.999599365333432,\"z\":0.012612545798080509},\"standing_position\":[0.4633166439,1.3028241223174684,-5.3978369322],\"visible_nodes\":[46,47,48,49,50,51,52,53,54,56,57,58,60,63,67,73,74,76,77]},{\"accessible_nodes\":[47,48,49,50,51,52,53,54,55,57,58,60,62,63,67,73,74,76,77],\"floor_index\":1,\"index\":56,\"offset_point_count\":0,\"position\":[0.7892784475,2.7012161552,-7.361497991],\"quaternion\":{\"w\":0.017296068786978928,\"x\":-0.0029250211276232677,\"y\":-0.9998183337486866,\"z\":0.0074558535519652505},\"standing_position\":[0.7892784475,1.2937483130979492,-7.361497991],\"visible_nodes\":[47,48,49,50,51,52,53,54,55,57,58,60,62,63,67,73,74,76,77]},{\"accessible_nodes\":[48,49,50,51,52,53,54,55,56,62,63,67,73,74,76,77],\"floor_index\":1,\"index\":57,\"offset_point_count\":0,\"position\":[2.6546267329,2.7109612113,-7.5093746613],\"quaternion\":{\"w\":-0.018984209806603536,\"x\":-0.004927904611271212,\"y\":-0.9997704681075552,\"z\":0.008621290036017403},\"standing_position\":[2.6546267329,1.3032766467095458,-7.5093746613],\"visible_nodes\":[48,49,50,51,52,53,54,55,56,62,63,67,73,74,76,77]},{\"accessible_nodes\":[47,48,49,50,53,54,55,56,59,60,61],\"floor_index\":1,\"index\":58,\"offset_point_count\":0,\"position\":[0.9714028306,2.6876965253,-8.643862443],\"quaternion\":{\"w\":-0.02365525985516233,\"x\":-0.007258546161810432,\"y\":-0.9996511027478537,\"z\":0.009242021665963652},\"standing_position\":[0.9714028306,1.290361830437634,-8.643862443],\"visible_nodes\":[47,48,49,50,53,54,55,56,59,60,61]},{\"accessible_nodes\":[58,60,61],\"floor_index\":1,\"index\":59,\"offset_point_count\":0,\"position\":[2.8917829274,2.7010866156,-8.5134328389],\"quaternion\":{\"w\":-0.024073310961441975,\"x\":0.0002545352074990136,\"y\":-0.9996926456666569,\"z\":0.0059182006346107634},\"standing_position\":[2.8917829274,1.3029441585916381,-8.5134328389],\"visible_nodes\":[58,60,61]},{\"accessible_nodes\":[49,54,55,56,58,59,61],\"floor_index\":1,\"index\":60,\"offset_point_count\":0,\"position\":[1.0001491846,2.6911431468,-10.8579596217],\"quaternion\":{\"w\":0.0022024900017816986,\"x\":-0.006662504837555592,\"y\":-0.9998054466619993,\"z\":-0.018434448033398974},\"standing_position\":[1.0001491846,1.2893419182767456,-10.8579596217],\"visible_nodes\":[49,54,55,56,58,59,61]},{\"accessible_nodes\":[48,58,59,60],\"floor_index\":1,\"index\":61,\"offset_point_count\":0,\"position\":[2.8148786254,2.6836669582,-11.2734214165],\"quaternion\":{\"w\":-0.024865601479959885,\"x\":-0.009962930438587899,\"y\":-0.9996101459694174,\"z\":0.007873877787992086},\"standing_position\":[2.8148786254,1.2818174499144774,-11.2734214165],\"visible_nodes\":[48,58,59,60]},{\"accessible_nodes\":[46,47,48,49,50,52,53,54,56,57,63,67,73,76,77],\"floor_index\":1,\"index\":62,\"offset_point_count\":0,\"position\":[-1.1910288818,2.6870038004,-7.3810026374],\"quaternion\":{\"w\":0.03824744523611945,\"x\":-0.005393422278354915,\"y\":-0.9992066441057125,\"z\":0.00970187196230704},\"standing_position\":[-1.1910288818,1.29444689465354,-7.3810026374],\"visible_nodes\":[46,47,48,49,50,52,53,54,56,57,63,67,73,76,77]},{\"accessible_nodes\":[46,47,48,49,50,51,52,53,54,55,56,57,62,64,66,67,69,76,77,78,83],\"floor_index\":1,\"index\":63,\"offset_point_count\":0,\"position\":[-2.9997641533,2.6791255389,-7.5560289834],\"quaternion\":{\"w\":-0.09112883255197658,\"x\":-0.0042358121079181625,\"y\":-0.9957497919030663,\"z\":0.012646964154450999},\"standing_position\":[-2.9997641533,1.2641880427146974,-7.5560289834],\"visible_nodes\":[46,47,48,49,50,51,52,53,54,55,56,57,62,64,66,67,69,76,77,78,83]},{\"accessible_nodes\":[47,63,65,66,76,77,78,83],\"floor_index\":1,\"index\":64,\"offset_point_count\":0,\"position\":[-2.7874271075,2.6483982832,-9.3152936425],\"quaternion\":{\"w\":0.05118703541525548,\"x\":-0.005279241986093196,\"y\":-0.9986693712635829,\"z\":0.0033917423999039594},\"standing_position\":[-2.7874271075,1.252892616467212,-9.3152936425],\"visible_nodes\":[47,63,65,66,76,77,78,83]},{\"accessible_nodes\":[64,66],\"floor_index\":1,\"index\":65,\"offset_point_count\":0,\"position\":[-1.344956938,2.6569342099,-9.8781308746],\"quaternion\":{\"w\":-0.0547725077662444,\"x\":-0.009811117898973279,\"y\":-0.9984084001299268,\"z\":0.009185908015003305},\"standing_position\":[-1.344956938,1.2423941574860597,-9.8781308746],\"visible_nodes\":[64,66]},{\"accessible_nodes\":[47,63,64,65,78,83],\"floor_index\":1,\"index\":66,\"offset_point_count\":0,\"position\":[-2.9171734742,2.6503685955,-10.8282739908],\"quaternion\":{\"w\":0.030159865537743014,\"x\":-0.0018331295618845844,\"y\":-0.9995350372923403,\"z\":0.004090401033940277},\"standing_position\":[-2.9171734742,1.2619741205167845,-10.8282739908],\"visible_nodes\":[47,63,64,65,78,83]},{\"accessible_nodes\":[47,49,50,51,52,53,54,55,56,57,62,63,68,70,71,72,73,76,77,78,79,82,84],\"floor_index\":1,\"index\":67,\"offset_point_count\":0,\"position\":[-4.083451014,2.6609719706,-7.5543018859],\"quaternion\":{\"w\":-0.041484483193766096,\"x\":-0.007284689405629897,\"y\":-0.9989606000738968,\"z\":0.017426717103469696},\"standing_position\":[-4.083451014,1.2689778519095092,-7.5543018859],\"visible_nodes\":[47,49,50,51,52,53,54,55,56,57,62,63,68,70,71,72,73,76,77,78,79,82,84]},{\"accessible_nodes\":[48,67,69,70,71,72,73,76,77,78,79,82,84],\"floor_index\":1,\"index\":68,\"offset_point_count\":0,\"position\":[-4.2325781438,2.6551546619,-8.8516178263],\"quaternion\":{\"w\":-0.030933898724473392,\"x\":-0.00409204004968724,\"y\":-0.9994521132100327,\"z\":0.011037322403141413},\"standing_position\":[-4.2325781438,1.2567499444546266,-8.8516178263],\"visible_nodes\":[48,67,69,70,71,72,73,76,77,78,79,82,84]},{\"accessible_nodes\":[63,68,70,71,72],\"floor_index\":1,\"index\":69,\"offset_point_count\":0,\"position\":[-5.961289167,2.6421181036,-8.8528635647],\"quaternion\":{\"w\":0.02818601212848335,\"x\":-0.00968994308139221,\"y\":-0.9995360853666064,\"z\":0.006266400624948744},\"standing_position\":[-5.961289167,1.2420001102452027,-8.8528635647],\"visible_nodes\":[63,68,70,71,72]},{\"accessible_nodes\":[47,67,68,69,71,72,73,76,77,78,79,82],\"floor_index\":1,\"index\":70,\"offset_point_count\":0,\"position\":[-4.2971530906,2.6516506662,-10.2519408435],\"quaternion\":{\"w\":-0.032108856594526815,\"x\":-0.010899473429347117,\"y\":-0.9992772307397982,\"z\":0.017182517420404476},\"standing_position\":[-4.2971530906,1.2529270639050782,-10.2519408435],\"visible_nodes\":[47,67,68,69,71,72,73,76,77,78,79,82]},{\"accessible_nodes\":[67,68,69,70,72],\"floor_index\":1,\"index\":71,\"offset_point_count\":0,\"position\":[-4.958427701,2.6456590413,-11.4427182658],\"quaternion\":{\"w\":-0.0042182197482538465,\"x\":-0.010244768741343432,\"y\":-0.9998507490620788,\"z\":0.013256354698372271},\"standing_position\":[-4.958427701,1.2455245970632447,-11.4427182658],\"visible_nodes\":[67,68,69,70,72]},{\"accessible_nodes\":[67,68,69,70,71],\"floor_index\":1,\"index\":72,\"offset_point_count\":0,\"position\":[-6.3756273993,2.6295927046,-11.5388485091],\"quaternion\":{\"w\":0.0378336542013409,\"x\":-0.007967031968026136,\"y\":-0.9991918015326187,\"z\":0.010994759597856335},\"standing_position\":[-6.3756273993,1.240148830240869,-11.5388485091],\"visible_nodes\":[67,68,69,70,71]},{\"accessible_nodes\":[17,18,19,43,44,47,48,49,50,51,52,53,54,55,56,57,62,67,68,70,74,76,77,78,79,82,84],\"floor_index\":1,\"index\":73,\"offset_point_count\":0,\"position\":[-4.2390118662,2.6782284269,-6.2214390207],\"quaternion\":{\"w\":-0.04953564753355531,\"x\":-0.007435778464909414,\"y\":-0.9985917594292475,\"z\":0.017476464616506412},\"standing_position\":[-4.2390118662,1.2807623634005494,-6.2214390207],\"visible_nodes\":[17,18,19,43,44,47,48,49,50,51,52,53,54,55,56,57,62,67,68,70,74,76,77,78,79,82,84]},{\"accessible_nodes\":[52,53,55,56,57,73,75],\"floor_index\":1,\"index\":74,\"offset_point_count\":0,\"position\":[-6.2402928635,2.6515518544,-6.1775044237],\"quaternion\":{\"w\":0.011146676700492053,\"x\":-0.004305161328759477,\"y\":-0.9998871636339772,\"z\":0.009103690377339695},\"standing_position\":[-6.2402928635,1.2362120268624635,-6.1775044237],\"visible_nodes\":[52,53,55,56,57,73,75]},{\"accessible_nodes\":[74],\"floor_index\":1,\"index\":75,\"offset_point_count\":0,\"position\":[-6.2577393784,2.6606124281,-4.1708811286],\"quaternion\":{\"w\":-0.07070207181502366,\"x\":-0.011488241403806674,\"y\":-0.9972990640850918,\"z\":0.01624235578708819},\"standing_position\":[-6.2577393784,1.2381411432336669,-4.1708811286],\"visible_nodes\":[74]},{\"accessible_nodes\":[18,19,43,47,48,49,50,51,52,53,54,55,56,57,62,63,64,67,68,70,73,77,78,79,82,84],\"floor_index\":1,\"index\":76,\"offset_point_count\":0,\"position\":[-4.2258564718,2.68858082,-4.340436688],\"quaternion\":{\"w\":-0.04050425932748464,\"x\":-0.0007195257608510594,\"y\":-0.9990401860661061,\"z\":0.016661149027991876},\"standing_position\":[-4.2258564718,1.2916703909991454,-4.340436688],\"visible_nodes\":[18,19,43,47,48,49,50,51,52,53,54,55,56,57,62,63,64,67,68,70,73,77,78,79,82,84]},{\"accessible_nodes\":[43,47,48,49,50,51,52,53,54,55,56,57,62,63,64,67,68,70,73,76,78,79,82,83,84],\"floor_index\":1,\"index\":77,\"offset_point_count\":0,\"position\":[-4.2554155235,2.7199745089,-2.7132297511],\"quaternion\":{\"w\":-0.0388306988694692,\"x\":0.001289377084471748,\"y\":-0.9990061988171044,\"z\":0.02184328438185714},\"standing_position\":[-4.2554155235,1.3024787813609375,-2.7132297511],\"visible_nodes\":[43,47,48,49,50,51,52,53,54,55,56,57,62,63,64,67,68,70,73,76,78,79,82,83,84]},{\"accessible_nodes\":[63,64,66,67,68,70,73,76,77,79,82,83,84,85,88],\"floor_index\":1,\"index\":78,\"offset_point_count\":0,\"position\":[-4.2225010661,2.6905397674,-0.5932347816],\"quaternion\":{\"w\":-0.014457376765747706,\"x\":-0.006126989229905066,\"y\":-0.9998512271083133,\"z\":0.007139179791421964},\"standing_position\":[-4.2225010661,1.2920223971760008,-0.5932347816],\"visible_nodes\":[63,64,66,67,68,70,73,76,77,79,82,83,84,85,88]},{\"accessible_nodes\":[67,68,70,73,76,77,78,80,82,83,84,85,86,87,88],\"floor_index\":1,\"index\":79,\"offset_point_count\":0,\"position\":[-4.077438152,2.6869944761,1.2610167742],\"quaternion\":{\"w\":-0.029617146090257916,\"x\":-0.007072507627638082,\"y\":-0.9994874939937968,\"z\":0.009876925433607667},\"standing_position\":[-4.077438152,1.2803051898680056,1.2610167742],\"visible_nodes\":[67,68,70,73,76,77,78,80,82,83,84,85,86,87,88]},{\"accessible_nodes\":[79,81,82,83,84,85,86,87,88],\"floor_index\":1,\"index\":80,\"offset_point_count\":0,\"position\":[-3.014270573,2.6908990816,1.0551514565],\"quaternion\":{\"w\":-0.09322318571622976,\"x\":-0.004206497201070196,\"y\":-0.995618111652254,\"z\":0.006026504997024213},\"standing_position\":[-3.014270573,1.2917074636343018,1.0551514565],\"visible_nodes\":[79,81,82,83,84,85,86,87,88]},{\"accessible_nodes\":[80,82,83,84,86,88],\"floor_index\":1,\"index\":81,\"offset_point_count\":0,\"position\":[-2.4105256506,2.6940318907,-0.1740808908],\"quaternion\":{\"w\":-0.07852688996345383,\"x\":-0.003561706066441739,\"y\":-0.9968617872353218,\"z\":0.009349810243854706},\"standing_position\":[-2.4105256506,1.3000605667330198,-0.1740808908],\"visible_nodes\":[80,82,83,84,86,88]},{\"accessible_nodes\":[67,68,70,73,76,77,78,79,80,81,83,84,85,86,87,88],\"floor_index\":1,\"index\":82,\"offset_point_count\":0,\"position\":[-3.8671393262,2.6827512659,2.3102968292],\"quaternion\":{\"w\":-0.02915979327764594,\"x\":-0.006460497012070516,\"y\":-0.9995126207682422,\"z\":0.009082365156152471},\"standing_position\":[-3.8671393262,1.2791033662723144,2.3102968292],\"visible_nodes\":[67,68,70,73,76,77,78,79,80,81,83,84,85,86,87,88]},{\"accessible_nodes\":[63,64,66,77,78,79,80,81,82,84,85,86,87,88],\"floor_index\":1,\"index\":83,\"offset_point_count\":0,\"position\":[-4.8716053087,2.6704278618,3.4544329242],\"quaternion\":{\"w\":-0.020190761819128888,\"x\":-0.005614591319163348,\"y\":-0.9997222916015227,\"z\":0.01077725265857592},\"standing_position\":[-4.8716053087,1.2767011552951781,3.4544329242],\"visible_nodes\":[63,64,66,77,78,79,80,81,82,84,85,86,87,88]},{\"accessible_nodes\":[67,68,73,76,77,78,79,80,81,82,83,85,86,87,88],\"floor_index\":1,\"index\":84,\"offset_point_count\":0,\"position\":[-3.877637213,2.6705250051,5.5137080206],\"quaternion\":{\"w\":0.026523849349627558,\"x\":-0.009371907647483442,\"y\":-0.9995631921869672,\"z\":0.009059668058791685},\"standing_position\":[-3.877637213,1.2690606620290161,5.5137080206],\"visible_nodes\":[67,68,73,76,77,78,79,80,81,82,83,85,86,87,88]},{\"accessible_nodes\":[78,79,80,82,83,84,86,87,88],\"floor_index\":1,\"index\":85,\"offset_point_count\":0,\"position\":[-2.5820250749,2.6834093032,5.5393264396],\"quaternion\":{\"w\":-0.028396113705848613,\"x\":-0.002959777445750401,\"y\":-0.9995423403363162,\"z\":0.010000515507563978},\"standing_position\":[-2.5820250749,1.2641125617144042,5.5393264396],\"visible_nodes\":[78,79,80,82,83,84,86,87,88]},{\"accessible_nodes\":[79,80,81,82,83,84,85,87,88,89],\"floor_index\":1,\"index\":86,\"offset_point_count\":0,\"position\":[-6.0709967366,2.6658464063,4.0417679892],\"quaternion\":{\"w\":0.010766380243989331,\"x\":-0.009386189854740214,\"y\":-0.9998683592853611,\"z\":0.007697312029656506},\"standing_position\":[-6.0709967366,1.273122845966748,4.0417679892],\"visible_nodes\":[79,80,81,82,83,84,85,87,88,89]},{\"accessible_nodes\":[79,80,82,83,84,85,86,88,89,90],\"floor_index\":1,\"index\":87,\"offset_point_count\":0,\"position\":[-6.5049143526,2.6660477726,2.3911372314],\"quaternion\":{\"w\":-0.0014375807679715136,\"x\":-0.006603466502517036,\"y\":-0.9999638330084744,\"z\":0.005163359168167401},\"standing_position\":[-6.5049143526,1.2749181596773314,2.3911372314],\"visible_nodes\":[79,80,82,83,84,85,86,88,89,90]},{\"accessible_nodes\":[78,79,80,81,82,83,84,85,86,87,89],\"floor_index\":1,\"index\":88,\"offset_point_count\":0,\"position\":[-5.5746841727,2.6691704096,5.2283715588],\"quaternion\":{\"w\":-0.006005107366807349,\"x\":-0.018271099445511686,\"y\":-0.999700930941349,\"z\":0.015104776846392705},\"standing_position\":[-5.5746841727,1.2697443069617553,5.2283715588],\"visible_nodes\":[78,79,80,81,82,83,84,85,86,87,89]},{\"accessible_nodes\":[86,87,88,90],\"floor_index\":1,\"index\":89,\"offset_point_count\":0,\"position\":[-6.4341627691,2.6827507768,0.2822251496],\"quaternion\":{\"w\":-0.05345750931451597,\"x\":-0.004955022149805658,\"y\":-0.9985574030570301,\"z\":0.0009248062476658447},\"standing_position\":[-6.4341627691,1.2634558234537474,0.2822251496],\"visible_nodes\":[86,87,88,90]},{\"accessible_nodes\":[87,89],\"floor_index\":1,\"index\":90,\"offset_point_count\":0,\"position\":[-6.4317016314,2.6801607759,-1.6733056787],\"quaternion\":{\"w\":-0.0060268513316700635,\"x\":-0.00528797770370812,\"y\":-0.999966702070624,\"z\":-0.0015195771987741237},\"standing_position\":[-6.4317016314,1.2783131749631105,-1.6733056787],\"visible_nodes\":[87,89]}],\"panorama\":{\"count\":91,\"list\":[{\"back\":\"images/cube_2048/0/b943dc7ff634de5273aa2cb32a207986/0_b.jpg\",\"derived_id\":1688745439,\"derived_id_str\":\"1688745439\",\"down\":\"images/cube_2048/0/b943dc7ff634de5273aa2cb32a207986/0_d.jpg\",\"front\":\"images/cube_2048/0/b943dc7ff634de5273aa2cb32a207986/0_f.jpg\",\"index\":0,\"left\":\"images/cube_2048/0/b943dc7ff634de5273aa2cb32a207986/0_l.jpg\",\"right\":\"images/cube_2048/0/b943dc7ff634de5273aa2cb32a207986/0_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/0/b943dc7ff634de5273aa2cb32a207986/0_u.jpg\"},{\"back\":\"images/cube_2048/1/06208ac452b937dbe5dcf712c1dd19bc/1_b.jpg\",\"derived_id\":1688745497,\"derived_id_str\":\"1688745497\",\"down\":\"images/cube_2048/1/06208ac452b937dbe5dcf712c1dd19bc/1_d.jpg\",\"front\":\"images/cube_2048/1/06208ac452b937dbe5dcf712c1dd19bc/1_f.jpg\",\"index\":1,\"left\":\"images/cube_2048/1/06208ac452b937dbe5dcf712c1dd19bc/1_l.jpg\",\"right\":\"images/cube_2048/1/06208ac452b937dbe5dcf712c1dd19bc/1_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/1/06208ac452b937dbe5dcf712c1dd19bc/1_u.jpg\"},{\"back\":\"images/cube_2048/2/2136923d82910ed5f39cdef4d50ab3fe/2_b.jpg\",\"derived_id\":1688745551,\"derived_id_str\":\"1688745551\",\"down\":\"images/cube_2048/2/2136923d82910ed5f39cdef4d50ab3fe/2_d.jpg\",\"front\":\"images/cube_2048/2/2136923d82910ed5f39cdef4d50ab3fe/2_f.jpg\",\"index\":2,\"left\":\"images/cube_2048/2/2136923d82910ed5f39cdef4d50ab3fe/2_l.jpg\",\"right\":\"images/cube_2048/2/2136923d82910ed5f39cdef4d50ab3fe/2_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/2/2136923d82910ed5f39cdef4d50ab3fe/2_u.jpg\"},{\"back\":\"images/cube_2048/3/443d6d706d5be9d07e97a221225c38fb/3_b.jpg\",\"derived_id\":1688745608,\"derived_id_str\":\"1688745608\",\"down\":\"images/cube_2048/3/443d6d706d5be9d07e97a221225c38fb/3_d.jpg\",\"front\":\"images/cube_2048/3/443d6d706d5be9d07e97a221225c38fb/3_f.jpg\",\"index\":3,\"left\":\"images/cube_2048/3/443d6d706d5be9d07e97a221225c38fb/3_l.jpg\",\"right\":\"images/cube_2048/3/443d6d706d5be9d07e97a221225c38fb/3_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/3/443d6d706d5be9d07e97a221225c38fb/3_u.jpg\"},{\"back\":\"images/cube_2048/4/a644d7e04f7729e4214174dafc8c60a7/4_b.jpg\",\"derived_id\":1688745670,\"derived_id_str\":\"1688745670\",\"down\":\"images/cube_2048/4/a644d7e04f7729e4214174dafc8c60a7/4_d.jpg\",\"front\":\"images/cube_2048/4/a644d7e04f7729e4214174dafc8c60a7/4_f.jpg\",\"index\":4,\"left\":\"images/cube_2048/4/a644d7e04f7729e4214174dafc8c60a7/4_l.jpg\",\"right\":\"images/cube_2048/4/a644d7e04f7729e4214174dafc8c60a7/4_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/4/a644d7e04f7729e4214174dafc8c60a7/4_u.jpg\"},{\"back\":\"images/cube_2048/5/685073c921c9c815cdad1297da5f1ebb/5_b.jpg\",\"derived_id\":1688745720,\"derived_id_str\":\"1688745720\",\"down\":\"images/cube_2048/5/685073c921c9c815cdad1297da5f1ebb/5_d.jpg\",\"front\":\"images/cube_2048/5/685073c921c9c815cdad1297da5f1ebb/5_f.jpg\",\"index\":5,\"left\":\"images/cube_2048/5/685073c921c9c815cdad1297da5f1ebb/5_l.jpg\",\"right\":\"images/cube_2048/5/685073c921c9c815cdad1297da5f1ebb/5_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/5/685073c921c9c815cdad1297da5f1ebb/5_u.jpg\"},{\"back\":\"images/cube_2048/6/465a87582e62b261bbd0834a76185b1b/6_b.jpg\",\"derived_id\":1688745774,\"derived_id_str\":\"1688745774\",\"down\":\"images/cube_2048/6/465a87582e62b261bbd0834a76185b1b/6_d.jpg\",\"front\":\"images/cube_2048/6/465a87582e62b261bbd0834a76185b1b/6_f.jpg\",\"index\":6,\"left\":\"images/cube_2048/6/465a87582e62b261bbd0834a76185b1b/6_l.jpg\",\"right\":\"images/cube_2048/6/465a87582e62b261bbd0834a76185b1b/6_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/6/465a87582e62b261bbd0834a76185b1b/6_u.jpg\"},{\"back\":\"images/cube_2048/7/b83d09f4e0602cee1d17d51d32c9e2c9/7_b.jpg\",\"derived_id\":1688745844,\"derived_id_str\":\"1688745844\",\"down\":\"images/cube_2048/7/b83d09f4e0602cee1d17d51d32c9e2c9/7_d.jpg\",\"front\":\"images/cube_2048/7/b83d09f4e0602cee1d17d51d32c9e2c9/7_f.jpg\",\"index\":7,\"left\":\"images/cube_2048/7/b83d09f4e0602cee1d17d51d32c9e2c9/7_l.jpg\",\"right\":\"images/cube_2048/7/b83d09f4e0602cee1d17d51d32c9e2c9/7_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/7/b83d09f4e0602cee1d17d51d32c9e2c9/7_u.jpg\"},{\"back\":\"images/cube_2048/8/699206181e42de02ff84c61f3d4278e0/8_b.jpg\",\"derived_id\":1688745905,\"derived_id_str\":\"1688745905\",\"down\":\"images/cube_2048/8/699206181e42de02ff84c61f3d4278e0/8_d.jpg\",\"front\":\"images/cube_2048/8/699206181e42de02ff84c61f3d4278e0/8_f.jpg\",\"index\":8,\"left\":\"images/cube_2048/8/699206181e42de02ff84c61f3d4278e0/8_l.jpg\",\"right\":\"images/cube_2048/8/699206181e42de02ff84c61f3d4278e0/8_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/8/699206181e42de02ff84c61f3d4278e0/8_u.jpg\"},{\"back\":\"images/cube_2048/9/76ced986af019bb83496c0e26b28a61e/9_b.jpg\",\"derived_id\":1688745963,\"derived_id_str\":\"1688745963\",\"down\":\"images/cube_2048/9/76ced986af019bb83496c0e26b28a61e/9_d.jpg\",\"front\":\"images/cube_2048/9/76ced986af019bb83496c0e26b28a61e/9_f.jpg\",\"index\":9,\"left\":\"images/cube_2048/9/76ced986af019bb83496c0e26b28a61e/9_l.jpg\",\"right\":\"images/cube_2048/9/76ced986af019bb83496c0e26b28a61e/9_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/9/76ced986af019bb83496c0e26b28a61e/9_u.jpg\"},{\"back\":\"images/cube_2048/10/d6660f0d4637a7a68582825ef5e5de53/10_b.jpg\",\"derived_id\":1688746018,\"derived_id_str\":\"1688746018\",\"down\":\"images/cube_2048/10/d6660f0d4637a7a68582825ef5e5de53/10_d.jpg\",\"front\":\"images/cube_2048/10/d6660f0d4637a7a68582825ef5e5de53/10_f.jpg\",\"index\":10,\"left\":\"images/cube_2048/10/d6660f0d4637a7a68582825ef5e5de53/10_l.jpg\",\"right\":\"images/cube_2048/10/d6660f0d4637a7a68582825ef5e5de53/10_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/10/d6660f0d4637a7a68582825ef5e5de53/10_u.jpg\"},{\"back\":\"images/cube_2048/11/423fc7cb05bbb145d45415f43ebbf804/11_b.jpg\",\"derived_id\":1688746075,\"derived_id_str\":\"1688746075\",\"down\":\"images/cube_2048/11/423fc7cb05bbb145d45415f43ebbf804/11_d.jpg\",\"front\":\"images/cube_2048/11/423fc7cb05bbb145d45415f43ebbf804/11_f.jpg\",\"index\":11,\"left\":\"images/cube_2048/11/423fc7cb05bbb145d45415f43ebbf804/11_l.jpg\",\"right\":\"images/cube_2048/11/423fc7cb05bbb145d45415f43ebbf804/11_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/11/423fc7cb05bbb145d45415f43ebbf804/11_u.jpg\"},{\"back\":\"images/cube_2048/12/0a17eca0012607ade932e214aa2f7304/12_b.jpg\",\"derived_id\":1688746257,\"derived_id_str\":\"1688746257\",\"down\":\"images/cube_2048/12/0a17eca0012607ade932e214aa2f7304/12_d.jpg\",\"front\":\"images/cube_2048/12/0a17eca0012607ade932e214aa2f7304/12_f.jpg\",\"index\":12,\"left\":\"images/cube_2048/12/0a17eca0012607ade932e214aa2f7304/12_l.jpg\",\"right\":\"images/cube_2048/12/0a17eca0012607ade932e214aa2f7304/12_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/12/0a17eca0012607ade932e214aa2f7304/12_u.jpg\"},{\"back\":\"images/cube_2048/13/8bb570acea6e21f6313fb7289a1411a1/13_b.jpg\",\"derived_id\":1688746324,\"derived_id_str\":\"1688746324\",\"down\":\"images/cube_2048/13/8bb570acea6e21f6313fb7289a1411a1/13_d.jpg\",\"front\":\"images/cube_2048/13/8bb570acea6e21f6313fb7289a1411a1/13_f.jpg\",\"index\":13,\"left\":\"images/cube_2048/13/8bb570acea6e21f6313fb7289a1411a1/13_l.jpg\",\"right\":\"images/cube_2048/13/8bb570acea6e21f6313fb7289a1411a1/13_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/13/8bb570acea6e21f6313fb7289a1411a1/13_u.jpg\"},{\"back\":\"images/cube_2048/14/91c21bd70a2ece15665f421987ecf54d/14_b.jpg\",\"derived_id\":1688746378,\"derived_id_str\":\"1688746378\",\"down\":\"images/cube_2048/14/91c21bd70a2ece15665f421987ecf54d/14_d.jpg\",\"front\":\"images/cube_2048/14/91c21bd70a2ece15665f421987ecf54d/14_f.jpg\",\"index\":14,\"left\":\"images/cube_2048/14/91c21bd70a2ece15665f421987ecf54d/14_l.jpg\",\"right\":\"images/cube_2048/14/91c21bd70a2ece15665f421987ecf54d/14_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/14/91c21bd70a2ece15665f421987ecf54d/14_u.jpg\"},{\"back\":\"images/cube_2048/15/8a2dcb41ce7b6d841d0348e8a99a9b15/15_b.jpg\",\"derived_id\":1688746449,\"derived_id_str\":\"1688746449\",\"down\":\"images/cube_2048/15/8a2dcb41ce7b6d841d0348e8a99a9b15/15_d.jpg\",\"front\":\"images/cube_2048/15/8a2dcb41ce7b6d841d0348e8a99a9b15/15_f.jpg\",\"index\":15,\"left\":\"images/cube_2048/15/8a2dcb41ce7b6d841d0348e8a99a9b15/15_l.jpg\",\"right\":\"images/cube_2048/15/8a2dcb41ce7b6d841d0348e8a99a9b15/15_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/15/8a2dcb41ce7b6d841d0348e8a99a9b15/15_u.jpg\"},{\"back\":\"images/cube_2048/16/481bcc27e4974207b3c2b681761e22e0/16_b.jpg\",\"derived_id\":1688746500,\"derived_id_str\":\"1688746500\",\"down\":\"images/cube_2048/16/481bcc27e4974207b3c2b681761e22e0/16_d.jpg\",\"front\":\"images/cube_2048/16/481bcc27e4974207b3c2b681761e22e0/16_f.jpg\",\"index\":16,\"left\":\"images/cube_2048/16/481bcc27e4974207b3c2b681761e22e0/16_l.jpg\",\"right\":\"images/cube_2048/16/481bcc27e4974207b3c2b681761e22e0/16_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/16/481bcc27e4974207b3c2b681761e22e0/16_u.jpg\"},{\"back\":\"images/cube_2048/17/03c3b0218eb6afc771435e825487ff7d/17_b.jpg\",\"derived_id\":1688746556,\"derived_id_str\":\"1688746556\",\"down\":\"images/cube_2048/17/03c3b0218eb6afc771435e825487ff7d/17_d.jpg\",\"front\":\"images/cube_2048/17/03c3b0218eb6afc771435e825487ff7d/17_f.jpg\",\"index\":17,\"left\":\"images/cube_2048/17/03c3b0218eb6afc771435e825487ff7d/17_l.jpg\",\"right\":\"images/cube_2048/17/03c3b0218eb6afc771435e825487ff7d/17_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/17/03c3b0218eb6afc771435e825487ff7d/17_u.jpg\"},{\"back\":\"images/cube_2048/18/0dd9e6dac148bb74197136f334061c06/18_b.jpg\",\"derived_id\":1688746612,\"derived_id_str\":\"1688746612\",\"down\":\"images/cube_2048/18/0dd9e6dac148bb74197136f334061c06/18_d.jpg\",\"front\":\"images/cube_2048/18/0dd9e6dac148bb74197136f334061c06/18_f.jpg\",\"index\":18,\"left\":\"images/cube_2048/18/0dd9e6dac148bb74197136f334061c06/18_l.jpg\",\"right\":\"images/cube_2048/18/0dd9e6dac148bb74197136f334061c06/18_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/18/0dd9e6dac148bb74197136f334061c06/18_u.jpg\"},{\"back\":\"images/cube_2048/19/f40df2a85b0da73a77530bdb947385a7/19_b.jpg\",\"derived_id\":1688746661,\"derived_id_str\":\"1688746661\",\"down\":\"images/cube_2048/19/f40df2a85b0da73a77530bdb947385a7/19_d.jpg\",\"front\":\"images/cube_2048/19/f40df2a85b0da73a77530bdb947385a7/19_f.jpg\",\"index\":19,\"left\":\"images/cube_2048/19/f40df2a85b0da73a77530bdb947385a7/19_l.jpg\",\"right\":\"images/cube_2048/19/f40df2a85b0da73a77530bdb947385a7/19_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/19/f40df2a85b0da73a77530bdb947385a7/19_u.jpg\"},{\"back\":\"images/cube_2048/20/cdde2773c400a15375f147f107fb83ce/20_b.jpg\",\"derived_id\":1688746719,\"derived_id_str\":\"1688746719\",\"down\":\"images/cube_2048/20/cdde2773c400a15375f147f107fb83ce/20_d.jpg\",\"front\":\"images/cube_2048/20/cdde2773c400a15375f147f107fb83ce/20_f.jpg\",\"index\":20,\"left\":\"images/cube_2048/20/cdde2773c400a15375f147f107fb83ce/20_l.jpg\",\"right\":\"images/cube_2048/20/cdde2773c400a15375f147f107fb83ce/20_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/20/cdde2773c400a15375f147f107fb83ce/20_u.jpg\"},{\"back\":\"images/cube_2048/21/e15f981f31a99ceaf21480b11444853a/21_b.jpg\",\"derived_id\":1688746772,\"derived_id_str\":\"1688746772\",\"down\":\"images/cube_2048/21/e15f981f31a99ceaf21480b11444853a/21_d.jpg\",\"front\":\"images/cube_2048/21/e15f981f31a99ceaf21480b11444853a/21_f.jpg\",\"index\":21,\"left\":\"images/cube_2048/21/e15f981f31a99ceaf21480b11444853a/21_l.jpg\",\"right\":\"images/cube_2048/21/e15f981f31a99ceaf21480b11444853a/21_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/21/e15f981f31a99ceaf21480b11444853a/21_u.jpg\"},{\"back\":\"images/cube_2048/22/d9e93db693b81e5103c9edfd830557fc/22_b.jpg\",\"derived_id\":1688746884,\"derived_id_str\":\"1688746884\",\"down\":\"images/cube_2048/22/d9e93db693b81e5103c9edfd830557fc/22_d.jpg\",\"front\":\"images/cube_2048/22/d9e93db693b81e5103c9edfd830557fc/22_f.jpg\",\"index\":22,\"left\":\"images/cube_2048/22/d9e93db693b81e5103c9edfd830557fc/22_l.jpg\",\"right\":\"images/cube_2048/22/d9e93db693b81e5103c9edfd830557fc/22_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/22/d9e93db693b81e5103c9edfd830557fc/22_u.jpg\"},{\"back\":\"images/cube_2048/23/49d4ed306e6fd23aa0d317cf0d4c372b/23_b.jpg\",\"derived_id\":1688746933,\"derived_id_str\":\"1688746933\",\"down\":\"images/cube_2048/23/49d4ed306e6fd23aa0d317cf0d4c372b/23_d.jpg\",\"front\":\"images/cube_2048/23/49d4ed306e6fd23aa0d317cf0d4c372b/23_f.jpg\",\"index\":23,\"left\":\"images/cube_2048/23/49d4ed306e6fd23aa0d317cf0d4c372b/23_l.jpg\",\"right\":\"images/cube_2048/23/49d4ed306e6fd23aa0d317cf0d4c372b/23_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/23/49d4ed306e6fd23aa0d317cf0d4c372b/23_u.jpg\"},{\"back\":\"images/cube_2048/24/bb4cdc5e55ceca139b2e02e38ac5a13c/24_b.jpg\",\"derived_id\":1688746980,\"derived_id_str\":\"1688746980\",\"down\":\"images/cube_2048/24/bb4cdc5e55ceca139b2e02e38ac5a13c/24_d.jpg\",\"front\":\"images/cube_2048/24/bb4cdc5e55ceca139b2e02e38ac5a13c/24_f.jpg\",\"index\":24,\"left\":\"images/cube_2048/24/bb4cdc5e55ceca139b2e02e38ac5a13c/24_l.jpg\",\"right\":\"images/cube_2048/24/bb4cdc5e55ceca139b2e02e38ac5a13c/24_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/24/bb4cdc5e55ceca139b2e02e38ac5a13c/24_u.jpg\"},{\"back\":\"images/cube_2048/25/35bb50c9b31a4c2ca2241ed27eb602ca/25_b.jpg\",\"derived_id\":1688747027,\"derived_id_str\":\"1688747027\",\"down\":\"images/cube_2048/25/35bb50c9b31a4c2ca2241ed27eb602ca/25_d.jpg\",\"front\":\"images/cube_2048/25/35bb50c9b31a4c2ca2241ed27eb602ca/25_f.jpg\",\"index\":25,\"left\":\"images/cube_2048/25/35bb50c9b31a4c2ca2241ed27eb602ca/25_l.jpg\",\"right\":\"images/cube_2048/25/35bb50c9b31a4c2ca2241ed27eb602ca/25_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/25/35bb50c9b31a4c2ca2241ed27eb602ca/25_u.jpg\"},{\"back\":\"images/cube_2048/26/7d035cf37b08a074e744441644cd1eec/26_b.jpg\",\"derived_id\":1688747077,\"derived_id_str\":\"1688747077\",\"down\":\"images/cube_2048/26/7d035cf37b08a074e744441644cd1eec/26_d.jpg\",\"front\":\"images/cube_2048/26/7d035cf37b08a074e744441644cd1eec/26_f.jpg\",\"index\":26,\"left\":\"images/cube_2048/26/7d035cf37b08a074e744441644cd1eec/26_l.jpg\",\"right\":\"images/cube_2048/26/7d035cf37b08a074e744441644cd1eec/26_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/26/7d035cf37b08a074e744441644cd1eec/26_u.jpg\"},{\"back\":\"images/cube_2048/27/4dbc5e19500bbfd14dc93f2e2cd789df/27_b.jpg\",\"derived_id\":1688747118,\"derived_id_str\":\"1688747118\",\"down\":\"images/cube_2048/27/4dbc5e19500bbfd14dc93f2e2cd789df/27_d.jpg\",\"front\":\"images/cube_2048/27/4dbc5e19500bbfd14dc93f2e2cd789df/27_f.jpg\",\"index\":27,\"left\":\"images/cube_2048/27/4dbc5e19500bbfd14dc93f2e2cd789df/27_l.jpg\",\"right\":\"images/cube_2048/27/4dbc5e19500bbfd14dc93f2e2cd789df/27_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/27/4dbc5e19500bbfd14dc93f2e2cd789df/27_u.jpg\"},{\"back\":\"images/cube_2048/28/4cd5d171cc3590ad83f635277b3560c2/28_b.jpg\",\"derived_id\":1688747181,\"derived_id_str\":\"1688747181\",\"down\":\"images/cube_2048/28/4cd5d171cc3590ad83f635277b3560c2/28_d.jpg\",\"front\":\"images/cube_2048/28/4cd5d171cc3590ad83f635277b3560c2/28_f.jpg\",\"index\":28,\"left\":\"images/cube_2048/28/4cd5d171cc3590ad83f635277b3560c2/28_l.jpg\",\"right\":\"images/cube_2048/28/4cd5d171cc3590ad83f635277b3560c2/28_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/28/4cd5d171cc3590ad83f635277b3560c2/28_u.jpg\"},{\"back\":\"images/cube_2048/29/6e6fc17ec69589d68e50ea87b087fd4d/29_b.jpg\",\"derived_id\":1688747227,\"derived_id_str\":\"1688747227\",\"down\":\"images/cube_2048/29/6e6fc17ec69589d68e50ea87b087fd4d/29_d.jpg\",\"front\":\"images/cube_2048/29/6e6fc17ec69589d68e50ea87b087fd4d/29_f.jpg\",\"index\":29,\"left\":\"images/cube_2048/29/6e6fc17ec69589d68e50ea87b087fd4d/29_l.jpg\",\"right\":\"images/cube_2048/29/6e6fc17ec69589d68e50ea87b087fd4d/29_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/29/6e6fc17ec69589d68e50ea87b087fd4d/29_u.jpg\"},{\"back\":\"images/cube_2048/30/564a75d78b2e1d96c2dd34b008689998/30_b.jpg\",\"derived_id\":1688747275,\"derived_id_str\":\"1688747275\",\"down\":\"images/cube_2048/30/564a75d78b2e1d96c2dd34b008689998/30_d.jpg\",\"front\":\"images/cube_2048/30/564a75d78b2e1d96c2dd34b008689998/30_f.jpg\",\"index\":30,\"left\":\"images/cube_2048/30/564a75d78b2e1d96c2dd34b008689998/30_l.jpg\",\"right\":\"images/cube_2048/30/564a75d78b2e1d96c2dd34b008689998/30_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/30/564a75d78b2e1d96c2dd34b008689998/30_u.jpg\"},{\"back\":\"images/cube_2048/31/c869491029d6ac85e25e9ad863aed1b3/31_b.jpg\",\"derived_id\":1688747322,\"derived_id_str\":\"1688747322\",\"down\":\"images/cube_2048/31/c869491029d6ac85e25e9ad863aed1b3/31_d.jpg\",\"front\":\"images/cube_2048/31/c869491029d6ac85e25e9ad863aed1b3/31_f.jpg\",\"index\":31,\"left\":\"images/cube_2048/31/c869491029d6ac85e25e9ad863aed1b3/31_l.jpg\",\"right\":\"images/cube_2048/31/c869491029d6ac85e25e9ad863aed1b3/31_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/31/c869491029d6ac85e25e9ad863aed1b3/31_u.jpg\"},{\"back\":\"images/cube_2048/32/fa7f1b3cb4bd32963e64d37527591de5/32_b.jpg\",\"derived_id\":1688747373,\"derived_id_str\":\"1688747373\",\"down\":\"images/cube_2048/32/fa7f1b3cb4bd32963e64d37527591de5/32_d.jpg\",\"front\":\"images/cube_2048/32/fa7f1b3cb4bd32963e64d37527591de5/32_f.jpg\",\"index\":32,\"left\":\"images/cube_2048/32/fa7f1b3cb4bd32963e64d37527591de5/32_l.jpg\",\"right\":\"images/cube_2048/32/fa7f1b3cb4bd32963e64d37527591de5/32_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/32/fa7f1b3cb4bd32963e64d37527591de5/32_u.jpg\"},{\"back\":\"images/cube_2048/33/a85254a38f2f171f2e0d2ee498df9cc9/33_b.jpg\",\"derived_id\":1688747420,\"derived_id_str\":\"1688747420\",\"down\":\"images/cube_2048/33/a85254a38f2f171f2e0d2ee498df9cc9/33_d.jpg\",\"front\":\"images/cube_2048/33/a85254a38f2f171f2e0d2ee498df9cc9/33_f.jpg\",\"index\":33,\"left\":\"images/cube_2048/33/a85254a38f2f171f2e0d2ee498df9cc9/33_l.jpg\",\"right\":\"images/cube_2048/33/a85254a38f2f171f2e0d2ee498df9cc9/33_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/33/a85254a38f2f171f2e0d2ee498df9cc9/33_u.jpg\"},{\"back\":\"images/cube_2048/34/77c2925c24a8ff0a9c30aeb3d0698c17/34_b.jpg\",\"derived_id\":1688747844,\"derived_id_str\":\"1688747844\",\"down\":\"images/cube_2048/34/77c2925c24a8ff0a9c30aeb3d0698c17/34_d.jpg\",\"front\":\"images/cube_2048/34/77c2925c24a8ff0a9c30aeb3d0698c17/34_f.jpg\",\"index\":34,\"left\":\"images/cube_2048/34/77c2925c24a8ff0a9c30aeb3d0698c17/34_l.jpg\",\"right\":\"images/cube_2048/34/77c2925c24a8ff0a9c30aeb3d0698c17/34_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/34/77c2925c24a8ff0a9c30aeb3d0698c17/34_u.jpg\"},{\"back\":\"images/cube_2048/35/a6b61141f94814df7cf8352b50d72261/35_b.jpg\",\"derived_id\":1688747889,\"derived_id_str\":\"1688747889\",\"down\":\"images/cube_2048/35/a6b61141f94814df7cf8352b50d72261/35_d.jpg\",\"front\":\"images/cube_2048/35/a6b61141f94814df7cf8352b50d72261/35_f.jpg\",\"index\":35,\"left\":\"images/cube_2048/35/a6b61141f94814df7cf8352b50d72261/35_l.jpg\",\"right\":\"images/cube_2048/35/a6b61141f94814df7cf8352b50d72261/35_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/35/a6b61141f94814df7cf8352b50d72261/35_u.jpg\"},{\"back\":\"images/cube_2048/36/83f06c2e071c518d8d8787ab6283b06f/36_b.jpg\",\"derived_id\":1688747946,\"derived_id_str\":\"1688747946\",\"down\":\"images/cube_2048/36/83f06c2e071c518d8d8787ab6283b06f/36_d.jpg\",\"front\":\"images/cube_2048/36/83f06c2e071c518d8d8787ab6283b06f/36_f.jpg\",\"index\":36,\"left\":\"images/cube_2048/36/83f06c2e071c518d8d8787ab6283b06f/36_l.jpg\",\"right\":\"images/cube_2048/36/83f06c2e071c518d8d8787ab6283b06f/36_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/36/83f06c2e071c518d8d8787ab6283b06f/36_u.jpg\"},{\"back\":\"images/cube_2048/37/ba7272428e63d8cc26d9b2763b30d988/37_b.jpg\",\"derived_id\":1688748013,\"derived_id_str\":\"1688748013\",\"down\":\"images/cube_2048/37/ba7272428e63d8cc26d9b2763b30d988/37_d.jpg\",\"front\":\"images/cube_2048/37/ba7272428e63d8cc26d9b2763b30d988/37_f.jpg\",\"index\":37,\"left\":\"images/cube_2048/37/ba7272428e63d8cc26d9b2763b30d988/37_l.jpg\",\"right\":\"images/cube_2048/37/ba7272428e63d8cc26d9b2763b30d988/37_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/37/ba7272428e63d8cc26d9b2763b30d988/37_u.jpg\"},{\"back\":\"images/cube_2048/38/e0844cd5c6e267d9ca692e56b00c3720/38_b.jpg\",\"derived_id\":1688748056,\"derived_id_str\":\"1688748056\",\"down\":\"images/cube_2048/38/e0844cd5c6e267d9ca692e56b00c3720/38_d.jpg\",\"front\":\"images/cube_2048/38/e0844cd5c6e267d9ca692e56b00c3720/38_f.jpg\",\"index\":38,\"left\":\"images/cube_2048/38/e0844cd5c6e267d9ca692e56b00c3720/38_l.jpg\",\"right\":\"images/cube_2048/38/e0844cd5c6e267d9ca692e56b00c3720/38_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/38/e0844cd5c6e267d9ca692e56b00c3720/38_u.jpg\"},{\"back\":\"images/cube_2048/39/7004f1b68ae284260b3a735903483f5d/39_b.jpg\",\"derived_id\":1688748102,\"derived_id_str\":\"1688748102\",\"down\":\"images/cube_2048/39/7004f1b68ae284260b3a735903483f5d/39_d.jpg\",\"front\":\"images/cube_2048/39/7004f1b68ae284260b3a735903483f5d/39_f.jpg\",\"index\":39,\"left\":\"images/cube_2048/39/7004f1b68ae284260b3a735903483f5d/39_l.jpg\",\"right\":\"images/cube_2048/39/7004f1b68ae284260b3a735903483f5d/39_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/39/7004f1b68ae284260b3a735903483f5d/39_u.jpg\"},{\"back\":\"images/cube_2048/40/2f4c8f7d4ad72f9d3039c417795047c1/40_b.jpg\",\"derived_id\":1688748163,\"derived_id_str\":\"1688748163\",\"down\":\"images/cube_2048/40/2f4c8f7d4ad72f9d3039c417795047c1/40_d.jpg\",\"front\":\"images/cube_2048/40/2f4c8f7d4ad72f9d3039c417795047c1/40_f.jpg\",\"index\":40,\"left\":\"images/cube_2048/40/2f4c8f7d4ad72f9d3039c417795047c1/40_l.jpg\",\"right\":\"images/cube_2048/40/2f4c8f7d4ad72f9d3039c417795047c1/40_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/40/2f4c8f7d4ad72f9d3039c417795047c1/40_u.jpg\"},{\"back\":\"images/cube_2048/41/d4be89e046fc8310c77f75f34d144cd0/41_b.jpg\",\"derived_id\":1688748217,\"derived_id_str\":\"1688748217\",\"down\":\"images/cube_2048/41/d4be89e046fc8310c77f75f34d144cd0/41_d.jpg\",\"front\":\"images/cube_2048/41/d4be89e046fc8310c77f75f34d144cd0/41_f.jpg\",\"index\":41,\"left\":\"images/cube_2048/41/d4be89e046fc8310c77f75f34d144cd0/41_l.jpg\",\"right\":\"images/cube_2048/41/d4be89e046fc8310c77f75f34d144cd0/41_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/41/d4be89e046fc8310c77f75f34d144cd0/41_u.jpg\"},{\"back\":\"images/cube_2048/42/38f2997e4bb215a93e02a3562bd1bd7b/42_b.jpg\",\"derived_id\":1688748322,\"derived_id_str\":\"1688748322\",\"down\":\"images/cube_2048/42/38f2997e4bb215a93e02a3562bd1bd7b/42_d.jpg\",\"front\":\"images/cube_2048/42/38f2997e4bb215a93e02a3562bd1bd7b/42_f.jpg\",\"index\":42,\"left\":\"images/cube_2048/42/38f2997e4bb215a93e02a3562bd1bd7b/42_l.jpg\",\"right\":\"images/cube_2048/42/38f2997e4bb215a93e02a3562bd1bd7b/42_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/42/38f2997e4bb215a93e02a3562bd1bd7b/42_u.jpg\"},{\"back\":\"images/cube_2048/43/d8a60e0ba243a06241d348dd5c11c271/43_b.jpg\",\"derived_id\":1688748519,\"derived_id_str\":\"1688748519\",\"down\":\"images/cube_2048/43/d8a60e0ba243a06241d348dd5c11c271/43_d.jpg\",\"front\":\"images/cube_2048/43/d8a60e0ba243a06241d348dd5c11c271/43_f.jpg\",\"index\":43,\"left\":\"images/cube_2048/43/d8a60e0ba243a06241d348dd5c11c271/43_l.jpg\",\"right\":\"images/cube_2048/43/d8a60e0ba243a06241d348dd5c11c271/43_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/43/d8a60e0ba243a06241d348dd5c11c271/43_u.jpg\"},{\"back\":\"images/cube_2048/44/e9255e9e40287cd770348259b9d1d385/44_b.jpg\",\"derived_id\":1688748620,\"derived_id_str\":\"1688748620\",\"down\":\"images/cube_2048/44/e9255e9e40287cd770348259b9d1d385/44_d.jpg\",\"front\":\"images/cube_2048/44/e9255e9e40287cd770348259b9d1d385/44_f.jpg\",\"index\":44,\"left\":\"images/cube_2048/44/e9255e9e40287cd770348259b9d1d385/44_l.jpg\",\"right\":\"images/cube_2048/44/e9255e9e40287cd770348259b9d1d385/44_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/44/e9255e9e40287cd770348259b9d1d385/44_u.jpg\"},{\"back\":\"images/cube_2048/45/ffaaacedc29617db947e9a08121edee0/45_b.jpg\",\"derived_id\":1688748688,\"derived_id_str\":\"1688748688\",\"down\":\"images/cube_2048/45/ffaaacedc29617db947e9a08121edee0/45_d.jpg\",\"front\":\"images/cube_2048/45/ffaaacedc29617db947e9a08121edee0/45_f.jpg\",\"index\":45,\"left\":\"images/cube_2048/45/ffaaacedc29617db947e9a08121edee0/45_l.jpg\",\"right\":\"images/cube_2048/45/ffaaacedc29617db947e9a08121edee0/45_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/45/ffaaacedc29617db947e9a08121edee0/45_u.jpg\"},{\"back\":\"images/cube_2048/46/d05732381cd0138d8a2a2de59eaf8ad2/46_b.jpg\",\"derived_id\":1688748779,\"derived_id_str\":\"1688748779\",\"down\":\"images/cube_2048/46/d05732381cd0138d8a2a2de59eaf8ad2/46_d.jpg\",\"front\":\"images/cube_2048/46/d05732381cd0138d8a2a2de59eaf8ad2/46_f.jpg\",\"index\":46,\"left\":\"images/cube_2048/46/d05732381cd0138d8a2a2de59eaf8ad2/46_l.jpg\",\"right\":\"images/cube_2048/46/d05732381cd0138d8a2a2de59eaf8ad2/46_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/46/d05732381cd0138d8a2a2de59eaf8ad2/46_u.jpg\"},{\"back\":\"images/cube_2048/47/2aeacf108bdddde528c9e735184fde43/47_b.jpg\",\"derived_id\":1688748840,\"derived_id_str\":\"1688748840\",\"down\":\"images/cube_2048/47/2aeacf108bdddde528c9e735184fde43/47_d.jpg\",\"front\":\"images/cube_2048/47/2aeacf108bdddde528c9e735184fde43/47_f.jpg\",\"index\":47,\"left\":\"images/cube_2048/47/2aeacf108bdddde528c9e735184fde43/47_l.jpg\",\"right\":\"images/cube_2048/47/2aeacf108bdddde528c9e735184fde43/47_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/47/2aeacf108bdddde528c9e735184fde43/47_u.jpg\"},{\"back\":\"images/cube_2048/48/d71ec655756bd4a616f1a2468860a898/48_b.jpg\",\"derived_id\":1688748952,\"derived_id_str\":\"1688748952\",\"down\":\"images/cube_2048/48/d71ec655756bd4a616f1a2468860a898/48_d.jpg\",\"front\":\"images/cube_2048/48/d71ec655756bd4a616f1a2468860a898/48_f.jpg\",\"index\":48,\"left\":\"images/cube_2048/48/d71ec655756bd4a616f1a2468860a898/48_l.jpg\",\"right\":\"images/cube_2048/48/d71ec655756bd4a616f1a2468860a898/48_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/48/d71ec655756bd4a616f1a2468860a898/48_u.jpg\"},{\"back\":\"images/cube_2048/49/3a5154c33f5f7a656fe79a8640623f23/49_b.jpg\",\"derived_id\":1688749185,\"derived_id_str\":\"1688749185\",\"down\":\"images/cube_2048/49/3a5154c33f5f7a656fe79a8640623f23/49_d.jpg\",\"front\":\"images/cube_2048/49/3a5154c33f5f7a656fe79a8640623f23/49_f.jpg\",\"index\":49,\"left\":\"images/cube_2048/49/3a5154c33f5f7a656fe79a8640623f23/49_l.jpg\",\"right\":\"images/cube_2048/49/3a5154c33f5f7a656fe79a8640623f23/49_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/49/3a5154c33f5f7a656fe79a8640623f23/49_u.jpg\"},{\"back\":\"images/cube_2048/50/0bc0c68552cbabd1da3d95db78508e1a/50_b.jpg\",\"derived_id\":1688749236,\"derived_id_str\":\"1688749236\",\"down\":\"images/cube_2048/50/0bc0c68552cbabd1da3d95db78508e1a/50_d.jpg\",\"front\":\"images/cube_2048/50/0bc0c68552cbabd1da3d95db78508e1a/50_f.jpg\",\"index\":50,\"left\":\"images/cube_2048/50/0bc0c68552cbabd1da3d95db78508e1a/50_l.jpg\",\"right\":\"images/cube_2048/50/0bc0c68552cbabd1da3d95db78508e1a/50_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/50/0bc0c68552cbabd1da3d95db78508e1a/50_u.jpg\"},{\"back\":\"images/cube_2048/51/f9c98af1f03f8c80e6d2654ba19e9b3b/51_b.jpg\",\"derived_id\":1688749298,\"derived_id_str\":\"1688749298\",\"down\":\"images/cube_2048/51/f9c98af1f03f8c80e6d2654ba19e9b3b/51_d.jpg\",\"front\":\"images/cube_2048/51/f9c98af1f03f8c80e6d2654ba19e9b3b/51_f.jpg\",\"index\":51,\"left\":\"images/cube_2048/51/f9c98af1f03f8c80e6d2654ba19e9b3b/51_l.jpg\",\"right\":\"images/cube_2048/51/f9c98af1f03f8c80e6d2654ba19e9b3b/51_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/51/f9c98af1f03f8c80e6d2654ba19e9b3b/51_u.jpg\"},{\"back\":\"images/cube_2048/52/8119fdb6ab136ac60a775ceb6cb56645/52_b.jpg\",\"derived_id\":1688749355,\"derived_id_str\":\"1688749355\",\"down\":\"images/cube_2048/52/8119fdb6ab136ac60a775ceb6cb56645/52_d.jpg\",\"front\":\"images/cube_2048/52/8119fdb6ab136ac60a775ceb6cb56645/52_f.jpg\",\"index\":52,\"left\":\"images/cube_2048/52/8119fdb6ab136ac60a775ceb6cb56645/52_l.jpg\",\"right\":\"images/cube_2048/52/8119fdb6ab136ac60a775ceb6cb56645/52_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/52/8119fdb6ab136ac60a775ceb6cb56645/52_u.jpg\"},{\"back\":\"images/cube_2048/53/a50f32252f4b6c6e29cc53c1ae2e79b8/53_b.jpg\",\"derived_id\":1688749411,\"derived_id_str\":\"1688749411\",\"down\":\"images/cube_2048/53/a50f32252f4b6c6e29cc53c1ae2e79b8/53_d.jpg\",\"front\":\"images/cube_2048/53/a50f32252f4b6c6e29cc53c1ae2e79b8/53_f.jpg\",\"index\":53,\"left\":\"images/cube_2048/53/a50f32252f4b6c6e29cc53c1ae2e79b8/53_l.jpg\",\"right\":\"images/cube_2048/53/a50f32252f4b6c6e29cc53c1ae2e79b8/53_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/53/a50f32252f4b6c6e29cc53c1ae2e79b8/53_u.jpg\"},{\"back\":\"images/cube_2048/54/58d6b2ca288818e178edbfe3a88a4734/54_b.jpg\",\"derived_id\":1688749470,\"derived_id_str\":\"1688749470\",\"down\":\"images/cube_2048/54/58d6b2ca288818e178edbfe3a88a4734/54_d.jpg\",\"front\":\"images/cube_2048/54/58d6b2ca288818e178edbfe3a88a4734/54_f.jpg\",\"index\":54,\"left\":\"images/cube_2048/54/58d6b2ca288818e178edbfe3a88a4734/54_l.jpg\",\"right\":\"images/cube_2048/54/58d6b2ca288818e178edbfe3a88a4734/54_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/54/58d6b2ca288818e178edbfe3a88a4734/54_u.jpg\"},{\"back\":\"images/cube_2048/55/a8db5f3651331090e73aab6dd60e3413/55_b.jpg\",\"derived_id\":1688749517,\"derived_id_str\":\"1688749517\",\"down\":\"images/cube_2048/55/a8db5f3651331090e73aab6dd60e3413/55_d.jpg\",\"front\":\"images/cube_2048/55/a8db5f3651331090e73aab6dd60e3413/55_f.jpg\",\"index\":55,\"left\":\"images/cube_2048/55/a8db5f3651331090e73aab6dd60e3413/55_l.jpg\",\"right\":\"images/cube_2048/55/a8db5f3651331090e73aab6dd60e3413/55_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/55/a8db5f3651331090e73aab6dd60e3413/55_u.jpg\"},{\"back\":\"images/cube_2048/56/0a6d4b43da0b7c23588ab38207bedabb/56_b.jpg\",\"derived_id\":1688749565,\"derived_id_str\":\"1688749565\",\"down\":\"images/cube_2048/56/0a6d4b43da0b7c23588ab38207bedabb/56_d.jpg\",\"front\":\"images/cube_2048/56/0a6d4b43da0b7c23588ab38207bedabb/56_f.jpg\",\"index\":56,\"left\":\"images/cube_2048/56/0a6d4b43da0b7c23588ab38207bedabb/56_l.jpg\",\"right\":\"images/cube_2048/56/0a6d4b43da0b7c23588ab38207bedabb/56_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/56/0a6d4b43da0b7c23588ab38207bedabb/56_u.jpg\"},{\"back\":\"images/cube_2048/57/c0839a1814c0bea99eaace387f8da621/57_b.jpg\",\"derived_id\":1688749615,\"derived_id_str\":\"1688749615\",\"down\":\"images/cube_2048/57/c0839a1814c0bea99eaace387f8da621/57_d.jpg\",\"front\":\"images/cube_2048/57/c0839a1814c0bea99eaace387f8da621/57_f.jpg\",\"index\":57,\"left\":\"images/cube_2048/57/c0839a1814c0bea99eaace387f8da621/57_l.jpg\",\"right\":\"images/cube_2048/57/c0839a1814c0bea99eaace387f8da621/57_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/57/c0839a1814c0bea99eaace387f8da621/57_u.jpg\"},{\"back\":\"images/cube_2048/58/b512f10f3bc24c01375dbb19e3057f3e/58_b.jpg\",\"derived_id\":1688749671,\"derived_id_str\":\"1688749671\",\"down\":\"images/cube_2048/58/b512f10f3bc24c01375dbb19e3057f3e/58_d.jpg\",\"front\":\"images/cube_2048/58/b512f10f3bc24c01375dbb19e3057f3e/58_f.jpg\",\"index\":58,\"left\":\"images/cube_2048/58/b512f10f3bc24c01375dbb19e3057f3e/58_l.jpg\",\"right\":\"images/cube_2048/58/b512f10f3bc24c01375dbb19e3057f3e/58_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/58/b512f10f3bc24c01375dbb19e3057f3e/58_u.jpg\"},{\"back\":\"images/cube_2048/59/141546f7e63fabb3f38cfd03a2871cd0/59_b.jpg\",\"derived_id\":1688749732,\"derived_id_str\":\"1688749732\",\"down\":\"images/cube_2048/59/141546f7e63fabb3f38cfd03a2871cd0/59_d.jpg\",\"front\":\"images/cube_2048/59/141546f7e63fabb3f38cfd03a2871cd0/59_f.jpg\",\"index\":59,\"left\":\"images/cube_2048/59/141546f7e63fabb3f38cfd03a2871cd0/59_l.jpg\",\"right\":\"images/cube_2048/59/141546f7e63fabb3f38cfd03a2871cd0/59_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/59/141546f7e63fabb3f38cfd03a2871cd0/59_u.jpg\"},{\"back\":\"images/cube_2048/60/747b22e802ff6a39917adef8d3ba2a65/60_b.jpg\",\"derived_id\":1688749783,\"derived_id_str\":\"1688749783\",\"down\":\"images/cube_2048/60/747b22e802ff6a39917adef8d3ba2a65/60_d.jpg\",\"front\":\"images/cube_2048/60/747b22e802ff6a39917adef8d3ba2a65/60_f.jpg\",\"index\":60,\"left\":\"images/cube_2048/60/747b22e802ff6a39917adef8d3ba2a65/60_l.jpg\",\"right\":\"images/cube_2048/60/747b22e802ff6a39917adef8d3ba2a65/60_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/60/747b22e802ff6a39917adef8d3ba2a65/60_u.jpg\"},{\"back\":\"images/cube_2048/61/7ee5743bee03f7cf8f7a9182a836c04c/61_b.jpg\",\"derived_id\":1688749830,\"derived_id_str\":\"1688749830\",\"down\":\"images/cube_2048/61/7ee5743bee03f7cf8f7a9182a836c04c/61_d.jpg\",\"front\":\"images/cube_2048/61/7ee5743bee03f7cf8f7a9182a836c04c/61_f.jpg\",\"index\":61,\"left\":\"images/cube_2048/61/7ee5743bee03f7cf8f7a9182a836c04c/61_l.jpg\",\"right\":\"images/cube_2048/61/7ee5743bee03f7cf8f7a9182a836c04c/61_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/61/7ee5743bee03f7cf8f7a9182a836c04c/61_u.jpg\"},{\"back\":\"images/cube_2048/62/b14dd5f6b4aaa58f0e9d7f27422730a6/62_b.jpg\",\"derived_id\":1688749881,\"derived_id_str\":\"1688749881\",\"down\":\"images/cube_2048/62/b14dd5f6b4aaa58f0e9d7f27422730a6/62_d.jpg\",\"front\":\"images/cube_2048/62/b14dd5f6b4aaa58f0e9d7f27422730a6/62_f.jpg\",\"index\":62,\"left\":\"images/cube_2048/62/b14dd5f6b4aaa58f0e9d7f27422730a6/62_l.jpg\",\"right\":\"images/cube_2048/62/b14dd5f6b4aaa58f0e9d7f27422730a6/62_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/62/b14dd5f6b4aaa58f0e9d7f27422730a6/62_u.jpg\"},{\"back\":\"images/cube_2048/63/c5eefbac7db2e7e81944fc61698c80ce/63_b.jpg\",\"derived_id\":1688749935,\"derived_id_str\":\"1688749935\",\"down\":\"images/cube_2048/63/c5eefbac7db2e7e81944fc61698c80ce/63_d.jpg\",\"front\":\"images/cube_2048/63/c5eefbac7db2e7e81944fc61698c80ce/63_f.jpg\",\"index\":63,\"left\":\"images/cube_2048/63/c5eefbac7db2e7e81944fc61698c80ce/63_l.jpg\",\"right\":\"images/cube_2048/63/c5eefbac7db2e7e81944fc61698c80ce/63_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/63/c5eefbac7db2e7e81944fc61698c80ce/63_u.jpg\"},{\"back\":\"images/cube_2048/64/ad3fa2e7d7f9859852ed6897db575613/64_b.jpg\",\"derived_id\":1688749993,\"derived_id_str\":\"1688749993\",\"down\":\"images/cube_2048/64/ad3fa2e7d7f9859852ed6897db575613/64_d.jpg\",\"front\":\"images/cube_2048/64/ad3fa2e7d7f9859852ed6897db575613/64_f.jpg\",\"index\":64,\"left\":\"images/cube_2048/64/ad3fa2e7d7f9859852ed6897db575613/64_l.jpg\",\"right\":\"images/cube_2048/64/ad3fa2e7d7f9859852ed6897db575613/64_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/64/ad3fa2e7d7f9859852ed6897db575613/64_u.jpg\"},{\"back\":\"images/cube_2048/65/276b17971697d5651b73d598e2700272/65_b.jpg\",\"derived_id\":1688750040,\"derived_id_str\":\"1688750040\",\"down\":\"images/cube_2048/65/276b17971697d5651b73d598e2700272/65_d.jpg\",\"front\":\"images/cube_2048/65/276b17971697d5651b73d598e2700272/65_f.jpg\",\"index\":65,\"left\":\"images/cube_2048/65/276b17971697d5651b73d598e2700272/65_l.jpg\",\"right\":\"images/cube_2048/65/276b17971697d5651b73d598e2700272/65_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/65/276b17971697d5651b73d598e2700272/65_u.jpg\"},{\"back\":\"images/cube_2048/66/7cadd3b28514ac4e38e34d560bc0ae2c/66_b.jpg\",\"derived_id\":1688750090,\"derived_id_str\":\"1688750090\",\"down\":\"images/cube_2048/66/7cadd3b28514ac4e38e34d560bc0ae2c/66_d.jpg\",\"front\":\"images/cube_2048/66/7cadd3b28514ac4e38e34d560bc0ae2c/66_f.jpg\",\"index\":66,\"left\":\"images/cube_2048/66/7cadd3b28514ac4e38e34d560bc0ae2c/66_l.jpg\",\"right\":\"images/cube_2048/66/7cadd3b28514ac4e38e34d560bc0ae2c/66_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/66/7cadd3b28514ac4e38e34d560bc0ae2c/66_u.jpg\"},{\"back\":\"images/cube_2048/67/6ef533f784f6910b7be03c20a646cd28/67_b.jpg\",\"derived_id\":1688750141,\"derived_id_str\":\"1688750141\",\"down\":\"images/cube_2048/67/6ef533f784f6910b7be03c20a646cd28/67_d.jpg\",\"front\":\"images/cube_2048/67/6ef533f784f6910b7be03c20a646cd28/67_f.jpg\",\"index\":67,\"left\":\"images/cube_2048/67/6ef533f784f6910b7be03c20a646cd28/67_l.jpg\",\"right\":\"images/cube_2048/67/6ef533f784f6910b7be03c20a646cd28/67_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/67/6ef533f784f6910b7be03c20a646cd28/67_u.jpg\"},{\"back\":\"images/cube_2048/68/1a8dd5496f4f6cd64d0f828fe57494e6/68_b.jpg\",\"derived_id\":1688750193,\"derived_id_str\":\"1688750193\",\"down\":\"images/cube_2048/68/1a8dd5496f4f6cd64d0f828fe57494e6/68_d.jpg\",\"front\":\"images/cube_2048/68/1a8dd5496f4f6cd64d0f828fe57494e6/68_f.jpg\",\"index\":68,\"left\":\"images/cube_2048/68/1a8dd5496f4f6cd64d0f828fe57494e6/68_l.jpg\",\"right\":\"images/cube_2048/68/1a8dd5496f4f6cd64d0f828fe57494e6/68_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/68/1a8dd5496f4f6cd64d0f828fe57494e6/68_u.jpg\"},{\"back\":\"images/cube_2048/69/fa6932164be3918791916f8f48580ff1/69_b.jpg\",\"derived_id\":1688750237,\"derived_id_str\":\"1688750237\",\"down\":\"images/cube_2048/69/fa6932164be3918791916f8f48580ff1/69_d.jpg\",\"front\":\"images/cube_2048/69/fa6932164be3918791916f8f48580ff1/69_f.jpg\",\"index\":69,\"left\":\"images/cube_2048/69/fa6932164be3918791916f8f48580ff1/69_l.jpg\",\"right\":\"images/cube_2048/69/fa6932164be3918791916f8f48580ff1/69_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/69/fa6932164be3918791916f8f48580ff1/69_u.jpg\"},{\"back\":\"images/cube_2048/70/eb7b7ea2af94241c0d66e826864878fb/70_b.jpg\",\"derived_id\":1688750291,\"derived_id_str\":\"1688750291\",\"down\":\"images/cube_2048/70/eb7b7ea2af94241c0d66e826864878fb/70_d.jpg\",\"front\":\"images/cube_2048/70/eb7b7ea2af94241c0d66e826864878fb/70_f.jpg\",\"index\":70,\"left\":\"images/cube_2048/70/eb7b7ea2af94241c0d66e826864878fb/70_l.jpg\",\"right\":\"images/cube_2048/70/eb7b7ea2af94241c0d66e826864878fb/70_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/70/eb7b7ea2af94241c0d66e826864878fb/70_u.jpg\"},{\"back\":\"images/cube_2048/71/67190870421576023a9f8fe22f420655/71_b.jpg\",\"derived_id\":1688750340,\"derived_id_str\":\"1688750340\",\"down\":\"images/cube_2048/71/67190870421576023a9f8fe22f420655/71_d.jpg\",\"front\":\"images/cube_2048/71/67190870421576023a9f8fe22f420655/71_f.jpg\",\"index\":71,\"left\":\"images/cube_2048/71/67190870421576023a9f8fe22f420655/71_l.jpg\",\"right\":\"images/cube_2048/71/67190870421576023a9f8fe22f420655/71_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/71/67190870421576023a9f8fe22f420655/71_u.jpg\"},{\"back\":\"images/cube_2048/72/d6cba75f3cfdd37ebe63885762b89b60/72_b.jpg\",\"derived_id\":1688750391,\"derived_id_str\":\"1688750391\",\"down\":\"images/cube_2048/72/d6cba75f3cfdd37ebe63885762b89b60/72_d.jpg\",\"front\":\"images/cube_2048/72/d6cba75f3cfdd37ebe63885762b89b60/72_f.jpg\",\"index\":72,\"left\":\"images/cube_2048/72/d6cba75f3cfdd37ebe63885762b89b60/72_l.jpg\",\"right\":\"images/cube_2048/72/d6cba75f3cfdd37ebe63885762b89b60/72_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/72/d6cba75f3cfdd37ebe63885762b89b60/72_u.jpg\"},{\"back\":\"images/cube_2048/73/34cf52238f106906deb30ba2ace36d4b/73_b.jpg\",\"derived_id\":1688750446,\"derived_id_str\":\"1688750446\",\"down\":\"images/cube_2048/73/34cf52238f106906deb30ba2ace36d4b/73_d.jpg\",\"front\":\"images/cube_2048/73/34cf52238f106906deb30ba2ace36d4b/73_f.jpg\",\"index\":73,\"left\":\"images/cube_2048/73/34cf52238f106906deb30ba2ace36d4b/73_l.jpg\",\"right\":\"images/cube_2048/73/34cf52238f106906deb30ba2ace36d4b/73_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/73/34cf52238f106906deb30ba2ace36d4b/73_u.jpg\"},{\"back\":\"images/cube_2048/74/7db27fdf4b1a13f2500279c0d8015380/74_b.jpg\",\"derived_id\":1688750510,\"derived_id_str\":\"1688750510\",\"down\":\"images/cube_2048/74/7db27fdf4b1a13f2500279c0d8015380/74_d.jpg\",\"front\":\"images/cube_2048/74/7db27fdf4b1a13f2500279c0d8015380/74_f.jpg\",\"index\":74,\"left\":\"images/cube_2048/74/7db27fdf4b1a13f2500279c0d8015380/74_l.jpg\",\"right\":\"images/cube_2048/74/7db27fdf4b1a13f2500279c0d8015380/74_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/74/7db27fdf4b1a13f2500279c0d8015380/74_u.jpg\"},{\"back\":\"images/cube_2048/75/60af5269fb95f558728c3c4d743abf81/75_b.jpg\",\"derived_id\":1688750563,\"derived_id_str\":\"1688750563\",\"down\":\"images/cube_2048/75/60af5269fb95f558728c3c4d743abf81/75_d.jpg\",\"front\":\"images/cube_2048/75/60af5269fb95f558728c3c4d743abf81/75_f.jpg\",\"index\":75,\"left\":\"images/cube_2048/75/60af5269fb95f558728c3c4d743abf81/75_l.jpg\",\"right\":\"images/cube_2048/75/60af5269fb95f558728c3c4d743abf81/75_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/75/60af5269fb95f558728c3c4d743abf81/75_u.jpg\"},{\"back\":\"images/cube_2048/76/5d5758707cfed5122d6cd1616863ec99/76_b.jpg\",\"derived_id\":1688750621,\"derived_id_str\":\"1688750621\",\"down\":\"images/cube_2048/76/5d5758707cfed5122d6cd1616863ec99/76_d.jpg\",\"front\":\"images/cube_2048/76/5d5758707cfed5122d6cd1616863ec99/76_f.jpg\",\"index\":76,\"left\":\"images/cube_2048/76/5d5758707cfed5122d6cd1616863ec99/76_l.jpg\",\"right\":\"images/cube_2048/76/5d5758707cfed5122d6cd1616863ec99/76_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/76/5d5758707cfed5122d6cd1616863ec99/76_u.jpg\"},{\"back\":\"images/cube_2048/77/9d448f69e02ee06ed5aa8d669034fe11/77_b.jpg\",\"derived_id\":1688750673,\"derived_id_str\":\"1688750673\",\"down\":\"images/cube_2048/77/9d448f69e02ee06ed5aa8d669034fe11/77_d.jpg\",\"front\":\"images/cube_2048/77/9d448f69e02ee06ed5aa8d669034fe11/77_f.jpg\",\"index\":77,\"left\":\"images/cube_2048/77/9d448f69e02ee06ed5aa8d669034fe11/77_l.jpg\",\"right\":\"images/cube_2048/77/9d448f69e02ee06ed5aa8d669034fe11/77_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/77/9d448f69e02ee06ed5aa8d669034fe11/77_u.jpg\"},{\"back\":\"images/cube_2048/78/a68c22f68d1a11f946f23e2f0d35745b/78_b.jpg\",\"derived_id\":1688750725,\"derived_id_str\":\"1688750725\",\"down\":\"images/cube_2048/78/a68c22f68d1a11f946f23e2f0d35745b/78_d.jpg\",\"front\":\"images/cube_2048/78/a68c22f68d1a11f946f23e2f0d35745b/78_f.jpg\",\"index\":78,\"left\":\"images/cube_2048/78/a68c22f68d1a11f946f23e2f0d35745b/78_l.jpg\",\"right\":\"images/cube_2048/78/a68c22f68d1a11f946f23e2f0d35745b/78_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/78/a68c22f68d1a11f946f23e2f0d35745b/78_u.jpg\"},{\"back\":\"images/cube_2048/79/657b15e89a4ee1c4fe65bc8164d7ff34/79_b.jpg\",\"derived_id\":1688750774,\"derived_id_str\":\"1688750774\",\"down\":\"images/cube_2048/79/657b15e89a4ee1c4fe65bc8164d7ff34/79_d.jpg\",\"front\":\"images/cube_2048/79/657b15e89a4ee1c4fe65bc8164d7ff34/79_f.jpg\",\"index\":79,\"left\":\"images/cube_2048/79/657b15e89a4ee1c4fe65bc8164d7ff34/79_l.jpg\",\"right\":\"images/cube_2048/79/657b15e89a4ee1c4fe65bc8164d7ff34/79_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/79/657b15e89a4ee1c4fe65bc8164d7ff34/79_u.jpg\"},{\"back\":\"images/cube_2048/80/c2efc158c1a64af16b65ee4eeb36e258/80_b.jpg\",\"derived_id\":1688750824,\"derived_id_str\":\"1688750824\",\"down\":\"images/cube_2048/80/c2efc158c1a64af16b65ee4eeb36e258/80_d.jpg\",\"front\":\"images/cube_2048/80/c2efc158c1a64af16b65ee4eeb36e258/80_f.jpg\",\"index\":80,\"left\":\"images/cube_2048/80/c2efc158c1a64af16b65ee4eeb36e258/80_l.jpg\",\"right\":\"images/cube_2048/80/c2efc158c1a64af16b65ee4eeb36e258/80_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/80/c2efc158c1a64af16b65ee4eeb36e258/80_u.jpg\"},{\"back\":\"images/cube_2048/81/f683d86d2ed160f0aa9d2738e2119983/81_b.jpg\",\"derived_id\":1688750869,\"derived_id_str\":\"1688750869\",\"down\":\"images/cube_2048/81/f683d86d2ed160f0aa9d2738e2119983/81_d.jpg\",\"front\":\"images/cube_2048/81/f683d86d2ed160f0aa9d2738e2119983/81_f.jpg\",\"index\":81,\"left\":\"images/cube_2048/81/f683d86d2ed160f0aa9d2738e2119983/81_l.jpg\",\"right\":\"images/cube_2048/81/f683d86d2ed160f0aa9d2738e2119983/81_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/81/f683d86d2ed160f0aa9d2738e2119983/81_u.jpg\"},{\"back\":\"images/cube_2048/82/47c50dd795f4dd2255e2aa45b6d78c6d/82_b.jpg\",\"derived_id\":1688750925,\"derived_id_str\":\"1688750925\",\"down\":\"images/cube_2048/82/47c50dd795f4dd2255e2aa45b6d78c6d/82_d.jpg\",\"front\":\"images/cube_2048/82/47c50dd795f4dd2255e2aa45b6d78c6d/82_f.jpg\",\"index\":82,\"left\":\"images/cube_2048/82/47c50dd795f4dd2255e2aa45b6d78c6d/82_l.jpg\",\"right\":\"images/cube_2048/82/47c50dd795f4dd2255e2aa45b6d78c6d/82_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/82/47c50dd795f4dd2255e2aa45b6d78c6d/82_u.jpg\"},{\"back\":\"images/cube_2048/83/0e2fd386a81129d742a7109b0a760faf/83_b.jpg\",\"derived_id\":1688750978,\"derived_id_str\":\"1688750978\",\"down\":\"images/cube_2048/83/0e2fd386a81129d742a7109b0a760faf/83_d.jpg\",\"front\":\"images/cube_2048/83/0e2fd386a81129d742a7109b0a760faf/83_f.jpg\",\"index\":83,\"left\":\"images/cube_2048/83/0e2fd386a81129d742a7109b0a760faf/83_l.jpg\",\"right\":\"images/cube_2048/83/0e2fd386a81129d742a7109b0a760faf/83_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/83/0e2fd386a81129d742a7109b0a760faf/83_u.jpg\"},{\"back\":\"images/cube_2048/84/836bef5a7adcf1c1812c20c33bb5d7da/84_b.jpg\",\"derived_id\":1688751029,\"derived_id_str\":\"1688751029\",\"down\":\"images/cube_2048/84/836bef5a7adcf1c1812c20c33bb5d7da/84_d.jpg\",\"front\":\"images/cube_2048/84/836bef5a7adcf1c1812c20c33bb5d7da/84_f.jpg\",\"index\":84,\"left\":\"images/cube_2048/84/836bef5a7adcf1c1812c20c33bb5d7da/84_l.jpg\",\"right\":\"images/cube_2048/84/836bef5a7adcf1c1812c20c33bb5d7da/84_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/84/836bef5a7adcf1c1812c20c33bb5d7da/84_u.jpg\"},{\"back\":\"images/cube_2048/85/cc46f103253dfbe6b141fd48ab985190/85_b.jpg\",\"derived_id\":1688751093,\"derived_id_str\":\"1688751093\",\"down\":\"images/cube_2048/85/cc46f103253dfbe6b141fd48ab985190/85_d.jpg\",\"front\":\"images/cube_2048/85/cc46f103253dfbe6b141fd48ab985190/85_f.jpg\",\"index\":85,\"left\":\"images/cube_2048/85/cc46f103253dfbe6b141fd48ab985190/85_l.jpg\",\"right\":\"images/cube_2048/85/cc46f103253dfbe6b141fd48ab985190/85_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/85/cc46f103253dfbe6b141fd48ab985190/85_u.jpg\"},{\"back\":\"images/cube_2048/86/00a3e0a90a7233b2e34df428708868b9/86_b.jpg\",\"derived_id\":1688751136,\"derived_id_str\":\"1688751136\",\"down\":\"images/cube_2048/86/00a3e0a90a7233b2e34df428708868b9/86_d.jpg\",\"front\":\"images/cube_2048/86/00a3e0a90a7233b2e34df428708868b9/86_f.jpg\",\"index\":86,\"left\":\"images/cube_2048/86/00a3e0a90a7233b2e34df428708868b9/86_l.jpg\",\"right\":\"images/cube_2048/86/00a3e0a90a7233b2e34df428708868b9/86_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/86/00a3e0a90a7233b2e34df428708868b9/86_u.jpg\"},{\"back\":\"images/cube_2048/87/d21d714417539e88f7851a568f97044c/87_b.jpg\",\"derived_id\":1688751183,\"derived_id_str\":\"1688751183\",\"down\":\"images/cube_2048/87/d21d714417539e88f7851a568f97044c/87_d.jpg\",\"front\":\"images/cube_2048/87/d21d714417539e88f7851a568f97044c/87_f.jpg\",\"index\":87,\"left\":\"images/cube_2048/87/d21d714417539e88f7851a568f97044c/87_l.jpg\",\"right\":\"images/cube_2048/87/d21d714417539e88f7851a568f97044c/87_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/87/d21d714417539e88f7851a568f97044c/87_u.jpg\"},{\"back\":\"images/cube_2048/88/5dbfff424b5676ae891a70c17cd6bfcd/88_b.jpg\",\"derived_id\":1688751232,\"derived_id_str\":\"1688751232\",\"down\":\"images/cube_2048/88/5dbfff424b5676ae891a70c17cd6bfcd/88_d.jpg\",\"front\":\"images/cube_2048/88/5dbfff424b5676ae891a70c17cd6bfcd/88_f.jpg\",\"index\":88,\"left\":\"images/cube_2048/88/5dbfff424b5676ae891a70c17cd6bfcd/88_l.jpg\",\"right\":\"images/cube_2048/88/5dbfff424b5676ae891a70c17cd6bfcd/88_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/88/5dbfff424b5676ae891a70c17cd6bfcd/88_u.jpg\"},{\"back\":\"images/cube_2048/89/c252b8185325b62116c6820f25931dda/89_b.jpg\",\"derived_id\":1688751285,\"derived_id_str\":\"1688751285\",\"down\":\"images/cube_2048/89/c252b8185325b62116c6820f25931dda/89_d.jpg\",\"front\":\"images/cube_2048/89/c252b8185325b62116c6820f25931dda/89_f.jpg\",\"index\":89,\"left\":\"images/cube_2048/89/c252b8185325b62116c6820f25931dda/89_l.jpg\",\"right\":\"images/cube_2048/89/c252b8185325b62116c6820f25931dda/89_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/89/c252b8185325b62116c6820f25931dda/89_u.jpg\"},{\"back\":\"images/cube_2048/90/d7b550ca9a7061829d6f3e1bb690af6a/90_b.jpg\",\"derived_id\":1688751330,\"derived_id_str\":\"1688751330\",\"down\":\"images/cube_2048/90/d7b550ca9a7061829d6f3e1bb690af6a/90_d.jpg\",\"front\":\"images/cube_2048/90/d7b550ca9a7061829d6f3e1bb690af6a/90_f.jpg\",\"index\":90,\"left\":\"images/cube_2048/90/d7b550ca9a7061829d6f3e1bb690af6a/90_l.jpg\",\"right\":\"images/cube_2048/90/d7b550ca9a7061829d6f3e1bb690af6a/90_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/90/d7b550ca9a7061829d6f3e1bb690af6a/90_u.jpg\"}]},\"picture_url\":\"https://global-image-1.realsee-cdn.com/release/screenshot/auto3d-light-g4dbE08PjBg0PLND-copy/46ace8107f9546b41933b2020de0ed40/1688745439_0/pc0_X8gnR0Dvh.jpg\",\"project_id\":\"auto3d-light-g4dbE08PjBg0PLND-copy\",\"resource_code\":\"AmOZy19n8fzkJdi0D6\",\"title_picture_url\":\"https://global-image-1.realsee-cdn.com/release/screenshot/auto3d-light-g4dbE08PjBg0PLND-copy/46ace8107f9546b41933b2020de0ed40/1688745439_0/pc1_WCZcPaarD.jpg\"}" \ No newline at end of file diff --git a/open-works/real/wO22lenv/work.json b/open-works/real/wO22lenv/work.json new file mode 100644 index 000000000..fdb47e3bb --- /dev/null +++ b/open-works/real/wO22lenv/work.json @@ -0,0 +1 @@ +"{\"_signature\":\"FSGzvPzQcbvHFlC/FyUUzUdTTWQXQUZsTK41BfQEfjIrft4lHBsu6tuwumQwk36JNPymGYFsvxNyH7+Z3zqU2/IHsMo/5fmBNhteH+uAmtOxVWf9TUKExLXArd3Z8J9h6ee0YzlXgCdQ/OEvO1Nc5FPRT/eApL+gb56BPChKt90=\",\"allow_hosts\":[\"share.3dvr.pro\",\"rsvr.cn\",\"realsee.com\",\"realsee.cn\",\"rushivr.cn\",\"rushivr.com\"],\"base_url\":\"https://vr-public.realsee-cdn.cn/release/auto3dhd/647fc2cb0fc96cfa3fc42125c9fcd9f8/\",\"basic_code\":\"80XJ6NML4p5X1MRdx8\",\"certificate\":\"-----BEGIN CERTIFICATE-----\\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\\n-----END CERTIFICATE-----\",\"create_time\":\"2024-02-04 10:59:00\",\"expire_at\":\"1721811735080\",\"from_type\":\"vr\",\"initial\":{\"derivedId\":1706760829,\"distance\":0,\"fov\":120,\"heading\":0,\"latitude\":0.018703431642030966,\"longitude\":1.5702109849759034,\"mode\":\"Panorama\",\"offset\":{\"x\":-6.0618217914,\"y\":-0.1098956757,\"z\":6.4637667417},\"panoIndex\":28,\"pano_index\":28,\"workCode\":\"bx97gw3NwdCb8MnhyD\"},\"is_active\":true,\"model\":{\"file_url\":\"model/0a48ed0ba709f3e69268a3f6d1255423/auto3d-light-ryadVvd3pom2plvx.at3d\",\"layers\":[{\"name\":\"galois\",\"tileset_url\":\"http://vrlab-public.ljcdn.com/release/auto3dhd/647fc2cb0fc96cfa3fc42125c9fcd9f8/mesh/5b38a718c5f8fb62fd51de06757e4360/tileset.json\",\"tileset_url_checksum\":\"5b38a718c5f8fb62fd51de06757e4360\",\"type\":\"mesh\",\"up_axis\":\"Z\"}],\"material_base_url\":\"materials/0a48ed0ba709f3e69268a3f6d1255423/\",\"material_textures\":[\"texture_0.jpg\",\"texture_1.jpg\",\"texture_2.jpg\",\"texture_3.jpg\",\"texture_4.jpg\",\"texture_5.jpg\",\"texture_6.jpg\",\"texture_7.jpg\",\"texture_8.jpg\",\"texture_9.jpg\",\"texture_10.jpg\",\"texture_11.jpg\",\"texture_12.jpg\",\"texture_13.jpg\",\"texture_14.jpg\",\"texture_15.jpg\"],\"tiles\":null,\"type\":0},\"name\":\"伽罗华-如园\",\"observers\":[{\"accessible_nodes\":[1,3,4,7,8,9,10,13,14,15,16,17,27],\"floor_index\":0,\"index\":0,\"offset_point_count\":0,\"position\":[1.5069355039,-0.1000837361,3.2181548644],\"quaternion\":{\"w\":-0.29403069510023233,\"x\":-0.0027744615410455094,\"y\":-0.9557885596066736,\"z\":0.0025459802542536322},\"standing_position\":[1.5069355039,-1.404388574280542,3.2181548644],\"visible_nodes\":[1,3,4,7,8,9,10,13,14,15,16,17,27]},{\"accessible_nodes\":[0,2,4],\"floor_index\":0,\"index\":1,\"offset_point_count\":0,\"position\":[2.3844640485,-0.1185622643,3.8730191255],\"quaternion\":{\"w\":0.27367203619309155,\"x\":-0.00468525128004598,\"y\":-0.9618083120092069,\"z\":0.002536924400146748},\"standing_position\":[2.3844640485,-1.4239181707865112,3.8730191255],\"visible_nodes\":[0,2,4]},{\"accessible_nodes\":[1,3],\"floor_index\":0,\"index\":2,\"offset_point_count\":0,\"position\":[2.3421526015,-0.0991433282,2.0668753431],\"quaternion\":{\"w\":0.1937999480669185,\"x\":-0.008095481881608305,\"y\":-0.9810074917272549,\"z\":0.0005869141467883881},\"standing_position\":[2.3421526015,-1.4218872208696778,2.0668753431],\"visible_nodes\":[1,3]},{\"accessible_nodes\":[0,2,4,5,6,7,8,9,10,13,14,15,16,17,18],\"floor_index\":0,\"index\":3,\"offset_point_count\":0,\"position\":[-0.1805514945,-0.117101671,4.3645093693],\"quaternion\":{\"w\":-0.8084797474162672,\"x\":0.00023287591541058922,\"y\":-0.5885221095464468,\"z\":-0.0014732100305766538},\"standing_position\":[-0.1805514945,-1.4309960620598754,4.3645093693],\"visible_nodes\":[0,2,4,5,6,7,8,9,10,13,14,15,16,17,18]},{\"accessible_nodes\":[0,1,3,5,6,7,8,9,10,13,14,15,16,17,18,27,40],\"floor_index\":0,\"index\":4,\"offset_point_count\":0,\"position\":[-0.1370336255,-0.1084163334,2.7099245814],\"quaternion\":{\"w\":0.057992426239770224,\"x\":0.00044783972931587365,\"y\":-0.9983169105674811,\"z\":-0.00015496647243202306},\"standing_position\":[-0.1370336255,-1.4270069744217284,2.7099245814],\"visible_nodes\":[0,1,3,5,6,7,8,9,10,13,14,15,16,17,18,27,40]},{\"accessible_nodes\":[3,4,6,8],\"floor_index\":0,\"index\":5,\"offset_point_count\":0,\"position\":[-0.0652632726,-0.1063021526,1.4402191934],\"quaternion\":{\"w\":0.725473067313729,\"x\":-0.001160875170737698,\"y\":-0.6882427759155921,\"z\":-0.0030597964827141356},\"standing_position\":[-0.0652632726,-1.4192106828352906,1.4402191934],\"visible_nodes\":[3,4,6,8]},{\"accessible_nodes\":[3,4,5],\"floor_index\":0,\"index\":6,\"offset_point_count\":0,\"position\":[-0.1526623705,-0.1054648803,-0.0245079997],\"quaternion\":{\"w\":0.013750624109242259,\"x\":-0.00319488901150774,\"y\":-0.9998928878259911,\"z\":-0.0038634027924720517},\"standing_position\":[-0.1526623705,-1.4117775605444458,-0.0245079997],\"visible_nodes\":[3,4,5]},{\"accessible_nodes\":[0,3,4,8,9,10,13,14,15,16,17,18,22,27,40],\"floor_index\":0,\"index\":7,\"offset_point_count\":0,\"position\":[-1.7183054602,-0.1025586706,2.7326020524],\"quaternion\":{\"w\":0.7813325996321278,\"x\":-0.011219480570571518,\"y\":-0.6240140157079808,\"z\":0.000013720885724551575},\"standing_position\":[-1.7183054602,-1.424279985983911,2.7326020524],\"visible_nodes\":[0,3,4,8,9,10,13,14,15,16,17,18,22,27,40]},{\"accessible_nodes\":[0,3,4,5,7,9,10,13,14,15,16,20],\"floor_index\":0,\"index\":8,\"offset_point_count\":0,\"position\":[-1.7500800139,-0.1115837744,4.8770006346],\"quaternion\":{\"w\":-0.9637286023305524,\"x\":0.000025169949238136403,\"y\":0.2668755436468655,\"z\":0.002150487694344802},\"standing_position\":[-1.7500800139,-1.4282332113506837,4.8770006346],\"visible_nodes\":[0,3,4,5,7,9,10,13,14,15,16,20]},{\"accessible_nodes\":[0,3,4,7,8,10,11,13,14,15,19],\"floor_index\":0,\"index\":9,\"offset_point_count\":0,\"position\":[-3.8479967308,-0.1099421088,4.5926850102],\"quaternion\":{\"w\":0.05462827005623617,\"x\":-0.001162865232879034,\"y\":-0.9985039686200551,\"z\":-0.002055360634005453},\"standing_position\":[-3.8479967308,-1.4221080843706786,4.5926850102],\"visible_nodes\":[0,3,4,7,8,10,11,13,14,15,19]},{\"accessible_nodes\":[0,3,4,7,8,9,11,13,14,15,16,17,18,21,22,27,41,42,43],\"floor_index\":0,\"index\":10,\"offset_point_count\":0,\"position\":[-3.8321256088,-0.1061018569,2.6934038144],\"quaternion\":{\"w\":-0.6897935543698472,\"x\":-0.0015173925138933142,\"y\":-0.7240041320496727,\"z\":-0.0007527528171103648},\"standing_position\":[-3.8321256088,-1.4183852536208863,2.6934038144],\"visible_nodes\":[0,3,4,7,8,9,11,13,14,15,16,17,18,21,22,27,41,42,43]},{\"accessible_nodes\":[9,10,12,27,37,41],\"floor_index\":0,\"index\":11,\"offset_point_count\":0,\"position\":[-3.7953096077,-0.0929485598,1.352213951],\"quaternion\":{\"w\":-0.9082255157448507,\"x\":-0.0003483452011811576,\"y\":-0.4183987415155974,\"z\":-0.00829363010003351},\"standing_position\":[-3.7953096077,-1.3984829225929687,1.352213951],\"visible_nodes\":[9,10,12,27,37,41]},{\"accessible_nodes\":[11,27,41],\"floor_index\":0,\"index\":12,\"offset_point_count\":0,\"position\":[-3.1390995063,-0.0775281615,0.6995271113],\"quaternion\":{\"w\":-0.9283437229819567,\"x\":0.008825427179798185,\"y\":-0.3679770844226837,\"z\":-0.05189324808515595},\"standing_position\":[-3.1390995063,-1.3864670223932496,0.6995271113],\"visible_nodes\":[11,27,41]},{\"accessible_nodes\":[0,3,4,7,8,9,10,14,15,16,17,18,21,22,27,28,37,38],\"floor_index\":0,\"index\":13,\"offset_point_count\":0,\"position\":[-5.3247057859,-0.1049326806,2.7114458509],\"quaternion\":{\"w\":-0.2706498698461102,\"x\":-0.00013419355250322395,\"y\":-0.9626757216737108,\"z\":-0.002021101011685584},\"standing_position\":[-5.3247057859,-1.4110551028183227,2.7114458509],\"visible_nodes\":[0,3,4,7,8,9,10,14,15,16,17,18,21,22,27,28,37,38]},{\"accessible_nodes\":[0,3,4,7,8,9,10,13,15,16,17,18,21,22,27],\"floor_index\":0,\"index\":14,\"offset_point_count\":0,\"position\":[-6.9060073072,-0.1052341121,2.7174890427],\"quaternion\":{\"w\":0.3295196047175542,\"x\":0.0006758312301807574,\"y\":-0.9441226544522697,\"z\":-0.006984747896792762},\"standing_position\":[-6.9060073072,-1.4148391145032593,2.7174890427],\"visible_nodes\":[0,3,4,7,8,9,10,13,15,16,17,18,21,22,27]},{\"accessible_nodes\":[0,3,4,7,8,9,10,13,14,16,17,18,19,20,21,22],\"floor_index\":0,\"index\":15,\"offset_point_count\":0,\"position\":[-8.3774401385,-0.1032658164,2.6795756428],\"quaternion\":{\"w\":0.5917080784295788,\"x\":0.0016303443881389428,\"y\":-0.8061435114946967,\"z\":-0.0033956974297596003},\"standing_position\":[-8.3774401385,-1.4169177357649292,2.6795756428],\"visible_nodes\":[0,3,4,7,8,9,10,13,14,16,17,18,19,20,21,22]},{\"accessible_nodes\":[0,3,4,7,8,10,13,14,15,17,18,19,20,21,22,54,55],\"floor_index\":0,\"index\":16,\"offset_point_count\":0,\"position\":[-9.7960119348,-0.0987998115,2.6866997063],\"quaternion\":{\"w\":-0.946286010516905,\"x\":-0.0010540711147733705,\"y\":0.32327505122674016,\"z\":0.005909019247727821},\"standing_position\":[-9.7960119348,-1.4107298718866577,2.6866997063],\"visible_nodes\":[0,3,4,7,8,10,13,14,15,17,18,19,20,21,22,54,55]},{\"accessible_nodes\":[0,3,4,7,10,13,14,15,16,18,19,20,21,22,54,55],\"floor_index\":0,\"index\":17,\"offset_point_count\":0,\"position\":[-12.2420620314,-0.0899988865,2.6333892395],\"quaternion\":{\"w\":-0.9955442660801176,\"x\":0.0013937993490370146,\"y\":0.09425956838110923,\"z\":0.002192114905741782},\"standing_position\":[-12.2420620314,-1.3994886135202638,2.6333892395],\"visible_nodes\":[0,3,4,7,10,13,14,15,16,18,19,20,21,22,54,55]},{\"accessible_nodes\":[3,4,7,10,13,14,15,16,17,19,20,21,22,54,55],\"floor_index\":0,\"index\":18,\"offset_point_count\":0,\"position\":[-13.9208443692,-0.0876946578,2.7533998364],\"quaternion\":{\"w\":-0.9172792719232241,\"x\":0.004478266189736621,\"y\":0.3982173399973803,\"z\":0.0012777144168347162},\"standing_position\":[-13.9208443692,-1.4005191454861572,2.7533998364],\"visible_nodes\":[3,4,7,10,13,14,15,16,17,19,20,21,22,54,55]},{\"accessible_nodes\":[9,15,16,17,18,20,21,22,23,54,55],\"floor_index\":0,\"index\":19,\"offset_point_count\":0,\"position\":[-13.8526419153,-0.0835123228,0.4668103913],\"quaternion\":{\"w\":-0.9036981281655949,\"x\":0.004835711770113605,\"y\":0.42812244729924365,\"z\":0.004180808150692144},\"standing_position\":[-13.8526419153,-1.3873027728961305,0.4668103913],\"visible_nodes\":[9,15,16,17,18,20,21,22,23,54,55]},{\"accessible_nodes\":[8,15,16,17,18,19,21,22,23,24,54,55],\"floor_index\":0,\"index\":20,\"offset_point_count\":0,\"position\":[-15.9620502203,-0.0655855929,0.5166855285],\"quaternion\":{\"w\":-0.9820444094209793,\"x\":0.009256729240340404,\"y\":0.18790905149473158,\"z\":-0.013902491393489888},\"standing_position\":[-15.9620502203,-1.4010402952773193,0.5166855285],\"visible_nodes\":[8,15,16,17,18,19,21,22,23,24,54,55]},{\"accessible_nodes\":[10,13,14,15,16,17,18,19,20,22,23,24,54,55],\"floor_index\":0,\"index\":21,\"offset_point_count\":0,\"position\":[-16.8140617562,-0.0650245873,1.6964552865],\"quaternion\":{\"w\":-0.9620663161523741,\"x\":0.008755902538703814,\"y\":-0.2716407150550409,\"z\":-0.023728873095047953},\"standing_position\":[-16.8140617562,-1.390917035725293,1.6964552865],\"visible_nodes\":[10,13,14,15,16,17,18,19,20,22,23,24,54,55]},{\"accessible_nodes\":[7,10,13,14,15,16,17,18,19,20,21,23,24,54,55],\"floor_index\":0,\"index\":22,\"offset_point_count\":0,\"position\":[-16.0205851301,-0.0725220308,2.8303743829],\"quaternion\":{\"w\":-0.7969557937865384,\"x\":-0.00004220791926076766,\"y\":-0.6037776902138733,\"z\":-0.017718965561994086},\"standing_position\":[-16.0205851301,-1.3879158363038453,2.8303743829],\"visible_nodes\":[7,10,13,14,15,16,17,18,19,20,21,23,24,54,55]},{\"accessible_nodes\":[19,20,21,22,24,25],\"floor_index\":0,\"index\":23,\"offset_point_count\":0,\"position\":[-16.8326104493,-0.0730678373,4.1037692033],\"quaternion\":{\"w\":0.2762253602049881,\"x\":-0.03471260798409373,\"y\":-0.9603891240403548,\"z\":-0.012137364827665503},\"standing_position\":[-16.8326104493,-1.3910457425734375,4.1037692033],\"visible_nodes\":[19,20,21,22,24,25]},{\"accessible_nodes\":[20,21,22,23,25,26],\"floor_index\":0,\"index\":24,\"offset_point_count\":0,\"position\":[-16.8676701031,-0.086105935,5.3344107712],\"quaternion\":{\"w\":0.7065506746578549,\"x\":0.006018113065558585,\"y\":-0.7076252603779772,\"z\":-0.004051830658883543},\"standing_position\":[-16.8676701031,-1.3975499791131591,5.3344107712],\"visible_nodes\":[20,21,22,23,25,26]},{\"accessible_nodes\":[23,24,26],\"floor_index\":0,\"index\":25,\"offset_point_count\":0,\"position\":[-15.8831342573,-0.0865434995,5.223862085],\"quaternion\":{\"w\":-0.8678922152116586,\"x\":-0.0011767219559066287,\"y\":0.4967219780221956,\"z\":0.005384667753771978},\"standing_position\":[-15.8831342573,-1.3959603896443482,5.223862085],\"visible_nodes\":[23,24,26]},{\"accessible_nodes\":[24,25],\"floor_index\":0,\"index\":26,\"offset_point_count\":0,\"position\":[-13.7204011386,-0.0837568413,5.3012837877],\"quaternion\":{\"w\":-0.9610338853677325,\"x\":0.0012235933278773468,\"y\":0.2763594531564032,\"z\":0.006150337324201932},\"standing_position\":[-13.7204011386,-1.400377787230481,5.3012837877],\"visible_nodes\":[24,25]},{\"accessible_nodes\":[0,4,7,10,11,12,13,14,28,37,38,40,41,42,43],\"floor_index\":0,\"index\":27,\"offset_point_count\":0,\"position\":[-6.0867281836,-0.1051434685,4.5607775137],\"quaternion\":{\"w\":0.38052132313709425,\"x\":-0.005784066274990404,\"y\":-0.9247466394234694,\"z\":-0.003704064447463579},\"standing_position\":[-6.0867281836,-1.4185583997973024,4.5607775137],\"visible_nodes\":[0,4,7,10,11,12,13,14,28,37,38,40,41,42,43]},{\"accessible_nodes\":[13,27,29,30,32,33,34,35,37,38,40,41,42,46,49],\"floor_index\":0,\"index\":28,\"offset_point_count\":0,\"position\":[-6.0618217914,-0.1098956757,6.4637667417],\"quaternion\":{\"w\":0.40342413093116575,\"x\":-0.009793213527256431,\"y\":-0.9149548843249048,\"z\":-0.0032593245591559976},\"standing_position\":[-6.0618217914,-1.4214540415218384,6.4637667417],\"visible_nodes\":[13,27,29,30,32,33,34,35,37,38,40,41,42,46,49]},{\"accessible_nodes\":[28,30,31,33,34,35,37,40,41,42,46,49],\"floor_index\":0,\"index\":29,\"offset_point_count\":0,\"position\":[-4.5228989318,-0.1137308116,6.4824923394],\"quaternion\":{\"w\":-0.9282946175110572,\"x\":0.0032790689696784144,\"y\":0.3718296756642442,\"z\":0.0010213165972479256},\"standing_position\":[-4.5228989318,-1.4182085032503906,6.4824923394],\"visible_nodes\":[28,30,31,33,34,35,37,40,41,42,46,49]},{\"accessible_nodes\":[28,29,31,32,33,40],\"floor_index\":0,\"index\":30,\"offset_point_count\":0,\"position\":[-4.489123747,-0.1173249302,7.451735386],\"quaternion\":{\"w\":0.8454309971369415,\"x\":-0.005812246849664835,\"y\":-0.5340477452672187,\"z\":-0.002377522208926557},\"standing_position\":[-4.489123747,-1.4188605365842772,7.451735386],\"visible_nodes\":[28,29,31,32,33,40]},{\"accessible_nodes\":[29,30,32],\"floor_index\":0,\"index\":31,\"offset_point_count\":0,\"position\":[-4.6142894324,-0.1136015667,9.3582736025],\"quaternion\":{\"w\":-0.9926547608055885,\"x\":0.01186101421147157,\"y\":0.12011237895362423,\"z\":-0.008298108819137836},\"standing_position\":[-4.6142894324,-1.430609704402942,9.3582736025],\"visible_nodes\":[29,30,32]},{\"accessible_nodes\":[28,30,31],\"floor_index\":0,\"index\":32,\"offset_point_count\":0,\"position\":[-3.3660286384,-0.1125304971,8.3739979235],\"quaternion\":{\"w\":-0.9260693076249747,\"x\":0.001282354587526093,\"y\":-0.37704940424005823,\"z\":-0.015091050513099913},\"standing_position\":[-3.3660286384,-1.434266713645105,8.3739979235],\"visible_nodes\":[28,30,31]},{\"accessible_nodes\":[28,29,30,34,35,37,40,41,42,46,49],\"floor_index\":0,\"index\":33,\"offset_point_count\":0,\"position\":[-3.5811346201,-0.1152617217,6.6734153788],\"quaternion\":{\"w\":-0.7624016193343581,\"x\":-0.004781184076726814,\"y\":-0.6468835073836711,\"z\":-0.016206141299537142},\"standing_position\":[-3.5811346201,-1.4341720820363038,6.6734153788],\"visible_nodes\":[28,29,30,34,35,37,40,41,42,46,49]},{\"accessible_nodes\":[28,29,33,35,36,41,42,46],\"floor_index\":0,\"index\":34,\"offset_point_count\":0,\"position\":[-1.7092058706,-0.1481844066,6.6566028131],\"quaternion\":{\"w\":-0.8395851980257639,\"x\":0.002257074532155667,\"y\":-0.542662152955225,\"z\":0.024685798617146874},\"standing_position\":[-1.7092058706,-1.4471042035436645,6.6566028131],\"visible_nodes\":[28,29,33,35,36,41,42,46]},{\"accessible_nodes\":[28,29,33,34,36,40],\"floor_index\":0,\"index\":35,\"offset_point_count\":0,\"position\":[-0.4720954999,-0.1519002762,7.6921967924],\"quaternion\":{\"w\":-0.9993252672803785,\"x\":-0.00988133393431899,\"y\":0.02206033107718352,\"z\":0.027653412362129915},\"standing_position\":[-0.4720954999,-1.4456058588187133,7.6921967924],\"visible_nodes\":[28,29,33,34,36,40]},{\"accessible_nodes\":[34,35],\"floor_index\":0,\"index\":36,\"offset_point_count\":0,\"position\":[-0.4815404016,-0.1546389557,9.0869055079],\"quaternion\":{\"w\":-0.9988963309573221,\"x\":-0.01307264046859124,\"y\":0.03812013909241894,\"z\":0.024126355937160462},\"standing_position\":[-0.4815404016,-1.4540948368187745,9.0869055079],\"visible_nodes\":[34,35]},{\"accessible_nodes\":[11,13,27,28,29,33,38,39,40,41,42,44,46,50],\"floor_index\":0,\"index\":37,\"offset_point_count\":0,\"position\":[-6.9494468501,-0.1288648458,7.677446618],\"quaternion\":{\"w\":0.4508550565500547,\"x\":0.020698030040060825,\"y\":-0.8923570752507093,\"z\":0.0003997271494708335},\"standing_position\":[-6.9494468501,-1.4246095033164794,7.677446618],\"visible_nodes\":[11,13,27,28,29,33,38,39,40,41,42,44,46,50]},{\"accessible_nodes\":[13,27,28,37,39,40],\"floor_index\":0,\"index\":38,\"offset_point_count\":0,\"position\":[-6.8731679734,-0.1332563076,8.8007484286],\"quaternion\":{\"w\":-0.9731696162411771,\"x\":-0.002676901288864728,\"y\":0.229993666612307,\"z\":0.006053555517643693},\"standing_position\":[-6.8731679734,-1.4271978054027343,8.8007484286],\"visible_nodes\":[13,27,28,37,39,40]},{\"accessible_nodes\":[37,38],\"floor_index\":0,\"index\":39,\"offset_point_count\":0,\"position\":[-6.7708002943,-0.0773791725,10.6158625307],\"quaternion\":{\"w\":-0.9586589036252675,\"x\":-0.008681066298480944,\"y\":0.28442181170371955,\"z\":-0.0014066273675659114},\"standing_position\":[-6.7708002943,-1.4173012430032348,10.6158625307],\"visible_nodes\":[37,38]},{\"accessible_nodes\":[4,7,27,28,29,30,33,35,37,38,41,42,43],\"floor_index\":0,\"index\":40,\"offset_point_count\":0,\"position\":[-8.1582063648,-0.1073882379,5.4669397664],\"quaternion\":{\"w\":-0.815472048872969,\"x\":0.00040636010194669136,\"y\":-0.5787763706951071,\"z\":-0.00480469416306713},\"standing_position\":[-8.1582063648,-1.4273507394258789,5.4669397664],\"visible_nodes\":[4,7,27,28,29,30,33,35,37,38,41,42,43]},{\"accessible_nodes\":[10,11,12,27,28,29,33,34,37,40,42,44,46,50],\"floor_index\":0,\"index\":41,\"offset_point_count\":0,\"position\":[-8.7551340985,-0.1132249045,7.6943912408],\"quaternion\":{\"w\":-0.41626497014355524,\"x\":-0.0014664840468998671,\"y\":-0.9092288646567486,\"z\":-0.004918914476706945},\"standing_position\":[-8.7551340985,-1.4275423693284912,7.6943912408],\"visible_nodes\":[10,11,12,27,28,29,33,34,37,40,42,44,46,50]},{\"accessible_nodes\":[10,27,28,29,33,34,37,40,41,43,44,46,49,50],\"floor_index\":0,\"index\":42,\"offset_point_count\":0,\"position\":[-10.0332434481,-0.1023969368,7.6845767934],\"quaternion\":{\"w\":-0.8384739994010637,\"x\":-0.004954658523871316,\"y\":-0.5449081933683875,\"z\":-0.0034444874803544333},\"standing_position\":[-10.0332434481,-1.426460953142163,7.6845767934],\"visible_nodes\":[10,27,28,29,33,34,37,40,41,43,44,46,49,50]},{\"accessible_nodes\":[10,27,40,42,44,45,46,50,51],\"floor_index\":0,\"index\":43,\"offset_point_count\":0,\"position\":[-10.6161069838,-0.1131704018,8.3989450998],\"quaternion\":{\"w\":0.05058505835198124,\"x\":-0.010423858223897431,\"y\":-0.9985870348021748,\"z\":-0.012507157503275726},\"standing_position\":[-10.6161069838,-1.4253812000635497,8.3989450998],\"visible_nodes\":[10,27,40,42,44,45,46,50,51]},{\"accessible_nodes\":[37,41,42,43,45,46,48,49,50,51],\"floor_index\":0,\"index\":44,\"offset_point_count\":0,\"position\":[-11.2915715148,-0.1138224296,7.087810147],\"quaternion\":{\"w\":0.5096803674517645,\"x\":-0.0013711763596689847,\"y\":-0.8603523658217022,\"z\":-0.0042248724701632245},\"standing_position\":[-11.2915715148,-1.4221988610651488,7.087810147],\"visible_nodes\":[37,41,42,43,45,46,48,49,50,51]},{\"accessible_nodes\":[43,44,51],\"floor_index\":0,\"index\":45,\"offset_point_count\":0,\"position\":[-11.3149398995,-0.1036399047,5.5513894504],\"quaternion\":{\"w\":0.5394917163657633,\"x\":-0.0051842293305757155,\"y\":-0.8419714188290479,\"z\":-0.0024375433109762312},\"standing_position\":[-11.3149398995,-1.4326859156710694,5.5513894504],\"visible_nodes\":[43,44,51]},{\"accessible_nodes\":[28,29,33,34,37,41,42,43,44,47,48,49,50],\"floor_index\":0,\"index\":46,\"offset_point_count\":0,\"position\":[-12.812949369,-0.1116513284,7.817468688],\"quaternion\":{\"w\":0.7411642495444027,\"x\":-0.002824915876507861,\"y\":-0.6712948041285587,\"z\":-0.005555267189712625},\"standing_position\":[-12.812949369,-1.4328903229983887,7.817468688],\"visible_nodes\":[28,29,33,34,37,41,42,43,44,47,48,49,50]},{\"accessible_nodes\":[46,48,49,50],\"floor_index\":0,\"index\":47,\"offset_point_count\":0,\"position\":[-12.7621648312,-0.1077031694,9.1237302002],\"quaternion\":{\"w\":-0.6888562105611011,\"x\":-0.0007131212983556769,\"y\":-0.7248960326833084,\"z\":-0.0015344126603681816},\"standing_position\":[-12.7621648312,-1.435720404202246,9.1237302002],\"visible_nodes\":[46,48,49,50]},{\"accessible_nodes\":[44,46,47,49,50],\"floor_index\":0,\"index\":48,\"offset_point_count\":0,\"position\":[-14.5563059109,-0.1085522147,9.9010566129],\"quaternion\":{\"w\":-0.8757617776684479,\"x\":0.004428558140919799,\"y\":0.4827125913744142,\"z\":0.0032016842325145105},\"standing_position\":[-14.5563059109,-1.4271084042370483,9.9010566129],\"visible_nodes\":[44,46,47,49,50]},{\"accessible_nodes\":[28,29,33,42,44,46,47,48,50],\"floor_index\":0,\"index\":49,\"offset_point_count\":0,\"position\":[-16.1203247699,-0.0860040252,8.9662597033],\"quaternion\":{\"w\":-0.7107771175816742,\"x\":-0.00037251901078276317,\"y\":-0.7033881289693479,\"z\":-0.006394557449512978},\"standing_position\":[-16.1203247699,-1.4111495082169678,8.9662597033],\"visible_nodes\":[28,29,33,42,44,46,47,48,50]},{\"accessible_nodes\":[37,41,42,43,44,46,47,48,49],\"floor_index\":0,\"index\":50,\"offset_point_count\":0,\"position\":[-14.5590078063,-0.0988988464,7.3904182802],\"quaternion\":{\"w\":-0.9987326862954872,\"x\":0.008855707058918921,\"y\":0.04939075548129775,\"z\":0.003892434911106763},\"standing_position\":[-14.5590078063,-1.421086985361792,7.3904182802],\"visible_nodes\":[37,41,42,43,44,46,47,48,49]},{\"accessible_nodes\":[43,44,45,52,53],\"floor_index\":0,\"index\":51,\"offset_point_count\":0,\"position\":[-10.3243329761,-0.1161266261,9.3141174792],\"quaternion\":{\"w\":-0.7753186199632718,\"x\":-0.0019301667049188686,\"y\":-0.6315584668896459,\"z\":-0.0033488613657831176},\"standing_position\":[-10.3243329761,-1.4362946444410645,9.3141174792],\"visible_nodes\":[43,44,45,52,53]},{\"accessible_nodes\":[51,53],\"floor_index\":0,\"index\":52,\"offset_point_count\":0,\"position\":[-9.1104642754,-0.1302339681,9.9587559889],\"quaternion\":{\"w\":-0.6263522385320339,\"x\":-0.003084167024272492,\"y\":-0.779532514315471,\"z\":0.0015557344340729907},\"standing_position\":[-9.1104642754,-1.4446949609131103,9.9587559889],\"visible_nodes\":[51,53]},{\"accessible_nodes\":[51,52],\"floor_index\":0,\"index\":53,\"offset_point_count\":0,\"position\":[-8.7613085413,-0.1092593664,8.7288173859],\"quaternion\":{\"w\":0.33732283274784075,\"x\":-0.007680999183215779,\"y\":-0.9413111045238975,\"z\":-0.009365534792515642},\"standing_position\":[-8.7613085413,-1.4324543470213378,8.7288173859],\"visible_nodes\":[51,52]},{\"accessible_nodes\":[16,17,18,19,20,21,22,55],\"floor_index\":0,\"index\":54,\"offset_point_count\":0,\"position\":[-10.4687642663,-0.0873775459,1.1536562003],\"quaternion\":{\"w\":-0.9982997654637609,\"x\":0.009806640714226817,\"y\":0.05741668195060875,\"z\":0.0021754805772102826},\"standing_position\":[-10.4687642663,-1.3973066783615478,1.1536562003],\"visible_nodes\":[16,17,18,19,20,21,22,55]},{\"accessible_nodes\":[16,17,18,19,20,21,22,54],\"floor_index\":0,\"index\":55,\"offset_point_count\":0,\"position\":[-10.5067110129,-0.0804701885,-0.4525054471],\"quaternion\":{\"w\":-0.9729331574419694,\"x\":0.005533891648996591,\"y\":0.23101081241380733,\"z\":0.0021099119546888413},\"standing_position\":[-10.5067110129,-1.395444258095337,-0.4525054471],\"visible_nodes\":[16,17,18,19,20,21,22,54]}],\"panorama\":{\"count\":56,\"list\":[{\"back\":\"images/cube_2048/0/b3b9bbaee45915c83112f8c3840eeee1/0_b.jpg\",\"derived_id\":1706757534,\"derived_id_str\":\"1706757534\",\"down\":\"images/cube_2048/0/b3b9bbaee45915c83112f8c3840eeee1/0_d.jpg\",\"front\":\"images/cube_2048/0/b3b9bbaee45915c83112f8c3840eeee1/0_f.jpg\",\"index\":0,\"left\":\"images/cube_2048/0/b3b9bbaee45915c83112f8c3840eeee1/0_l.jpg\",\"right\":\"images/cube_2048/0/b3b9bbaee45915c83112f8c3840eeee1/0_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/0/b3b9bbaee45915c83112f8c3840eeee1/0_u.jpg\"},{\"back\":\"images/cube_2048/1/289942891f27afe320ec45b23cce9d79/1_b.jpg\",\"derived_id\":1706757832,\"derived_id_str\":\"1706757832\",\"down\":\"images/cube_2048/1/289942891f27afe320ec45b23cce9d79/1_d.jpg\",\"front\":\"images/cube_2048/1/289942891f27afe320ec45b23cce9d79/1_f.jpg\",\"index\":1,\"left\":\"images/cube_2048/1/289942891f27afe320ec45b23cce9d79/1_l.jpg\",\"right\":\"images/cube_2048/1/289942891f27afe320ec45b23cce9d79/1_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/1/289942891f27afe320ec45b23cce9d79/1_u.jpg\"},{\"back\":\"images/cube_2048/2/c55ae0a8d0554eb673fcb2cf6ddb2369/2_b.jpg\",\"derived_id\":1706757901,\"derived_id_str\":\"1706757901\",\"down\":\"images/cube_2048/2/c55ae0a8d0554eb673fcb2cf6ddb2369/2_d.jpg\",\"front\":\"images/cube_2048/2/c55ae0a8d0554eb673fcb2cf6ddb2369/2_f.jpg\",\"index\":2,\"left\":\"images/cube_2048/2/c55ae0a8d0554eb673fcb2cf6ddb2369/2_l.jpg\",\"right\":\"images/cube_2048/2/c55ae0a8d0554eb673fcb2cf6ddb2369/2_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/2/c55ae0a8d0554eb673fcb2cf6ddb2369/2_u.jpg\"},{\"back\":\"images/cube_2048/3/ff963263c9a41651ec5187e40a0d3290/3_b.jpg\",\"derived_id\":1706758100,\"derived_id_str\":\"1706758100\",\"down\":\"images/cube_2048/3/ff963263c9a41651ec5187e40a0d3290/3_d.jpg\",\"front\":\"images/cube_2048/3/ff963263c9a41651ec5187e40a0d3290/3_f.jpg\",\"index\":3,\"left\":\"images/cube_2048/3/ff963263c9a41651ec5187e40a0d3290/3_l.jpg\",\"right\":\"images/cube_2048/3/ff963263c9a41651ec5187e40a0d3290/3_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/3/ff963263c9a41651ec5187e40a0d3290/3_u.jpg\"},{\"back\":\"images/cube_2048/4/ac8d607930d57c37c407d34764b6fe8b/4_b.jpg\",\"derived_id\":1706758157,\"derived_id_str\":\"1706758157\",\"down\":\"images/cube_2048/4/ac8d607930d57c37c407d34764b6fe8b/4_d.jpg\",\"front\":\"images/cube_2048/4/ac8d607930d57c37c407d34764b6fe8b/4_f.jpg\",\"index\":4,\"left\":\"images/cube_2048/4/ac8d607930d57c37c407d34764b6fe8b/4_l.jpg\",\"right\":\"images/cube_2048/4/ac8d607930d57c37c407d34764b6fe8b/4_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/4/ac8d607930d57c37c407d34764b6fe8b/4_u.jpg\"},{\"back\":\"images/cube_2048/5/cce7c83cae246d839fe9d313bc172dc4/5_b.jpg\",\"derived_id\":1706758213,\"derived_id_str\":\"1706758213\",\"down\":\"images/cube_2048/5/cce7c83cae246d839fe9d313bc172dc4/5_d.jpg\",\"front\":\"images/cube_2048/5/cce7c83cae246d839fe9d313bc172dc4/5_f.jpg\",\"index\":5,\"left\":\"images/cube_2048/5/cce7c83cae246d839fe9d313bc172dc4/5_l.jpg\",\"right\":\"images/cube_2048/5/cce7c83cae246d839fe9d313bc172dc4/5_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/5/cce7c83cae246d839fe9d313bc172dc4/5_u.jpg\"},{\"back\":\"images/cube_2048/6/2ff854c6ac408048a18ecd65bf37464c/6_b.jpg\",\"derived_id\":1706758267,\"derived_id_str\":\"1706758267\",\"down\":\"images/cube_2048/6/2ff854c6ac408048a18ecd65bf37464c/6_d.jpg\",\"front\":\"images/cube_2048/6/2ff854c6ac408048a18ecd65bf37464c/6_f.jpg\",\"index\":6,\"left\":\"images/cube_2048/6/2ff854c6ac408048a18ecd65bf37464c/6_l.jpg\",\"right\":\"images/cube_2048/6/2ff854c6ac408048a18ecd65bf37464c/6_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/6/2ff854c6ac408048a18ecd65bf37464c/6_u.jpg\"},{\"back\":\"images/cube_2048/7/4d477ca966e3485db732aabb2e4bdd7b/7_b.jpg\",\"derived_id\":1706758357,\"derived_id_str\":\"1706758357\",\"down\":\"images/cube_2048/7/4d477ca966e3485db732aabb2e4bdd7b/7_d.jpg\",\"front\":\"images/cube_2048/7/4d477ca966e3485db732aabb2e4bdd7b/7_f.jpg\",\"index\":7,\"left\":\"images/cube_2048/7/4d477ca966e3485db732aabb2e4bdd7b/7_l.jpg\",\"right\":\"images/cube_2048/7/4d477ca966e3485db732aabb2e4bdd7b/7_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/7/4d477ca966e3485db732aabb2e4bdd7b/7_u.jpg\"},{\"back\":\"images/cube_2048/8/fdca32667d3ae7d32ce8168202be3650/8_b.jpg\",\"derived_id\":1706758756,\"derived_id_str\":\"1706758756\",\"down\":\"images/cube_2048/8/fdca32667d3ae7d32ce8168202be3650/8_d.jpg\",\"front\":\"images/cube_2048/8/fdca32667d3ae7d32ce8168202be3650/8_f.jpg\",\"index\":8,\"left\":\"images/cube_2048/8/fdca32667d3ae7d32ce8168202be3650/8_l.jpg\",\"right\":\"images/cube_2048/8/fdca32667d3ae7d32ce8168202be3650/8_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/8/fdca32667d3ae7d32ce8168202be3650/8_u.jpg\"},{\"back\":\"images/cube_2048/9/a544c6b536a6b229b955a3eaa2aae840/9_b.jpg\",\"derived_id\":1706758868,\"derived_id_str\":\"1706758868\",\"down\":\"images/cube_2048/9/a544c6b536a6b229b955a3eaa2aae840/9_d.jpg\",\"front\":\"images/cube_2048/9/a544c6b536a6b229b955a3eaa2aae840/9_f.jpg\",\"index\":9,\"left\":\"images/cube_2048/9/a544c6b536a6b229b955a3eaa2aae840/9_l.jpg\",\"right\":\"images/cube_2048/9/a544c6b536a6b229b955a3eaa2aae840/9_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/9/a544c6b536a6b229b955a3eaa2aae840/9_u.jpg\"},{\"back\":\"images/cube_2048/10/eb69498c2494537b5ab2b33d6f22f298/10_b.jpg\",\"derived_id\":1706758971,\"derived_id_str\":\"1706758971\",\"down\":\"images/cube_2048/10/eb69498c2494537b5ab2b33d6f22f298/10_d.jpg\",\"front\":\"images/cube_2048/10/eb69498c2494537b5ab2b33d6f22f298/10_f.jpg\",\"index\":10,\"left\":\"images/cube_2048/10/eb69498c2494537b5ab2b33d6f22f298/10_l.jpg\",\"right\":\"images/cube_2048/10/eb69498c2494537b5ab2b33d6f22f298/10_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/10/eb69498c2494537b5ab2b33d6f22f298/10_u.jpg\"},{\"back\":\"images/cube_2048/11/69d9102361999e7cffc69e4474210dc1/11_b.jpg\",\"derived_id\":1706759113,\"derived_id_str\":\"1706759113\",\"down\":\"images/cube_2048/11/69d9102361999e7cffc69e4474210dc1/11_d.jpg\",\"front\":\"images/cube_2048/11/69d9102361999e7cffc69e4474210dc1/11_f.jpg\",\"index\":11,\"left\":\"images/cube_2048/11/69d9102361999e7cffc69e4474210dc1/11_l.jpg\",\"right\":\"images/cube_2048/11/69d9102361999e7cffc69e4474210dc1/11_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/11/69d9102361999e7cffc69e4474210dc1/11_u.jpg\"},{\"back\":\"images/cube_2048/12/bbc4e7ec629525d789bbfedd29022acc/12_b.jpg\",\"derived_id\":1706759276,\"derived_id_str\":\"1706759276\",\"down\":\"images/cube_2048/12/bbc4e7ec629525d789bbfedd29022acc/12_d.jpg\",\"front\":\"images/cube_2048/12/bbc4e7ec629525d789bbfedd29022acc/12_f.jpg\",\"index\":12,\"left\":\"images/cube_2048/12/bbc4e7ec629525d789bbfedd29022acc/12_l.jpg\",\"right\":\"images/cube_2048/12/bbc4e7ec629525d789bbfedd29022acc/12_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/12/bbc4e7ec629525d789bbfedd29022acc/12_u.jpg\"},{\"back\":\"images/cube_2048/13/727a467eb608c463aebb7a968faad39b/13_b.jpg\",\"derived_id\":1706759400,\"derived_id_str\":\"1706759400\",\"down\":\"images/cube_2048/13/727a467eb608c463aebb7a968faad39b/13_d.jpg\",\"front\":\"images/cube_2048/13/727a467eb608c463aebb7a968faad39b/13_f.jpg\",\"index\":13,\"left\":\"images/cube_2048/13/727a467eb608c463aebb7a968faad39b/13_l.jpg\",\"right\":\"images/cube_2048/13/727a467eb608c463aebb7a968faad39b/13_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/13/727a467eb608c463aebb7a968faad39b/13_u.jpg\"},{\"back\":\"images/cube_2048/14/b4f26339a47910e6c6d6b179702e746f/14_b.jpg\",\"derived_id\":1706759474,\"derived_id_str\":\"1706759474\",\"down\":\"images/cube_2048/14/b4f26339a47910e6c6d6b179702e746f/14_d.jpg\",\"front\":\"images/cube_2048/14/b4f26339a47910e6c6d6b179702e746f/14_f.jpg\",\"index\":14,\"left\":\"images/cube_2048/14/b4f26339a47910e6c6d6b179702e746f/14_l.jpg\",\"right\":\"images/cube_2048/14/b4f26339a47910e6c6d6b179702e746f/14_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/14/b4f26339a47910e6c6d6b179702e746f/14_u.jpg\"},{\"back\":\"images/cube_2048/15/39010d6fe716374ceb850d0267564472/15_b.jpg\",\"derived_id\":1706759538,\"derived_id_str\":\"1706759538\",\"down\":\"images/cube_2048/15/39010d6fe716374ceb850d0267564472/15_d.jpg\",\"front\":\"images/cube_2048/15/39010d6fe716374ceb850d0267564472/15_f.jpg\",\"index\":15,\"left\":\"images/cube_2048/15/39010d6fe716374ceb850d0267564472/15_l.jpg\",\"right\":\"images/cube_2048/15/39010d6fe716374ceb850d0267564472/15_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/15/39010d6fe716374ceb850d0267564472/15_u.jpg\"},{\"back\":\"images/cube_2048/16/328b1eb780d7f2ef2298ff0a952c0893/16_b.jpg\",\"derived_id\":1706759603,\"derived_id_str\":\"1706759603\",\"down\":\"images/cube_2048/16/328b1eb780d7f2ef2298ff0a952c0893/16_d.jpg\",\"front\":\"images/cube_2048/16/328b1eb780d7f2ef2298ff0a952c0893/16_f.jpg\",\"index\":16,\"left\":\"images/cube_2048/16/328b1eb780d7f2ef2298ff0a952c0893/16_l.jpg\",\"right\":\"images/cube_2048/16/328b1eb780d7f2ef2298ff0a952c0893/16_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/16/328b1eb780d7f2ef2298ff0a952c0893/16_u.jpg\"},{\"back\":\"images/cube_2048/17/7857b9acff77f237871564fea18b5407/17_b.jpg\",\"derived_id\":1706759699,\"derived_id_str\":\"1706759699\",\"down\":\"images/cube_2048/17/7857b9acff77f237871564fea18b5407/17_d.jpg\",\"front\":\"images/cube_2048/17/7857b9acff77f237871564fea18b5407/17_f.jpg\",\"index\":17,\"left\":\"images/cube_2048/17/7857b9acff77f237871564fea18b5407/17_l.jpg\",\"right\":\"images/cube_2048/17/7857b9acff77f237871564fea18b5407/17_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/17/7857b9acff77f237871564fea18b5407/17_u.jpg\"},{\"back\":\"images/cube_2048/18/6c3cb6b592028d9f7edd809d6669fb13/18_b.jpg\",\"derived_id\":1706759785,\"derived_id_str\":\"1706759785\",\"down\":\"images/cube_2048/18/6c3cb6b592028d9f7edd809d6669fb13/18_d.jpg\",\"front\":\"images/cube_2048/18/6c3cb6b592028d9f7edd809d6669fb13/18_f.jpg\",\"index\":18,\"left\":\"images/cube_2048/18/6c3cb6b592028d9f7edd809d6669fb13/18_l.jpg\",\"right\":\"images/cube_2048/18/6c3cb6b592028d9f7edd809d6669fb13/18_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/18/6c3cb6b592028d9f7edd809d6669fb13/18_u.jpg\"},{\"back\":\"images/cube_2048/19/9d348940ba8cc3146948b5c82a9fb93c/19_b.jpg\",\"derived_id\":1706759949,\"derived_id_str\":\"1706759949\",\"down\":\"images/cube_2048/19/9d348940ba8cc3146948b5c82a9fb93c/19_d.jpg\",\"front\":\"images/cube_2048/19/9d348940ba8cc3146948b5c82a9fb93c/19_f.jpg\",\"index\":19,\"left\":\"images/cube_2048/19/9d348940ba8cc3146948b5c82a9fb93c/19_l.jpg\",\"right\":\"images/cube_2048/19/9d348940ba8cc3146948b5c82a9fb93c/19_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/19/9d348940ba8cc3146948b5c82a9fb93c/19_u.jpg\"},{\"back\":\"images/cube_2048/20/9029a9c705d785fec5a0590291a34886/20_b.jpg\",\"derived_id\":1706760132,\"derived_id_str\":\"1706760132\",\"down\":\"images/cube_2048/20/9029a9c705d785fec5a0590291a34886/20_d.jpg\",\"front\":\"images/cube_2048/20/9029a9c705d785fec5a0590291a34886/20_f.jpg\",\"index\":20,\"left\":\"images/cube_2048/20/9029a9c705d785fec5a0590291a34886/20_l.jpg\",\"right\":\"images/cube_2048/20/9029a9c705d785fec5a0590291a34886/20_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/20/9029a9c705d785fec5a0590291a34886/20_u.jpg\"},{\"back\":\"images/cube_2048/21/99016ef7f525eceebb2fe930826ac3a1/21_b.jpg\",\"derived_id\":1706760186,\"derived_id_str\":\"1706760186\",\"down\":\"images/cube_2048/21/99016ef7f525eceebb2fe930826ac3a1/21_d.jpg\",\"front\":\"images/cube_2048/21/99016ef7f525eceebb2fe930826ac3a1/21_f.jpg\",\"index\":21,\"left\":\"images/cube_2048/21/99016ef7f525eceebb2fe930826ac3a1/21_l.jpg\",\"right\":\"images/cube_2048/21/99016ef7f525eceebb2fe930826ac3a1/21_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/21/99016ef7f525eceebb2fe930826ac3a1/21_u.jpg\"},{\"back\":\"images/cube_2048/22/743a5ceb86ece80d93fd9c89fc7b5225/22_b.jpg\",\"derived_id\":1706760240,\"derived_id_str\":\"1706760240\",\"down\":\"images/cube_2048/22/743a5ceb86ece80d93fd9c89fc7b5225/22_d.jpg\",\"front\":\"images/cube_2048/22/743a5ceb86ece80d93fd9c89fc7b5225/22_f.jpg\",\"index\":22,\"left\":\"images/cube_2048/22/743a5ceb86ece80d93fd9c89fc7b5225/22_l.jpg\",\"right\":\"images/cube_2048/22/743a5ceb86ece80d93fd9c89fc7b5225/22_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/22/743a5ceb86ece80d93fd9c89fc7b5225/22_u.jpg\"},{\"back\":\"images/cube_2048/23/e7cd8a11b6ace6cde86da2ae1ec628d1/23_b.jpg\",\"derived_id\":1706760296,\"derived_id_str\":\"1706760296\",\"down\":\"images/cube_2048/23/e7cd8a11b6ace6cde86da2ae1ec628d1/23_d.jpg\",\"front\":\"images/cube_2048/23/e7cd8a11b6ace6cde86da2ae1ec628d1/23_f.jpg\",\"index\":23,\"left\":\"images/cube_2048/23/e7cd8a11b6ace6cde86da2ae1ec628d1/23_l.jpg\",\"right\":\"images/cube_2048/23/e7cd8a11b6ace6cde86da2ae1ec628d1/23_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/23/e7cd8a11b6ace6cde86da2ae1ec628d1/23_u.jpg\"},{\"back\":\"images/cube_2048/24/8cc26e88040bd5c3b4e4fb1b3dae3bea/24_b.jpg\",\"derived_id\":1706760369,\"derived_id_str\":\"1706760369\",\"down\":\"images/cube_2048/24/8cc26e88040bd5c3b4e4fb1b3dae3bea/24_d.jpg\",\"front\":\"images/cube_2048/24/8cc26e88040bd5c3b4e4fb1b3dae3bea/24_f.jpg\",\"index\":24,\"left\":\"images/cube_2048/24/8cc26e88040bd5c3b4e4fb1b3dae3bea/24_l.jpg\",\"right\":\"images/cube_2048/24/8cc26e88040bd5c3b4e4fb1b3dae3bea/24_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/24/8cc26e88040bd5c3b4e4fb1b3dae3bea/24_u.jpg\"},{\"back\":\"images/cube_2048/25/4c8ca13defdbb0af958851925192ebe8/25_b.jpg\",\"derived_id\":1706760422,\"derived_id_str\":\"1706760422\",\"down\":\"images/cube_2048/25/4c8ca13defdbb0af958851925192ebe8/25_d.jpg\",\"front\":\"images/cube_2048/25/4c8ca13defdbb0af958851925192ebe8/25_f.jpg\",\"index\":25,\"left\":\"images/cube_2048/25/4c8ca13defdbb0af958851925192ebe8/25_l.jpg\",\"right\":\"images/cube_2048/25/4c8ca13defdbb0af958851925192ebe8/25_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/25/4c8ca13defdbb0af958851925192ebe8/25_u.jpg\"},{\"back\":\"images/cube_2048/26/3b6786fa0a7f50d111e66232ca29779d/26_b.jpg\",\"derived_id\":1706760481,\"derived_id_str\":\"1706760481\",\"down\":\"images/cube_2048/26/3b6786fa0a7f50d111e66232ca29779d/26_d.jpg\",\"front\":\"images/cube_2048/26/3b6786fa0a7f50d111e66232ca29779d/26_f.jpg\",\"index\":26,\"left\":\"images/cube_2048/26/3b6786fa0a7f50d111e66232ca29779d/26_l.jpg\",\"right\":\"images/cube_2048/26/3b6786fa0a7f50d111e66232ca29779d/26_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/26/3b6786fa0a7f50d111e66232ca29779d/26_u.jpg\"},{\"back\":\"images/cube_2048/27/123f77e4fd16d97642ac07b95ee458c9/27_b.jpg\",\"derived_id\":1706760652,\"derived_id_str\":\"1706760652\",\"down\":\"images/cube_2048/27/123f77e4fd16d97642ac07b95ee458c9/27_d.jpg\",\"front\":\"images/cube_2048/27/123f77e4fd16d97642ac07b95ee458c9/27_f.jpg\",\"index\":27,\"left\":\"images/cube_2048/27/123f77e4fd16d97642ac07b95ee458c9/27_l.jpg\",\"right\":\"images/cube_2048/27/123f77e4fd16d97642ac07b95ee458c9/27_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/27/123f77e4fd16d97642ac07b95ee458c9/27_u.jpg\"},{\"back\":\"images/cube_2048/28/8b1d5f94b0488d5cdc70eb3315407364/28_b.jpg\",\"derived_id\":1706760829,\"derived_id_str\":\"1706760829\",\"down\":\"images/cube_2048/28/8b1d5f94b0488d5cdc70eb3315407364/28_d.jpg\",\"front\":\"images/cube_2048/28/8b1d5f94b0488d5cdc70eb3315407364/28_f.jpg\",\"index\":28,\"left\":\"images/cube_2048/28/8b1d5f94b0488d5cdc70eb3315407364/28_l.jpg\",\"right\":\"images/cube_2048/28/8b1d5f94b0488d5cdc70eb3315407364/28_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/28/8b1d5f94b0488d5cdc70eb3315407364/28_u.jpg\"},{\"back\":\"images/cube_2048/29/8b9566c7e2f9657d7ba75085bb2cc181/29_b.jpg\",\"derived_id\":1706761256,\"derived_id_str\":\"1706761256\",\"down\":\"images/cube_2048/29/8b9566c7e2f9657d7ba75085bb2cc181/29_d.jpg\",\"front\":\"images/cube_2048/29/8b9566c7e2f9657d7ba75085bb2cc181/29_f.jpg\",\"index\":29,\"left\":\"images/cube_2048/29/8b9566c7e2f9657d7ba75085bb2cc181/29_l.jpg\",\"right\":\"images/cube_2048/29/8b9566c7e2f9657d7ba75085bb2cc181/29_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/29/8b9566c7e2f9657d7ba75085bb2cc181/29_u.jpg\"},{\"back\":\"images/cube_2048/30/ec33b1b6c169b2ef08184d6de860e31d/30_b.jpg\",\"derived_id\":1706761323,\"derived_id_str\":\"1706761323\",\"down\":\"images/cube_2048/30/ec33b1b6c169b2ef08184d6de860e31d/30_d.jpg\",\"front\":\"images/cube_2048/30/ec33b1b6c169b2ef08184d6de860e31d/30_f.jpg\",\"index\":30,\"left\":\"images/cube_2048/30/ec33b1b6c169b2ef08184d6de860e31d/30_l.jpg\",\"right\":\"images/cube_2048/30/ec33b1b6c169b2ef08184d6de860e31d/30_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/30/ec33b1b6c169b2ef08184d6de860e31d/30_u.jpg\"},{\"back\":\"images/cube_2048/31/d25dff365aa402af752f7a6bee9e7f51/31_b.jpg\",\"derived_id\":1706761467,\"derived_id_str\":\"1706761467\",\"down\":\"images/cube_2048/31/d25dff365aa402af752f7a6bee9e7f51/31_d.jpg\",\"front\":\"images/cube_2048/31/d25dff365aa402af752f7a6bee9e7f51/31_f.jpg\",\"index\":31,\"left\":\"images/cube_2048/31/d25dff365aa402af752f7a6bee9e7f51/31_l.jpg\",\"right\":\"images/cube_2048/31/d25dff365aa402af752f7a6bee9e7f51/31_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/31/d25dff365aa402af752f7a6bee9e7f51/31_u.jpg\"},{\"back\":\"images/cube_2048/32/0364db8f7e0f6597149ff7079f79f53f/32_b.jpg\",\"derived_id\":1706761521,\"derived_id_str\":\"1706761521\",\"down\":\"images/cube_2048/32/0364db8f7e0f6597149ff7079f79f53f/32_d.jpg\",\"front\":\"images/cube_2048/32/0364db8f7e0f6597149ff7079f79f53f/32_f.jpg\",\"index\":32,\"left\":\"images/cube_2048/32/0364db8f7e0f6597149ff7079f79f53f/32_l.jpg\",\"right\":\"images/cube_2048/32/0364db8f7e0f6597149ff7079f79f53f/32_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/32/0364db8f7e0f6597149ff7079f79f53f/32_u.jpg\"},{\"back\":\"images/cube_2048/33/522e0b110d7d3dbf78b43896ba8bcd1b/33_b.jpg\",\"derived_id\":1706761586,\"derived_id_str\":\"1706761586\",\"down\":\"images/cube_2048/33/522e0b110d7d3dbf78b43896ba8bcd1b/33_d.jpg\",\"front\":\"images/cube_2048/33/522e0b110d7d3dbf78b43896ba8bcd1b/33_f.jpg\",\"index\":33,\"left\":\"images/cube_2048/33/522e0b110d7d3dbf78b43896ba8bcd1b/33_l.jpg\",\"right\":\"images/cube_2048/33/522e0b110d7d3dbf78b43896ba8bcd1b/33_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/33/522e0b110d7d3dbf78b43896ba8bcd1b/33_u.jpg\"},{\"back\":\"images/cube_2048/34/f3ec8cab68dbdf1ededebe8ea96d5615/34_b.jpg\",\"derived_id\":1706761777,\"derived_id_str\":\"1706761777\",\"down\":\"images/cube_2048/34/f3ec8cab68dbdf1ededebe8ea96d5615/34_d.jpg\",\"front\":\"images/cube_2048/34/f3ec8cab68dbdf1ededebe8ea96d5615/34_f.jpg\",\"index\":34,\"left\":\"images/cube_2048/34/f3ec8cab68dbdf1ededebe8ea96d5615/34_l.jpg\",\"right\":\"images/cube_2048/34/f3ec8cab68dbdf1ededebe8ea96d5615/34_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/34/f3ec8cab68dbdf1ededebe8ea96d5615/34_u.jpg\"},{\"back\":\"images/cube_2048/35/ed5de388bf2915317d3f20d9ea8121f1/35_b.jpg\",\"derived_id\":1706761852,\"derived_id_str\":\"1706761852\",\"down\":\"images/cube_2048/35/ed5de388bf2915317d3f20d9ea8121f1/35_d.jpg\",\"front\":\"images/cube_2048/35/ed5de388bf2915317d3f20d9ea8121f1/35_f.jpg\",\"index\":35,\"left\":\"images/cube_2048/35/ed5de388bf2915317d3f20d9ea8121f1/35_l.jpg\",\"right\":\"images/cube_2048/35/ed5de388bf2915317d3f20d9ea8121f1/35_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/35/ed5de388bf2915317d3f20d9ea8121f1/35_u.jpg\"},{\"back\":\"images/cube_2048/36/3d18e77128d2d948a51743733da99223/36_b.jpg\",\"derived_id\":1706761990,\"derived_id_str\":\"1706761990\",\"down\":\"images/cube_2048/36/3d18e77128d2d948a51743733da99223/36_d.jpg\",\"front\":\"images/cube_2048/36/3d18e77128d2d948a51743733da99223/36_f.jpg\",\"index\":36,\"left\":\"images/cube_2048/36/3d18e77128d2d948a51743733da99223/36_l.jpg\",\"right\":\"images/cube_2048/36/3d18e77128d2d948a51743733da99223/36_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/36/3d18e77128d2d948a51743733da99223/36_u.jpg\"},{\"back\":\"images/cube_2048/37/98d7827c1c5250676d2a1eaeb446d063/37_b.jpg\",\"derived_id\":1706762063,\"derived_id_str\":\"1706762063\",\"down\":\"images/cube_2048/37/98d7827c1c5250676d2a1eaeb446d063/37_d.jpg\",\"front\":\"images/cube_2048/37/98d7827c1c5250676d2a1eaeb446d063/37_f.jpg\",\"index\":37,\"left\":\"images/cube_2048/37/98d7827c1c5250676d2a1eaeb446d063/37_l.jpg\",\"right\":\"images/cube_2048/37/98d7827c1c5250676d2a1eaeb446d063/37_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/37/98d7827c1c5250676d2a1eaeb446d063/37_u.jpg\"},{\"back\":\"images/cube_2048/38/ca66b5c7ec2c996f265af5b1ac227c41/38_b.jpg\",\"derived_id\":1706762144,\"derived_id_str\":\"1706762144\",\"down\":\"images/cube_2048/38/ca66b5c7ec2c996f265af5b1ac227c41/38_d.jpg\",\"front\":\"images/cube_2048/38/ca66b5c7ec2c996f265af5b1ac227c41/38_f.jpg\",\"index\":38,\"left\":\"images/cube_2048/38/ca66b5c7ec2c996f265af5b1ac227c41/38_l.jpg\",\"right\":\"images/cube_2048/38/ca66b5c7ec2c996f265af5b1ac227c41/38_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/38/ca66b5c7ec2c996f265af5b1ac227c41/38_u.jpg\"},{\"back\":\"images/cube_2048/39/2644a40ff70ea70fec547292ddf3ac0f/39_b.jpg\",\"derived_id\":1706762218,\"derived_id_str\":\"1706762218\",\"down\":\"images/cube_2048/39/2644a40ff70ea70fec547292ddf3ac0f/39_d.jpg\",\"front\":\"images/cube_2048/39/2644a40ff70ea70fec547292ddf3ac0f/39_f.jpg\",\"index\":39,\"left\":\"images/cube_2048/39/2644a40ff70ea70fec547292ddf3ac0f/39_l.jpg\",\"right\":\"images/cube_2048/39/2644a40ff70ea70fec547292ddf3ac0f/39_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/39/2644a40ff70ea70fec547292ddf3ac0f/39_u.jpg\"},{\"back\":\"images/cube_2048/40/ed14e6d25b8315e1941f46f5ca8d1751/40_b.jpg\",\"derived_id\":1706762495,\"derived_id_str\":\"1706762495\",\"down\":\"images/cube_2048/40/ed14e6d25b8315e1941f46f5ca8d1751/40_d.jpg\",\"front\":\"images/cube_2048/40/ed14e6d25b8315e1941f46f5ca8d1751/40_f.jpg\",\"index\":40,\"left\":\"images/cube_2048/40/ed14e6d25b8315e1941f46f5ca8d1751/40_l.jpg\",\"right\":\"images/cube_2048/40/ed14e6d25b8315e1941f46f5ca8d1751/40_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/40/ed14e6d25b8315e1941f46f5ca8d1751/40_u.jpg\"},{\"back\":\"images/cube_2048/41/ae880c933d5cccf59419c8aacd3ba751/41_b.jpg\",\"derived_id\":1706762544,\"derived_id_str\":\"1706762544\",\"down\":\"images/cube_2048/41/ae880c933d5cccf59419c8aacd3ba751/41_d.jpg\",\"front\":\"images/cube_2048/41/ae880c933d5cccf59419c8aacd3ba751/41_f.jpg\",\"index\":41,\"left\":\"images/cube_2048/41/ae880c933d5cccf59419c8aacd3ba751/41_l.jpg\",\"right\":\"images/cube_2048/41/ae880c933d5cccf59419c8aacd3ba751/41_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/41/ae880c933d5cccf59419c8aacd3ba751/41_u.jpg\"},{\"back\":\"images/cube_2048/42/9ce397e79ad2a3308c04c783efb1d62a/42_b.jpg\",\"derived_id\":1706762607,\"derived_id_str\":\"1706762607\",\"down\":\"images/cube_2048/42/9ce397e79ad2a3308c04c783efb1d62a/42_d.jpg\",\"front\":\"images/cube_2048/42/9ce397e79ad2a3308c04c783efb1d62a/42_f.jpg\",\"index\":42,\"left\":\"images/cube_2048/42/9ce397e79ad2a3308c04c783efb1d62a/42_l.jpg\",\"right\":\"images/cube_2048/42/9ce397e79ad2a3308c04c783efb1d62a/42_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/42/9ce397e79ad2a3308c04c783efb1d62a/42_u.jpg\"},{\"back\":\"images/cube_2048/43/b118fca13c771c5da8f50be44a7cc398/43_b.jpg\",\"derived_id\":1706762667,\"derived_id_str\":\"1706762667\",\"down\":\"images/cube_2048/43/b118fca13c771c5da8f50be44a7cc398/43_d.jpg\",\"front\":\"images/cube_2048/43/b118fca13c771c5da8f50be44a7cc398/43_f.jpg\",\"index\":43,\"left\":\"images/cube_2048/43/b118fca13c771c5da8f50be44a7cc398/43_l.jpg\",\"right\":\"images/cube_2048/43/b118fca13c771c5da8f50be44a7cc398/43_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/43/b118fca13c771c5da8f50be44a7cc398/43_u.jpg\"},{\"back\":\"images/cube_2048/44/ea95e43215c82a4360898d6d7e4233a5/44_b.jpg\",\"derived_id\":1706764695,\"derived_id_str\":\"1706764695\",\"down\":\"images/cube_2048/44/ea95e43215c82a4360898d6d7e4233a5/44_d.jpg\",\"front\":\"images/cube_2048/44/ea95e43215c82a4360898d6d7e4233a5/44_f.jpg\",\"index\":44,\"left\":\"images/cube_2048/44/ea95e43215c82a4360898d6d7e4233a5/44_l.jpg\",\"right\":\"images/cube_2048/44/ea95e43215c82a4360898d6d7e4233a5/44_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/44/ea95e43215c82a4360898d6d7e4233a5/44_u.jpg\"},{\"back\":\"images/cube_2048/45/85bfad857915552088aacf534955386b/45_b.jpg\",\"derived_id\":1706764776,\"derived_id_str\":\"1706764776\",\"down\":\"images/cube_2048/45/85bfad857915552088aacf534955386b/45_d.jpg\",\"front\":\"images/cube_2048/45/85bfad857915552088aacf534955386b/45_f.jpg\",\"index\":45,\"left\":\"images/cube_2048/45/85bfad857915552088aacf534955386b/45_l.jpg\",\"right\":\"images/cube_2048/45/85bfad857915552088aacf534955386b/45_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/45/85bfad857915552088aacf534955386b/45_u.jpg\"},{\"back\":\"images/cube_2048/46/772838264b78210a6da3467eb64ee944/46_b.jpg\",\"derived_id\":1706764868,\"derived_id_str\":\"1706764868\",\"down\":\"images/cube_2048/46/772838264b78210a6da3467eb64ee944/46_d.jpg\",\"front\":\"images/cube_2048/46/772838264b78210a6da3467eb64ee944/46_f.jpg\",\"index\":46,\"left\":\"images/cube_2048/46/772838264b78210a6da3467eb64ee944/46_l.jpg\",\"right\":\"images/cube_2048/46/772838264b78210a6da3467eb64ee944/46_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/46/772838264b78210a6da3467eb64ee944/46_u.jpg\"},{\"back\":\"images/cube_2048/47/d5c6deb94707e8403ea743b22169d947/47_b.jpg\",\"derived_id\":1706764932,\"derived_id_str\":\"1706764932\",\"down\":\"images/cube_2048/47/d5c6deb94707e8403ea743b22169d947/47_d.jpg\",\"front\":\"images/cube_2048/47/d5c6deb94707e8403ea743b22169d947/47_f.jpg\",\"index\":47,\"left\":\"images/cube_2048/47/d5c6deb94707e8403ea743b22169d947/47_l.jpg\",\"right\":\"images/cube_2048/47/d5c6deb94707e8403ea743b22169d947/47_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/47/d5c6deb94707e8403ea743b22169d947/47_u.jpg\"},{\"back\":\"images/cube_2048/48/3f579969d293564931378c6a3c22eb5b/48_b.jpg\",\"derived_id\":1706765005,\"derived_id_str\":\"1706765005\",\"down\":\"images/cube_2048/48/3f579969d293564931378c6a3c22eb5b/48_d.jpg\",\"front\":\"images/cube_2048/48/3f579969d293564931378c6a3c22eb5b/48_f.jpg\",\"index\":48,\"left\":\"images/cube_2048/48/3f579969d293564931378c6a3c22eb5b/48_l.jpg\",\"right\":\"images/cube_2048/48/3f579969d293564931378c6a3c22eb5b/48_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/48/3f579969d293564931378c6a3c22eb5b/48_u.jpg\"},{\"back\":\"images/cube_2048/49/d90e2875165e3d1598e174546744c084/49_b.jpg\",\"derived_id\":1706765082,\"derived_id_str\":\"1706765082\",\"down\":\"images/cube_2048/49/d90e2875165e3d1598e174546744c084/49_d.jpg\",\"front\":\"images/cube_2048/49/d90e2875165e3d1598e174546744c084/49_f.jpg\",\"index\":49,\"left\":\"images/cube_2048/49/d90e2875165e3d1598e174546744c084/49_l.jpg\",\"right\":\"images/cube_2048/49/d90e2875165e3d1598e174546744c084/49_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/49/d90e2875165e3d1598e174546744c084/49_u.jpg\"},{\"back\":\"images/cube_2048/50/dea215dd11ee872c8ad0a6a6acd6a415/50_b.jpg\",\"derived_id\":1706765153,\"derived_id_str\":\"1706765153\",\"down\":\"images/cube_2048/50/dea215dd11ee872c8ad0a6a6acd6a415/50_d.jpg\",\"front\":\"images/cube_2048/50/dea215dd11ee872c8ad0a6a6acd6a415/50_f.jpg\",\"index\":50,\"left\":\"images/cube_2048/50/dea215dd11ee872c8ad0a6a6acd6a415/50_l.jpg\",\"right\":\"images/cube_2048/50/dea215dd11ee872c8ad0a6a6acd6a415/50_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/50/dea215dd11ee872c8ad0a6a6acd6a415/50_u.jpg\"},{\"back\":\"images/cube_2048/51/3f7fcc0fc7d9ce356c198adaf6197e89/51_b.jpg\",\"derived_id\":1706765239,\"derived_id_str\":\"1706765239\",\"down\":\"images/cube_2048/51/3f7fcc0fc7d9ce356c198adaf6197e89/51_d.jpg\",\"front\":\"images/cube_2048/51/3f7fcc0fc7d9ce356c198adaf6197e89/51_f.jpg\",\"index\":51,\"left\":\"images/cube_2048/51/3f7fcc0fc7d9ce356c198adaf6197e89/51_l.jpg\",\"right\":\"images/cube_2048/51/3f7fcc0fc7d9ce356c198adaf6197e89/51_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/51/3f7fcc0fc7d9ce356c198adaf6197e89/51_u.jpg\"},{\"back\":\"images/cube_2048/52/bd4db1faf69ab3c67e5819a981ba2a6a/52_b.jpg\",\"derived_id\":1706765294,\"derived_id_str\":\"1706765294\",\"down\":\"images/cube_2048/52/bd4db1faf69ab3c67e5819a981ba2a6a/52_d.jpg\",\"front\":\"images/cube_2048/52/bd4db1faf69ab3c67e5819a981ba2a6a/52_f.jpg\",\"index\":52,\"left\":\"images/cube_2048/52/bd4db1faf69ab3c67e5819a981ba2a6a/52_l.jpg\",\"right\":\"images/cube_2048/52/bd4db1faf69ab3c67e5819a981ba2a6a/52_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/52/bd4db1faf69ab3c67e5819a981ba2a6a/52_u.jpg\"},{\"back\":\"images/cube_2048/53/8f2bc3401b80b8d845b211b84daf449d/53_b.jpg\",\"derived_id\":1706765541,\"derived_id_str\":\"1706765541\",\"down\":\"images/cube_2048/53/8f2bc3401b80b8d845b211b84daf449d/53_d.jpg\",\"front\":\"images/cube_2048/53/8f2bc3401b80b8d845b211b84daf449d/53_f.jpg\",\"index\":53,\"left\":\"images/cube_2048/53/8f2bc3401b80b8d845b211b84daf449d/53_l.jpg\",\"right\":\"images/cube_2048/53/8f2bc3401b80b8d845b211b84daf449d/53_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/53/8f2bc3401b80b8d845b211b84daf449d/53_u.jpg\"},{\"back\":\"images/cube_2048/54/04bdae84ec2dbf57625353b705614856/54_b.jpg\",\"derived_id\":1706765747,\"derived_id_str\":\"1706765747\",\"down\":\"images/cube_2048/54/04bdae84ec2dbf57625353b705614856/54_d.jpg\",\"front\":\"images/cube_2048/54/04bdae84ec2dbf57625353b705614856/54_f.jpg\",\"index\":54,\"left\":\"images/cube_2048/54/04bdae84ec2dbf57625353b705614856/54_l.jpg\",\"right\":\"images/cube_2048/54/04bdae84ec2dbf57625353b705614856/54_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/54/04bdae84ec2dbf57625353b705614856/54_u.jpg\"},{\"back\":\"images/cube_2048/55/b506853636bb11c134c8e7fa808d74e0/55_b.jpg\",\"derived_id\":1706765881,\"derived_id_str\":\"1706765881\",\"down\":\"images/cube_2048/55/b506853636bb11c134c8e7fa808d74e0/55_d.jpg\",\"front\":\"images/cube_2048/55/b506853636bb11c134c8e7fa808d74e0/55_f.jpg\",\"index\":55,\"left\":\"images/cube_2048/55/b506853636bb11c134c8e7fa808d74e0/55_l.jpg\",\"right\":\"images/cube_2048/55/b506853636bb11c134c8e7fa808d74e0/55_r.jpg\",\"tiles\":[1,2,3],\"up\":\"images/cube_2048/55/b506853636bb11c134c8e7fa808d74e0/55_u.jpg\"}]},\"picture_url\":\"http://vr-public.realsee-cdn.cn/release/screenshot/auto3d-light-ryadVvd3pom2plvx/647fc2cb0fc96cfa3fc42125c9fcd9f8/1706760829_28/pc0_GglgHeHEy.jpg\",\"project_id\":\"auto3d-light-qOxl24YLo1GMnX19-copy\",\"resource_code\":\"bx97g27GdKsb8MnhyD\",\"title_picture_url\":\"http://vr-public.realsee-cdn.cn/release/screenshot/auto3d-light-ryadVvd3pom2plvx/647fc2cb0fc96cfa3fc42125c9fcd9f8/1706760829_28/pc1_Nl7eEdUJf.jpg\"}" \ No newline at end of file diff --git a/open-works/virtual/816V08l4Q4Eie1qX08/index.js b/open-works/virtual/816V08l4Q4Eie1qX08/index.js new file mode 100644 index 000000000..4f2e7e0b6 --- /dev/null +++ b/open-works/virtual/816V08l4Q4Eie1qX08/index.js @@ -0,0 +1,4 @@ +import { work } from './work' +import { modelTag } from './modelTag' + +export default { work, modelTag } diff --git a/open-works/virtual/816V08l4Q4Eie1qX08/modelTag.js b/open-works/virtual/816V08l4Q4Eie1qX08/modelTag.js new file mode 100644 index 000000000..d9eed06b2 --- /dev/null +++ b/open-works/virtual/816V08l4Q4Eie1qX08/modelTag.js @@ -0,0 +1,2486 @@ +export const model_tag = [ + { + id: 'u-J9Gks3kYhaMsn1', + decoration_model_id: 2017, + decoration_model_series_id: 0, + name: '坐便器', + brand: '惠达卫浴', + length: 70.5, + width: 41, + height: 75, + version: 'IT303', + series: '', + material: '陶瓷', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_403_4____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4', + price: 2888, + unit: '件', + size_text: '41x70.5x75cm', + material_text: ['陶瓷'], + positioning_text: '', + price_text: '2888元/件', + model_series: null, + position: [-3.6411338004646345, 0.42663597311595314, 3.061839885485202], + normal: [-1, 0, 0], + }, + { + id: 'u-J9Gks3kYhaMsn1', + decoration_model_id: 2017, + decoration_model_series_id: 0, + name: '坐便器', + brand: '惠达卫浴', + length: 70.5, + width: 41, + height: 75, + version: 'IT303', + series: '', + material: '陶瓷', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_403_4____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4', + price: 2888, + unit: '件', + size_text: '41x70.5x75cm', + material_text: ['陶瓷'], + positioning_text: '', + price_text: '2888元/件', + model_series: null, + position: [-3.457038003067819, 0.37426473974705515, 2.796080775935648], + normal: [0, 0, -1], + }, + { + id: 'u-J9Gks3kYhaMsn1', + decoration_model_id: 2017, + decoration_model_series_id: 0, + name: '坐便器', + brand: '惠达卫浴', + length: 70.5, + width: 41, + height: 75, + version: 'IT303', + series: '', + material: '陶瓷', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_403_4____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4', + price: 2888, + unit: '件', + size_text: '41x70.5x75cm', + material_text: ['陶瓷'], + positioning_text: '', + price_text: '2888元/件', + model_series: null, + position: [-3.2722464600162873, 0.6939024743264978, 3.4397458120406377], + normal: [1, 0, 0], + }, + { + id: 'u-J9Gks3kYhaMsn1', + decoration_model_id: 2017, + decoration_model_series_id: 0, + name: '坐便器', + brand: '惠达卫浴', + length: 70.5, + width: 41, + height: 75, + version: 'IT303', + series: '', + material: '陶瓷', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_403_4____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4', + price: 2888, + unit: '件', + size_text: '41x70.5x75cm', + material_text: ['陶瓷'], + positioning_text: '', + price_text: '2888元/件', + model_series: null, + position: [-3.581721727126, 0.6939004473012856, 3.493710177009], + normal: [0, 0, 1], + }, + { + id: 'u-QvVwFMkYhaMSnV', + decoration_model_id: 63511, + decoration_model_series_id: 875, + name: '干衣机', + brand: '海尔智家', + length: 84.6, + width: 59.5, + height: 66.7, + version: 'CHBS N100FQP3U1', + series: '', + material: '金属', + surface_material: '', + positioning: '', + weight: 15, + introduction: + '除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。', + url: '', + images: [], + video_url: '', + price: 15999, + unit: '件', + size_text: '59.5x84.6x66.7cm', + material_text: ['金属'], + positioning_text: '', + price_text: '15999元/件', + model_series: { + id: 875, + source: 'haierdianqi', + name: '卡萨帝银河', + style: 'modern', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2021-07-26 16:03:46', + modify_time: '2021-07-26 16:03:46', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-1.7675251991449645, 0.7973104147254589, 2.4496587201785376], + normal: [1, 0, 0], + }, + { + id: 'u-QvVwFMkYhaMSnV', + decoration_model_id: 63511, + decoration_model_series_id: 875, + name: '干衣机', + brand: '海尔智家', + length: 84.6, + width: 59.5, + height: 66.7, + version: 'CHBS N100FQP3U1', + series: '', + material: '金属', + surface_material: '', + positioning: '', + weight: 15, + introduction: + '除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。', + url: '', + images: [], + video_url: '', + price: 15999, + unit: '件', + size_text: '59.5x84.6x66.7cm', + material_text: ['金属'], + positioning_text: '', + price_text: '15999元/件', + model_series: { + id: 875, + source: 'haierdianqi', + name: '卡萨帝银河', + style: 'modern', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2021-07-26 16:03:46', + modify_time: '2021-07-26 16:03:46', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-2.09020716067489, 0.5313136840181217, 2.552545120075899], + normal: [0, 0, 1], + }, + { + id: 'u-QvVwFMkYhaMSnV', + decoration_model_id: 63511, + decoration_model_series_id: 875, + name: '干衣机', + brand: '海尔智家', + length: 84.6, + width: 59.5, + height: 66.7, + version: 'CHBS N100FQP3U1', + series: '', + material: '金属', + surface_material: '', + positioning: '', + weight: 15, + introduction: + '除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。', + url: '', + images: [], + video_url: '', + price: 15999, + unit: '件', + size_text: '59.5x84.6x66.7cm', + material_text: ['金属'], + positioning_text: '', + price_text: '15999元/件', + model_series: { + id: 875, + source: 'haierdianqi', + name: '卡萨帝银河', + style: 'modern', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2021-07-26 16:03:46', + modify_time: '2021-07-26 16:03:46', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-2.359388400414524, 0.8488341021000001, 1.8684899220159112], + normal: [-1, 0, 0], + }, + { + id: 'u-QvVwFMkYhaMSnV', + decoration_model_id: 63511, + decoration_model_series_id: 875, + name: '干衣机', + brand: '海尔智家', + length: 84.6, + width: 59.5, + height: 66.7, + version: 'CHBS N100FQP3U1', + series: '', + material: '金属', + surface_material: '', + positioning: '', + weight: 15, + introduction: + '除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。', + url: '', + images: [], + video_url: '', + price: 15999, + unit: '件', + size_text: '59.5x84.6x66.7cm', + material_text: ['金属'], + positioning_text: '', + price_text: '15999元/件', + model_series: { + id: 875, + source: 'haierdianqi', + name: '卡萨帝银河', + style: 'modern', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2021-07-26 16:03:46', + modify_time: '2021-07-26 16:03:46', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-1.765077975166435, 0.8491652425684656, 1.8681893982928959], + normal: [0, 0, -1], + }, + { + id: 'u-hxeXaDKyHamspv', + decoration_model_id: 2010, + decoration_model_series_id: 0, + name: '花洒', + brand: '惠达卫浴', + length: 141, + width: 56, + height: 22, + version: 'HDB256LY', + series: '', + material: '不锈钢软管', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_383_3____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4', + price: 1929, + unit: '件', + size_text: '56x141x22cm', + material_text: ['不锈钢软管'], + positioning_text: '', + price_text: '1929元/件', + model_series: null, + position: [-4.5421826338999995, 0.7293669457, 3.440791], + normal: [-1, 0, 0], + }, + { + id: 'u-hxeXaDKyHamspv', + decoration_model_id: 2010, + decoration_model_series_id: 0, + name: '花洒', + brand: '惠达卫浴', + length: 141, + width: 56, + height: 22, + version: 'HDB256LY', + series: '', + material: '不锈钢软管', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_383_3____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4', + price: 1929, + unit: '件', + size_text: '56x141x22cm', + material_text: ['不锈钢软管'], + positioning_text: '', + price_text: '1929元/件', + model_series: null, + position: [-4.378004595449457, 1.917796552392308, 3.0054594739327447], + normal: [0, 0, -1], + }, + { + id: 'u-hxeXaDKyHamspv', + decoration_model_id: 2010, + decoration_model_series_id: 0, + name: '花洒', + brand: '惠达卫浴', + length: 141, + width: 56, + height: 22, + version: 'HDB256LY', + series: '', + material: '不锈钢软管', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_383_3____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4', + price: 1929, + unit: '件', + size_text: '56x141x22cm', + material_text: ['不锈钢软管'], + positioning_text: '', + price_text: '1929元/件', + model_series: null, + position: [-4.267048793744984, 1.917796552392308, 3.113630308600893], + normal: [1, 0, 0], + }, + { + id: 'u-hxeXaDKyHamspv', + decoration_model_id: 2010, + decoration_model_series_id: 0, + name: '花洒', + brand: '惠达卫浴', + length: 141, + width: 56, + height: 22, + version: 'HDB256LY', + series: '', + material: '不锈钢软管', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://home.fang.com/huida/productlist_1_383_3____/', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4', + price: 1929, + unit: '件', + size_text: '56x141x22cm', + material_text: ['不锈钢软管'], + positioning_text: '', + price_text: '1929元/件', + model_series: null, + position: [-4.3780442217, 1.659676020873077, 3.4924060000000003], + normal: [0, 0, 1], + }, + { + id: 'u-67D63iKyhamSv1', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-3.21333, 0.8456287156977464, 3.493277343888483], + normal: [-1, 0, 0], + }, + { + id: 'u-67D63iKyhamSv1', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-3.1541782847972986, 0.7144482291450376, 3.4020189800326124], + normal: [0, 0, -1], + }, + { + id: 'u-67D63iKyhamSv1', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-3.095824, 0.8456282165306095, 3.4932768727829435], + normal: [1, 0, 0], + }, + { + id: 'u-67D63iKyhamSv1', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-3.154178002555347, 0.8457545690940405, 3.493395024677282], + normal: [0, 0, 1], + }, + { + id: 'u-gyraaaKYhAMsYa', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [2.8397259500555556, 1.6056345, 3.7263539999999997], + normal: [0, 0, 1], + }, + { + id: 'u-gyraaaKYhAMsYa', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [2.7868601162291475, 1.606186864607852, 2.8792951795524284], + normal: [-1, 0, 0], + }, + { + id: 'u-gyraaaKYhAMsYa', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [3.3016333583999997, 1.6056345, 2.826656], + normal: [0, 0, -1], + }, + { + id: 'u-gyraaaKYhAMsYa', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [3.3016743625, 2.1003030282, 3.4616481176470586], + normal: [1, 0, 0], + }, + { + id: 'u-9lQGJNkYhamTiA', + decoration_model_id: 3621, + decoration_model_series_id: 573, + name: '家饰系列-调料瓶', + brand: 'CABANA', + length: 8, + width: 8, + height: 20.5, + version: 'MNUXXBG200025', + series: '', + material: 'ABS塑料,陶瓷研磨芯', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://cabanahome.cn', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '8x8x20.5cm', + material_text: ['ABS塑料', '陶瓷研磨芯'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 573, + source: 'cabana', + name: '家饰系列', + style: 'northern_europe', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2020-12-18 10:42:12', + modify_time: '2020-12-18 10:42:12', + source_text: 'CABANA', + style_text: '北欧', + }, + position: [3.1113268827694, 2.0556877698885554, 1.5214298823490748], + normal: [0, 0, 1], + }, + { + id: 'u-9lQGJNkYhamTiA', + decoration_model_id: 3621, + decoration_model_series_id: 573, + name: '家饰系列-调料瓶', + brand: 'CABANA', + length: 8, + width: 8, + height: 20.5, + version: 'MNUXXBG200025', + series: '', + material: 'ABS塑料,陶瓷研磨芯', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://cabanahome.cn', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '8x8x20.5cm', + material_text: ['ABS塑料', '陶瓷研磨芯'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 573, + source: 'cabana', + name: '家饰系列', + style: 'northern_europe', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2020-12-18 10:42:12', + modify_time: '2020-12-18 10:42:12', + source_text: 'CABANA', + style_text: '北欧', + }, + position: [3.111326933406895, 2.0556925697544, 1.4737000670185219], + normal: [-1, 0, -1.2000376331787844e-8], + }, + { + id: 'u-9lQGJNkYhamTiA', + decoration_model_id: 3621, + decoration_model_series_id: 573, + name: '家饰系列-调料瓶', + brand: 'CABANA', + length: 8, + width: 8, + height: 20.5, + version: 'MNUXXBG200025', + series: '', + material: 'ABS塑料,陶瓷研磨芯', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://cabanahome.cn', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '8x8x20.5cm', + material_text: ['ABS塑料', '陶瓷研磨芯'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 573, + source: 'cabana', + name: '家饰系列', + style: 'northern_europe', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2020-12-18 10:42:12', + modify_time: '2020-12-18 10:42:12', + source_text: 'CABANA', + style_text: '北欧', + }, + position: [3.111326933406895, 2.0556925697544, 1.4737000670185219], + normal: [0, 0, -1], + }, + { + id: 'u-9lQGJNkYhamTiA', + decoration_model_id: 3621, + decoration_model_series_id: 573, + name: '家饰系列-调料瓶', + brand: 'CABANA', + length: 8, + width: 8, + height: 20.5, + version: 'MNUXXBG200025', + series: '', + material: 'ABS塑料,陶瓷研磨芯', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://cabanahome.cn', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '8x8x20.5cm', + material_text: ['ABS塑料', '陶瓷研磨芯'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 573, + source: 'cabana', + name: '家饰系列', + style: 'northern_europe', + color: '深色系,浅色系', + feature: '', + image_url: '', + create_time: '2020-12-18 10:42:12', + modify_time: '2020-12-18 10:42:12', + source_text: 'CABANA', + style_text: '北欧', + }, + position: [3.1590615485982014, 2.055697369610062, 1.4737001176509252], + normal: [1, 0, 1.2000376331526299e-8], + }, + { + id: 'u-gQSeqLkYhamTKA', + decoration_model_id: 16168, + decoration_model_series_id: 0, + name: '安可密封罐哑光黑', + brand: '奇居良品', + length: 10, + width: 10, + height: 11, + version: 'CJT00320610', + series: '', + material: '强化', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://mall.jd.com/index-60162.html', + images: [], + video_url: '', + price: 78, + unit: '件', + size_text: '10x10x11cm', + material_text: ['强化'], + positioning_text: '', + price_text: '78元/件', + model_series: null, + position: [3.1805104418, 1.7275969168, 1.7541470056], + normal: [0, 0, 1], + }, + { + id: 'u-gQSeqLkYhamTKA', + decoration_model_id: 16168, + decoration_model_series_id: 0, + name: '安可密封罐哑光黑', + brand: '奇居良品', + length: 10, + width: 10, + height: 11, + version: 'CJT00320610', + series: '', + material: '强化', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://mall.jd.com/index-60162.html', + images: [], + video_url: '', + price: 78, + unit: '件', + size_text: '10x10x11cm', + material_text: ['强化'], + positioning_text: '', + price_text: '78元/件', + model_series: null, + position: [3.1805104418, 1.7275969168, 1.7020049944], + normal: [-1, 0, 0], + }, + { + id: 'u-gQSeqLkYhamTKA', + decoration_model_id: 16168, + decoration_model_series_id: 0, + name: '安可密封罐哑光黑', + brand: '奇居良品', + length: 10, + width: 10, + height: 11, + version: 'CJT00320610', + series: '', + material: '强化', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://mall.jd.com/index-60162.html', + images: [], + video_url: '', + price: 78, + unit: '件', + size_text: '10x10x11cm', + material_text: ['强化'], + positioning_text: '', + price_text: '78元/件', + model_series: null, + position: [3.2326591706000003, 1.7276036344, 1.7020049944], + normal: [0, 0, -1], + }, + { + id: 'u-gQSeqLkYhamTKA', + decoration_model_id: 16168, + decoration_model_series_id: 0, + name: '安可密封罐哑光黑', + brand: '奇居良品', + length: 10, + width: 10, + height: 11, + version: 'CJT00320610', + series: '', + material: '强化', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'https://mall.jd.com/index-60162.html', + images: [], + video_url: '', + price: 78, + unit: '件', + size_text: '10x10x11cm', + material_text: ['强化'], + positioning_text: '', + price_text: '78元/件', + model_series: null, + position: [3.2326591706000003, 1.7276036344, 1.7541470056], + normal: [1, 0, 0], + }, + { + id: 'u-lfWC33kyHaMTt9', + decoration_model_id: 64142, + decoration_model_series_id: 836, + name: '调料罐组合/餐厨用品', + brand: '被窝BIM', + length: 6.9, + width: 27.5, + height: 31.2, + version: '', + series: '', + material: '玻璃', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '27.5x6.9x31.2cm', + material_text: ['玻璃'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 836, + source: 'beiwomoxing', + name: 'BIM', + style: 'modern', + color: '深色系;浅色系', + feature: '', + image_url: '', + create_time: '2021-06-09 15:44:45', + modify_time: '2021-06-09 15:44:45', + source_text: '被窝', + style_text: '现代简约', + }, + position: [2.3837031347526083, 1.7273395024659586, 2.4003578659288665], + normal: [0, 0, -1], + }, + { + id: 'u-lfWC33kyHaMTt9', + decoration_model_id: 64142, + decoration_model_series_id: 836, + name: '调料罐组合/餐厨用品', + brand: '被窝BIM', + length: 6.9, + width: 27.5, + height: 31.2, + version: '', + series: '', + material: '玻璃', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '27.5x6.9x31.2cm', + material_text: ['玻璃'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 836, + source: 'beiwomoxing', + name: 'BIM', + style: 'modern', + color: '深色系;浅色系', + feature: '', + image_url: '', + create_time: '2021-06-09 15:44:45', + modify_time: '2021-06-09 15:44:45', + source_text: '被窝', + style_text: '现代简约', + }, + position: [2.3841828669555767, 1.7273650308027926, 2.6160681703811535], + normal: [1, 0, 0], + }, + { + id: 'u-lfWC33kyHaMTt9', + decoration_model_id: 64142, + decoration_model_series_id: 836, + name: '调料罐组合/餐厨用品', + brand: '被窝BIM', + length: 6.9, + width: 27.5, + height: 31.2, + version: '', + series: '', + material: '玻璃', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '27.5x6.9x31.2cm', + material_text: ['玻璃'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 836, + source: 'beiwomoxing', + name: 'BIM', + style: 'modern', + color: '深色系;浅色系', + feature: '', + image_url: '', + create_time: '2021-06-09 15:44:45', + modify_time: '2021-06-09 15:44:45', + source_text: '被窝', + style_text: '现代简约', + }, + position: [2.3841828669555767, 1.7273650308027926, 2.6160681703811535], + normal: [0, 0, 1], + }, + { + id: 'u-lfWC33kyHaMTt9', + decoration_model_id: 64142, + decoration_model_series_id: 836, + name: '调料罐组合/餐厨用品', + brand: '被窝BIM', + length: 6.9, + width: 27.5, + height: 31.2, + version: '', + series: '', + material: '玻璃', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '27.5x6.9x31.2cm', + material_text: ['玻璃'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 836, + source: 'beiwomoxing', + name: 'BIM', + style: 'modern', + color: '深色系;浅色系', + feature: '', + image_url: '', + create_time: '2021-06-09 15:44:45', + modify_time: '2021-06-09 15:44:45', + source_text: '被窝', + style_text: '现代简约', + }, + position: [2.343219871901093, 1.7273516364569392, 2.3993281527555856], + normal: [-1, 0, 0], + }, + { + id: 'u-g2vNIJkyHAmV52', + decoration_model_id: 27783, + decoration_model_series_id: 414, + name: 'B51(卧房)--床头柜', + brand: '家具大师', + length: 50, + width: 40, + height: 51, + version: 'N1962A', + series: '', + material: 'DMF板柜体,皮质拉手,碳素钢底架', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 972, + unit: '件', + size_text: '40x50x51cm', + material_text: ['DMF板柜体', '皮质拉手', '碳素钢底架'], + positioning_text: '', + price_text: '972元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-5.703538857142856, 0.509993, -2.23023495], + normal: [0, 0, -1], + }, + { + id: 'u-g2vNIJkyHAmV52', + decoration_model_id: 27783, + decoration_model_series_id: 414, + name: 'B51(卧房)--床头柜', + brand: '家具大师', + length: 50, + width: 40, + height: 51, + version: 'N1962A', + series: '', + material: 'DMF板柜体,皮质拉手,碳素钢底架', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 972, + unit: '件', + size_text: '40x50x51cm', + material_text: ['DMF板柜体', '皮质拉手', '碳素钢底架'], + positioning_text: '', + price_text: '972元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-5.646275365287242, 0.45271402272731454, -1.9958595148], + normal: [1, 0, 0], + }, + { + id: 'u-g2vNIJkyHAmV52', + decoration_model_id: 27783, + decoration_model_series_id: 414, + name: 'B51(卧房)--床头柜', + brand: '家具大师', + length: 50, + width: 40, + height: 51, + version: 'N1962A', + series: '', + material: 'DMF板柜体,皮质拉手,碳素钢底架', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 972, + unit: '件', + size_text: '40x50x51cm', + material_text: ['DMF板柜体', '皮质拉手', '碳素钢底架'], + positioning_text: '', + price_text: '972元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-6.063742186046511, 0.5097371860465116, -1.7315920674418606], + normal: [0, 0, 1], + }, + { + id: 'u-g2vNIJkyHAmV52', + decoration_model_id: 27783, + decoration_model_series_id: 414, + name: 'B51(卧房)--床头柜', + brand: '家具大师', + length: 50, + width: 40, + height: 51, + version: 'N1962A', + series: '', + material: 'DMF板柜体,皮质拉手,碳素钢底架', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 972, + unit: '件', + size_text: '40x50x51cm', + material_text: ['DMF板柜体', '皮质拉手', '碳素钢底架'], + positioning_text: '', + price_text: '972元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-6.063742186046511, 0.5097371860465116, -2.2298279325581394], + normal: [-1, 0, 0], + }, + { + id: 'u-bCM7nmkyHAmvHO', + decoration_model_id: 27634, + decoration_model_series_id: 414, + name: 'B51(卧房)-床', + brand: '家具大师', + length: 184, + width: 213, + height: 112, + version: 'M1831B-大', + series: '', + material: '布艺床,莫迪灰色麻,橡胶木', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 3067.2, + unit: '件', + size_text: '213x184x112cm', + material_text: ['布艺床', '莫迪灰色麻', '橡胶木'], + positioning_text: '', + price_text: '3067.2元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-7.329763555960893, 0.40965507402556384, 0.011656798247666078], + normal: [0, 0, 1], + }, + { + id: 'u-bCM7nmkyHAmvHO', + decoration_model_id: 27634, + decoration_model_series_id: 414, + name: 'B51(卧房)-床', + brand: '家具大师', + length: 184, + width: 213, + height: 112, + version: 'M1831B-大', + series: '', + material: '布艺床,莫迪灰色麻,橡胶木', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 3067.2, + unit: '件', + size_text: '213x184x112cm', + material_text: ['布艺床', '莫迪灰色麻', '橡胶木'], + positioning_text: '', + price_text: '3067.2元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-8.346911052865021, 0.2554605238913824, -1.4198951450014674], + normal: [-1, 0, 0], + }, + { + id: 'u-bCM7nmkyHAmvHO', + decoration_model_id: 27634, + decoration_model_series_id: 414, + name: 'B51(卧房)-床', + brand: '家具大师', + length: 184, + width: 213, + height: 112, + version: 'M1831B-大', + series: '', + material: '布艺床,莫迪灰色麻,橡胶木', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 3067.2, + unit: '件', + size_text: '213x184x112cm', + material_text: ['布艺床', '莫迪灰色麻', '橡胶木'], + positioning_text: '', + price_text: '3067.2元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-7.1767361969295775, 0.4593517575155859, -1.8256046257041392], + normal: [0, 0, -1], + }, + { + id: 'u-bCM7nmkyHAmvHO', + decoration_model_id: 27634, + decoration_model_series_id: 414, + name: 'B51(卧房)-床', + brand: '家具大师', + length: 184, + width: 213, + height: 112, + version: 'M1831B-大', + series: '', + material: '布艺床,莫迪灰色麻,橡胶木', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 3067.2, + unit: '件', + size_text: '213x184x112cm', + material_text: ['布艺床', '莫迪灰色麻', '橡胶木'], + positioning_text: '', + price_text: '3067.2元/件', + model_series: { + id: 414, + source: 'jiajudashi', + name: 'B51(卧房)', + style: 'new_chinese', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-11-13 11:46:44', + modify_time: '2020-11-13 11:46:44', + source_text: '家具大师', + style_text: '新中式', + }, + position: [-6.207680787108412, 0.8695857028412562, -0.08874910148626292], + normal: [1, 0, 0], + }, + { + id: 'u-x9o3VFkyHamx6R', + decoration_model_id: 27051, + decoration_model_series_id: 11, + name: '莫拉-床', + brand: '爱依瑞斯', + length: 201, + width: 221, + height: 120, + version: '20MOC020', + series: '', + material: '布艺,实木脚', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '221x201x120cm', + material_text: ['布艺', '实木脚'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 11, + source: 'aiyi', + name: '莫拉', + style: 'northern_europe', + color: '岩石灰', + feature: '简洁造型,风格普适,活力色彩', + image_url: '', + create_time: '2020-07-16 18:29:28', + modify_time: '2020-07-16 18:29:28', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [-6.0327486958624705, 0.9964769564372375, -1.7286716966529725], + normal: [0, 0, -1], + }, + { + id: 'u-x9o3VFkyHamx6R', + decoration_model_id: 27051, + decoration_model_series_id: 11, + name: '莫拉-床', + brand: '爱依瑞斯', + length: 201, + width: 221, + height: 120, + version: '20MOC020', + series: '', + material: '布艺,实木脚', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '221x201x120cm', + material_text: ['布艺', '实木脚'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 11, + source: 'aiyi', + name: '莫拉', + style: 'northern_europe', + color: '岩石灰', + feature: '简洁造型,风格普适,活力色彩', + image_url: '', + create_time: '2020-07-16 18:29:28', + modify_time: '2020-07-16 18:29:28', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [-3.8542760841196193, 0.314394, 0.1944709058286752], + normal: [1, 0, 0], + }, + { + id: 'u-x9o3VFkyHamx6R', + decoration_model_id: 27051, + decoration_model_series_id: 11, + name: '莫拉-床', + brand: '爱依瑞斯', + length: 201, + width: 221, + height: 120, + version: '20MOC020', + series: '', + material: '布艺,实木脚', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '221x201x120cm', + material_text: ['布艺', '实木脚'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 11, + source: 'aiyi', + name: '莫拉', + style: 'northern_europe', + color: '岩石灰', + feature: '简洁造型,风格普适,活力色彩', + image_url: '', + create_time: '2020-07-16 18:29:28', + modify_time: '2020-07-16 18:29:28', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [-6.0372589218786095, 1.0483407251380814, 0.2943169080125073], + normal: [0, 0, 1], + }, + { + id: 'u-x9o3VFkyHamx6R', + decoration_model_id: 27051, + decoration_model_series_id: 11, + name: '莫拉-床', + brand: '爱依瑞斯', + length: 201, + width: 221, + height: 120, + version: '20MOC020', + series: '', + material: '布艺,实木脚', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '221x201x120cm', + material_text: ['布艺', '实木脚'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 11, + source: 'aiyi', + name: '莫拉', + style: 'northern_europe', + color: '岩石灰', + feature: '简洁造型,风格普适,活力色彩', + image_url: '', + create_time: '2020-07-16 18:29:28', + modify_time: '2020-07-16 18:29:28', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [-6.081034549756795, 1.0488828990524823, -1.578229616386521], + normal: [-1, 0, 0], + }, + { + id: 'u-3qzl9fkYHAMXaj', + decoration_model_id: 25895, + decoration_model_series_id: 409, + name: '优格2021浴室柜', + brand: '自如', + length: 80, + width: 80, + height: 50, + version: '浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜', + series: '', + material: '木纹', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z', + images: [], + video_url: '', + price: 0, + unit: '个', + size_text: '80x80x50cm', + material_text: ['木纹'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 409, + source: 'ziroom', + name: '优格2021', + style: 'northern_europe', + color: '浅色', + feature: '', + image_url: '', + create_time: '2020-11-05 18:42:49', + modify_time: '2020-11-05 18:42:49', + source_text: '自如', + style_text: '北欧', + }, + position: [-2.4347386068, 0.8080466666666667, 2.3716529457999997], + normal: [1, 0, 0], + }, + { + id: 'u-3qzl9fkYHAMXaj', + decoration_model_id: 25895, + decoration_model_series_id: 409, + name: '优格2021浴室柜', + brand: '自如', + length: 80, + width: 80, + height: 50, + version: '浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜', + series: '', + material: '木纹', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z', + images: [], + video_url: '', + price: 0, + unit: '个', + size_text: '80x80x50cm', + material_text: ['木纹'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 409, + source: 'ziroom', + name: '优格2021', + style: 'northern_europe', + color: '浅色', + feature: '', + image_url: '', + create_time: '2020-11-05 18:42:49', + modify_time: '2020-11-05 18:42:49', + source_text: '自如', + style_text: '北欧', + }, + position: [-3.2467933932, 0.8080466666666667, 2.3716529457999997], + normal: [0, 0, 1], + }, + { + id: 'u-3qzl9fkYHAMXaj', + decoration_model_id: 25895, + decoration_model_series_id: 409, + name: '优格2021浴室柜', + brand: '自如', + length: 80, + width: 80, + height: 50, + version: '浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜', + series: '', + material: '木纹', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z', + images: [], + video_url: '', + price: 0, + unit: '个', + size_text: '80x80x50cm', + material_text: ['木纹'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 409, + source: 'ziroom', + name: '优格2021', + style: 'northern_europe', + color: '浅色', + feature: '', + image_url: '', + create_time: '2020-11-05 18:42:49', + modify_time: '2020-11-05 18:42:49', + source_text: '自如', + style_text: '北欧', + }, + position: [-3.2495287789780973, 0.8080466666666667, 1.8685682227905043], + normal: [-1, 0, 0], + }, + { + id: 'u-3qzl9fkYHAMXaj', + decoration_model_id: 25895, + decoration_model_series_id: 409, + name: '优格2021浴室柜', + brand: '自如', + length: 80, + width: 80, + height: 50, + version: '浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜', + series: '', + material: '木纹', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: 'https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z', + images: [], + video_url: '', + price: 0, + unit: '个', + size_text: '80x80x50cm', + material_text: ['木纹'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 409, + source: 'ziroom', + name: '优格2021', + style: 'northern_europe', + color: '浅色', + feature: '', + image_url: '', + create_time: '2020-11-05 18:42:49', + modify_time: '2020-11-05 18:42:49', + source_text: '自如', + style_text: '北欧', + }, + position: [-2.4320032210219025, 0.8080466666666667, 1.8685682227905043], + normal: [0, 0, -1], + }, + { + id: 'u-DZ3Y5tKYHAmXD0', + decoration_model_id: 14962, + decoration_model_series_id: 750, + name: '基础鞋柜', + brand: '待人接物', + length: 80, + width: 38, + height: 115, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '38x80x115cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 750, + source: 'dairenjiewu', + name: '基础', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-12-28 17:59:28', + modify_time: '2020-12-28 17:59:28', + source_text: '待人接物', + style_text: '北欧', + }, + position: [1.6294863166333495, 1.1436028669798033, -0.41140780531315996], + normal: [-0.00009999999950007028, 0, 0.9999999950000001], + }, + { + id: 'u-DZ3Y5tKYHAmXD0', + decoration_model_id: 14962, + decoration_model_series_id: 750, + name: '基础鞋柜', + brand: '待人接物', + length: 80, + width: 38, + height: 115, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '38x80x115cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 750, + source: 'dairenjiewu', + name: '基础', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-12-28 17:59:28', + modify_time: '2020-12-28 17:59:28', + source_text: '待人接物', + style_text: '北欧', + }, + position: [1.6295665954875034, 1.1436028669798033, -1.214116067995628], + normal: [-0.999999994999, 0, -0.00010001000049986626], + }, + { + id: 'u-DZ3Y5tKYHAmXD0', + decoration_model_id: 14962, + decoration_model_series_id: 750, + name: '基础鞋柜', + brand: '待人接物', + length: 80, + width: 38, + height: 115, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '38x80x115cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 750, + source: 'dairenjiewu', + name: '基础', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-12-28 17:59:28', + modify_time: '2020-12-28 17:59:28', + source_text: '待人接物', + style_text: '北欧', + }, + position: [2.0101381347, 1.14379, -1.2140307448], + normal: [0.00009999999950035981, 0, -0.9999999950000001], + }, + { + id: 'u-DZ3Y5tKYHAmXD0', + decoration_model_id: 14962, + decoration_model_series_id: 750, + name: '基础鞋柜', + brand: '待人接物', + length: 80, + width: 38, + height: 115, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '38x80x115cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 750, + source: 'dairenjiewu', + name: '基础', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-12-28 17:59:28', + modify_time: '2020-12-28 17:59:28', + source_text: '待人接物', + style_text: '北欧', + }, + position: [2.0100578653000003, 1.14379, -0.41141701420000004], + normal: [0.9999999949989999, 0, 0.00010001000049986625], + }, + { + id: 'u-3Xf4p4kyhAMXCA', + decoration_model_id: 15566, + decoration_model_series_id: 534, + name: '书桌系列-餐桌', + brand: '厌式房间', + length: 150, + width: 80, + height: 75, + version: 'HRZ', + series: '', + material: '北美白蜡木', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '80x150x75cm', + material_text: ['北美白蜡木'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 534, + source: 'yanshifangjian', + name: '书桌系列', + style: 'northern_europe', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2020-12-14 14:39:31', + modify_time: '2020-12-14 14:39:31', + source_text: '厌式房间', + style_text: '北欧', + }, + position: [-1.4938430835199998, 0.7397119999999999, -1.3555038437], + normal: [-0.999988480199062, 0, -0.0047999447049556], + }, + { + id: 'u-3Xf4p4kyhAMXCA', + decoration_model_id: 15566, + decoration_model_series_id: 534, + name: '书桌系列-餐桌', + brand: '厌式房间', + length: 150, + width: 80, + height: 75, + version: 'HRZ', + series: '', + material: '北美白蜡木', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '80x150x75cm', + material_text: ['北美白蜡木'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 534, + source: 'yanshifangjian', + name: '书桌系列', + style: 'northern_europe', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2020-12-14 14:39:31', + modify_time: '2020-12-14 14:39:31', + source_text: '厌式房间', + style_text: '北欧', + }, + position: [0.0023055829963467556, 0.735682, -1.39693024512949], + normal: [0.004899941176559339, 0, -0.9999879952161758], + }, + { + id: 'u-3Xf4p4kyhAMXCA', + decoration_model_id: 15566, + decoration_model_series_id: 534, + name: '书桌系列-餐桌', + brand: '厌式房间', + length: 150, + width: 80, + height: 75, + version: 'HRZ', + series: '', + material: '北美白蜡木', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '80x150x75cm', + material_text: ['北美白蜡木'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 534, + source: 'yanshifangjian', + name: '书桌系列', + style: 'northern_europe', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2020-12-14 14:39:31', + modify_time: '2020-12-14 14:39:31', + source_text: '厌式房间', + style_text: '北欧', + }, + position: [-0.0008570780800001288, 0.7397119999999999, -0.6617148667999998], + normal: [0.999988480199062, 0, 0.004799944704955462], + }, + { + id: 'u-3Xf4p4kyhAMXCA', + decoration_model_id: 15566, + decoration_model_series_id: 534, + name: '书桌系列-餐桌', + brand: '厌式房间', + length: 150, + width: 80, + height: 75, + version: 'HRZ', + series: '', + material: '北美白蜡木', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '80x150x75cm', + material_text: ['北美白蜡木'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 534, + source: 'yanshifangjian', + name: '书桌系列', + style: 'northern_europe', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2020-12-14 14:39:31', + modify_time: '2020-12-14 14:39:31', + source_text: '厌式房间', + style_text: '北欧', + }, + position: [-1.4970055991786875, 0.735682, -0.6202894444719872], + normal: [-0.0048999411765591906, 0, 0.9999879952161758], + }, + { + id: 'u-RZ63G6kyHAmXjR', + decoration_model_id: 19853, + decoration_model_series_id: 185, + name: '巴比松茶几', + brand: '优梵艺术', + length: 79, + width: 79, + height: 45, + version: '193016', + series: '', + material: 'P2级MDF,白蜡木木皮', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: 'https://detail.tmall.com/item.htm?id=560504121451', + images: [], + video_url: '', + price: 0, + unit: '张', + size_text: '79x79x45cm', + material_text: ['P2级MDF', '白蜡木木皮'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 185, + source: 'youfanyishu', + name: '巴比松', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-09-07 10:21:23', + modify_time: '2020-09-07 10:21:23', + source_text: '优梵艺术', + style_text: '北欧', + }, + position: [0.25763310529668454, 0.459187, 1.7307510842138778], + normal: [0, 0, 1], + }, + { + id: 'u-RZ63G6kyHAmXjR', + decoration_model_id: 19853, + decoration_model_series_id: 185, + name: '巴比松茶几', + brand: '优梵艺术', + length: 79, + width: 79, + height: 45, + version: '193016', + series: '', + material: 'P2级MDF,白蜡木木皮', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: 'https://detail.tmall.com/item.htm?id=560504121451', + images: [], + video_url: '', + price: 0, + unit: '张', + size_text: '79x79x45cm', + material_text: ['P2级MDF', '白蜡木木皮'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 185, + source: 'youfanyishu', + name: '巴比松', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-09-07 10:21:23', + modify_time: '2020-09-07 10:21:23', + source_text: '优梵艺术', + style_text: '北欧', + }, + position: [-0.05839033008871575, 0.4597094236299749, 1.4718034693103388], + normal: [-1, 0, 0], + }, + { + id: 'u-RZ63G6kyHAmXjR', + decoration_model_id: 19853, + decoration_model_series_id: 185, + name: '巴比松茶几', + brand: '优梵艺术', + length: 79, + width: 79, + height: 45, + version: '193016', + series: '', + material: 'P2级MDF,白蜡木木皮', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: 'https://detail.tmall.com/item.htm?id=560504121451', + images: [], + video_url: '', + price: 0, + unit: '张', + size_text: '79x79x45cm', + material_text: ['P2级MDF', '白蜡木木皮'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 185, + source: 'youfanyishu', + name: '巴比松', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-09-07 10:21:23', + modify_time: '2020-09-07 10:21:23', + source_text: '优梵艺术', + style_text: '北欧', + }, + position: [0.3621932970634121, 0.459289, 0.946842873759063], + normal: [0, 0, -1], + }, + { + id: 'u-RZ63G6kyHAmXjR', + decoration_model_id: 19853, + decoration_model_series_id: 185, + name: '巴比松茶几', + brand: '优梵艺术', + length: 79, + width: 79, + height: 45, + version: '193016', + series: '', + material: 'P2级MDF,白蜡木木皮', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: 'https://detail.tmall.com/item.htm?id=560504121451', + images: [], + video_url: '', + price: 0, + unit: '张', + size_text: '79x79x45cm', + material_text: ['P2级MDF', '白蜡木木皮'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 185, + source: 'youfanyishu', + name: '巴比松', + style: 'northern_europe', + color: '原木色', + feature: '', + image_url: '', + create_time: '2020-09-07 10:21:23', + modify_time: '2020-09-07 10:21:23', + source_text: '优梵艺术', + style_text: '北欧', + }, + position: [0.7272620879743806, 0.459187, 1.523652482020549], + normal: [1, 0, 0], + }, + { + id: 'u-4iy3KaKYHAMWpU', + decoration_model_id: 26726, + decoration_model_series_id: 508, + name: '单椅墩子-沙发凳', + brand: '爱依瑞斯', + length: 58, + width: 58, + height: 35, + version: '图尔', + series: '', + material: '布艺,木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x58x35cm', + material_text: ['布艺', '木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 508, + source: 'aiyi', + name: '单椅墩子', + style: 'northern_europe', + color: '灰色', + feature: '', + image_url: '', + create_time: '2020-12-10 15:20:06', + modify_time: '2020-12-10 15:20:06', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [0.2837185002508229, 0.2418660531881764, 2.527019172267701], + normal: [0, 0, 1], + }, + { + id: 'u-4iy3KaKYHAMWpU', + decoration_model_id: 26726, + decoration_model_series_id: 508, + name: '单椅墩子-沙发凳', + brand: '爱依瑞斯', + length: 58, + width: 58, + height: 35, + version: '图尔', + series: '', + material: '布艺,木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x58x35cm', + material_text: ['布艺', '木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 508, + source: 'aiyi', + name: '单椅墩子', + style: 'northern_europe', + color: '灰色', + feature: '', + image_url: '', + create_time: '2020-12-10 15:20:06', + modify_time: '2020-12-10 15:20:06', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [0.02374024131507213, 0.2418660531881764, 2.2152430914416787], + normal: [-1, 0, 0], + }, + { + id: 'u-4iy3KaKYHAMWpU', + decoration_model_id: 26726, + decoration_model_series_id: 508, + name: '单椅墩子-沙发凳', + brand: '爱依瑞斯', + length: 58, + width: 58, + height: 35, + version: '图尔', + series: '', + material: '布艺,木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x58x35cm', + material_text: ['布艺', '木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 508, + source: 'aiyi', + name: '单椅墩子', + style: 'northern_europe', + color: '灰色', + feature: '', + image_url: '', + create_time: '2020-12-10 15:20:06', + modify_time: '2020-12-10 15:20:06', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [0.335547499749177, 0.2418660531881764, 1.955290827732299], + normal: [0, 0, -1], + }, + { + id: 'u-4iy3KaKYHAMWpU', + decoration_model_id: 26726, + decoration_model_series_id: 508, + name: '单椅墩子-沙发凳', + brand: '爱依瑞斯', + length: 58, + width: 58, + height: 35, + version: '图尔', + series: '', + material: '布艺,木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: 'http://www.realsee.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x58x35cm', + material_text: ['布艺', '木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 508, + source: 'aiyi', + name: '单椅墩子', + style: 'northern_europe', + color: '灰色', + feature: '', + image_url: '', + create_time: '2020-12-10 15:20:06', + modify_time: '2020-12-10 15:20:06', + source_text: '爱依瑞斯', + style_text: '北欧', + }, + position: [0.5955257586849279, 0.2418660531881764, 2.2670669085583213], + normal: [1, 0, 0], + }, +] diff --git a/open-works/virtual/816V08l4Q4Eie1qX08/modelTag.json b/open-works/virtual/816V08l4Q4Eie1qX08/modelTag.json new file mode 100644 index 000000000..b97d5cd1d --- /dev/null +++ b/open-works/virtual/816V08l4Q4Eie1qX08/modelTag.json @@ -0,0 +1,2482 @@ +[ + { + "id": "u-J9Gks3kYhaMsn1", + "decoration_model_id": 2017, + "decoration_model_series_id": 0, + "name": "坐便器", + "brand": "惠达卫浴", + "length": 70.5, + "width": 41, + "height": 75, + "version": "IT303", + "series": "", + "material": "陶瓷", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_403_4____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4", + "price": 2888, + "unit": "件", + "size_text": "41x70.5x75cm", + "material_text": ["陶瓷"], + "positioning_text": "", + "price_text": "2888元/件", + "model_series": null, + "position": [-3.6411338004646345, 0.42663597311595314, 3.061839885485202], + "normal": [-1, 0, 0] + }, + { + "id": "u-J9Gks3kYhaMsn1", + "decoration_model_id": 2017, + "decoration_model_series_id": 0, + "name": "坐便器", + "brand": "惠达卫浴", + "length": 70.5, + "width": 41, + "height": 75, + "version": "IT303", + "series": "", + "material": "陶瓷", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_403_4____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4", + "price": 2888, + "unit": "件", + "size_text": "41x70.5x75cm", + "material_text": ["陶瓷"], + "positioning_text": "", + "price_text": "2888元/件", + "model_series": null, + "position": [-3.457038003067819, 0.37426473974705515, 2.796080775935648], + "normal": [0, 0, -1] + }, + { + "id": "u-J9Gks3kYhaMsn1", + "decoration_model_id": 2017, + "decoration_model_series_id": 0, + "name": "坐便器", + "brand": "惠达卫浴", + "length": 70.5, + "width": 41, + "height": 75, + "version": "IT303", + "series": "", + "material": "陶瓷", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_403_4____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4", + "price": 2888, + "unit": "件", + "size_text": "41x70.5x75cm", + "material_text": ["陶瓷"], + "positioning_text": "", + "price_text": "2888元/件", + "model_series": null, + "position": [-3.2722464600162873, 0.6939024743264978, 3.4397458120406377], + "normal": [1, 0, 0] + }, + { + "id": "u-J9Gks3kYhaMsn1", + "decoration_model_id": 2017, + "decoration_model_series_id": 0, + "name": "坐便器", + "brand": "惠达卫浴", + "length": 70.5, + "width": 41, + "height": 75, + "version": "IT303", + "series": "", + "material": "陶瓷", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_403_4____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/1a8bc7492753ed0885094e7a16f9e852/video.mp4", + "price": 2888, + "unit": "件", + "size_text": "41x70.5x75cm", + "material_text": ["陶瓷"], + "positioning_text": "", + "price_text": "2888元/件", + "model_series": null, + "position": [-3.581721727126, 0.6939004473012856, 3.493710177009], + "normal": [0, 0, 1] + }, + { + "id": "u-QvVwFMkYhaMSnV", + "decoration_model_id": 63511, + "decoration_model_series_id": 875, + "name": "干衣机", + "brand": "海尔智家", + "length": 84.6, + "width": 59.5, + "height": 66.7, + "version": "CHBS N100FQP3U1", + "series": "", + "material": "金属", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。", + "url": "", + "images": [], + "video_url": "", + "price": 15999, + "unit": "件", + "size_text": "59.5x84.6x66.7cm", + "material_text": ["金属"], + "positioning_text": "", + "price_text": "15999元/件", + "model_series": { + "id": 875, + "source": "haierdianqi", + "name": "卡萨帝银河", + "style": "modern", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-07-26 16:03:46", + "modify_time": "2021-07-26 16:03:46", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-1.7675251991449645, 0.7973104147254589, 2.4496587201785376], + "normal": [1, 0, 0] + }, + { + "id": "u-QvVwFMkYhaMSnV", + "decoration_model_id": 63511, + "decoration_model_series_id": 875, + "name": "干衣机", + "brand": "海尔智家", + "length": 84.6, + "width": 59.5, + "height": 66.7, + "version": "CHBS N100FQP3U1", + "series": "", + "material": "金属", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。", + "url": "", + "images": [], + "video_url": "", + "price": 15999, + "unit": "件", + "size_text": "59.5x84.6x66.7cm", + "material_text": ["金属"], + "positioning_text": "", + "price_text": "15999元/件", + "model_series": { + "id": 875, + "source": "haierdianqi", + "name": "卡萨帝银河", + "style": "modern", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-07-26 16:03:46", + "modify_time": "2021-07-26 16:03:46", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-2.09020716067489, 0.5313136840181217, 2.552545120075899], + "normal": [0, 0, 1] + }, + { + "id": "u-QvVwFMkYhaMSnV", + "decoration_model_id": 63511, + "decoration_model_series_id": 875, + "name": "干衣机", + "brand": "海尔智家", + "length": 84.6, + "width": 59.5, + "height": 66.7, + "version": "CHBS N100FQP3U1", + "series": "", + "material": "金属", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。", + "url": "", + "images": [], + "video_url": "", + "price": 15999, + "unit": "件", + "size_text": "59.5x84.6x66.7cm", + "material_text": ["金属"], + "positioning_text": "", + "price_text": "15999元/件", + "model_series": { + "id": 875, + "source": "haierdianqi", + "name": "卡萨帝银河", + "style": "modern", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-07-26 16:03:46", + "modify_time": "2021-07-26 16:03:46", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-2.359388400414524, 0.8488341021000001, 1.8684899220159112], + "normal": [-1, 0, 0] + }, + { + "id": "u-QvVwFMkYhaMSnV", + "decoration_model_id": 63511, + "decoration_model_series_id": 875, + "name": "干衣机", + "brand": "海尔智家", + "length": 84.6, + "width": 59.5, + "height": 66.7, + "version": "CHBS N100FQP3U1", + "series": "", + "material": "金属", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "除菌率>99.9%\r\n物理方式杀灭纤维深处的细菌,守护家人健康穿衣。 \r\n除螨率100%\r\n有效杀灭纤维内外的螨虫,呵护宝宝娇嫩肌肤。\r\n均匀度提升80%\r\n智能调控内筒进行1:1正反双向转动,抖散衣物蓬松舒展。", + "url": "", + "images": [], + "video_url": "", + "price": 15999, + "unit": "件", + "size_text": "59.5x84.6x66.7cm", + "material_text": ["金属"], + "positioning_text": "", + "price_text": "15999元/件", + "model_series": { + "id": 875, + "source": "haierdianqi", + "name": "卡萨帝银河", + "style": "modern", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-07-26 16:03:46", + "modify_time": "2021-07-26 16:03:46", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-1.765077975166435, 0.8491652425684656, 1.8681893982928959], + "normal": [0, 0, -1] + }, + { + "id": "u-hxeXaDKyHamspv", + "decoration_model_id": 2010, + "decoration_model_series_id": 0, + "name": "花洒", + "brand": "惠达卫浴", + "length": 141, + "width": 56, + "height": 22, + "version": "HDB256LY", + "series": "", + "material": "不锈钢软管", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_383_3____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4", + "price": 1929, + "unit": "件", + "size_text": "56x141x22cm", + "material_text": ["不锈钢软管"], + "positioning_text": "", + "price_text": "1929元/件", + "model_series": null, + "position": [-4.5421826338999995, 0.7293669457, 3.440791], + "normal": [-1, 0, 0] + }, + { + "id": "u-hxeXaDKyHamspv", + "decoration_model_id": 2010, + "decoration_model_series_id": 0, + "name": "花洒", + "brand": "惠达卫浴", + "length": 141, + "width": 56, + "height": 22, + "version": "HDB256LY", + "series": "", + "material": "不锈钢软管", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_383_3____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4", + "price": 1929, + "unit": "件", + "size_text": "56x141x22cm", + "material_text": ["不锈钢软管"], + "positioning_text": "", + "price_text": "1929元/件", + "model_series": null, + "position": [-4.378004595449457, 1.917796552392308, 3.0054594739327447], + "normal": [0, 0, -1] + }, + { + "id": "u-hxeXaDKyHamspv", + "decoration_model_id": 2010, + "decoration_model_series_id": 0, + "name": "花洒", + "brand": "惠达卫浴", + "length": 141, + "width": 56, + "height": 22, + "version": "HDB256LY", + "series": "", + "material": "不锈钢软管", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_383_3____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4", + "price": 1929, + "unit": "件", + "size_text": "56x141x22cm", + "material_text": ["不锈钢软管"], + "positioning_text": "", + "price_text": "1929元/件", + "model_series": null, + "position": [-4.267048793744984, 1.917796552392308, 3.113630308600893], + "normal": [1, 0, 0] + }, + { + "id": "u-hxeXaDKyHamspv", + "decoration_model_id": 2010, + "decoration_model_series_id": 0, + "name": "花洒", + "brand": "惠达卫浴", + "length": 141, + "width": 56, + "height": 22, + "version": "HDB256LY", + "series": "", + "material": "不锈钢软管", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://home.fang.com/huida/productlist_1_383_3____/", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/e78ac8e406775ae9f0aed65f8b6b4280/video.mp4", + "price": 1929, + "unit": "件", + "size_text": "56x141x22cm", + "material_text": ["不锈钢软管"], + "positioning_text": "", + "price_text": "1929元/件", + "model_series": null, + "position": [-4.3780442217, 1.659676020873077, 3.4924060000000003], + "normal": [0, 0, 1] + }, + { + "id": "u-67D63iKyhamSv1", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-3.21333, 0.8456287156977464, 3.493277343888483], + "normal": [-1, 0, 0] + }, + { + "id": "u-67D63iKyhamSv1", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-3.1541782847972986, 0.7144482291450376, 3.4020189800326124], + "normal": [0, 0, -1] + }, + { + "id": "u-67D63iKyhamSv1", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-3.095824, 0.8456282165306095, 3.4932768727829435], + "normal": [1, 0, 0] + }, + { + "id": "u-67D63iKyhamSv1", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-3.154178002555347, 0.8457545690940405, 3.493395024677282], + "normal": [0, 0, 1] + }, + { + "id": "u-gyraaaKYhAMsYa", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [2.8397259500555556, 1.6056345, 3.7263539999999997], + "normal": [0, 0, 1] + }, + { + "id": "u-gyraaaKYhAMsYa", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [2.7868601162291475, 1.606186864607852, 2.8792951795524284], + "normal": [-1, 0, 0] + }, + { + "id": "u-gyraaaKYhAMsYa", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [3.3016333583999997, 1.6056345, 2.826656], + "normal": [0, 0, -1] + }, + { + "id": "u-gyraaaKYhAMsYa", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [3.3016743625, 2.1003030282, 3.4616481176470586], + "normal": [1, 0, 0] + }, + { + "id": "u-9lQGJNkYhamTiA", + "decoration_model_id": 3621, + "decoration_model_series_id": 573, + "name": "家饰系列-调料瓶", + "brand": "CABANA", + "length": 8, + "width": 8, + "height": 20.5, + "version": "MNUXXBG200025", + "series": "", + "material": "ABS塑料,陶瓷研磨芯", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://cabanahome.cn", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "8x8x20.5cm", + "material_text": ["ABS塑料", "陶瓷研磨芯"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 573, + "source": "cabana", + "name": "家饰系列", + "style": "northern_europe", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-18 10:42:12", + "modify_time": "2020-12-18 10:42:12", + "source_text": "CABANA", + "style_text": "北欧" + }, + "position": [3.1113268827694, 2.0556877698885554, 1.5214298823490748], + "normal": [0, 0, 1] + }, + { + "id": "u-9lQGJNkYhamTiA", + "decoration_model_id": 3621, + "decoration_model_series_id": 573, + "name": "家饰系列-调料瓶", + "brand": "CABANA", + "length": 8, + "width": 8, + "height": 20.5, + "version": "MNUXXBG200025", + "series": "", + "material": "ABS塑料,陶瓷研磨芯", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://cabanahome.cn", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "8x8x20.5cm", + "material_text": ["ABS塑料", "陶瓷研磨芯"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 573, + "source": "cabana", + "name": "家饰系列", + "style": "northern_europe", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-18 10:42:12", + "modify_time": "2020-12-18 10:42:12", + "source_text": "CABANA", + "style_text": "北欧" + }, + "position": [3.111326933406895, 2.0556925697544, 1.4737000670185219], + "normal": [-1, 0, -1.2000376331787844e-8] + }, + { + "id": "u-9lQGJNkYhamTiA", + "decoration_model_id": 3621, + "decoration_model_series_id": 573, + "name": "家饰系列-调料瓶", + "brand": "CABANA", + "length": 8, + "width": 8, + "height": 20.5, + "version": "MNUXXBG200025", + "series": "", + "material": "ABS塑料,陶瓷研磨芯", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://cabanahome.cn", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "8x8x20.5cm", + "material_text": ["ABS塑料", "陶瓷研磨芯"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 573, + "source": "cabana", + "name": "家饰系列", + "style": "northern_europe", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-18 10:42:12", + "modify_time": "2020-12-18 10:42:12", + "source_text": "CABANA", + "style_text": "北欧" + }, + "position": [3.111326933406895, 2.0556925697544, 1.4737000670185219], + "normal": [0, 0, -1] + }, + { + "id": "u-9lQGJNkYhamTiA", + "decoration_model_id": 3621, + "decoration_model_series_id": 573, + "name": "家饰系列-调料瓶", + "brand": "CABANA", + "length": 8, + "width": 8, + "height": 20.5, + "version": "MNUXXBG200025", + "series": "", + "material": "ABS塑料,陶瓷研磨芯", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://cabanahome.cn", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "8x8x20.5cm", + "material_text": ["ABS塑料", "陶瓷研磨芯"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 573, + "source": "cabana", + "name": "家饰系列", + "style": "northern_europe", + "color": "深色系,浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-18 10:42:12", + "modify_time": "2020-12-18 10:42:12", + "source_text": "CABANA", + "style_text": "北欧" + }, + "position": [3.1590615485982014, 2.055697369610062, 1.4737001176509252], + "normal": [1, 0, 1.2000376331526299e-8] + }, + { + "id": "u-gQSeqLkYhamTKA", + "decoration_model_id": 16168, + "decoration_model_series_id": 0, + "name": "安可密封罐哑光黑", + "brand": "奇居良品", + "length": 10, + "width": 10, + "height": 11, + "version": "CJT00320610", + "series": "", + "material": "强化", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://mall.jd.com/index-60162.html", + "images": [], + "video_url": "", + "price": 78, + "unit": "件", + "size_text": "10x10x11cm", + "material_text": ["强化"], + "positioning_text": "", + "price_text": "78元/件", + "model_series": null, + "position": [3.1805104418, 1.7275969168, 1.7541470056], + "normal": [0, 0, 1] + }, + { + "id": "u-gQSeqLkYhamTKA", + "decoration_model_id": 16168, + "decoration_model_series_id": 0, + "name": "安可密封罐哑光黑", + "brand": "奇居良品", + "length": 10, + "width": 10, + "height": 11, + "version": "CJT00320610", + "series": "", + "material": "强化", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://mall.jd.com/index-60162.html", + "images": [], + "video_url": "", + "price": 78, + "unit": "件", + "size_text": "10x10x11cm", + "material_text": ["强化"], + "positioning_text": "", + "price_text": "78元/件", + "model_series": null, + "position": [3.1805104418, 1.7275969168, 1.7020049944], + "normal": [-1, 0, 0] + }, + { + "id": "u-gQSeqLkYhamTKA", + "decoration_model_id": 16168, + "decoration_model_series_id": 0, + "name": "安可密封罐哑光黑", + "brand": "奇居良品", + "length": 10, + "width": 10, + "height": 11, + "version": "CJT00320610", + "series": "", + "material": "强化", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://mall.jd.com/index-60162.html", + "images": [], + "video_url": "", + "price": 78, + "unit": "件", + "size_text": "10x10x11cm", + "material_text": ["强化"], + "positioning_text": "", + "price_text": "78元/件", + "model_series": null, + "position": [3.2326591706000003, 1.7276036344, 1.7020049944], + "normal": [0, 0, -1] + }, + { + "id": "u-gQSeqLkYhamTKA", + "decoration_model_id": 16168, + "decoration_model_series_id": 0, + "name": "安可密封罐哑光黑", + "brand": "奇居良品", + "length": 10, + "width": 10, + "height": 11, + "version": "CJT00320610", + "series": "", + "material": "强化", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "https://mall.jd.com/index-60162.html", + "images": [], + "video_url": "", + "price": 78, + "unit": "件", + "size_text": "10x10x11cm", + "material_text": ["强化"], + "positioning_text": "", + "price_text": "78元/件", + "model_series": null, + "position": [3.2326591706000003, 1.7276036344, 1.7541470056], + "normal": [1, 0, 0] + }, + { + "id": "u-lfWC33kyHaMTt9", + "decoration_model_id": 64142, + "decoration_model_series_id": 836, + "name": "调料罐组合/餐厨用品", + "brand": "被窝BIM", + "length": 6.9, + "width": 27.5, + "height": 31.2, + "version": "", + "series": "", + "material": "玻璃", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "27.5x6.9x31.2cm", + "material_text": ["玻璃"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 836, + "source": "beiwomoxing", + "name": "BIM", + "style": "modern", + "color": "深色系;浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-06-09 15:44:45", + "modify_time": "2021-06-09 15:44:45", + "source_text": "被窝", + "style_text": "现代简约" + }, + "position": [2.3837031347526083, 1.7273395024659586, 2.4003578659288665], + "normal": [0, 0, -1] + }, + { + "id": "u-lfWC33kyHaMTt9", + "decoration_model_id": 64142, + "decoration_model_series_id": 836, + "name": "调料罐组合/餐厨用品", + "brand": "被窝BIM", + "length": 6.9, + "width": 27.5, + "height": 31.2, + "version": "", + "series": "", + "material": "玻璃", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "27.5x6.9x31.2cm", + "material_text": ["玻璃"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 836, + "source": "beiwomoxing", + "name": "BIM", + "style": "modern", + "color": "深色系;浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-06-09 15:44:45", + "modify_time": "2021-06-09 15:44:45", + "source_text": "被窝", + "style_text": "现代简约" + }, + "position": [2.3841828669555767, 1.7273650308027926, 2.6160681703811535], + "normal": [1, 0, 0] + }, + { + "id": "u-lfWC33kyHaMTt9", + "decoration_model_id": 64142, + "decoration_model_series_id": 836, + "name": "调料罐组合/餐厨用品", + "brand": "被窝BIM", + "length": 6.9, + "width": 27.5, + "height": 31.2, + "version": "", + "series": "", + "material": "玻璃", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "27.5x6.9x31.2cm", + "material_text": ["玻璃"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 836, + "source": "beiwomoxing", + "name": "BIM", + "style": "modern", + "color": "深色系;浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-06-09 15:44:45", + "modify_time": "2021-06-09 15:44:45", + "source_text": "被窝", + "style_text": "现代简约" + }, + "position": [2.3841828669555767, 1.7273650308027926, 2.6160681703811535], + "normal": [0, 0, 1] + }, + { + "id": "u-lfWC33kyHaMTt9", + "decoration_model_id": 64142, + "decoration_model_series_id": 836, + "name": "调料罐组合/餐厨用品", + "brand": "被窝BIM", + "length": 6.9, + "width": 27.5, + "height": 31.2, + "version": "", + "series": "", + "material": "玻璃", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "27.5x6.9x31.2cm", + "material_text": ["玻璃"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 836, + "source": "beiwomoxing", + "name": "BIM", + "style": "modern", + "color": "深色系;浅色系", + "feature": "", + "image_url": "", + "create_time": "2021-06-09 15:44:45", + "modify_time": "2021-06-09 15:44:45", + "source_text": "被窝", + "style_text": "现代简约" + }, + "position": [2.343219871901093, 1.7273516364569392, 2.3993281527555856], + "normal": [-1, 0, 0] + }, + { + "id": "u-g2vNIJkyHAmV52", + "decoration_model_id": 27783, + "decoration_model_series_id": 414, + "name": "B51(卧房)--床头柜", + "brand": "家具大师", + "length": 50, + "width": 40, + "height": 51, + "version": "N1962A", + "series": "", + "material": "DMF板柜体,皮质拉手,碳素钢底架", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 972, + "unit": "件", + "size_text": "40x50x51cm", + "material_text": ["DMF板柜体", "皮质拉手", "碳素钢底架"], + "positioning_text": "", + "price_text": "972元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-5.703538857142856, 0.509993, -2.23023495], + "normal": [0, 0, -1] + }, + { + "id": "u-g2vNIJkyHAmV52", + "decoration_model_id": 27783, + "decoration_model_series_id": 414, + "name": "B51(卧房)--床头柜", + "brand": "家具大师", + "length": 50, + "width": 40, + "height": 51, + "version": "N1962A", + "series": "", + "material": "DMF板柜体,皮质拉手,碳素钢底架", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 972, + "unit": "件", + "size_text": "40x50x51cm", + "material_text": ["DMF板柜体", "皮质拉手", "碳素钢底架"], + "positioning_text": "", + "price_text": "972元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-5.646275365287242, 0.45271402272731454, -1.9958595148], + "normal": [1, 0, 0] + }, + { + "id": "u-g2vNIJkyHAmV52", + "decoration_model_id": 27783, + "decoration_model_series_id": 414, + "name": "B51(卧房)--床头柜", + "brand": "家具大师", + "length": 50, + "width": 40, + "height": 51, + "version": "N1962A", + "series": "", + "material": "DMF板柜体,皮质拉手,碳素钢底架", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 972, + "unit": "件", + "size_text": "40x50x51cm", + "material_text": ["DMF板柜体", "皮质拉手", "碳素钢底架"], + "positioning_text": "", + "price_text": "972元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-6.063742186046511, 0.5097371860465116, -1.7315920674418606], + "normal": [0, 0, 1] + }, + { + "id": "u-g2vNIJkyHAmV52", + "decoration_model_id": 27783, + "decoration_model_series_id": 414, + "name": "B51(卧房)--床头柜", + "brand": "家具大师", + "length": 50, + "width": 40, + "height": 51, + "version": "N1962A", + "series": "", + "material": "DMF板柜体,皮质拉手,碳素钢底架", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 972, + "unit": "件", + "size_text": "40x50x51cm", + "material_text": ["DMF板柜体", "皮质拉手", "碳素钢底架"], + "positioning_text": "", + "price_text": "972元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-6.063742186046511, 0.5097371860465116, -2.2298279325581394], + "normal": [-1, 0, 0] + }, + { + "id": "u-bCM7nmkyHAmvHO", + "decoration_model_id": 27634, + "decoration_model_series_id": 414, + "name": "B51(卧房)-床", + "brand": "家具大师", + "length": 184, + "width": 213, + "height": 112, + "version": "M1831B-大", + "series": "", + "material": "布艺床,莫迪灰色麻,橡胶木", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 3067.2, + "unit": "件", + "size_text": "213x184x112cm", + "material_text": ["布艺床", "莫迪灰色麻", "橡胶木"], + "positioning_text": "", + "price_text": "3067.2元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-7.329763555960893, 0.40965507402556384, 0.011656798247666078], + "normal": [0, 0, 1] + }, + { + "id": "u-bCM7nmkyHAmvHO", + "decoration_model_id": 27634, + "decoration_model_series_id": 414, + "name": "B51(卧房)-床", + "brand": "家具大师", + "length": 184, + "width": 213, + "height": 112, + "version": "M1831B-大", + "series": "", + "material": "布艺床,莫迪灰色麻,橡胶木", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 3067.2, + "unit": "件", + "size_text": "213x184x112cm", + "material_text": ["布艺床", "莫迪灰色麻", "橡胶木"], + "positioning_text": "", + "price_text": "3067.2元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-8.346911052865021, 0.2554605238913824, -1.4198951450014674], + "normal": [-1, 0, 0] + }, + { + "id": "u-bCM7nmkyHAmvHO", + "decoration_model_id": 27634, + "decoration_model_series_id": 414, + "name": "B51(卧房)-床", + "brand": "家具大师", + "length": 184, + "width": 213, + "height": 112, + "version": "M1831B-大", + "series": "", + "material": "布艺床,莫迪灰色麻,橡胶木", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 3067.2, + "unit": "件", + "size_text": "213x184x112cm", + "material_text": ["布艺床", "莫迪灰色麻", "橡胶木"], + "positioning_text": "", + "price_text": "3067.2元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-7.1767361969295775, 0.4593517575155859, -1.8256046257041392], + "normal": [0, 0, -1] + }, + { + "id": "u-bCM7nmkyHAmvHO", + "decoration_model_id": 27634, + "decoration_model_series_id": 414, + "name": "B51(卧房)-床", + "brand": "家具大师", + "length": 184, + "width": 213, + "height": 112, + "version": "M1831B-大", + "series": "", + "material": "布艺床,莫迪灰色麻,橡胶木", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 3067.2, + "unit": "件", + "size_text": "213x184x112cm", + "material_text": ["布艺床", "莫迪灰色麻", "橡胶木"], + "positioning_text": "", + "price_text": "3067.2元/件", + "model_series": { + "id": 414, + "source": "jiajudashi", + "name": "B51(卧房)", + "style": "new_chinese", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-11-13 11:46:44", + "modify_time": "2020-11-13 11:46:44", + "source_text": "家具大师", + "style_text": "新中式" + }, + "position": [-6.207680787108412, 0.8695857028412562, -0.08874910148626292], + "normal": [1, 0, 0] + }, + { + "id": "u-x9o3VFkyHamx6R", + "decoration_model_id": 27051, + "decoration_model_series_id": 11, + "name": "莫拉-床", + "brand": "爱依瑞斯", + "length": 201, + "width": 221, + "height": 120, + "version": "20MOC020", + "series": "", + "material": "布艺,实木脚", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "221x201x120cm", + "material_text": ["布艺", "实木脚"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 11, + "source": "aiyi", + "name": "莫拉", + "style": "northern_europe", + "color": "岩石灰", + "feature": "简洁造型,风格普适,活力色彩", + "image_url": "", + "create_time": "2020-07-16 18:29:28", + "modify_time": "2020-07-16 18:29:28", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [-6.0327486958624705, 0.9964769564372375, -1.7286716966529725], + "normal": [0, 0, -1] + }, + { + "id": "u-x9o3VFkyHamx6R", + "decoration_model_id": 27051, + "decoration_model_series_id": 11, + "name": "莫拉-床", + "brand": "爱依瑞斯", + "length": 201, + "width": 221, + "height": 120, + "version": "20MOC020", + "series": "", + "material": "布艺,实木脚", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "221x201x120cm", + "material_text": ["布艺", "实木脚"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 11, + "source": "aiyi", + "name": "莫拉", + "style": "northern_europe", + "color": "岩石灰", + "feature": "简洁造型,风格普适,活力色彩", + "image_url": "", + "create_time": "2020-07-16 18:29:28", + "modify_time": "2020-07-16 18:29:28", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [-3.8542760841196193, 0.314394, 0.1944709058286752], + "normal": [1, 0, 0] + }, + { + "id": "u-x9o3VFkyHamx6R", + "decoration_model_id": 27051, + "decoration_model_series_id": 11, + "name": "莫拉-床", + "brand": "爱依瑞斯", + "length": 201, + "width": 221, + "height": 120, + "version": "20MOC020", + "series": "", + "material": "布艺,实木脚", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "221x201x120cm", + "material_text": ["布艺", "实木脚"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 11, + "source": "aiyi", + "name": "莫拉", + "style": "northern_europe", + "color": "岩石灰", + "feature": "简洁造型,风格普适,活力色彩", + "image_url": "", + "create_time": "2020-07-16 18:29:28", + "modify_time": "2020-07-16 18:29:28", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [-6.0372589218786095, 1.0483407251380814, 0.2943169080125073], + "normal": [0, 0, 1] + }, + { + "id": "u-x9o3VFkyHamx6R", + "decoration_model_id": 27051, + "decoration_model_series_id": 11, + "name": "莫拉-床", + "brand": "爱依瑞斯", + "length": 201, + "width": 221, + "height": 120, + "version": "20MOC020", + "series": "", + "material": "布艺,实木脚", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "221x201x120cm", + "material_text": ["布艺", "实木脚"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 11, + "source": "aiyi", + "name": "莫拉", + "style": "northern_europe", + "color": "岩石灰", + "feature": "简洁造型,风格普适,活力色彩", + "image_url": "", + "create_time": "2020-07-16 18:29:28", + "modify_time": "2020-07-16 18:29:28", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [-6.081034549756795, 1.0488828990524823, -1.578229616386521], + "normal": [-1, 0, 0] + }, + { + "id": "u-3qzl9fkYHAMXaj", + "decoration_model_id": 25895, + "decoration_model_series_id": 409, + "name": "优格2021浴室柜", + "brand": "自如", + "length": 80, + "width": 80, + "height": 50, + "version": "浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜", + "series": "", + "material": "木纹", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z", + "images": [], + "video_url": "", + "price": 0, + "unit": "个", + "size_text": "80x80x50cm", + "material_text": ["木纹"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 409, + "source": "ziroom", + "name": "优格2021", + "style": "northern_europe", + "color": "浅色", + "feature": "", + "image_url": "", + "create_time": "2020-11-05 18:42:49", + "modify_time": "2020-11-05 18:42:49", + "source_text": "自如", + "style_text": "北欧" + }, + "position": [-2.4347386068, 0.8080466666666667, 2.3716529457999997], + "normal": [1, 0, 0] + }, + { + "id": "u-3qzl9fkYHAMXaj", + "decoration_model_id": 25895, + "decoration_model_series_id": 409, + "name": "优格2021浴室柜", + "brand": "自如", + "length": 80, + "width": 80, + "height": 50, + "version": "浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜", + "series": "", + "material": "木纹", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z", + "images": [], + "video_url": "", + "price": 0, + "unit": "个", + "size_text": "80x80x50cm", + "material_text": ["木纹"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 409, + "source": "ziroom", + "name": "优格2021", + "style": "northern_europe", + "color": "浅色", + "feature": "", + "image_url": "", + "create_time": "2020-11-05 18:42:49", + "modify_time": "2020-11-05 18:42:49", + "source_text": "自如", + "style_text": "北欧" + }, + "position": [-3.2467933932, 0.8080466666666667, 2.3716529457999997], + "normal": [0, 0, 1] + }, + { + "id": "u-3qzl9fkYHAMXaj", + "decoration_model_id": 25895, + "decoration_model_series_id": 409, + "name": "优格2021浴室柜", + "brand": "自如", + "length": 80, + "width": 80, + "height": 50, + "version": "浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜", + "series": "", + "material": "木纹", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z", + "images": [], + "video_url": "", + "price": 0, + "unit": "个", + "size_text": "80x80x50cm", + "material_text": ["木纹"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 409, + "source": "ziroom", + "name": "优格2021", + "style": "northern_europe", + "color": "浅色", + "feature": "", + "image_url": "", + "create_time": "2020-11-05 18:42:49", + "modify_time": "2020-11-05 18:42:49", + "source_text": "自如", + "style_text": "北欧" + }, + "position": [-3.2495287789780973, 0.8080466666666667, 1.8685682227905043], + "normal": [-1, 0, 0] + }, + { + "id": "u-3qzl9fkYHAMXaj", + "decoration_model_id": 25895, + "decoration_model_series_id": 409, + "name": "优格2021浴室柜", + "brand": "自如", + "length": 80, + "width": 80, + "height": 50, + "version": "浴室柜-(心舍清语奥林图纸+橱柜柜门颜色)/浴室地柜", + "series": "", + "material": "木纹", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "https://www.taobao.com/?spm=a211oj.20222339.a2226mz.13.45f741a8Ygxp2z", + "images": [], + "video_url": "", + "price": 0, + "unit": "个", + "size_text": "80x80x50cm", + "material_text": ["木纹"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 409, + "source": "ziroom", + "name": "优格2021", + "style": "northern_europe", + "color": "浅色", + "feature": "", + "image_url": "", + "create_time": "2020-11-05 18:42:49", + "modify_time": "2020-11-05 18:42:49", + "source_text": "自如", + "style_text": "北欧" + }, + "position": [-2.4320032210219025, 0.8080466666666667, 1.8685682227905043], + "normal": [0, 0, -1] + }, + { + "id": "u-DZ3Y5tKYHAmXD0", + "decoration_model_id": 14962, + "decoration_model_series_id": 750, + "name": "基础鞋柜", + "brand": "待人接物", + "length": 80, + "width": 38, + "height": 115, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "38x80x115cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 750, + "source": "dairenjiewu", + "name": "基础", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-12-28 17:59:28", + "modify_time": "2020-12-28 17:59:28", + "source_text": "待人接物", + "style_text": "北欧" + }, + "position": [1.6294863166333495, 1.1436028669798033, -0.41140780531315996], + "normal": [-0.00009999999950007028, 0, 0.9999999950000001] + }, + { + "id": "u-DZ3Y5tKYHAmXD0", + "decoration_model_id": 14962, + "decoration_model_series_id": 750, + "name": "基础鞋柜", + "brand": "待人接物", + "length": 80, + "width": 38, + "height": 115, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "38x80x115cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 750, + "source": "dairenjiewu", + "name": "基础", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-12-28 17:59:28", + "modify_time": "2020-12-28 17:59:28", + "source_text": "待人接物", + "style_text": "北欧" + }, + "position": [1.6295665954875034, 1.1436028669798033, -1.214116067995628], + "normal": [-0.999999994999, 0, -0.00010001000049986626] + }, + { + "id": "u-DZ3Y5tKYHAmXD0", + "decoration_model_id": 14962, + "decoration_model_series_id": 750, + "name": "基础鞋柜", + "brand": "待人接物", + "length": 80, + "width": 38, + "height": 115, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "38x80x115cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 750, + "source": "dairenjiewu", + "name": "基础", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-12-28 17:59:28", + "modify_time": "2020-12-28 17:59:28", + "source_text": "待人接物", + "style_text": "北欧" + }, + "position": [2.0101381347, 1.14379, -1.2140307448], + "normal": [0.00009999999950035981, 0, -0.9999999950000001] + }, + { + "id": "u-DZ3Y5tKYHAmXD0", + "decoration_model_id": 14962, + "decoration_model_series_id": 750, + "name": "基础鞋柜", + "brand": "待人接物", + "length": 80, + "width": 38, + "height": 115, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "造型简约大方却富有设计感的北欧风鞋柜,柜面镂空的条状设计不仅美观,更给人通透清爽的视觉感受。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "38x80x115cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 750, + "source": "dairenjiewu", + "name": "基础", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-12-28 17:59:28", + "modify_time": "2020-12-28 17:59:28", + "source_text": "待人接物", + "style_text": "北欧" + }, + "position": [2.0100578653000003, 1.14379, -0.41141701420000004], + "normal": [0.9999999949989999, 0, 0.00010001000049986625] + }, + { + "id": "u-3Xf4p4kyhAMXCA", + "decoration_model_id": 15566, + "decoration_model_series_id": 534, + "name": "书桌系列-餐桌", + "brand": "厌式房间", + "length": 150, + "width": 80, + "height": 75, + "version": "HRZ", + "series": "", + "material": "北美白蜡木", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "80x150x75cm", + "material_text": ["北美白蜡木"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 534, + "source": "yanshifangjian", + "name": "书桌系列", + "style": "northern_europe", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-14 14:39:31", + "modify_time": "2020-12-14 14:39:31", + "source_text": "厌式房间", + "style_text": "北欧" + }, + "position": [-1.4938430835199998, 0.7397119999999999, -1.3555038437], + "normal": [-0.999988480199062, 0, -0.0047999447049556] + }, + { + "id": "u-3Xf4p4kyhAMXCA", + "decoration_model_id": 15566, + "decoration_model_series_id": 534, + "name": "书桌系列-餐桌", + "brand": "厌式房间", + "length": 150, + "width": 80, + "height": 75, + "version": "HRZ", + "series": "", + "material": "北美白蜡木", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "80x150x75cm", + "material_text": ["北美白蜡木"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 534, + "source": "yanshifangjian", + "name": "书桌系列", + "style": "northern_europe", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-14 14:39:31", + "modify_time": "2020-12-14 14:39:31", + "source_text": "厌式房间", + "style_text": "北欧" + }, + "position": [0.0023055829963467556, 0.735682, -1.39693024512949], + "normal": [0.004899941176559339, 0, -0.9999879952161758] + }, + { + "id": "u-3Xf4p4kyhAMXCA", + "decoration_model_id": 15566, + "decoration_model_series_id": 534, + "name": "书桌系列-餐桌", + "brand": "厌式房间", + "length": 150, + "width": 80, + "height": 75, + "version": "HRZ", + "series": "", + "material": "北美白蜡木", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "80x150x75cm", + "material_text": ["北美白蜡木"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 534, + "source": "yanshifangjian", + "name": "书桌系列", + "style": "northern_europe", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-14 14:39:31", + "modify_time": "2020-12-14 14:39:31", + "source_text": "厌式房间", + "style_text": "北欧" + }, + "position": [-0.0008570780800001288, 0.7397119999999999, -0.6617148667999998], + "normal": [0.999988480199062, 0, 0.004799944704955462] + }, + { + "id": "u-3Xf4p4kyhAMXCA", + "decoration_model_id": 15566, + "decoration_model_series_id": 534, + "name": "书桌系列-餐桌", + "brand": "厌式房间", + "length": 150, + "width": 80, + "height": 75, + "version": "HRZ", + "series": "", + "material": "北美白蜡木", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "80x150x75cm", + "material_text": ["北美白蜡木"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 534, + "source": "yanshifangjian", + "name": "书桌系列", + "style": "northern_europe", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-12-14 14:39:31", + "modify_time": "2020-12-14 14:39:31", + "source_text": "厌式房间", + "style_text": "北欧" + }, + "position": [-1.4970055991786875, 0.735682, -0.6202894444719872], + "normal": [-0.0048999411765591906, 0, 0.9999879952161758] + }, + { + "id": "u-RZ63G6kyHAmXjR", + "decoration_model_id": 19853, + "decoration_model_series_id": 185, + "name": "巴比松茶几", + "brand": "优梵艺术", + "length": 79, + "width": 79, + "height": 45, + "version": "193016", + "series": "", + "material": "P2级MDF,白蜡木木皮", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "https://detail.tmall.com/item.htm?id=560504121451", + "images": [], + "video_url": "", + "price": 0, + "unit": "张", + "size_text": "79x79x45cm", + "material_text": ["P2级MDF", "白蜡木木皮"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 185, + "source": "youfanyishu", + "name": "巴比松", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-09-07 10:21:23", + "modify_time": "2020-09-07 10:21:23", + "source_text": "优梵艺术", + "style_text": "北欧" + }, + "position": [0.25763310529668454, 0.459187, 1.7307510842138778], + "normal": [0, 0, 1] + }, + { + "id": "u-RZ63G6kyHAmXjR", + "decoration_model_id": 19853, + "decoration_model_series_id": 185, + "name": "巴比松茶几", + "brand": "优梵艺术", + "length": 79, + "width": 79, + "height": 45, + "version": "193016", + "series": "", + "material": "P2级MDF,白蜡木木皮", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "https://detail.tmall.com/item.htm?id=560504121451", + "images": [], + "video_url": "", + "price": 0, + "unit": "张", + "size_text": "79x79x45cm", + "material_text": ["P2级MDF", "白蜡木木皮"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 185, + "source": "youfanyishu", + "name": "巴比松", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-09-07 10:21:23", + "modify_time": "2020-09-07 10:21:23", + "source_text": "优梵艺术", + "style_text": "北欧" + }, + "position": [-0.05839033008871575, 0.4597094236299749, 1.4718034693103388], + "normal": [-1, 0, 0] + }, + { + "id": "u-RZ63G6kyHAmXjR", + "decoration_model_id": 19853, + "decoration_model_series_id": 185, + "name": "巴比松茶几", + "brand": "优梵艺术", + "length": 79, + "width": 79, + "height": 45, + "version": "193016", + "series": "", + "material": "P2级MDF,白蜡木木皮", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "https://detail.tmall.com/item.htm?id=560504121451", + "images": [], + "video_url": "", + "price": 0, + "unit": "张", + "size_text": "79x79x45cm", + "material_text": ["P2级MDF", "白蜡木木皮"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 185, + "source": "youfanyishu", + "name": "巴比松", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-09-07 10:21:23", + "modify_time": "2020-09-07 10:21:23", + "source_text": "优梵艺术", + "style_text": "北欧" + }, + "position": [0.3621932970634121, 0.459289, 0.946842873759063], + "normal": [0, 0, -1] + }, + { + "id": "u-RZ63G6kyHAmXjR", + "decoration_model_id": 19853, + "decoration_model_series_id": 185, + "name": "巴比松茶几", + "brand": "优梵艺术", + "length": 79, + "width": 79, + "height": 45, + "version": "193016", + "series": "", + "material": "P2级MDF,白蜡木木皮", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "https://detail.tmall.com/item.htm?id=560504121451", + "images": [], + "video_url": "", + "price": 0, + "unit": "张", + "size_text": "79x79x45cm", + "material_text": ["P2级MDF", "白蜡木木皮"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 185, + "source": "youfanyishu", + "name": "巴比松", + "style": "northern_europe", + "color": "原木色", + "feature": "", + "image_url": "", + "create_time": "2020-09-07 10:21:23", + "modify_time": "2020-09-07 10:21:23", + "source_text": "优梵艺术", + "style_text": "北欧" + }, + "position": [0.7272620879743806, 0.459187, 1.523652482020549], + "normal": [1, 0, 0] + }, + { + "id": "u-4iy3KaKYHAMWpU", + "decoration_model_id": 26726, + "decoration_model_series_id": 508, + "name": "单椅墩子-沙发凳", + "brand": "爱依瑞斯", + "length": 58, + "width": 58, + "height": 35, + "version": "图尔", + "series": "", + "material": "布艺,木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x58x35cm", + "material_text": ["布艺", "木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 508, + "source": "aiyi", + "name": "单椅墩子", + "style": "northern_europe", + "color": "灰色", + "feature": "", + "image_url": "", + "create_time": "2020-12-10 15:20:06", + "modify_time": "2020-12-10 15:20:06", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [0.2837185002508229, 0.2418660531881764, 2.527019172267701], + "normal": [0, 0, 1] + }, + { + "id": "u-4iy3KaKYHAMWpU", + "decoration_model_id": 26726, + "decoration_model_series_id": 508, + "name": "单椅墩子-沙发凳", + "brand": "爱依瑞斯", + "length": 58, + "width": 58, + "height": 35, + "version": "图尔", + "series": "", + "material": "布艺,木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x58x35cm", + "material_text": ["布艺", "木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 508, + "source": "aiyi", + "name": "单椅墩子", + "style": "northern_europe", + "color": "灰色", + "feature": "", + "image_url": "", + "create_time": "2020-12-10 15:20:06", + "modify_time": "2020-12-10 15:20:06", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [0.02374024131507213, 0.2418660531881764, 2.2152430914416787], + "normal": [-1, 0, 0] + }, + { + "id": "u-4iy3KaKYHAMWpU", + "decoration_model_id": 26726, + "decoration_model_series_id": 508, + "name": "单椅墩子-沙发凳", + "brand": "爱依瑞斯", + "length": 58, + "width": 58, + "height": 35, + "version": "图尔", + "series": "", + "material": "布艺,木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x58x35cm", + "material_text": ["布艺", "木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 508, + "source": "aiyi", + "name": "单椅墩子", + "style": "northern_europe", + "color": "灰色", + "feature": "", + "image_url": "", + "create_time": "2020-12-10 15:20:06", + "modify_time": "2020-12-10 15:20:06", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [0.335547499749177, 0.2418660531881764, 1.955290827732299], + "normal": [0, 0, -1] + }, + { + "id": "u-4iy3KaKYHAMWpU", + "decoration_model_id": 26726, + "decoration_model_series_id": 508, + "name": "单椅墩子-沙发凳", + "brand": "爱依瑞斯", + "length": 58, + "width": 58, + "height": 35, + "version": "图尔", + "series": "", + "material": "布艺,木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "http://www.realsee.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x58x35cm", + "material_text": ["布艺", "木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 508, + "source": "aiyi", + "name": "单椅墩子", + "style": "northern_europe", + "color": "灰色", + "feature": "", + "image_url": "", + "create_time": "2020-12-10 15:20:06", + "modify_time": "2020-12-10 15:20:06", + "source_text": "爱依瑞斯", + "style_text": "北欧" + }, + "position": [0.5955257586849279, 0.2418660531881764, 2.2670669085583213], + "normal": [1, 0, 0] + } +] diff --git a/open-works/virtual/816V08l4Q4Eie1qX08/work.js b/open-works/virtual/816V08l4Q4Eie1qX08/work.js new file mode 100644 index 000000000..b9b8752ec --- /dev/null +++ b/open-works/virtual/816V08l4Q4Eie1qX08/work.js @@ -0,0 +1,692 @@ +export const work = { + _signature: + 'FCBqwi59zf2veBDniUQ5UfgiJhOALteixBtrHuilCj6Qa3anSYi72NQRVApJNmvWEJgtTzgCNFeTuRV0I6KnNiQLwDkq4UqFbPVshKAT8PrkvM6V8DXXeQgPXIwmUy4k9nkvxyx9M4TpnNxSivJb+yub6u/DIAxdR6lE5uJ0Q10=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: null, + expire_at: '1966240506254', + initial: { + flag_position: [-0.49124008148165194, -1.3610322549213854, -1.1312026754860445], + fov: 95, + heading: 0, + latitude: 0, + longitude: 6.025998459222308, + pano_index: 2, + }, + model: { + file_url: 'vrframework/release/ue4_decoration_plan/6V08l4Q4Eie1qX08/vrproc-ue4/render/model.at3d', + material_base_url: 'https://vrlab-public.ljcdn.com/', + material_textures: [ + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_0.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_1.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_2.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_3.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_4.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_5.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_6.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_7.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_8.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_9.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_10.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_11.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_12.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_13.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_14.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_15.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_16.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_17.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_18.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_19.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_20.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_21.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_22.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_23.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_24.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_25.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_26.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_27.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_28.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_29.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_30.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_31.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_32.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_33.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_34.jpg', + 'release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_35.jpg', + ], + }, + observers: [ + { + accessible_nodes: [1, 2, 3, 4, 6], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764635, + index: 0, + position: [-0.06913039833307266, 1.2234126973381805, -1.3686000108718872], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.06913039833307266, 0.02341269733818052, -1.3686000108718872], + visible_nodes: [1, 2, 3, 4, 6], + }, + { + accessible_nodes: [0, 2, 3, 4, 6], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764636, + index: 1, + position: [-0.6015719771385193, 1.2249972132085223, -0.07711680233478546], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.6015719771385193, 0.02499721320852233, -0.07711680233478546], + visible_nodes: [0, 2, 3, 4, 6], + }, + { + accessible_nodes: [0, 1, 3, 4, 6, 9, 14, 15, 18, 19, 20, 22, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764637, + index: 2, + position: [-0.3460389971733093, 1.2110015779015637, 1.4146599769592285], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.3460389971733093, 0.011001577901563753, 1.4146599769592285], + visible_nodes: [0, 1, 3, 4, 6, 9, 14, 15, 18, 19, 20, 22, 23], + }, + { + accessible_nodes: [0, 1, 2, 4, 6, 7, 8, 9, 10, 16], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764638, + index: 3, + position: [0.5883209705352783, 1.2141033886451846, 2.613679885864258], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.5883209705352783, 0.014103388645184678, 2.613679885864258], + visible_nodes: [0, 1, 2, 4, 6, 7, 8, 9, 10, 16], + }, + { + accessible_nodes: [0, 1, 2, 3, 6, 7, 10, 16], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764639, + index: 4, + position: [1.285949945449829, 1.2146988585239602, 3.78518009185791], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.285949945449829, 0.014698858523960245, 3.78518009185791], + visible_nodes: [0, 1, 2, 3, 6, 7, 10, 16], + }, + { + accessible_nodes: [16], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764640, + index: 5, + position: [2.623689889907837, 1.2209811124384147, 2.3906800746917725], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.623689889907837, 0.020981112438414717, 2.3906800746917725], + visible_nodes: [16], + }, + { + accessible_nodes: [0, 1, 2, 3, 4, 7, 8, 16], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764641, + index: 6, + position: [-0.5201039910316467, 1.2125621710307517, 2.8396201133728027], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.5201039910316467, 0.012562171030751745, 2.8396201133728027], + visible_nodes: [0, 1, 2, 3, 4, 7, 8, 16], + }, + { + accessible_nodes: [3, 4, 6, 8, 16], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764642, + index: 7, + position: [-2.017159938812256, 1.2136855443776713, 2.937530040740967], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.017159938812256, 0.013685544377671333, 2.937530040740967], + visible_nodes: [3, 4, 6, 8, 16], + }, + { + accessible_nodes: [3, 6, 7, 16], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764643, + index: 8, + position: [-3.955699920654297, 1.2103259623068066, 3.0733299255371094], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.955699920654297, 0.010325962306806602, 3.0733299255371094], + visible_nodes: [3, 6, 7, 16], + }, + { + accessible_nodes: [2, 3, 10, 13, 14, 15, 18, 19, 20, 22, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764644, + index: 9, + position: [-2.1027400493621826, 1.2108699195054413, 1.1812599897384644], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.1027400493621826, 0.010869919505441361, 1.1812599897384644], + visible_nodes: [2, 3, 10, 13, 14, 15, 18, 19, 20, 22, 23], + }, + { + accessible_nodes: [3, 4, 9, 11, 12, 13], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764645, + index: 10, + position: [-3.029099941253662, 1.2094222948214277, 0.34075599908828735], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.029099941253662, 0.009422294821427757, 0.34075599908828735], + visible_nodes: [3, 4, 9, 11, 12, 13], + }, + { + accessible_nodes: [10, 12, 13], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764646, + index: 11, + position: [-3.2785398960113525, 1.2, -1.2977700233459473], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.2785398960113525, 0, -1.2977700233459473], + visible_nodes: [10, 12, 13], + }, + { + accessible_nodes: [10, 11, 13], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764647, + index: 12, + position: [-3.264090061187744, 1.2032542352826257, -2.2283599376678467], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.264090061187744, 0.003254235282625695, -2.2283599376678467], + visible_nodes: [10, 11, 13], + }, + { + accessible_nodes: [9, 10, 11, 12], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764648, + index: 13, + position: [-4.849609851837158, 1.215858015920485, -2.273940086364746], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.849609851837158, 0.01585801592048508, -2.273940086364746], + visible_nodes: [9, 10, 11, 12], + }, + { + accessible_nodes: [2, 9, 15, 18, 19, 20, 22, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764649, + index: 14, + position: [-4.3018999099731445, 1.213162085298709, 1.0815900564193726], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.3018999099731445, 0.013162085298709103, 1.0815900564193726], + visible_nodes: [2, 9, 15, 18, 19, 20, 22, 23], + }, + { + accessible_nodes: [2, 9, 14, 17, 18, 19], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764650, + index: 15, + position: [-7.620729923248291, 1.2034645024685962, 0.5519599914550781], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-7.620729923248291, 0.003464502468596198, 0.5519599914550781], + visible_nodes: [2, 9, 14, 17, 18, 19], + }, + { + accessible_nodes: [3, 4, 5, 6, 7, 8], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764651, + index: 16, + position: [2.8072099685668945, 1.215966225496736, 3.2189600467681885], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.8072099685668945, 0.015966225496736097, 3.2189600467681885], + visible_nodes: [3, 4, 5, 6, 7, 8], + }, + { + accessible_nodes: [15, 18, 19], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764652, + index: 17, + position: [-7.192609786987305, 1.6093261543242559, -0.8726249933242798], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-7.192609786987305, 0.4093261543242559, -0.8726249933242798], + visible_nodes: [15, 18, 19], + }, + { + accessible_nodes: [2, 9, 14, 15, 17, 19, 20, 22, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764653, + index: 18, + position: [-6.721560001373291, 1.2097602844514586, 0.9695760011672974], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-6.721560001373291, 0.0097602844514586, 0.9695760011672974], + visible_nodes: [2, 9, 14, 15, 17, 19, 20, 22, 23], + }, + { + accessible_nodes: [2, 9, 14, 15, 17, 18, 20, 21, 22, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764654, + index: 19, + position: [-8.791489601135254, 1.2092570372633398, 1.1078300476074219], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-8.791489601135254, 0.009257037263339818, 1.1078300476074219], + visible_nodes: [2, 9, 14, 15, 17, 18, 20, 21, 22, 23], + }, + { + accessible_nodes: [2, 9, 14, 18, 19, 21, 22, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764655, + index: 20, + position: [-9.885530471801758, 1.2139855759930511, 0.6859210133552551], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-9.885530471801758, 0.01398557599305117, 0.6859210133552551], + visible_nodes: [2, 9, 14, 18, 19, 21, 22, 23], + }, + { + accessible_nodes: [19, 20, 22, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764656, + index: 21, + position: [-12.407299995422363, 1.218504878298733, 0.16719099879264832], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-12.407299995422363, 0.01850487829873315, 0.16719099879264832], + visible_nodes: [19, 20, 22, 23], + }, + { + accessible_nodes: [2, 9, 14, 18, 19, 20, 21, 23], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764657, + index: 22, + position: [-13.380599975585938, 1.2234242589888533, 0.42620301246643066], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-13.380599975585938, 0.023424258988853364, 0.42620301246643066], + visible_nodes: [2, 9, 14, 18, 19, 20, 21, 23], + }, + { + accessible_nodes: [2, 9, 14, 18, 19, 20, 21, 22], + create_time: '2022-01-16T00:28:15+08:00', + floor_index: 0, + id: 79764658, + index: 23, + position: [-10.962900161743164, 1.210695490624308, 0.6324189901351929], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-10.962900161743164, 0.010695490624307968, 0.6324189901351929], + visible_nodes: [2, 9, 14, 18, 19, 20, 21, 22], + }, + ], + panorama: { + count: 24, + list: [ + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_f.jpg', + index: 0, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_f.jpg', + index: 1, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_f.jpg', + index: 2, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_f.jpg', + index: 3, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_f.jpg', + index: 4, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_f.jpg', + index: 5, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_f.jpg', + index: 6, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_f.jpg', + index: 7, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_f.jpg', + index: 8, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_f.jpg', + index: 9, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_f.jpg', + index: 10, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_f.jpg', + index: 11, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_f.jpg', + index: 12, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_f.jpg', + index: 13, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_f.jpg', + index: 14, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_f.jpg', + index: 15, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_f.jpg', + index: 16, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_f.jpg', + index: 17, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_f.jpg', + index: 18, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_f.jpg', + index: 19, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_f.jpg', + index: 20, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_f.jpg', + index: 21, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_f.jpg', + index: 22, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_u.jpg', + }, + { + back: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_b.jpg', + down: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_d.jpg', + front: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_f.jpg', + index: 23, + left: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_l.jpg', + right: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_r.jpg', + tiles: [1, 2], + up: 'release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_u.jpg', + }, + ], + }, + picture_url: 'vrframework/release/ue4_decoration_plan/6V08l4Q4Eie1qX08/vrproc-ue4/render/picture.jpg', +} diff --git a/open-works/virtual/816V08l4Q4Eie1qX08/work.json b/open-works/virtual/816V08l4Q4Eie1qX08/work.json new file mode 100644 index 000000000..fc253dc70 --- /dev/null +++ b/open-works/virtual/816V08l4Q4Eie1qX08/work.json @@ -0,0 +1,690 @@ +{ + "_signature": "FCBqwi59zf2veBDniUQ5UfgiJhOALteixBtrHuilCj6Qa3anSYi72NQRVApJNmvWEJgtTzgCNFeTuRV0I6KnNiQLwDkq4UqFbPVshKAT8PrkvM6V8DXXeQgPXIwmUy4k9nkvxyx9M4TpnNxSivJb+yub6u/DIAxdR6lE5uJ0Q10=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": null, + "expire_at": "1966240506254", + "initial": { + "flag_position": [-0.49124008148165194, -1.3610322549213854, -1.1312026754860445], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 6.025998459222308, + "pano_index": 2 + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/6V08l4Q4Eie1qX08/vrproc-ue4/render/model.at3d", + "material_base_url": "https://vrlab-public.ljcdn.com/", + "material_textures": [ + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_0.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_1.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_2.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_3.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_4.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_5.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_6.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_7.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_8.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_9.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_10.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_11.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_12.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_13.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_14.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_15.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_16.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_17.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_18.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_19.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_20.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_21.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_22.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_23.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_24.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_25.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_26.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_27.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_28.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_29.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_30.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_31.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_32.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_33.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_34.jpg", + "release/ue4/6e00861f8e0e4b13f1e524f4677b855e/at3d_results/texture_35.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [1, 2, 3, 4, 6], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764635, + "index": 0, + "position": [-0.06913039833307266, 1.2234126973381805, -1.3686000108718872], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.06913039833307266, 0.02341269733818052, -1.3686000108718872], + "visible_nodes": [1, 2, 3, 4, 6] + }, + { + "accessible_nodes": [0, 2, 3, 4, 6], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764636, + "index": 1, + "position": [-0.6015719771385193, 1.2249972132085223, -0.07711680233478546], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.6015719771385193, 0.02499721320852233, -0.07711680233478546], + "visible_nodes": [0, 2, 3, 4, 6] + }, + { + "accessible_nodes": [0, 1, 3, 4, 6, 9, 14, 15, 18, 19, 20, 22, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764637, + "index": 2, + "position": [-0.3460389971733093, 1.2110015779015637, 1.4146599769592285], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.3460389971733093, 0.011001577901563753, 1.4146599769592285], + "visible_nodes": [0, 1, 3, 4, 6, 9, 14, 15, 18, 19, 20, 22, 23] + }, + { + "accessible_nodes": [0, 1, 2, 4, 6, 7, 8, 9, 10, 16], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764638, + "index": 3, + "position": [0.5883209705352783, 1.2141033886451846, 2.613679885864258], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.5883209705352783, 0.014103388645184678, 2.613679885864258], + "visible_nodes": [0, 1, 2, 4, 6, 7, 8, 9, 10, 16] + }, + { + "accessible_nodes": [0, 1, 2, 3, 6, 7, 10, 16], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764639, + "index": 4, + "position": [1.285949945449829, 1.2146988585239602, 3.78518009185791], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.285949945449829, 0.014698858523960245, 3.78518009185791], + "visible_nodes": [0, 1, 2, 3, 6, 7, 10, 16] + }, + { + "accessible_nodes": [16], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764640, + "index": 5, + "position": [2.623689889907837, 1.2209811124384147, 2.3906800746917725], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.623689889907837, 0.020981112438414717, 2.3906800746917725], + "visible_nodes": [16] + }, + { + "accessible_nodes": [0, 1, 2, 3, 4, 7, 8, 16], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764641, + "index": 6, + "position": [-0.5201039910316467, 1.2125621710307517, 2.8396201133728027], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.5201039910316467, 0.012562171030751745, 2.8396201133728027], + "visible_nodes": [0, 1, 2, 3, 4, 7, 8, 16] + }, + { + "accessible_nodes": [3, 4, 6, 8, 16], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764642, + "index": 7, + "position": [-2.017159938812256, 1.2136855443776713, 2.937530040740967], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.017159938812256, 0.013685544377671333, 2.937530040740967], + "visible_nodes": [3, 4, 6, 8, 16] + }, + { + "accessible_nodes": [3, 6, 7, 16], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764643, + "index": 8, + "position": [-3.955699920654297, 1.2103259623068066, 3.0733299255371094], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.955699920654297, 0.010325962306806602, 3.0733299255371094], + "visible_nodes": [3, 6, 7, 16] + }, + { + "accessible_nodes": [2, 3, 10, 13, 14, 15, 18, 19, 20, 22, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764644, + "index": 9, + "position": [-2.1027400493621826, 1.2108699195054413, 1.1812599897384644], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.1027400493621826, 0.010869919505441361, 1.1812599897384644], + "visible_nodes": [2, 3, 10, 13, 14, 15, 18, 19, 20, 22, 23] + }, + { + "accessible_nodes": [3, 4, 9, 11, 12, 13], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764645, + "index": 10, + "position": [-3.029099941253662, 1.2094222948214277, 0.34075599908828735], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.029099941253662, 0.009422294821427757, 0.34075599908828735], + "visible_nodes": [3, 4, 9, 11, 12, 13] + }, + { + "accessible_nodes": [10, 12, 13], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764646, + "index": 11, + "position": [-3.2785398960113525, 1.2, -1.2977700233459473], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.2785398960113525, 0, -1.2977700233459473], + "visible_nodes": [10, 12, 13] + }, + { + "accessible_nodes": [10, 11, 13], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764647, + "index": 12, + "position": [-3.264090061187744, 1.2032542352826257, -2.2283599376678467], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.264090061187744, 0.003254235282625695, -2.2283599376678467], + "visible_nodes": [10, 11, 13] + }, + { + "accessible_nodes": [9, 10, 11, 12], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764648, + "index": 13, + "position": [-4.849609851837158, 1.215858015920485, -2.273940086364746], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.849609851837158, 0.01585801592048508, -2.273940086364746], + "visible_nodes": [9, 10, 11, 12] + }, + { + "accessible_nodes": [2, 9, 15, 18, 19, 20, 22, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764649, + "index": 14, + "position": [-4.3018999099731445, 1.213162085298709, 1.0815900564193726], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.3018999099731445, 0.013162085298709103, 1.0815900564193726], + "visible_nodes": [2, 9, 15, 18, 19, 20, 22, 23] + }, + { + "accessible_nodes": [2, 9, 14, 17, 18, 19], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764650, + "index": 15, + "position": [-7.620729923248291, 1.2034645024685962, 0.5519599914550781], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.620729923248291, 0.003464502468596198, 0.5519599914550781], + "visible_nodes": [2, 9, 14, 17, 18, 19] + }, + { + "accessible_nodes": [3, 4, 5, 6, 7, 8], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764651, + "index": 16, + "position": [2.8072099685668945, 1.215966225496736, 3.2189600467681885], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.8072099685668945, 0.015966225496736097, 3.2189600467681885], + "visible_nodes": [3, 4, 5, 6, 7, 8] + }, + { + "accessible_nodes": [15, 18, 19], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764652, + "index": 17, + "position": [-7.192609786987305, 1.6093261543242559, -0.8726249933242798], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.192609786987305, 0.4093261543242559, -0.8726249933242798], + "visible_nodes": [15, 18, 19] + }, + { + "accessible_nodes": [2, 9, 14, 15, 17, 19, 20, 22, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764653, + "index": 18, + "position": [-6.721560001373291, 1.2097602844514586, 0.9695760011672974], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-6.721560001373291, 0.0097602844514586, 0.9695760011672974], + "visible_nodes": [2, 9, 14, 15, 17, 19, 20, 22, 23] + }, + { + "accessible_nodes": [2, 9, 14, 15, 17, 18, 20, 21, 22, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764654, + "index": 19, + "position": [-8.791489601135254, 1.2092570372633398, 1.1078300476074219], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-8.791489601135254, 0.009257037263339818, 1.1078300476074219], + "visible_nodes": [2, 9, 14, 15, 17, 18, 20, 21, 22, 23] + }, + { + "accessible_nodes": [2, 9, 14, 18, 19, 21, 22, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764655, + "index": 20, + "position": [-9.885530471801758, 1.2139855759930511, 0.6859210133552551], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-9.885530471801758, 0.01398557599305117, 0.6859210133552551], + "visible_nodes": [2, 9, 14, 18, 19, 21, 22, 23] + }, + { + "accessible_nodes": [19, 20, 22, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764656, + "index": 21, + "position": [-12.407299995422363, 1.218504878298733, 0.16719099879264832], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-12.407299995422363, 0.01850487829873315, 0.16719099879264832], + "visible_nodes": [19, 20, 22, 23] + }, + { + "accessible_nodes": [2, 9, 14, 18, 19, 20, 21, 23], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764657, + "index": 22, + "position": [-13.380599975585938, 1.2234242589888533, 0.42620301246643066], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-13.380599975585938, 0.023424258988853364, 0.42620301246643066], + "visible_nodes": [2, 9, 14, 18, 19, 20, 21, 23] + }, + { + "accessible_nodes": [2, 9, 14, 18, 19, 20, 21, 22], + "create_time": "2022-01-16T00:28:15+08:00", + "floor_index": 0, + "id": 79764658, + "index": 23, + "position": [-10.962900161743164, 1.210695490624308, 0.6324189901351929], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-10.962900161743164, 0.010695490624307968, 0.6324189901351929], + "visible_nodes": [2, 9, 14, 18, 19, 20, 21, 22] + } + ], + "panorama": { + "count": 24, + "list": [ + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/11/11_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_f.jpg", + "index": 12, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/12/12_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_f.jpg", + "index": 13, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/13/13_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_f.jpg", + "index": 14, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/14/14_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_f.jpg", + "index": 15, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/15/15_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_f.jpg", + "index": 16, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/16/16_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_f.jpg", + "index": 17, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/17/17_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_f.jpg", + "index": 18, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/18/18_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_f.jpg", + "index": 19, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/19/19_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_f.jpg", + "index": 20, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/20/20_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_f.jpg", + "index": 21, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/21/21_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_f.jpg", + "index": 22, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/22/22_u.jpg" + }, + { + "back": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_b.jpg", + "down": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_d.jpg", + "front": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_f.jpg", + "index": 23, + "left": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_l.jpg", + "right": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/ad90ecc56e91346b5a7b8e99571237c2/ue4_result/cube_2048/23/23_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/6V08l4Q4Eie1qX08/vrproc-ue4/render/picture.jpg" +} diff --git a/open-works/virtual/816lPVZQkQDF5XOpPo/index.js b/open-works/virtual/816lPVZQkQDF5XOpPo/index.js new file mode 100644 index 000000000..0192fa21a --- /dev/null +++ b/open-works/virtual/816lPVZQkQDF5XOpPo/index.js @@ -0,0 +1,3 @@ +import { work } from './work' + +export default { work } diff --git a/open-works/virtual/816lPVZQkQDF5XOpPo/work.js b/open-works/virtual/816lPVZQkQDF5XOpPo/work.js new file mode 100644 index 000000000..3ab4e5fd1 --- /dev/null +++ b/open-works/virtual/816lPVZQkQDF5XOpPo/work.js @@ -0,0 +1,1023 @@ +export const work = { + _signature: + 'CBlfydzA1oU9hyoPdrq9+inQJhqCzkQkwBAxIzcXXZ0umqoUn79l484OMlJcF/DCX/iZ2xNmUhhdg2C81UxwY0U1qthIGummiFVBw/wGCWJbgi/kungiytMFqfOVC80NzHdlFobiWxsvdGhdltIWyzKa2oWWzLJ9sAaiYlrkYNk=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: null, + expire_at: '1960441805415', + initial: { + flag_position: [-1.0657199615638717, -1.1188939541358098, 0.4640715177376903], + fov: 95, + heading: 0, + latitude: 0, + longitude: 1.4774911460398048, + pano: 4, + pano_index: 4, + }, + model: { + file_url: 'vrframework/release/ue4_decoration_plan/6lPVZQkQDF5XOpPo/vrproc-ue4/render/model.domez', + material_base_url: null, + material_textures: null, + }, + observers: [ + { + accessible_nodes: [1, 2, 3], + device_info: '', + floor_index: 0, + id: 79688869, + index: 0, + mode: ['AtHome', 'Cinema', 'Visitor', 'Normal'], + offset_point_count: 0, + position: [-1.323349952697754, 1.1272458569332222, -1.0706700086593628], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.323349952697754, 0.01365774287822874, -1.0706700086593628], + status: '1', + user_id: 1000000020248335, + visible_nodes: [1, 2, 3], + work_id: 18207775, + }, + { + accessible_nodes: [0, 2, 3, 6], + device_info: '', + floor_index: 0, + id: 79688870, + index: 1, + mode: ['Normal'], + offset_point_count: 0, + position: [-2.7502400875091553, 1.1216315267560268, -1.598960041999817], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.7502400875091553, 0.015213922221556153, -1.598960041999817], + status: '1', + user_id: 1000000020248335, + visible_nodes: [0, 2, 3, 6], + work_id: 18207775, + }, + { + accessible_nodes: [0, 1], + device_info: '', + floor_index: 0, + id: 79688871, + index: 2, + mode: ['Normal'], + offset_point_count: 0, + position: [-3.499000072479248, 1.1324199967970336, -1.0007599592208862], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.499000072479248, 0.014424143655878296, -1.0007599592208862], + status: '1', + user_id: 1000000020248335, + visible_nodes: [0, 1], + work_id: 18207775, + }, + { + accessible_nodes: [0, 1, 4, 5, 6, 19, 20, 21, 31], + device_info: '', + floor_index: 0, + id: 79688872, + index: 3, + mode: ['AtHome', 'Cinema', 'Visitor', 'Normal'], + offset_point_count: 0, + position: [-0.6166359782218933, 1.1354108470444764, 0.016070900484919548], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.6166359782218933, 0.016925868942730293, 0.016070900484919548], + status: '1', + user_id: 1000000020248335, + visible_nodes: [0, 1, 4, 5, 6, 19, 20, 21, 31], + work_id: 18207775, + }, + { + accessible_nodes: [3, 5, 6, 7, 31], + device_info: '', + floor_index: 0, + id: 79688873, + index: 4, + mode: ['AtHome', 'Cinema', 'Visitor', 'Normal'], + offset_point_count: 0, + position: [1.6662700176239014, 1.1283139978808314, -0.14930500090122223], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.6662700176239014, 0.009505412744883701, -0.14930500090122223], + status: '1', + user_id: 1000000020248335, + visible_nodes: [3, 5, 6, 7, 31], + work_id: 18207775, + }, + { + accessible_nodes: [3, 4, 6, 7, 8, 12, 18, 31], + device_info: '', + floor_index: 0, + id: 79688874, + index: 5, + mode: ['AtHome', 'Cinema', 'Visitor', 'Normal'], + offset_point_count: 0, + position: [3.778090000152588, 1.1291437898948053, -0.91184401512146], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [3.778090000152588, 0.014860199991235445, -0.91184401512146], + status: '1', + user_id: 1000000020248335, + visible_nodes: [3, 4, 6, 7, 8, 12, 18, 31], + work_id: 18207775, + }, + { + accessible_nodes: [1, 3, 4, 5, 7, 8, 12, 17, 18, 31], + device_info: '', + floor_index: 0, + id: 79688875, + index: 6, + mode: ['AtHome', 'Cinema', 'Visitor', 'Normal'], + offset_point_count: 0, + position: [4.187550067901611, 1.1294845368433009, -1.9917099475860596], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [4.187550067901611, 0.01090962619612279, -1.9917099475860596], + status: '1', + user_id: 1000000020248335, + visible_nodes: [1, 3, 4, 5, 7, 8, 12, 17, 18, 31], + work_id: 18207775, + }, + { + accessible_nodes: [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 20, 21, 31], + device_info: '', + floor_index: 0, + id: 79688876, + index: 7, + mode: ['Dining', 'LeisureTime', 'Normal'], + offset_point_count: 0, + position: [4.26540994644165, 1.130613456848004, -3.298259973526001], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [4.26540994644165, 0.01550485193497475, -3.298259973526001], + status: '1', + user_id: 1000000020248335, + visible_nodes: [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 20, 21, 31], + work_id: 18207775, + }, + { + accessible_nodes: [5, 6, 7, 12, 17, 18, 19, 20, 21, 24, 31], + device_info: '', + floor_index: 0, + id: 79688877, + index: 8, + mode: ['Dining', 'LeisureTime', 'Normal'], + offset_point_count: 0, + position: [4.073639869689941, 1.1383298564654971, -4.771580219268799], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [4.073639869689941, 0.014659417307412825, -4.771580219268799], + status: '1', + user_id: 1000000020248335, + visible_nodes: [5, 6, 7, 12, 17, 18, 19, 20, 21, 24, 31], + work_id: 18207775, + }, + { + accessible_nodes: [7, 10, 11, 19, 20, 21], + device_info: '', + floor_index: 0, + id: 79688878, + index: 9, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [2.6180899143218994, 1.112116067106762, -3.2337100505828857], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.6180899143218994, 0.006097979524344765, -3.2337100505828857], + status: '1', + user_id: 1000000020248335, + visible_nodes: [7, 10, 11, 19, 20, 21], + work_id: 18207775, + }, + { + accessible_nodes: [7, 9, 11, 19, 20, 21], + device_info: '', + floor_index: 0, + id: 79688879, + index: 10, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [1.4161700010299683, 1.1140375671860958, -3.0688600540161133], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.4161700010299683, 0.00840346309683615, -3.0688600540161133], + status: '1', + user_id: 1000000020248335, + visible_nodes: [7, 9, 11, 19, 20, 21], + work_id: 18207775, + }, + { + accessible_nodes: [7, 9, 10, 19], + device_info: '', + floor_index: 0, + id: 79688880, + index: 11, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [-0.4313730001449585, 1.1098043661517287, -3.140749931335449], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.4313730001449585, 0.03027930635562104, -3.140749931335449], + status: '1', + user_id: 1000000020248335, + visible_nodes: [7, 9, 10, 19], + work_id: 18207775, + }, + { + accessible_nodes: [5, 6, 7, 8, 13, 14, 15, 16, 17], + device_info: '', + floor_index: 0, + id: 79688881, + index: 12, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [3.9395198822021484, 1.1358466869172836, -5.870649814605713], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [3.9395198822021484, 0.02655210283468512, -5.870649814605713], + status: '1', + user_id: 1000000020248335, + visible_nodes: [5, 6, 7, 8, 13, 14, 15, 16, 17], + work_id: 18207775, + }, + { + accessible_nodes: [12, 14, 15, 16, 17], + device_info: '', + floor_index: 0, + id: 79688882, + index: 13, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [2.3009800910949707, 1.127784521861394, -5.981639862060547], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.3009800910949707, 0.014682379613612184, -5.981639862060547], + status: '1', + user_id: 1000000020248335, + visible_nodes: [12, 14, 15, 16, 17], + work_id: 18207775, + }, + { + accessible_nodes: [12, 13, 15, 16], + device_info: '', + floor_index: 0, + id: 79688883, + index: 14, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [0.6993229985237122, 1.1214109667529548, -6.022119998931885], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.6993229985237122, 0, -6.022119998931885], + status: '1', + user_id: 1000000020248335, + visible_nodes: [12, 13, 15, 16], + work_id: 18207775, + }, + { + accessible_nodes: [12, 13, 14, 16], + device_info: '', + floor_index: 0, + id: 79688884, + index: 15, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [-0.9372590184211731, 1.1230313767631734, -6.289030075073242], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.9372590184211731, 0.005198299715620358, -6.289030075073242], + status: '1', + user_id: 1000000020248335, + visible_nodes: [12, 13, 14, 16], + work_id: 18207775, + }, + { + accessible_nodes: [12, 13, 14, 15], + device_info: '', + floor_index: 0, + id: 79688885, + index: 16, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [-2.0779800415039062, 1.1294917368981252, -7.229430198669434], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.0779800415039062, 0.011293462113376673, -7.229430198669434], + status: '1', + user_id: 1000000020248335, + visible_nodes: [12, 13, 14, 15], + work_id: 18207775, + }, + { + accessible_nodes: [6, 7, 8, 12, 13, 18], + device_info: '', + floor_index: 0, + id: 79688886, + index: 17, + mode: ['Normal'], + offset_point_count: 0, + position: [3.423460006713867, 1.1998082645190145, -6.541979789733887], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [3.423460006713867, 0.08238552355575401, -6.541979789733887], + status: '1', + user_id: 1000000020248335, + visible_nodes: [6, 7, 8, 12, 13, 18], + work_id: 18207775, + }, + { + accessible_nodes: [5, 6, 7, 8, 17], + device_info: '', + floor_index: 0, + id: 79688887, + index: 18, + mode: ['Normal'], + offset_point_count: 0, + position: [3.6079599857330322, 1.192212464655676, -7.32751989364624], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [3.6079599857330322, 0.0713492866523806, -7.32751989364624], + status: '1', + user_id: 1000000020248335, + visible_nodes: [5, 6, 7, 8, 17], + work_id: 18207775, + }, + { + accessible_nodes: [3, 7, 8, 9, 10, 11, 20, 21, 22, 23, 24], + device_info: '', + floor_index: 0, + id: 79688888, + index: 19, + mode: ['Dining', 'LeisureTime', 'Normal'], + offset_point_count: 0, + position: [6.048799991607666, 1.1351097369519259, -3.354099988937378], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [6.048799991607666, 0.0199121750759772, -3.354099988937378], + status: '1', + user_id: 1000000020248335, + visible_nodes: [3, 7, 8, 9, 10, 11, 20, 21, 22, 23, 24], + work_id: 18207775, + }, + { + accessible_nodes: [3, 7, 8, 9, 10, 19, 21, 24, 25, 28, 30], + device_info: '', + floor_index: 0, + id: 79688889, + index: 20, + mode: ['Dining', 'LeisureTime', 'Normal'], + offset_point_count: 0, + position: [7.715320110321045, 1.1389226665673042, -4.412439823150635], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [7.715320110321045, 0.016336811204422208, -4.412439823150635], + status: '1', + user_id: 1000000020248335, + visible_nodes: [3, 7, 8, 9, 10, 19, 21, 24, 25, 28, 30], + work_id: 18207775, + }, + { + accessible_nodes: [3, 7, 8, 9, 10, 19, 20], + device_info: '', + floor_index: 0, + id: 79688890, + index: 21, + mode: ['Dining', 'LeisureTime', 'Normal'], + offset_point_count: 0, + position: [9.259590148925781, 1.1424958672327186, -5.045450210571289], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [9.259590148925781, 0.041682204095424336, -5.045450210571289], + status: '1', + user_id: 1000000020248335, + visible_nodes: [3, 7, 8, 9, 10, 19, 20], + work_id: 18207775, + }, + { + accessible_nodes: [19, 23], + device_info: '', + floor_index: 0, + id: 79688891, + index: 22, + mode: ['Normal'], + offset_point_count: 0, + position: [6.321619987487793, 1.1324490568553294, -1.9718199968338013], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [6.321619987487793, 0.025819540484278924, -1.9718199968338013], + status: '1', + user_id: 1000000020248335, + visible_nodes: [19, 23], + work_id: 18207775, + }, + { + accessible_nodes: [19, 22], + device_info: '', + floor_index: 0, + id: 79688892, + index: 23, + mode: ['Normal'], + offset_point_count: 0, + position: [6.272339820861816, 1.1366993965533758, -0.557183027267456], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [6.272339820861816, 0.012861176432428234, -0.557183027267456], + status: '1', + user_id: 1000000020248335, + visible_nodes: [19, 22], + work_id: 18207775, + }, + { + accessible_nodes: [8, 19, 20, 25, 28, 30], + device_info: '', + floor_index: 0, + id: 79688893, + index: 24, + mode: ['Dining', 'LeisureTime', 'Normal'], + offset_point_count: 0, + position: [8.140950202941895, 1.132273326995709, -2.8784000873565674], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [8.140950202941895, 0.018307505645926092, -2.8784000873565674], + status: '1', + user_id: 1000000020248335, + visible_nodes: [8, 19, 20, 25, 28, 30], + work_id: 18207775, + }, + { + accessible_nodes: [20, 24, 26, 27, 28, 30], + device_info: '', + floor_index: 0, + id: 79688894, + index: 25, + mode: ['Dining', 'LeisureTime', 'Normal'], + offset_point_count: 0, + position: [8.198380470275879, 1.1291226228535372, -1.7952100038528442], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [8.198380470275879, 0.01569346149646944, -1.7952100038528442], + status: '1', + user_id: 1000000020248335, + visible_nodes: [20, 24, 26, 27, 28, 30], + work_id: 18207775, + }, + { + accessible_nodes: [25, 27], + device_info: '', + floor_index: 0, + id: 79688895, + index: 26, + mode: ['Normal'], + offset_point_count: 0, + position: [9.17273998260498, 1.2205025650513555, -1.8674999475479126], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [9.17273998260498, 0.09616820336744691, -1.8674999475479126], + status: '1', + user_id: 1000000020248335, + visible_nodes: [25, 27], + work_id: 18207775, + }, + { + accessible_nodes: [25, 26], + device_info: '', + floor_index: 0, + id: 79688896, + index: 27, + mode: ['Normal'], + offset_point_count: 0, + position: [9.807780265808105, 1.2131824664724256, -1.3536700010299683], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [9.807780265808105, 0.08932837967309881, -1.3536700010299683], + status: '1', + user_id: 1000000020248335, + visible_nodes: [25, 26], + work_id: 18207775, + }, + { + accessible_nodes: [20, 24, 25, 29, 30], + device_info: '', + floor_index: 0, + id: 79688897, + index: 28, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [8.274720191955566, 1.1232286970083798, 0.5353419780731201], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [8.274720191955566, 0.001645701711809, 0.5353419780731201], + status: '1', + user_id: 1000000020248335, + visible_nodes: [20, 24, 25, 29, 30], + work_id: 18207775, + }, + { + accessible_nodes: [28, 30], + device_info: '', + floor_index: 0, + id: 79688898, + index: 29, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [9.657730102539062, 1.1263998368707682, 0.972012996673584], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [9.657730102539062, 0.012064404953205932, 0.972012996673584], + status: '1', + user_id: 1000000020248335, + visible_nodes: [28, 30], + work_id: 18207775, + }, + { + accessible_nodes: [20, 24, 25, 28, 29], + device_info: '', + floor_index: 0, + id: 79688899, + index: 30, + mode: ['WakeUp', 'Read', 'Night', 'General', 'Normal'], + offset_point_count: 0, + position: [8.207759857177734, 1.1210253167850162, -0.3078170120716095], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [8.207759857177734, 0.008373343626807639, -0.3078170120716095], + status: '1', + user_id: 1000000020248335, + visible_nodes: [20, 24, 25, 28, 29], + work_id: 18207775, + }, + { + accessible_nodes: [3, 4, 5, 6, 7, 8], + device_info: '', + floor_index: 0, + id: 79688900, + index: 31, + mode: ['AtHome', 'Cinema', 'Visitor', 'Normal'], + offset_point_count: 0, + position: [3.057960033416748, 1.1319077069823826, -0.17423899471759796], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [3.057960033416748, 0.010921640260184384, -0.17423899471759796], + status: '1', + user_id: 1000000020248335, + visible_nodes: [3, 4, 5, 6, 7, 8], + work_id: 18207775, + }, + ], + panorama: { + count: 32, + list: [ + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_f.jpg', + index: 0, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_f.jpg', + index: 1, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_f.jpg', + index: 2, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_f.jpg', + index: 3, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_f.jpg', + index: 4, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_f.jpg', + index: 5, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_f.jpg', + index: 6, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_f.jpg', + index: 7, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_f.jpg', + index: 8, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_f.jpg', + index: 9, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_f.jpg', + index: 10, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_f.jpg', + index: 11, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_f.jpg', + index: 12, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_f.jpg', + index: 13, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_f.jpg', + index: 14, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_f.jpg', + index: 15, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_f.jpg', + index: 16, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_f.jpg', + index: 17, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_f.jpg', + index: 18, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_f.jpg', + index: 19, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_f.jpg', + index: 20, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_f.jpg', + index: 21, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_f.jpg', + index: 22, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_f.jpg', + index: 23, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_f.jpg', + index: 24, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_f.jpg', + index: 25, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_f.jpg', + index: 26, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_f.jpg', + index: 27, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_f.jpg', + index: 28, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_f.jpg', + index: 29, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_f.jpg', + index: 30, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_r.jpg', + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_u.jpg', + }, + { + back: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_b.jpg', + down: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_d.jpg', + front: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_f.jpg', + index: 31, + left: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_l.jpg', + right: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_r.jpg', + tiles: [1, 2], + up: 'release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_u.jpg', + }, + ], + }, + picture_url: 'vrframework/release/ue4_decoration_plan/6lPVZQkQDF5XOpPo/vrproc-ue4/render/picture.jpg', +} diff --git a/open-works/virtual/816lPVZQkQDF5XOpPo/work.json b/open-works/virtual/816lPVZQkQDF5XOpPo/work.json new file mode 100644 index 000000000..2cd48b61a --- /dev/null +++ b/open-works/virtual/816lPVZQkQDF5XOpPo/work.json @@ -0,0 +1,1021 @@ +{ + "_signature": "CBlfydzA1oU9hyoPdrq9+inQJhqCzkQkwBAxIzcXXZ0umqoUn79l484OMlJcF/DCX/iZ2xNmUhhdg2C81UxwY0U1qthIGummiFVBw/wGCWJbgi/kungiytMFqfOVC80NzHdlFobiWxsvdGhdltIWyzKa2oWWzLJ9sAaiYlrkYNk=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": null, + "expire_at": "1960441805415", + "initial": { + "flag_position": [-1.0657199615638717, -1.1188939541358098, 0.4640715177376903], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 1.4774911460398048, + "pano": 4, + "pano_index": 4 + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/6lPVZQkQDF5XOpPo/vrproc-ue4/render/model.domez", + "material_base_url": null, + "material_textures": null + }, + "observers": [ + { + "accessible_nodes": [1, 2, 3], + "device_info": "", + "floor_index": 0, + "id": 79688869, + "index": 0, + "mode": ["AtHome", "Cinema", "Visitor", "Normal"], + "offset_point_count": 0, + "position": [-1.323349952697754, 1.1272458569332222, -1.0706700086593628], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.323349952697754, 0.01365774287822874, -1.0706700086593628], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [1, 2, 3], + "work_id": 18207775 + }, + { + "accessible_nodes": [0, 2, 3, 6], + "device_info": "", + "floor_index": 0, + "id": 79688870, + "index": 1, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [-2.7502400875091553, 1.1216315267560268, -1.598960041999817], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.7502400875091553, 0.015213922221556153, -1.598960041999817], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [0, 2, 3, 6], + "work_id": 18207775 + }, + { + "accessible_nodes": [0, 1], + "device_info": "", + "floor_index": 0, + "id": 79688871, + "index": 2, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [-3.499000072479248, 1.1324199967970336, -1.0007599592208862], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.499000072479248, 0.014424143655878296, -1.0007599592208862], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [0, 1], + "work_id": 18207775 + }, + { + "accessible_nodes": [0, 1, 4, 5, 6, 19, 20, 21, 31], + "device_info": "", + "floor_index": 0, + "id": 79688872, + "index": 3, + "mode": ["AtHome", "Cinema", "Visitor", "Normal"], + "offset_point_count": 0, + "position": [-0.6166359782218933, 1.1354108470444764, 0.016070900484919548], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.6166359782218933, 0.016925868942730293, 0.016070900484919548], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [0, 1, 4, 5, 6, 19, 20, 21, 31], + "work_id": 18207775 + }, + { + "accessible_nodes": [3, 5, 6, 7, 31], + "device_info": "", + "floor_index": 0, + "id": 79688873, + "index": 4, + "mode": ["AtHome", "Cinema", "Visitor", "Normal"], + "offset_point_count": 0, + "position": [1.6662700176239014, 1.1283139978808314, -0.14930500090122223], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.6662700176239014, 0.009505412744883701, -0.14930500090122223], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [3, 5, 6, 7, 31], + "work_id": 18207775 + }, + { + "accessible_nodes": [3, 4, 6, 7, 8, 12, 18, 31], + "device_info": "", + "floor_index": 0, + "id": 79688874, + "index": 5, + "mode": ["AtHome", "Cinema", "Visitor", "Normal"], + "offset_point_count": 0, + "position": [3.778090000152588, 1.1291437898948053, -0.91184401512146], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.778090000152588, 0.014860199991235445, -0.91184401512146], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [3, 4, 6, 7, 8, 12, 18, 31], + "work_id": 18207775 + }, + { + "accessible_nodes": [1, 3, 4, 5, 7, 8, 12, 17, 18, 31], + "device_info": "", + "floor_index": 0, + "id": 79688875, + "index": 6, + "mode": ["AtHome", "Cinema", "Visitor", "Normal"], + "offset_point_count": 0, + "position": [4.187550067901611, 1.1294845368433009, -1.9917099475860596], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [4.187550067901611, 0.01090962619612279, -1.9917099475860596], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [1, 3, 4, 5, 7, 8, 12, 17, 18, 31], + "work_id": 18207775 + }, + { + "accessible_nodes": [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 20, 21, 31], + "device_info": "", + "floor_index": 0, + "id": 79688876, + "index": 7, + "mode": ["Dining", "LeisureTime", "Normal"], + "offset_point_count": 0, + "position": [4.26540994644165, 1.130613456848004, -3.298259973526001], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [4.26540994644165, 0.01550485193497475, -3.298259973526001], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [4, 5, 6, 8, 9, 10, 11, 12, 17, 18, 19, 20, 21, 31], + "work_id": 18207775 + }, + { + "accessible_nodes": [5, 6, 7, 12, 17, 18, 19, 20, 21, 24, 31], + "device_info": "", + "floor_index": 0, + "id": 79688877, + "index": 8, + "mode": ["Dining", "LeisureTime", "Normal"], + "offset_point_count": 0, + "position": [4.073639869689941, 1.1383298564654971, -4.771580219268799], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [4.073639869689941, 0.014659417307412825, -4.771580219268799], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [5, 6, 7, 12, 17, 18, 19, 20, 21, 24, 31], + "work_id": 18207775 + }, + { + "accessible_nodes": [7, 10, 11, 19, 20, 21], + "device_info": "", + "floor_index": 0, + "id": 79688878, + "index": 9, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [2.6180899143218994, 1.112116067106762, -3.2337100505828857], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.6180899143218994, 0.006097979524344765, -3.2337100505828857], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [7, 10, 11, 19, 20, 21], + "work_id": 18207775 + }, + { + "accessible_nodes": [7, 9, 11, 19, 20, 21], + "device_info": "", + "floor_index": 0, + "id": 79688879, + "index": 10, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [1.4161700010299683, 1.1140375671860958, -3.0688600540161133], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.4161700010299683, 0.00840346309683615, -3.0688600540161133], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [7, 9, 11, 19, 20, 21], + "work_id": 18207775 + }, + { + "accessible_nodes": [7, 9, 10, 19], + "device_info": "", + "floor_index": 0, + "id": 79688880, + "index": 11, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [-0.4313730001449585, 1.1098043661517287, -3.140749931335449], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.4313730001449585, 0.03027930635562104, -3.140749931335449], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [7, 9, 10, 19], + "work_id": 18207775 + }, + { + "accessible_nodes": [5, 6, 7, 8, 13, 14, 15, 16, 17], + "device_info": "", + "floor_index": 0, + "id": 79688881, + "index": 12, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [3.9395198822021484, 1.1358466869172836, -5.870649814605713], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.9395198822021484, 0.02655210283468512, -5.870649814605713], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [5, 6, 7, 8, 13, 14, 15, 16, 17], + "work_id": 18207775 + }, + { + "accessible_nodes": [12, 14, 15, 16, 17], + "device_info": "", + "floor_index": 0, + "id": 79688882, + "index": 13, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [2.3009800910949707, 1.127784521861394, -5.981639862060547], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.3009800910949707, 0.014682379613612184, -5.981639862060547], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [12, 14, 15, 16, 17], + "work_id": 18207775 + }, + { + "accessible_nodes": [12, 13, 15, 16], + "device_info": "", + "floor_index": 0, + "id": 79688883, + "index": 14, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [0.6993229985237122, 1.1214109667529548, -6.022119998931885], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.6993229985237122, 0, -6.022119998931885], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [12, 13, 15, 16], + "work_id": 18207775 + }, + { + "accessible_nodes": [12, 13, 14, 16], + "device_info": "", + "floor_index": 0, + "id": 79688884, + "index": 15, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [-0.9372590184211731, 1.1230313767631734, -6.289030075073242], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.9372590184211731, 0.005198299715620358, -6.289030075073242], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [12, 13, 14, 16], + "work_id": 18207775 + }, + { + "accessible_nodes": [12, 13, 14, 15], + "device_info": "", + "floor_index": 0, + "id": 79688885, + "index": 16, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [-2.0779800415039062, 1.1294917368981252, -7.229430198669434], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.0779800415039062, 0.011293462113376673, -7.229430198669434], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [12, 13, 14, 15], + "work_id": 18207775 + }, + { + "accessible_nodes": [6, 7, 8, 12, 13, 18], + "device_info": "", + "floor_index": 0, + "id": 79688886, + "index": 17, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [3.423460006713867, 1.1998082645190145, -6.541979789733887], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.423460006713867, 0.08238552355575401, -6.541979789733887], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [6, 7, 8, 12, 13, 18], + "work_id": 18207775 + }, + { + "accessible_nodes": [5, 6, 7, 8, 17], + "device_info": "", + "floor_index": 0, + "id": 79688887, + "index": 18, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [3.6079599857330322, 1.192212464655676, -7.32751989364624], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.6079599857330322, 0.0713492866523806, -7.32751989364624], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [5, 6, 7, 8, 17], + "work_id": 18207775 + }, + { + "accessible_nodes": [3, 7, 8, 9, 10, 11, 20, 21, 22, 23, 24], + "device_info": "", + "floor_index": 0, + "id": 79688888, + "index": 19, + "mode": ["Dining", "LeisureTime", "Normal"], + "offset_point_count": 0, + "position": [6.048799991607666, 1.1351097369519259, -3.354099988937378], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [6.048799991607666, 0.0199121750759772, -3.354099988937378], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [3, 7, 8, 9, 10, 11, 20, 21, 22, 23, 24], + "work_id": 18207775 + }, + { + "accessible_nodes": [3, 7, 8, 9, 10, 19, 21, 24, 25, 28, 30], + "device_info": "", + "floor_index": 0, + "id": 79688889, + "index": 20, + "mode": ["Dining", "LeisureTime", "Normal"], + "offset_point_count": 0, + "position": [7.715320110321045, 1.1389226665673042, -4.412439823150635], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [7.715320110321045, 0.016336811204422208, -4.412439823150635], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [3, 7, 8, 9, 10, 19, 21, 24, 25, 28, 30], + "work_id": 18207775 + }, + { + "accessible_nodes": [3, 7, 8, 9, 10, 19, 20], + "device_info": "", + "floor_index": 0, + "id": 79688890, + "index": 21, + "mode": ["Dining", "LeisureTime", "Normal"], + "offset_point_count": 0, + "position": [9.259590148925781, 1.1424958672327186, -5.045450210571289], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [9.259590148925781, 0.041682204095424336, -5.045450210571289], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [3, 7, 8, 9, 10, 19, 20], + "work_id": 18207775 + }, + { + "accessible_nodes": [19, 23], + "device_info": "", + "floor_index": 0, + "id": 79688891, + "index": 22, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [6.321619987487793, 1.1324490568553294, -1.9718199968338013], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [6.321619987487793, 0.025819540484278924, -1.9718199968338013], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [19, 23], + "work_id": 18207775 + }, + { + "accessible_nodes": [19, 22], + "device_info": "", + "floor_index": 0, + "id": 79688892, + "index": 23, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [6.272339820861816, 1.1366993965533758, -0.557183027267456], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [6.272339820861816, 0.012861176432428234, -0.557183027267456], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [19, 22], + "work_id": 18207775 + }, + { + "accessible_nodes": [8, 19, 20, 25, 28, 30], + "device_info": "", + "floor_index": 0, + "id": 79688893, + "index": 24, + "mode": ["Dining", "LeisureTime", "Normal"], + "offset_point_count": 0, + "position": [8.140950202941895, 1.132273326995709, -2.8784000873565674], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [8.140950202941895, 0.018307505645926092, -2.8784000873565674], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [8, 19, 20, 25, 28, 30], + "work_id": 18207775 + }, + { + "accessible_nodes": [20, 24, 26, 27, 28, 30], + "device_info": "", + "floor_index": 0, + "id": 79688894, + "index": 25, + "mode": ["Dining", "LeisureTime", "Normal"], + "offset_point_count": 0, + "position": [8.198380470275879, 1.1291226228535372, -1.7952100038528442], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [8.198380470275879, 0.01569346149646944, -1.7952100038528442], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [20, 24, 26, 27, 28, 30], + "work_id": 18207775 + }, + { + "accessible_nodes": [25, 27], + "device_info": "", + "floor_index": 0, + "id": 79688895, + "index": 26, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [9.17273998260498, 1.2205025650513555, -1.8674999475479126], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [9.17273998260498, 0.09616820336744691, -1.8674999475479126], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [25, 27], + "work_id": 18207775 + }, + { + "accessible_nodes": [25, 26], + "device_info": "", + "floor_index": 0, + "id": 79688896, + "index": 27, + "mode": ["Normal"], + "offset_point_count": 0, + "position": [9.807780265808105, 1.2131824664724256, -1.3536700010299683], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [9.807780265808105, 0.08932837967309881, -1.3536700010299683], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [25, 26], + "work_id": 18207775 + }, + { + "accessible_nodes": [20, 24, 25, 29, 30], + "device_info": "", + "floor_index": 0, + "id": 79688897, + "index": 28, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [8.274720191955566, 1.1232286970083798, 0.5353419780731201], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [8.274720191955566, 0.001645701711809, 0.5353419780731201], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [20, 24, 25, 29, 30], + "work_id": 18207775 + }, + { + "accessible_nodes": [28, 30], + "device_info": "", + "floor_index": 0, + "id": 79688898, + "index": 29, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [9.657730102539062, 1.1263998368707682, 0.972012996673584], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [9.657730102539062, 0.012064404953205932, 0.972012996673584], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [28, 30], + "work_id": 18207775 + }, + { + "accessible_nodes": [20, 24, 25, 28, 29], + "device_info": "", + "floor_index": 0, + "id": 79688899, + "index": 30, + "mode": ["WakeUp", "Read", "Night", "General", "Normal"], + "offset_point_count": 0, + "position": [8.207759857177734, 1.1210253167850162, -0.3078170120716095], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [8.207759857177734, 0.008373343626807639, -0.3078170120716095], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [20, 24, 25, 28, 29], + "work_id": 18207775 + }, + { + "accessible_nodes": [3, 4, 5, 6, 7, 8], + "device_info": "", + "floor_index": 0, + "id": 79688900, + "index": 31, + "mode": ["AtHome", "Cinema", "Visitor", "Normal"], + "offset_point_count": 0, + "position": [3.057960033416748, 1.1319077069823826, -0.17423899471759796], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.057960033416748, 0.010921640260184384, -0.17423899471759796], + "status": "1", + "user_id": 1000000020248335, + "visible_nodes": [3, 4, 5, 6, 7, 8], + "work_id": 18207775 + } + ], + "panorama": { + "count": 32, + "list": [ + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/11/11_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_f.jpg", + "index": 12, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/12/12_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_f.jpg", + "index": 13, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/13/13_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_f.jpg", + "index": 14, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/14/14_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_f.jpg", + "index": 15, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/15/15_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_f.jpg", + "index": 16, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/16/16_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_f.jpg", + "index": 17, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/17/17_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_f.jpg", + "index": 18, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/18/18_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_f.jpg", + "index": 19, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/19/19_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_f.jpg", + "index": 20, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/20/20_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_f.jpg", + "index": 21, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/21/21_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_f.jpg", + "index": 22, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/22/22_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_f.jpg", + "index": 23, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/23/23_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_f.jpg", + "index": 24, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/24/24_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_f.jpg", + "index": 25, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/25/25_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_f.jpg", + "index": 26, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/26/26_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_f.jpg", + "index": 27, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/27/27_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_f.jpg", + "index": 28, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/28/28_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_f.jpg", + "index": 29, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/29/29_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_f.jpg", + "index": 30, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_r.jpg", + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/30/30_u.jpg" + }, + { + "back": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_b.jpg", + "down": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_d.jpg", + "front": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_f.jpg", + "index": 31, + "left": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_l.jpg", + "right": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/147b6abf473800a8f0c4da11aa3f3834/ue4_result/cube_2048/31/31_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/6lPVZQkQDF5XOpPo/vrproc-ue4/render/picture.jpg" +} diff --git a/open-works/virtual/81980RNawnbCVaLz0a/index.js b/open-works/virtual/81980RNawnbCVaLz0a/index.js new file mode 100644 index 000000000..0192fa21a --- /dev/null +++ b/open-works/virtual/81980RNawnbCVaLz0a/index.js @@ -0,0 +1,3 @@ +import { work } from './work' + +export default { work } diff --git a/open-works/virtual/81980RNawnbCVaLz0a/work.js b/open-works/virtual/81980RNawnbCVaLz0a/work.js new file mode 100644 index 000000000..8804523a8 --- /dev/null +++ b/open-works/virtual/81980RNawnbCVaLz0a/work.js @@ -0,0 +1,368 @@ +export const work = { + _signature: + 'df1B9VfGiJZdworoUFPi+uCmR9vLjPN/qlgHG2Ub1j1rgO5qzDuJh9NtJompnJiR9ZB1gT7hxnK5QhrKx1FgvMPSE1E6+qYVnRVK2Ay7lUBNH91hm2Jr9DvZlQdDeBdYrg7EV9yvGiEuDrkx/a0MRwKdmeN+M/KO9Ow+w8thbKk=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: null, + expire_at: '1962863990236', + initial: { + flag_position: [0.6746045842729615, -1.2089233753318267, 1.3300031501580651], + fov: 95, + heading: 0, + latitude: 0, + longitude: 3.1788114508806444, + pano_index: 4, + }, + model: { + file_url: 'vrframework/release/ue4_decoration_plan/980RNawnbCVaLz0a/vrproc-ue4/render/model.at3d', + material_base_url: 'https://vrlab-public.ljcdn.com/', + material_textures: [ + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_0.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_1.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_2.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_3.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_4.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_5.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_6.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_7.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_8.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_9.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_10.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_11.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_12.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_13.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_14.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_15.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_16.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_17.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_18.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_19.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_20.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_21.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_22.jpg', + 'release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_23.jpg', + ], + }, + observers: [ + { + accessible_nodes: [1, 2, 3, 7, 8], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819252, + index: 0, + position: [-1.1471500396728516, 1.2595172252827322, -2.9560000896453857], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.1471500396728516, 0.003843792376677868, -2.9560000896453857], + visible_nodes: [1, 2, 3, 7, 8], + }, + { + accessible_nodes: [0, 2], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819253, + index: 1, + position: [-0.4050529897212982, 1.2622653235071337, -2.9069700241088867], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.4050529897212982, 0.005209713846283881, -2.9069700241088867], + visible_nodes: [0, 2], + }, + { + accessible_nodes: [0, 1], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819254, + index: 2, + position: [0.509223997592926, 1.2607101265662348, -2.7160398960113525], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.509223997592926, 0.008413218465164407, -2.7160398960113525], + visible_nodes: [0, 1], + }, + { + accessible_nodes: [0, 4, 5, 6, 7, 8], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819255, + index: 3, + position: [-1.1379599571228027, 1.2596812237375414, -0.38462498784065247], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.1379599571228027, 0.007186223806642245, -0.38462498784065247], + visible_nodes: [0, 4, 5, 6, 7, 8], + }, + { + accessible_nodes: [3, 5, 7, 8], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819256, + index: 4, + position: [-0.2030850052833557, 1.26507052298123, -1.0641900300979614], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.2030850052833557, 0.010003649377699597, -1.0641900300979614], + visible_nodes: [3, 5, 7, 8], + }, + { + accessible_nodes: [3, 4, 6, 7, 8], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819257, + index: 5, + position: [-2.0148398876190186, 1.2684817228787577, -0.46604299545288086], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.0148398876190186, 0.017366112248266008, -0.46604299545288086], + visible_nodes: [3, 4, 6, 7, 8], + }, + { + accessible_nodes: [3, 5], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819258, + index: 6, + position: [-3.2475099563598633, 1.2689763259463942, -0.5061079859733582], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.2475099563598633, 0.020978365658474774, -0.5061079859733582], + visible_nodes: [3, 5], + }, + { + accessible_nodes: [0, 3, 4, 5, 8, 9, 11], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819259, + index: 7, + position: [-0.3714909851551056, 1.2617097262614405, 0.8949059844017029], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.3714909851551056, 0.009678024320517009, 0.8949059844017029], + visible_nodes: [0, 3, 4, 5, 8, 9, 11], + }, + { + accessible_nodes: [0, 3, 4, 5, 7], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819260, + index: 8, + position: [-0.30071499943733215, 1.2597065259092486, 2.312999963760376], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.30071499943733215, 0.015915265006209545, 2.312999963760376], + visible_nodes: [0, 3, 4, 5, 7], + }, + { + accessible_nodes: [7, 10, 11], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819261, + index: 9, + position: [-2.568079948425293, 1.2574344229274428, 1.0545799732208252], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.568079948425293, 0.01135612497064975, 1.0545799732208252], + visible_nodes: [7, 10, 11], + }, + { + accessible_nodes: [9, 11], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819262, + index: 10, + position: [-2.305609941482544, 1.2655910242670214, 2.2460100650787354], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.305609941482544, 0, 2.2460100650787354], + visible_nodes: [9, 11], + }, + { + accessible_nodes: [7, 9, 10], + create_time: '2022-02-20T19:16:47+08:00', + floor_index: 0, + id: 79819263, + index: 11, + position: [-3.5368499755859375, 1.2585685242288744, 1.1347500085830688], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.5368499755859375, 0.002737360336769523, 1.1347500085830688], + visible_nodes: [7, 9, 10], + }, + ], + panorama: { + count: 12, + list: [ + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_f.jpg', + index: 0, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_f.jpg', + index: 1, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_f.jpg', + index: 2, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_f.jpg', + index: 3, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_f.jpg', + index: 4, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_f.jpg', + index: 5, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_f.jpg', + index: 6, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_f.jpg', + index: 7, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_f.jpg', + index: 8, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_f.jpg', + index: 9, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_f.jpg', + index: 10, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_u.jpg', + }, + { + back: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_b.jpg', + down: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_d.jpg', + front: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_f.jpg', + index: 11, + left: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_l.jpg', + right: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_r.jpg', + tiles: [1, 2], + up: 'release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_u.jpg', + }, + ], + }, + picture_url: 'vrframework/release/ue4_decoration_plan/980RNawnbCVaLz0a/vrproc-ue4/render/picture.jpg', +} diff --git a/open-works/virtual/81980RNawnbCVaLz0a/work.json b/open-works/virtual/81980RNawnbCVaLz0a/work.json new file mode 100644 index 000000000..f52e5b25b --- /dev/null +++ b/open-works/virtual/81980RNawnbCVaLz0a/work.json @@ -0,0 +1,366 @@ +{ + "_signature": "df1B9VfGiJZdworoUFPi+uCmR9vLjPN/qlgHG2Ub1j1rgO5qzDuJh9NtJompnJiR9ZB1gT7hxnK5QhrKx1FgvMPSE1E6+qYVnRVK2Ay7lUBNH91hm2Jr9DvZlQdDeBdYrg7EV9yvGiEuDrkx/a0MRwKdmeN+M/KO9Ow+w8thbKk=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": null, + "expire_at": "1962863990236", + "initial": { + "flag_position": [0.6746045842729615, -1.2089233753318267, 1.3300031501580651], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 3.1788114508806444, + "pano_index": 4 + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/980RNawnbCVaLz0a/vrproc-ue4/render/model.at3d", + "material_base_url": "https://vrlab-public.ljcdn.com/", + "material_textures": [ + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_0.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_1.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_2.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_3.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_4.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_5.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_6.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_7.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_8.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_9.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_10.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_11.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_12.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_13.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_14.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_15.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_16.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_17.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_18.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_19.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_20.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_21.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_22.jpg", + "release/ue4/734d69eada062f470abf994c9fd58d72/at3d_results/texture_23.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [1, 2, 3, 7, 8], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819252, + "index": 0, + "position": [-1.1471500396728516, 1.2595172252827322, -2.9560000896453857], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.1471500396728516, 0.003843792376677868, -2.9560000896453857], + "visible_nodes": [1, 2, 3, 7, 8] + }, + { + "accessible_nodes": [0, 2], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819253, + "index": 1, + "position": [-0.4050529897212982, 1.2622653235071337, -2.9069700241088867], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.4050529897212982, 0.005209713846283881, -2.9069700241088867], + "visible_nodes": [0, 2] + }, + { + "accessible_nodes": [0, 1], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819254, + "index": 2, + "position": [0.509223997592926, 1.2607101265662348, -2.7160398960113525], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.509223997592926, 0.008413218465164407, -2.7160398960113525], + "visible_nodes": [0, 1] + }, + { + "accessible_nodes": [0, 4, 5, 6, 7, 8], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819255, + "index": 3, + "position": [-1.1379599571228027, 1.2596812237375414, -0.38462498784065247], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.1379599571228027, 0.007186223806642245, -0.38462498784065247], + "visible_nodes": [0, 4, 5, 6, 7, 8] + }, + { + "accessible_nodes": [3, 5, 7, 8], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819256, + "index": 4, + "position": [-0.2030850052833557, 1.26507052298123, -1.0641900300979614], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.2030850052833557, 0.010003649377699597, -1.0641900300979614], + "visible_nodes": [3, 5, 7, 8] + }, + { + "accessible_nodes": [3, 4, 6, 7, 8], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819257, + "index": 5, + "position": [-2.0148398876190186, 1.2684817228787577, -0.46604299545288086], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.0148398876190186, 0.017366112248266008, -0.46604299545288086], + "visible_nodes": [3, 4, 6, 7, 8] + }, + { + "accessible_nodes": [3, 5], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819258, + "index": 6, + "position": [-3.2475099563598633, 1.2689763259463942, -0.5061079859733582], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.2475099563598633, 0.020978365658474774, -0.5061079859733582], + "visible_nodes": [3, 5] + }, + { + "accessible_nodes": [0, 3, 4, 5, 8, 9, 11], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819259, + "index": 7, + "position": [-0.3714909851551056, 1.2617097262614405, 0.8949059844017029], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.3714909851551056, 0.009678024320517009, 0.8949059844017029], + "visible_nodes": [0, 3, 4, 5, 8, 9, 11] + }, + { + "accessible_nodes": [0, 3, 4, 5, 7], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819260, + "index": 8, + "position": [-0.30071499943733215, 1.2597065259092486, 2.312999963760376], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.30071499943733215, 0.015915265006209545, 2.312999963760376], + "visible_nodes": [0, 3, 4, 5, 7] + }, + { + "accessible_nodes": [7, 10, 11], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819261, + "index": 9, + "position": [-2.568079948425293, 1.2574344229274428, 1.0545799732208252], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.568079948425293, 0.01135612497064975, 1.0545799732208252], + "visible_nodes": [7, 10, 11] + }, + { + "accessible_nodes": [9, 11], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819262, + "index": 10, + "position": [-2.305609941482544, 1.2655910242670214, 2.2460100650787354], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.305609941482544, 0, 2.2460100650787354], + "visible_nodes": [9, 11] + }, + { + "accessible_nodes": [7, 9, 10], + "create_time": "2022-02-20T19:16:47+08:00", + "floor_index": 0, + "id": 79819263, + "index": 11, + "position": [-3.5368499755859375, 1.2585685242288744, 1.1347500085830688], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.5368499755859375, 0.002737360336769523, 1.1347500085830688], + "visible_nodes": [7, 9, 10] + } + ], + "panorama": { + "count": 12, + "list": [ + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/e21b9d23b72abe48fbe5b5c1a009dff9/ue4_result/cube_2048/11/11_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/980RNawnbCVaLz0a/vrproc-ue4/render/picture.jpg" +} diff --git a/open-works/virtual/81RojBlJQdVTglNNMr/index.js b/open-works/virtual/81RojBlJQdVTglNNMr/index.js new file mode 100644 index 000000000..0192fa21a --- /dev/null +++ b/open-works/virtual/81RojBlJQdVTglNNMr/index.js @@ -0,0 +1,3 @@ +import { work } from './work' + +export default { work } diff --git a/open-works/virtual/81RojBlJQdVTglNNMr/work.js b/open-works/virtual/81RojBlJQdVTglNNMr/work.js new file mode 100644 index 000000000..694ba483c --- /dev/null +++ b/open-works/virtual/81RojBlJQdVTglNNMr/work.js @@ -0,0 +1,544 @@ +export const work = { + _signature: + 'QOdSF+9tqeqw9aw6Fr8VB25R0sssMf0nIMF8/OORnTpNV5OyxzZSonsUbFLQ/QG2xJOG1BgZvEqRp5CbZlQ3qAPV10IGkAK2GKecBHbaXtHvjPjSqiF8xvClfzY0NBoQBpABGxquANRzFan3DbOhwfJGc2A1PgkwwalyTo6iPds=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + expire_at: '1960440638104', + initial: { + fov: 60, + latitude: 0, + longitude: 0, + pano_index: 0, + recordVideo: false, + }, + model: { + file_url: 'vrframework/release/ue4_decoration_plan/RojBlJQdVTglNNMr/vrproc-ue4/render/model.at3d', + material_base_url: 'https://vrlab-public.ljcdn.com/', + material_textures: [ + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_0.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_1.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_2.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_3.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_4.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_5.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_6.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_7.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_8.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_9.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_10.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_11.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_12.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_13.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_14.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_15.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_16.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_17.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_18.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_19.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_20.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_21.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_22.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_23.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_24.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_25.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_26.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_27.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_28.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_29.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_30.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_31.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_32.jpg', + 'release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_33.jpg', + ], + }, + observers: [ + { + accessible_nodes: [1, 2, 8, 9, 10], + device_info: '', + floor_index: 0, + id: 79592071, + index: 0, + offset_point_count: 0, + position: [-2.524899959564209, 1.1272988755596376, -0.2097250074148178], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.524899959564209, 0.009188549365932497, -0.2097250074148178], + status: '1', + user_id: 1000000023005820, + visible_nodes: [1, 2, 8, 9, 10], + work_id: 17498598, + }, + { + accessible_nodes: [0, 2, 8, 9, 10], + device_info: '', + floor_index: 0, + id: 79592072, + index: 1, + offset_point_count: 0, + position: [-2.370680093765259, 1.12635167579777, 1.6661299467086792], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.370680093765259, 0.009883324861828635, 1.6661299467086792], + status: '1', + user_id: 1000000023005820, + visible_nodes: [0, 2, 8, 9, 10], + work_id: 17498598, + }, + { + accessible_nodes: [0, 1, 3, 4, 8, 9, 10], + device_info: '', + floor_index: 0, + id: 79592073, + index: 2, + offset_point_count: 0, + position: [-2.7041800022125244, 1.1363521729005075, -4.20904016494751], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.7041800022125244, 0.01989903732182885, -4.20904016494751], + status: '1', + user_id: 1000000023005820, + visible_nodes: [0, 1, 3, 4, 8, 9, 10], + work_id: 17498598, + }, + { + accessible_nodes: [2, 4, 5, 6, 7], + device_info: '', + floor_index: 0, + id: 79592074, + index: 3, + offset_point_count: 0, + position: [-4.808849811553955, 1.134885377098391, -4.842979907989502], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.808849811553955, 0.019460038332109963, -4.842979907989502], + status: '1', + user_id: 1000000023005820, + visible_nodes: [2, 4, 5, 6, 7], + work_id: 17498598, + }, + { + accessible_nodes: [2, 3, 5], + device_info: '', + floor_index: 0, + id: 79592075, + index: 4, + offset_point_count: 0, + position: [-6.079150199890137, 1.121646276522944, -4.87332010269165], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-6.079150199890137, 0.0030908276891732367, -4.87332010269165], + status: '1', + user_id: 1000000023005820, + visible_nodes: [2, 3, 5], + work_id: 17498598, + }, + { + accessible_nodes: [3, 4], + device_info: '', + floor_index: 0, + id: 79592076, + index: 5, + offset_point_count: 0, + position: [-7.1314802169799805, 1.1201053772462106, -4.815800189971924], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-7.1314802169799805, 0, -4.815800189971924], + status: '1', + user_id: 1000000023005820, + visible_nodes: [3, 4], + work_id: 17498598, + }, + { + accessible_nodes: [3, 7], + device_info: '', + floor_index: 0, + id: 79592077, + index: 6, + offset_point_count: 0, + position: [-5.067729949951172, 1.137985973466704, -3.0250699520111084], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-5.067729949951172, 0.023589427379732797, -3.0250699520111084], + status: '1', + user_id: 1000000023005820, + visible_nodes: [3, 7], + work_id: 17498598, + }, + { + accessible_nodes: [3, 6], + device_info: '', + floor_index: 0, + id: 79592078, + index: 7, + offset_point_count: 0, + position: [-5.267879962921143, 1.1311240781439043, -0.47130900621414185], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-5.267879962921143, 0.01935524699680191, -0.47130900621414185], + status: '1', + user_id: 1000000023005820, + visible_nodes: [3, 6], + work_id: 17498598, + }, + { + accessible_nodes: [0, 1, 2, 9, 10, 11, 13], + device_info: '', + floor_index: 0, + id: 79592079, + index: 8, + offset_point_count: 0, + position: [-2.9153900146484375, 1.1333630744708276, -7.800519943237305], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.9153900146484375, 0.02013881241831772, -7.800519943237305], + status: '1', + user_id: 1000000023005820, + visible_nodes: [0, 1, 2, 9, 10, 11, 13], + work_id: 17498598, + }, + { + accessible_nodes: [0, 1, 2, 8, 10], + device_info: '', + floor_index: 0, + id: 79592080, + index: 9, + offset_point_count: 0, + position: [-2.9180400371551514, 1.1299047757280565, -9.54893970489502], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.9180400371551514, 0.017917029477977353, -9.54893970489502], + status: '1', + user_id: 1000000023005820, + visible_nodes: [0, 1, 2, 8, 10], + work_id: 17498598, + }, + { + accessible_nodes: [0, 1, 2, 8, 9], + device_info: '', + floor_index: 0, + id: 79592081, + index: 10, + offset_point_count: 0, + position: [-2.870690107345581, 1.1248380754483438, -11.29419994354248], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.870690107345581, 0.014595293877259996, -11.29419994354248], + status: '1', + user_id: 1000000023005820, + visible_nodes: [0, 1, 2, 8, 9], + work_id: 17498598, + }, + { + accessible_nodes: [8, 12], + device_info: '', + floor_index: 0, + id: 79592082, + index: 11, + offset_point_count: 0, + position: [-4.4268598556518555, 1.1334009755743242, -8.677849769592285], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.4268598556518555, 0.017064654776624888, -8.677849769592285], + status: '1', + user_id: 1000000023005820, + visible_nodes: [8, 12], + work_id: 17498598, + }, + { + accessible_nodes: [11], + device_info: '', + floor_index: 0, + id: 79592083, + index: 12, + offset_point_count: 0, + position: [-4.177919864654541, 1.1300826732409692, -9.812439918518066], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.177919864654541, 0.016033160325532814, -9.812439918518066], + status: '1', + user_id: 1000000023005820, + visible_nodes: [11], + work_id: 17498598, + }, + { + accessible_nodes: [8, 14], + device_info: '', + floor_index: 0, + id: 79592084, + index: 13, + offset_point_count: 0, + position: [-4.857870101928711, 1.1314580727709032, -6.864620208740234], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.857870101928711, 0.010698059979705299, -6.864620208740234], + status: '1', + user_id: 1000000023005820, + visible_nodes: [8, 14], + work_id: 17498598, + }, + { + accessible_nodes: [13, 15], + device_info: '', + floor_index: 0, + id: 79592085, + index: 14, + offset_point_count: 0, + position: [-7.028520107269287, 1.1262667764318681, -7.07834005355835], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-7.028520107269287, 0.007193147721680226, -7.07834005355835], + status: '1', + user_id: 1000000023005820, + visible_nodes: [13, 15], + work_id: 17498598, + }, + { + accessible_nodes: [14], + device_info: '', + floor_index: 0, + id: 79592086, + index: 15, + offset_point_count: 0, + position: [-7.235169887542725, 1.1403237719429231, -8.636899948120117], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-7.235169887542725, 0.0331207038935295, -8.636899948120117], + status: '1', + user_id: 1000000023005820, + visible_nodes: [14], + work_id: 17498598, + }, + ], + panorama: { + count: 16, + list: [ + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_f.jpg', + index: 0, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_f.jpg', + index: 1, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_f.jpg', + index: 2, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_f.jpg', + index: 3, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_f.jpg', + index: 4, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_f.jpg', + index: 5, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_f.jpg', + index: 6, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_f.jpg', + index: 7, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_f.jpg', + index: 8, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_f.jpg', + index: 9, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_f.jpg', + index: 10, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_f.jpg', + index: 11, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_f.jpg', + index: 12, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_f.jpg', + index: 13, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_f.jpg', + index: 14, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_u.jpg', + }, + { + back: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_b.jpg', + down: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_d.jpg', + front: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_f.jpg', + index: 15, + left: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_l.jpg', + right: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_r.jpg', + tiles: [1, 2], + up: 'release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_u.jpg', + }, + ], + }, + picture_url: 'vrframework/release/ue4_decoration_plan/RojBlJQdVTglNNMr/vrproc-ue4/render/picture.jpg', +} diff --git a/open-works/virtual/81RojBlJQdVTglNNMr/work.json b/open-works/virtual/81RojBlJQdVTglNNMr/work.json new file mode 100644 index 000000000..841ffbd91 --- /dev/null +++ b/open-works/virtual/81RojBlJQdVTglNNMr/work.json @@ -0,0 +1,542 @@ +{ + "_signature": "QOdSF+9tqeqw9aw6Fr8VB25R0sssMf0nIMF8/OORnTpNV5OyxzZSonsUbFLQ/QG2xJOG1BgZvEqRp5CbZlQ3qAPV10IGkAK2GKecBHbaXtHvjPjSqiF8xvClfzY0NBoQBpABGxquANRzFan3DbOhwfJGc2A1PgkwwalyTo6iPds=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "expire_at": "1960440638104", + "initial": { + "fov": 60, + "latitude": 0, + "longitude": 0, + "pano_index": 0, + "recordVideo": false + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/RojBlJQdVTglNNMr/vrproc-ue4/render/model.at3d", + "material_base_url": "https://vrlab-public.ljcdn.com/", + "material_textures": [ + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_0.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_1.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_2.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_3.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_4.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_5.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_6.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_7.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_8.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_9.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_10.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_11.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_12.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_13.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_14.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_15.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_16.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_17.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_18.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_19.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_20.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_21.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_22.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_23.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_24.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_25.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_26.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_27.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_28.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_29.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_30.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_31.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_32.jpg", + "release/ue4/66c725c0d6073fd710880e587523f6ac/at3d_results/texture_33.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [1, 2, 8, 9, 10], + "device_info": "", + "floor_index": 0, + "id": 79592071, + "index": 0, + "offset_point_count": 0, + "position": [-2.524899959564209, 1.1272988755596376, -0.2097250074148178], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.524899959564209, 0.009188549365932497, -0.2097250074148178], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [1, 2, 8, 9, 10], + "work_id": 17498598 + }, + { + "accessible_nodes": [0, 2, 8, 9, 10], + "device_info": "", + "floor_index": 0, + "id": 79592072, + "index": 1, + "offset_point_count": 0, + "position": [-2.370680093765259, 1.12635167579777, 1.6661299467086792], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.370680093765259, 0.009883324861828635, 1.6661299467086792], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [0, 2, 8, 9, 10], + "work_id": 17498598 + }, + { + "accessible_nodes": [0, 1, 3, 4, 8, 9, 10], + "device_info": "", + "floor_index": 0, + "id": 79592073, + "index": 2, + "offset_point_count": 0, + "position": [-2.7041800022125244, 1.1363521729005075, -4.20904016494751], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.7041800022125244, 0.01989903732182885, -4.20904016494751], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [0, 1, 3, 4, 8, 9, 10], + "work_id": 17498598 + }, + { + "accessible_nodes": [2, 4, 5, 6, 7], + "device_info": "", + "floor_index": 0, + "id": 79592074, + "index": 3, + "offset_point_count": 0, + "position": [-4.808849811553955, 1.134885377098391, -4.842979907989502], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.808849811553955, 0.019460038332109963, -4.842979907989502], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [2, 4, 5, 6, 7], + "work_id": 17498598 + }, + { + "accessible_nodes": [2, 3, 5], + "device_info": "", + "floor_index": 0, + "id": 79592075, + "index": 4, + "offset_point_count": 0, + "position": [-6.079150199890137, 1.121646276522944, -4.87332010269165], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-6.079150199890137, 0.0030908276891732367, -4.87332010269165], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [2, 3, 5], + "work_id": 17498598 + }, + { + "accessible_nodes": [3, 4], + "device_info": "", + "floor_index": 0, + "id": 79592076, + "index": 5, + "offset_point_count": 0, + "position": [-7.1314802169799805, 1.1201053772462106, -4.815800189971924], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.1314802169799805, 0, -4.815800189971924], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [3, 4], + "work_id": 17498598 + }, + { + "accessible_nodes": [3, 7], + "device_info": "", + "floor_index": 0, + "id": 79592077, + "index": 6, + "offset_point_count": 0, + "position": [-5.067729949951172, 1.137985973466704, -3.0250699520111084], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-5.067729949951172, 0.023589427379732797, -3.0250699520111084], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [3, 7], + "work_id": 17498598 + }, + { + "accessible_nodes": [3, 6], + "device_info": "", + "floor_index": 0, + "id": 79592078, + "index": 7, + "offset_point_count": 0, + "position": [-5.267879962921143, 1.1311240781439043, -0.47130900621414185], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-5.267879962921143, 0.01935524699680191, -0.47130900621414185], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [3, 6], + "work_id": 17498598 + }, + { + "accessible_nodes": [0, 1, 2, 9, 10, 11, 13], + "device_info": "", + "floor_index": 0, + "id": 79592079, + "index": 8, + "offset_point_count": 0, + "position": [-2.9153900146484375, 1.1333630744708276, -7.800519943237305], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.9153900146484375, 0.02013881241831772, -7.800519943237305], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [0, 1, 2, 9, 10, 11, 13], + "work_id": 17498598 + }, + { + "accessible_nodes": [0, 1, 2, 8, 10], + "device_info": "", + "floor_index": 0, + "id": 79592080, + "index": 9, + "offset_point_count": 0, + "position": [-2.9180400371551514, 1.1299047757280565, -9.54893970489502], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.9180400371551514, 0.017917029477977353, -9.54893970489502], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [0, 1, 2, 8, 10], + "work_id": 17498598 + }, + { + "accessible_nodes": [0, 1, 2, 8, 9], + "device_info": "", + "floor_index": 0, + "id": 79592081, + "index": 10, + "offset_point_count": 0, + "position": [-2.870690107345581, 1.1248380754483438, -11.29419994354248], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.870690107345581, 0.014595293877259996, -11.29419994354248], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [0, 1, 2, 8, 9], + "work_id": 17498598 + }, + { + "accessible_nodes": [8, 12], + "device_info": "", + "floor_index": 0, + "id": 79592082, + "index": 11, + "offset_point_count": 0, + "position": [-4.4268598556518555, 1.1334009755743242, -8.677849769592285], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.4268598556518555, 0.017064654776624888, -8.677849769592285], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [8, 12], + "work_id": 17498598 + }, + { + "accessible_nodes": [11], + "device_info": "", + "floor_index": 0, + "id": 79592083, + "index": 12, + "offset_point_count": 0, + "position": [-4.177919864654541, 1.1300826732409692, -9.812439918518066], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.177919864654541, 0.016033160325532814, -9.812439918518066], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [11], + "work_id": 17498598 + }, + { + "accessible_nodes": [8, 14], + "device_info": "", + "floor_index": 0, + "id": 79592084, + "index": 13, + "offset_point_count": 0, + "position": [-4.857870101928711, 1.1314580727709032, -6.864620208740234], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.857870101928711, 0.010698059979705299, -6.864620208740234], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [8, 14], + "work_id": 17498598 + }, + { + "accessible_nodes": [13, 15], + "device_info": "", + "floor_index": 0, + "id": 79592085, + "index": 14, + "offset_point_count": 0, + "position": [-7.028520107269287, 1.1262667764318681, -7.07834005355835], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.028520107269287, 0.007193147721680226, -7.07834005355835], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [13, 15], + "work_id": 17498598 + }, + { + "accessible_nodes": [14], + "device_info": "", + "floor_index": 0, + "id": 79592086, + "index": 15, + "offset_point_count": 0, + "position": [-7.235169887542725, 1.1403237719429231, -8.636899948120117], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.235169887542725, 0.0331207038935295, -8.636899948120117], + "status": "1", + "user_id": 1000000023005820, + "visible_nodes": [14], + "work_id": 17498598 + } + ], + "panorama": { + "count": 16, + "list": [ + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/11/11_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_f.jpg", + "index": 12, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/12/12_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_f.jpg", + "index": 13, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/13/13_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_f.jpg", + "index": 14, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/14/14_u.jpg" + }, + { + "back": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_b.jpg", + "down": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_d.jpg", + "front": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_f.jpg", + "index": 15, + "left": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_l.jpg", + "right": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/31fb855fd62f13a9448b0ec27be7ce8c/ue4_result/cube_2048/15/15_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/RojBlJQdVTglNNMr/vrproc-ue4/render/picture.jpg" +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/floorplanServerData.js b/open-works/virtual/81gmMq5a7zbF9leWMk/floorplanServerData.js new file mode 100644 index 000000000..24b6197e6 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/floorplanServerData.js @@ -0,0 +1,700 @@ +export const floorplanServerData = { + computed_data: { + bounding: { + max: { + x: 40242.1141, + y: 42733.7015, + }, + min: { + x: 30819.4486, + y: 32377.701500000003, + }, + origin: { + x: 37500, + y: 37500, + }, + }, + doors: [ + { + id: 'ac8afef4-35a0-4526-bfc5-ffb3e3494e83', + localName: '客厅', + name: '客厅', + position: { + x: -0.3228859000000011, + y: 0, + z: 1.8358422999999966, + }, + rad: 0, + }, + { + id: 'e907c134-7380-43a1-4758-a22db903e6fc', + localName: '客厅', + name: '客厅', + position: { + x: 0.2998362999999954, + y: 0, + z: 2.3275682000000013, + }, + rad: 1.5708, + }, + { + id: 'c4cff70b-8f2c-473c-08d2-29f4c9e34442', + localName: '厨房', + name: '厨房', + position: { + x: -3.5816512, + y: 0, + z: -2.9685491000000037, + }, + rad: 0, + }, + { + id: '83d42cfe-a15b-43ca-7128-ec8d465bce61', + localName: '客厅', + name: '客厅', + position: { + x: -0.7103069000000032, + y: 0, + z: -2.399701500000003, + }, + rad: -1.5708, + }, + { + id: '8e997964-bda6-492a-103a-a95ffcc981d2', + localName: '阳台', + name: '阳台', + position: { + x: -3.5816512, + y: 0, + z: -2.9685491000000037, + }, + rad: 3.1416, + }, + { + id: '01c68fa4-826a-413f-d337-702302d38b4e', + localName: '卧室', + name: '卧室', + position: { + x: -0.3228859000000011, + y: 0, + z: 1.8358422999999966, + }, + rad: 3.1416, + }, + { + id: 'cbbcdcd9-2d28-4ae8-b02b-b1b3ce548010', + localName: '厨房', + name: '厨房', + position: { + x: -0.7103069000000032, + y: 0, + z: -2.399701500000003, + }, + rad: 1.5708, + }, + { + id: 'dbd1a23a-a8ef-4b77-6bd2-baae4cf02d64', + localName: '卫生间', + name: '卫生间', + position: { + x: 0.2998362999999954, + y: 0, + z: 2.3275682000000013, + }, + rad: -1.5708, + }, + ], + entrance: { + floor_index: 0, + north_rad: 1.7104263401595463, + position: { + x: 38635.4474, + y: 40822.3684, + }, + position_in_image: { + x: 0.8294891503895578, + y: 0.18456287176516062, + }, + rad: 1.5708, + room_id: 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + }, + floor_datas: [ + { + floor_index: 0, + floor_name: '一层', + rooms: [ + { + floor_type: 0, + id: 'u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb', + name: '卧室', + observer_indexs: [11, 12, 13], + path: [ + { + x: 37177.1141, + y: 33377.7015, + }, + { + x: 31819.4486, + y: 33377.7015, + }, + { + x: 31819.4486, + y: 36418.7015, + }, + { + x: 32701.1141, + y: 36418.7015, + }, + { + x: 37177.1141, + y: 36418.7015, + }, + { + x: 37177.1141, + y: 35172.4318, + }, + ], + room_label: { + position: { + x: 34498, + y: 34897.5, + }, + position_in_image: { + x: 0.390393928342251, + y: 0.7566822614909234, + }, + }, + room_type: '100900000001', + size: 15299220.925499797, + type: 3, + }, + { + floor_type: 3, + id: 'u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd', + name: '卫生间', + observer_indexs: [9, 10], + path: [ + { + x: 37177.1141, + y: 33377.7015, + }, + { + x: 37177.1141, + y: 35172.4318, + }, + { + x: 39242.1141, + y: 35172.4318, + }, + { + x: 39242.1141, + y: 33377.7015, + }, + ], + room_label: { + position: { + x: 38209.5, + y: 34274.5, + }, + position_in_image: { + x: 0.7842845954788484, + y: 0.8168406237929705, + }, + }, + room_type: '100900000004', + size: 3257350.4335000515, + type: 5, + }, + { + floor_type: 4, + id: 'u-88ff6d59-a88e-4350-8543-2310b083a2de', + name: '阳台', + observer_indexs: [6], + path: [ + { + x: 32701.1141, + y: 39939.7015, + }, + { + x: 32701.1141, + y: 41713.7015, + }, + { + x: 33918.3488, + y: 41713.7015, + }, + { + x: 33918.3488, + y: 39939.7015, + }, + ], + room_label: { + position: { + x: 33309.5, + y: 40826, + }, + position_in_image: { + x: 0.2642618906507931, + y: 0.18421219582850548, + }, + }, + room_type: '100900000005', + size: 1770936.805799961, + type: 12, + }, + { + floor_type: 3, + id: 'u-11d2fd7e-7de9-4584-3d88-26b2402f44fd', + name: '厨房', + observer_indexs: [4, 5], + path: [ + { + x: 33918.3488, + y: 41733.7015, + }, + { + x: 37349.6931, + y: 41733.7015, + }, + { + x: 37349.6931, + y: 39899.7015, + }, + { + x: 33918.3488, + y: 39899.7015, + }, + { + x: 33918.3488, + y: 39939.7015, + }, + { + x: 33918.3488, + y: 41713.7015, + }, + ], + room_label: { + position: { + x: 35633.5, + y: 40816, + }, + position_in_image: { + x: 0.5109012306549565, + y: 0.18517781962147575, + }, + }, + room_type: '100900000003', + size: 5675644.130199909, + type: 8, + }, + { + floor_type: 1, + id: 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + name: '客厅', + observer_indexs: [0, 1, 2, 3, 7, 8], + path: [ + { + x: 37177.1141, + y: 35172.4318, + }, + { + x: 37177.1141, + y: 36418.7015, + }, + { + x: 32701.1141, + y: 36418.7015, + }, + { + x: 32701.1141, + y: 39939.7015, + }, + { + x: 33918.3488, + y: 39939.7015, + }, + { + x: 33918.3488, + y: 39899.7015, + }, + { + x: 37349.6931, + y: 39899.7015, + }, + { + x: 38059.4825, + y: 39899.7015, + }, + { + x: 38059.4825, + y: 40822.3684, + }, + { + x: 39242.1141, + y: 40822.3684, + }, + { + x: 39242.1141, + y: 36407.035, + }, + { + x: 39242.1141, + y: 35172.4318, + }, + ], + room_label: { + position: { + x: 37486.11962890625, + y: 38144.59521484375, + }, + position_in_image: { + x: 0.7075143470715639, + y: 0.4431350217416235, + }, + }, + room_type: '100900000002', + size: 24850652.69071412, + type: 1, + }, + ], + rules: { + bottom: [ + [ + { + x: 37237, + y: 33437, + }, + { + x: 39182, + y: 33437, + }, + ], + [ + { + x: 31879, + y: 33437, + }, + { + x: 37117, + y: 33437, + }, + ], + ], + left: [ + [ + { + x: 38119, + y: 39839, + }, + { + x: 38119, + y: 40762, + }, + ], + [ + { + x: 31879, + y: 33437, + }, + { + x: 31879, + y: 36358, + }, + ], + [ + { + x: 32761, + y: 40039, + }, + { + x: 32761, + y: 41653, + }, + ], + [ + { + x: 32761, + y: 36478, + }, + { + x: 32761, + y: 39839, + }, + ], + ], + right: [ + [ + { + x: 37289, + y: 39959, + }, + { + x: 37289, + y: 41673, + }, + ], + [ + { + x: 39182, + y: 35232, + }, + { + x: 39182, + y: 36347, + }, + ], + [ + { + x: 39182, + y: 33437, + }, + { + x: 39182, + y: 35112, + }, + ], + [ + { + x: 39182, + y: 36467, + }, + { + x: 39182, + y: 40762, + }, + ], + ], + top: [ + [ + { + x: 37349, + y: 39839, + }, + { + x: 38119, + y: 39839, + }, + ], + [ + { + x: 38119, + y: 40762, + }, + { + x: 39182, + y: 40762, + }, + ], + [ + { + x: 31879, + y: 36358, + }, + { + x: 32701, + y: 36358, + }, + ], + [ + { + x: 33978, + y: 41673, + }, + { + x: 37289, + y: 41673, + }, + ], + [ + { + x: 32761, + y: 41653, + }, + { + x: 33858, + y: 41653, + }, + ], + ], + }, + }, + ], + observers: [ + { + floor_index: 0, + index: 0, + position: { + x: 37591.41919761896, + y: 37586.54399961233, + }, + position_in_image: { + x: 0.7186894830999745, + y: 0.497021774853966, + }, + }, + { + floor_index: 0, + index: 1, + position: { + x: 35817.98994541168, + y: 37426.7048984766, + }, + position_in_image: { + x: 0.530480610333847, + y: 0.5124562187643301, + }, + }, + { + floor_index: 0, + index: 2, + position: { + x: 34062.54005432129, + y: 37433.00969898701, + }, + position_in_image: { + x: 0.3441798347103895, + y: 0.5118474122260521, + }, + }, + { + floor_index: 0, + index: 3, + position: { + x: 36881.085991859436, + y: 39162.15002536774, + }, + position_in_image: { + x: 0.6433038922860455, + y: 0.34487750817229296, + }, + }, + { + floor_index: 0, + index: 4, + position: { + x: 36788.97899389267, + y: 40566.659927368164, + }, + position_in_image: { + x: 0.6335288453031332, + y: 0.20925469028889906, + }, + }, + { + floor_index: 0, + index: 5, + position: { + x: 35303.87997627258, + y: 40649.280071258545, + }, + position_in_image: { + x: 0.4759196191642995, + y: 0.20127669261698125, + }, + }, + { + floor_index: 0, + index: 6, + position: { + x: 33588.79995346069, + y: 40516.469955444336, + }, + position_in_image: { + x: 0.2939031798869114, + y: 0.21410115339471483, + }, + }, + { + floor_index: 0, + index: 7, + position: { + x: 38517.74001121521, + y: 39343.209981918335, + }, + position_in_image: { + x: 0.8169972086152492, + y: 0.3273939279723511, + }, + }, + { + floor_index: 0, + index: 8, + position: { + x: 37752.72399187088, + y: 35780.38001060486, + }, + position_in_image: { + x: 0.7358082903262225, + y: 0.6714292670331349, + }, + }, + { + floor_index: 0, + index: 9, + position: { + x: 37846.45399451256, + y: 34862.809896469116, + }, + position_in_image: { + x: 0.7457555820603585, + y: 0.7600320204259257, + }, + }, + { + floor_index: 0, + index: 10, + position: { + x: 37918.07898879051, + y: 34355.32999038696, + }, + position_in_image: { + x: 0.7533569337456066, + y: 0.8090354876026497, + }, + }, + { + floor_index: 0, + index: 11, + position: { + x: 36400.879979133606, + y: 35383.389949798584, + }, + position_in_image: { + x: 0.5923410290998451, + y: 0.7097635718618597, + }, + }, + { + floor_index: 0, + index: 12, + position: { + x: 35695.53005695343, + y: 35896.600008010864, + }, + position_in_image: { + x: 0.5174842996340505, + y: 0.6602067875617167, + }, + }, + { + floor_index: 0, + index: 13, + position: { + x: 33514.739990234375, + y: 36008.54003429413, + }, + position_in_image: { + x: 0.28604341205090805, + y: 0.6493975922852332, + }, + }, + ], + }, + outlines: [ + { + checksum: 'db3a8e018d0000ba0253450f1950f1db', + index: 0, + url: 'https://vrlab-public.ljcdn.com/release/vrlab/outlinefloorplan/1c4bd2cd32436acfc07abd87852c2a15.jpg', + }, + ], +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/floorplanServerData.json b/open-works/virtual/81gmMq5a7zbF9leWMk/floorplanServerData.json new file mode 100644 index 000000000..ed67b6730 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/floorplanServerData.json @@ -0,0 +1,700 @@ +{ + "computed_data": { + "bounding": { + "max": { + "x": 40242.1141, + "y": 42733.7015 + }, + "min": { + "x": 30819.4486, + "y": 32377.701500000003 + }, + "origin": { + "x": 37500, + "y": 37500 + } + }, + "doors": [ + { + "id": "ac8afef4-35a0-4526-bfc5-ffb3e3494e83", + "localName": "客厅", + "name": "客厅", + "position": { + "x": -0.3228859000000011, + "y": 0, + "z": 1.8358422999999966 + }, + "rad": 0 + }, + { + "id": "e907c134-7380-43a1-4758-a22db903e6fc", + "localName": "客厅", + "name": "客厅", + "position": { + "x": 0.2998362999999954, + "y": 0, + "z": 2.3275682000000013 + }, + "rad": 1.5708 + }, + { + "id": "c4cff70b-8f2c-473c-08d2-29f4c9e34442", + "localName": "厨房", + "name": "厨房", + "position": { + "x": -3.5816512, + "y": 0, + "z": -2.9685491000000037 + }, + "rad": 0 + }, + { + "id": "83d42cfe-a15b-43ca-7128-ec8d465bce61", + "localName": "客厅", + "name": "客厅", + "position": { + "x": -0.7103069000000032, + "y": 0, + "z": -2.399701500000003 + }, + "rad": -1.5708 + }, + { + "id": "8e997964-bda6-492a-103a-a95ffcc981d2", + "localName": "阳台", + "name": "阳台", + "position": { + "x": -3.5816512, + "y": 0, + "z": -2.9685491000000037 + }, + "rad": 3.1416 + }, + { + "id": "01c68fa4-826a-413f-d337-702302d38b4e", + "localName": "卧室", + "name": "卧室", + "position": { + "x": -0.3228859000000011, + "y": 0, + "z": 1.8358422999999966 + }, + "rad": 3.1416 + }, + { + "id": "cbbcdcd9-2d28-4ae8-b02b-b1b3ce548010", + "localName": "厨房", + "name": "厨房", + "position": { + "x": -0.7103069000000032, + "y": 0, + "z": -2.399701500000003 + }, + "rad": 1.5708 + }, + { + "id": "dbd1a23a-a8ef-4b77-6bd2-baae4cf02d64", + "localName": "卫生间", + "name": "卫生间", + "position": { + "x": 0.2998362999999954, + "y": 0, + "z": 2.3275682000000013 + }, + "rad": -1.5708 + } + ], + "entrance": { + "floor_index": 0, + "north_rad": 1.7104263401595463, + "position": { + "x": 38635.4474, + "y": 40822.3684 + }, + "position_in_image": { + "x": 0.8294891503895578, + "y": 0.18456287176516062 + }, + "rad": 1.5708, + "room_id": "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f" + }, + "floor_datas": [ + { + "floor_index": 0, + "floor_name": "一层", + "rooms": [ + { + "floor_type": 0, + "id": "u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb", + "name": "卧室", + "observer_indexs": [11, 12, 13], + "path": [ + { + "x": 37177.1141, + "y": 33377.7015 + }, + { + "x": 31819.4486, + "y": 33377.7015 + }, + { + "x": 31819.4486, + "y": 36418.7015 + }, + { + "x": 32701.1141, + "y": 36418.7015 + }, + { + "x": 37177.1141, + "y": 36418.7015 + }, + { + "x": 37177.1141, + "y": 35172.4318 + } + ], + "room_label": { + "position": { + "x": 34498, + "y": 34897.5 + }, + "position_in_image": { + "x": 0.390393928342251, + "y": 0.7566822614909234 + } + }, + "room_type": "100900000001", + "size": 15299220.925499797, + "type": 3 + }, + { + "floor_type": 3, + "id": "u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd", + "name": "卫生间", + "observer_indexs": [9, 10], + "path": [ + { + "x": 37177.1141, + "y": 33377.7015 + }, + { + "x": 37177.1141, + "y": 35172.4318 + }, + { + "x": 39242.1141, + "y": 35172.4318 + }, + { + "x": 39242.1141, + "y": 33377.7015 + } + ], + "room_label": { + "position": { + "x": 38209.5, + "y": 34274.5 + }, + "position_in_image": { + "x": 0.7842845954788484, + "y": 0.8168406237929705 + } + }, + "room_type": "100900000004", + "size": 3257350.4335000515, + "type": 5 + }, + { + "floor_type": 4, + "id": "u-88ff6d59-a88e-4350-8543-2310b083a2de", + "name": "阳台", + "observer_indexs": [6], + "path": [ + { + "x": 32701.1141, + "y": 39939.7015 + }, + { + "x": 32701.1141, + "y": 41713.7015 + }, + { + "x": 33918.3488, + "y": 41713.7015 + }, + { + "x": 33918.3488, + "y": 39939.7015 + } + ], + "room_label": { + "position": { + "x": 33309.5, + "y": 40826 + }, + "position_in_image": { + "x": 0.2642618906507931, + "y": 0.18421219582850548 + } + }, + "room_type": "100900000005", + "size": 1770936.805799961, + "type": 12 + }, + { + "floor_type": 3, + "id": "u-11d2fd7e-7de9-4584-3d88-26b2402f44fd", + "name": "厨房", + "observer_indexs": [4, 5], + "path": [ + { + "x": 33918.3488, + "y": 41733.7015 + }, + { + "x": 37349.6931, + "y": 41733.7015 + }, + { + "x": 37349.6931, + "y": 39899.7015 + }, + { + "x": 33918.3488, + "y": 39899.7015 + }, + { + "x": 33918.3488, + "y": 39939.7015 + }, + { + "x": 33918.3488, + "y": 41713.7015 + } + ], + "room_label": { + "position": { + "x": 35633.5, + "y": 40816 + }, + "position_in_image": { + "x": 0.5109012306549565, + "y": 0.18517781962147575 + } + }, + "room_type": "100900000003", + "size": 5675644.130199909, + "type": 8 + }, + { + "floor_type": 1, + "id": "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "name": "客厅", + "observer_indexs": [0, 1, 2, 3, 7, 8], + "path": [ + { + "x": 37177.1141, + "y": 35172.4318 + }, + { + "x": 37177.1141, + "y": 36418.7015 + }, + { + "x": 32701.1141, + "y": 36418.7015 + }, + { + "x": 32701.1141, + "y": 39939.7015 + }, + { + "x": 33918.3488, + "y": 39939.7015 + }, + { + "x": 33918.3488, + "y": 39899.7015 + }, + { + "x": 37349.6931, + "y": 39899.7015 + }, + { + "x": 38059.4825, + "y": 39899.7015 + }, + { + "x": 38059.4825, + "y": 40822.3684 + }, + { + "x": 39242.1141, + "y": 40822.3684 + }, + { + "x": 39242.1141, + "y": 36407.035 + }, + { + "x": 39242.1141, + "y": 35172.4318 + } + ], + "room_label": { + "position": { + "x": 37486.11962890625, + "y": 38144.59521484375 + }, + "position_in_image": { + "x": 0.7075143470715639, + "y": 0.4431350217416235 + } + }, + "room_type": "100900000002", + "size": 24850652.69071412, + "type": 1 + } + ], + "rules": { + "bottom": [ + [ + { + "x": 37237, + "y": 33437 + }, + { + "x": 39182, + "y": 33437 + } + ], + [ + { + "x": 31879, + "y": 33437 + }, + { + "x": 37117, + "y": 33437 + } + ] + ], + "left": [ + [ + { + "x": 38119, + "y": 39839 + }, + { + "x": 38119, + "y": 40762 + } + ], + [ + { + "x": 31879, + "y": 33437 + }, + { + "x": 31879, + "y": 36358 + } + ], + [ + { + "x": 32761, + "y": 40039 + }, + { + "x": 32761, + "y": 41653 + } + ], + [ + { + "x": 32761, + "y": 36478 + }, + { + "x": 32761, + "y": 39839 + } + ] + ], + "right": [ + [ + { + "x": 37289, + "y": 39959 + }, + { + "x": 37289, + "y": 41673 + } + ], + [ + { + "x": 39182, + "y": 35232 + }, + { + "x": 39182, + "y": 36347 + } + ], + [ + { + "x": 39182, + "y": 33437 + }, + { + "x": 39182, + "y": 35112 + } + ], + [ + { + "x": 39182, + "y": 36467 + }, + { + "x": 39182, + "y": 40762 + } + ] + ], + "top": [ + [ + { + "x": 37349, + "y": 39839 + }, + { + "x": 38119, + "y": 39839 + } + ], + [ + { + "x": 38119, + "y": 40762 + }, + { + "x": 39182, + "y": 40762 + } + ], + [ + { + "x": 31879, + "y": 36358 + }, + { + "x": 32701, + "y": 36358 + } + ], + [ + { + "x": 33978, + "y": 41673 + }, + { + "x": 37289, + "y": 41673 + } + ], + [ + { + "x": 32761, + "y": 41653 + }, + { + "x": 33858, + "y": 41653 + } + ] + ] + } + } + ], + "observers": [ + { + "floor_index": 0, + "index": 0, + "position": { + "x": 37591.41919761896, + "y": 37586.54399961233 + }, + "position_in_image": { + "x": 0.7186894830999745, + "y": 0.497021774853966 + } + }, + { + "floor_index": 0, + "index": 1, + "position": { + "x": 35817.98994541168, + "y": 37426.7048984766 + }, + "position_in_image": { + "x": 0.530480610333847, + "y": 0.5124562187643301 + } + }, + { + "floor_index": 0, + "index": 2, + "position": { + "x": 34062.54005432129, + "y": 37433.00969898701 + }, + "position_in_image": { + "x": 0.3441798347103895, + "y": 0.5118474122260521 + } + }, + { + "floor_index": 0, + "index": 3, + "position": { + "x": 36881.085991859436, + "y": 39162.15002536774 + }, + "position_in_image": { + "x": 0.6433038922860455, + "y": 0.34487750817229296 + } + }, + { + "floor_index": 0, + "index": 4, + "position": { + "x": 36788.97899389267, + "y": 40566.659927368164 + }, + "position_in_image": { + "x": 0.6335288453031332, + "y": 0.20925469028889906 + } + }, + { + "floor_index": 0, + "index": 5, + "position": { + "x": 35303.87997627258, + "y": 40649.280071258545 + }, + "position_in_image": { + "x": 0.4759196191642995, + "y": 0.20127669261698125 + } + }, + { + "floor_index": 0, + "index": 6, + "position": { + "x": 33588.79995346069, + "y": 40516.469955444336 + }, + "position_in_image": { + "x": 0.2939031798869114, + "y": 0.21410115339471483 + } + }, + { + "floor_index": 0, + "index": 7, + "position": { + "x": 38517.74001121521, + "y": 39343.209981918335 + }, + "position_in_image": { + "x": 0.8169972086152492, + "y": 0.3273939279723511 + } + }, + { + "floor_index": 0, + "index": 8, + "position": { + "x": 37752.72399187088, + "y": 35780.38001060486 + }, + "position_in_image": { + "x": 0.7358082903262225, + "y": 0.6714292670331349 + } + }, + { + "floor_index": 0, + "index": 9, + "position": { + "x": 37846.45399451256, + "y": 34862.809896469116 + }, + "position_in_image": { + "x": 0.7457555820603585, + "y": 0.7600320204259257 + } + }, + { + "floor_index": 0, + "index": 10, + "position": { + "x": 37918.07898879051, + "y": 34355.32999038696 + }, + "position_in_image": { + "x": 0.7533569337456066, + "y": 0.8090354876026497 + } + }, + { + "floor_index": 0, + "index": 11, + "position": { + "x": 36400.879979133606, + "y": 35383.389949798584 + }, + "position_in_image": { + "x": 0.5923410290998451, + "y": 0.7097635718618597 + } + }, + { + "floor_index": 0, + "index": 12, + "position": { + "x": 35695.53005695343, + "y": 35896.600008010864 + }, + "position_in_image": { + "x": 0.5174842996340505, + "y": 0.6602067875617167 + } + }, + { + "floor_index": 0, + "index": 13, + "position": { + "x": 33514.739990234375, + "y": 36008.54003429413 + }, + "position_in_image": { + "x": 0.28604341205090805, + "y": 0.6493975922852332 + } + } + ] + }, + "outlines": [ + { + "checksum": "db3a8e018d0000ba0253450f1950f1db", + "index": 0, + "url": "https://vrlab-public.ljcdn.com/release/vrlab/outlinefloorplan/1c4bd2cd32436acfc07abd87852c2a15.jpg" + } + ] +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/index.js b/open-works/virtual/81gmMq5a7zbF9leWMk/index.js new file mode 100644 index 000000000..3451dc7f7 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/index.js @@ -0,0 +1,6 @@ +import { work } from './work' +import { floorplanServerData } from './floorplanServerData' +import { modelRoomLabels } from './modelRoomLabels' +import { modelEntryDoorGuidePluginServerData } from './modelEntryDoorGuidePluginServerData' + +export default { work, floorplanServerData, modelRoomLabels, modelEntryDoorGuidePluginServerData } diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/modelEntryDoorGuidePluginServerData.js b/open-works/virtual/81gmMq5a7zbF9leWMk/modelEntryDoorGuidePluginServerData.js new file mode 100644 index 000000000..4bc88ee51 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/modelEntryDoorGuidePluginServerData.js @@ -0,0 +1,8 @@ +export const modelEntryDoorGuidePluginServerData = { + rad: 1.5708, + position: { + x: 1.1354473999999972, + y: 0.008099600571102705, + z: -3.3223683999999993, + }, +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/modelEntryDoorGuidePluginServerData.json b/open-works/virtual/81gmMq5a7zbF9leWMk/modelEntryDoorGuidePluginServerData.json new file mode 100644 index 000000000..db9ff6305 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/modelEntryDoorGuidePluginServerData.json @@ -0,0 +1,8 @@ +{ + "rad": 1.5708, + "position": { + "x": 1.1354473999999972, + "y": 0.008099600571102705, + "z": -3.3223683999999993 + } +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/modelRoomLabels.js b/open-works/virtual/81gmMq5a7zbF9leWMk/modelRoomLabels.js new file mode 100644 index 000000000..ad9646894 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/modelRoomLabels.js @@ -0,0 +1,44 @@ +export const modelRoomLabels = { + model_room_labels: [ + { + id: 'u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb', + name: '卧室', + position: { x: -3.002, y: 1.1182914793158514, z: 2.6025 }, + longitude: -2.41713218605323, + floor_index: 0, + pano_index: 13, + }, + { + id: 'u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd', + name: '卫生间', + position: { x: 0.7095, y: 1.1121038993138452, z: 3.2255 }, + longitude: -1.8413599323262761, + floor_index: 0, + pano_index: 10, + }, + { + id: 'u-88ff6d59-a88e-4350-8543-2310b083a2de', + name: '阳台', + position: { x: -4.1905, y: 1.1050877294170303, z: -3.326 }, + longitude: 0.7341039464234692, + floor_index: 0, + pano_index: 6, + }, + { + id: 'u-11d2fd7e-7de9-4584-3d88-26b2402f44fd', + name: '厨房', + position: { x: -1.8665, y: 1.103391329305489, z: -3.316 }, + longitude: -1.1025240306022022, + floor_index: 0, + pano_index: 5, + }, + { + id: 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + name: '客厅', + position: { x: -0.01388037109375, y: 1.1134188435037407, z: -0.64459521484375 }, + longitude: 0.1864988178576859, + floor_index: 0, + pano_index: 0, + }, + ], +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/modelRoomLabels.json b/open-works/virtual/81gmMq5a7zbF9leWMk/modelRoomLabels.json new file mode 100644 index 000000000..af493c3f8 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/modelRoomLabels.json @@ -0,0 +1,44 @@ +{ + "model_room_labels": [ + { + "id": "u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb", + "name": "卧室", + "position": { "x": -3.002, "y": 1.1182914793158514, "z": 2.6025 }, + "longitude": -2.41713218605323, + "floor_index": 0, + "pano_index": 13 + }, + { + "id": "u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd", + "name": "卫生间", + "position": { "x": 0.7095, "y": 1.1121038993138452, "z": 3.2255 }, + "longitude": -1.8413599323262761, + "floor_index": 0, + "pano_index": 10 + }, + { + "id": "u-88ff6d59-a88e-4350-8543-2310b083a2de", + "name": "阳台", + "position": { "x": -4.1905, "y": 1.1050877294170303, "z": -3.326 }, + "longitude": 0.7341039464234692, + "floor_index": 0, + "pano_index": 6 + }, + { + "id": "u-11d2fd7e-7de9-4584-3d88-26b2402f44fd", + "name": "厨房", + "position": { "x": -1.8665, "y": 1.103391329305489, "z": -3.316 }, + "longitude": -1.1025240306022022, + "floor_index": 0, + "pano_index": 5 + }, + { + "id": "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "name": "客厅", + "position": { "x": -0.01388037109375, "y": 1.1134188435037407, "z": -0.64459521484375 }, + "longitude": 0.1864988178576859, + "floor_index": 0, + "pano_index": 0 + } + ] +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/panoRulerPluginServerData.js b/open-works/virtual/81gmMq5a7zbF9leWMk/panoRulerPluginServerData.js new file mode 100644 index 000000000..b906ed32c --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/panoRulerPluginServerData.js @@ -0,0 +1,221 @@ +export const panoRulerPluginServerData = { + pano_ruler_data: { + roomInfo: { + observers: [ + 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + 'u-11d2fd7e-7de9-4584-3d88-26b2402f44fd', + 'u-11d2fd7e-7de9-4584-3d88-26b2402f44fd', + 'u-88ff6d59-a88e-4350-8543-2310b083a2de', + 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f', + 'u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd', + 'u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd', + 'u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb', + 'u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb', + 'u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb', + ], + rooms: { + 'u-11d2fd7e-7de9-4584-3d88-26b2402f44fd': { + area: 5675644.130199909, + id: 'u-11d2fd7e-7de9-4584-3d88-26b2402f44fd', + localName: '厨房', + name: '厨房', + }, + 'u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb': '{area: 15299220.925499797, id: "u-6a4425b8-b85f-489…}', + 'u-7654185f-3853-4aa0-b2dc-ae40bf304d7f': '{area: 24850652.69071412, id: "u-7654185f-3853-4aa0…}', + 'u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd': '{area: 3257350.4335000515, id: "u-800df8b4-ac4d-40e…}', + 'u-88ff6d59-a88e-4350-8543-2310b083a2de': '{area: 1770936.805799961, id: "u-88ff6d59-a88e-4350…}', + }, + }, + roomRules: { + 6: [ + { + observers: [6], + x: -4.738885900000001, + z: -2.5397015000000027, + }, + { + observers: [6], + x: -4.738885900000001, + z: -4.153701500000003, + }, + { + observers: [6], + x: -3.6416512, + z: -4.153701500000003, + }, + { + observers: [6], + x: -3.6416512, + z: -2.5397015000000027, + }, + { + observers: [6], + x: -4.738885900000001, + z: -2.5397015000000027, + }, + ], + '0,1,2,3,7,8': [ + { + observers: [0, 7, 8], + x: -0.2628859000000011, + z: 2.2675682000000017, + }, + { + observers: [8], + x: -0.2628859000000011, + z: 1.141298499999997, + }, + { + observers: [0, 7, 8], + x: -0.13030690000000322, + z: 1.141298499999997, + }, + { + observers: [0, 1, 2, 3, 7, 8], + x: -0.13030690000000322, + z: 1.0212984999999972, + }, + { + observers: [0, 1, 2, 3], + x: -4.738885900000001, + z: 1.0212984999999972, + }, + { + observers: [0, 1, 2, 3, 7], + x: -4.738885900000001, + z: -2.339701500000003, + }, + { + observers: [0, 1, 2, 3, 7, 8], + x: 0.6194824999999983, + z: -2.339701500000003, + }, + { + observers: [7], + x: 0.6194824999999983, + z: -3.2623683999999993, + }, + { + observers: [0, 1, 7, 8], + x: 1.6821140999999988, + z: -3.2623683999999993, + }, + { + observers: [0, 1, 2, 3, 7], + x: 1.6821140999999988, + z: 1.0329649999999966, + }, + { + observers: [0, 1, 2, 3, 7, 8], + x: 0.6915440999999991, + z: 1.0329649999999966, + }, + { + observers: [0, 1, 2, 3, 8], + x: 0.6915440999999991, + z: 1.1529649999999965, + }, + { + observers: [8], + x: 1.6821140999999988, + z: 1.1529649999999965, + }, + { + observers: [8], + x: 1.6821140999999988, + z: 2.2675682000000017, + }, + { + observers: [0, 7, 8], + x: -0.2628859000000011, + z: 2.2675682000000017, + }, + ], + '11,12,13': [ + { + observers: [11, 12, 13], + x: -0.3828859000000011, + z: 4.062298499999997, + }, + { + observers: [11, 12, 13], + x: -5.6205514, + z: 4.062298499999997, + }, + { + observers: [11, 12, 13], + x: -5.6205514, + z: 1.141298499999997, + }, + { + observers: [11, 12, 13], + x: -0.3828859000000011, + z: 1.141298499999997, + }, + { + observers: [11, 12, 13], + x: -0.3828859000000011, + z: 4.062298499999997, + }, + ], + '4,5': [ + { + observers: [4, 5], + x: -3.5216512000000004, + z: -4.173701500000003, + }, + { + observers: [4, 5], + x: -0.21030690000000324, + z: -4.173701500000003, + }, + { + observers: [4, 5], + x: -0.21030690000000324, + z: -2.4597015000000026, + }, + { + observers: [4, 5], + x: -3.5216512000000004, + z: -2.4597015000000026, + }, + { + observers: [4, 5], + x: -3.5216512000000004, + z: -4.173701500000003, + }, + ], + '9,10': [ + { + observers: [9, 10], + x: -0.2628859000000011, + z: 4.062298499999997, + }, + { + observers: [9, 10], + x: -0.2628859000000011, + z: 2.3875682000000014, + }, + { + observers: [9, 10], + x: 1.6821140999999988, + z: 2.3875682000000014, + }, + { + observers: [9, 10], + x: 1.6821140999999988, + z: 4.062298499999997, + }, + { + observers: [9, 10], + x: -0.2628859000000011, + z: 4.062298499999997, + }, + ], + }, + }, +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/panoRulerPluginServerData.json b/open-works/virtual/81gmMq5a7zbF9leWMk/panoRulerPluginServerData.json new file mode 100644 index 000000000..f77de7f40 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/panoRulerPluginServerData.json @@ -0,0 +1,221 @@ +{ + "pano_ruler_data": { + "roomInfo": { + "observers": [ + "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "u-11d2fd7e-7de9-4584-3d88-26b2402f44fd", + "u-11d2fd7e-7de9-4584-3d88-26b2402f44fd", + "u-88ff6d59-a88e-4350-8543-2310b083a2de", + "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f", + "u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd", + "u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd", + "u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb", + "u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb", + "u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb" + ], + "rooms": { + "u-11d2fd7e-7de9-4584-3d88-26b2402f44fd": { + "area": 5675644.130199909, + "id": "u-11d2fd7e-7de9-4584-3d88-26b2402f44fd", + "localName": "厨房", + "name": "厨房" + }, + "u-6a4425b8-b85f-4895-dbb1-2dc7f09646bb": "{area: 15299220.925499797, id: \"u-6a4425b8-b85f-489…}", + "u-7654185f-3853-4aa0-b2dc-ae40bf304d7f": "{area: 24850652.69071412, id: \"u-7654185f-3853-4aa0…}", + "u-800df8b4-ac4d-40e4-1a14-30c7fe9365cd": "{area: 3257350.4335000515, id: \"u-800df8b4-ac4d-40e…}", + "u-88ff6d59-a88e-4350-8543-2310b083a2de": "{area: 1770936.805799961, id: \"u-88ff6d59-a88e-4350…}" + } + }, + "roomRules": { + "6": [ + { + "observers": [6], + "x": -4.738885900000001, + "z": -2.5397015000000027 + }, + { + "observers": [6], + "x": -4.738885900000001, + "z": -4.153701500000003 + }, + { + "observers": [6], + "x": -3.6416512, + "z": -4.153701500000003 + }, + { + "observers": [6], + "x": -3.6416512, + "z": -2.5397015000000027 + }, + { + "observers": [6], + "x": -4.738885900000001, + "z": -2.5397015000000027 + } + ], + "0,1,2,3,7,8": [ + { + "observers": [0, 7, 8], + "x": -0.2628859000000011, + "z": 2.2675682000000017 + }, + { + "observers": [8], + "x": -0.2628859000000011, + "z": 1.141298499999997 + }, + { + "observers": [0, 7, 8], + "x": -0.13030690000000322, + "z": 1.141298499999997 + }, + { + "observers": [0, 1, 2, 3, 7, 8], + "x": -0.13030690000000322, + "z": 1.0212984999999972 + }, + { + "observers": [0, 1, 2, 3], + "x": -4.738885900000001, + "z": 1.0212984999999972 + }, + { + "observers": [0, 1, 2, 3, 7], + "x": -4.738885900000001, + "z": -2.339701500000003 + }, + { + "observers": [0, 1, 2, 3, 7, 8], + "x": 0.6194824999999983, + "z": -2.339701500000003 + }, + { + "observers": [7], + "x": 0.6194824999999983, + "z": -3.2623683999999993 + }, + { + "observers": [0, 1, 7, 8], + "x": 1.6821140999999988, + "z": -3.2623683999999993 + }, + { + "observers": [0, 1, 2, 3, 7], + "x": 1.6821140999999988, + "z": 1.0329649999999966 + }, + { + "observers": [0, 1, 2, 3, 7, 8], + "x": 0.6915440999999991, + "z": 1.0329649999999966 + }, + { + "observers": [0, 1, 2, 3, 8], + "x": 0.6915440999999991, + "z": 1.1529649999999965 + }, + { + "observers": [8], + "x": 1.6821140999999988, + "z": 1.1529649999999965 + }, + { + "observers": [8], + "x": 1.6821140999999988, + "z": 2.2675682000000017 + }, + { + "observers": [0, 7, 8], + "x": -0.2628859000000011, + "z": 2.2675682000000017 + } + ], + "11,12,13": [ + { + "observers": [11, 12, 13], + "x": -0.3828859000000011, + "z": 4.062298499999997 + }, + { + "observers": [11, 12, 13], + "x": -5.6205514, + "z": 4.062298499999997 + }, + { + "observers": [11, 12, 13], + "x": -5.6205514, + "z": 1.141298499999997 + }, + { + "observers": [11, 12, 13], + "x": -0.3828859000000011, + "z": 1.141298499999997 + }, + { + "observers": [11, 12, 13], + "x": -0.3828859000000011, + "z": 4.062298499999997 + } + ], + "4,5": [ + { + "observers": [4, 5], + "x": -3.5216512000000004, + "z": -4.173701500000003 + }, + { + "observers": [4, 5], + "x": -0.21030690000000324, + "z": -4.173701500000003 + }, + { + "observers": [4, 5], + "x": -0.21030690000000324, + "z": -2.4597015000000026 + }, + { + "observers": [4, 5], + "x": -3.5216512000000004, + "z": -2.4597015000000026 + }, + { + "observers": [4, 5], + "x": -3.5216512000000004, + "z": -4.173701500000003 + } + ], + "9,10": [ + { + "observers": [9, 10], + "x": -0.2628859000000011, + "z": 4.062298499999997 + }, + { + "observers": [9, 10], + "x": -0.2628859000000011, + "z": 2.3875682000000014 + }, + { + "observers": [9, 10], + "x": 1.6821140999999988, + "z": 2.3875682000000014 + }, + { + "observers": [9, 10], + "x": 1.6821140999999988, + "z": 4.062298499999997 + }, + { + "observers": [9, 10], + "x": -0.2628859000000011, + "z": 4.062298499999997 + } + ] + } + } +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/work.js b/open-works/virtual/81gmMq5a7zbF9leWMk/work.js new file mode 100644 index 000000000..b64b89370 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/work.js @@ -0,0 +1,418 @@ +export const work = { + _signature: + 'InXGmenKmIO5lGtDoTXEfRqELoFfzizYMjc077m1eJvfVNrjReL7AF7XFkaDU/cejObbDKJeE0gcKemepflsnQbePRyrgwsjigYORygvKq7Fs04RQDHDvXyVgulgwK5Lw5L9Ym8eZ0e94Q9S6NWyhib+3igKdjAtsF9ZkgLnXto=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: null, + expire_at: '1960894725229', + initial: { + flag_position: [-2.7074851195931218, -1.1011130051623583, -0.16486783437267372], + fov: 95, + heading: 0, + latitude: 0, + longitude: 1.1763007364483862, + pano_index: 0, + }, + model: { + file_url: 'vrframework/release/ue4_decoration_plan/gmMq5a7zbF9leWMk/vrproc-ue4/render/model.at3d', + material_base_url: 'https://vrlab-public.ljcdn.com/', + material_textures: [ + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_0.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_1.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_2.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_3.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_4.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_5.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_6.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_7.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_8.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_9.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_10.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_11.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_12.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_13.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_14.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_15.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_16.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_17.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_18.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_19.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_20.jpg', + 'release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_21.jpg', + ], + }, + observers: [ + { + accessible_nodes: [1, 2, 3, 4, 7, 8, 9, 10], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765762, + index: 0, + position: [0.09141919761896133, 1.1138173893692536, -0.08654399961233139], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.09141919761896133, 0.008460694152031545, -0.08654399961233139], + visible_nodes: [1, 2, 3, 4, 7, 8, 9, 10], + }, + { + accessible_nodes: [0, 2, 3, 4, 7], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765763, + index: 1, + position: [-1.6820100545883179, 1.1115840494299871, 0.07329510152339935], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.6820100545883179, 0.01284792484609465, 0.07329510152339935], + visible_nodes: [0, 2, 3, 4, 7], + }, + { + accessible_nodes: [0, 1, 3, 7], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765764, + index: 2, + position: [-3.437459945678711, 1.1090025043364247, 0.06699030101299286], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.437459945678711, 0.01757188648782715, 0.06699030101299286], + visible_nodes: [0, 1, 3, 7], + }, + { + accessible_nodes: [0, 1, 2, 4, 7, 8, 9, 10], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765765, + index: 3, + position: [-0.618914008140564, 1.1130503593145502, -1.6621500253677368], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.618914008140564, 0.008730999445763388, -1.6621500253677368], + visible_nodes: [0, 1, 2, 4, 7, 8, 9, 10], + }, + { + accessible_nodes: [0, 1, 3, 5, 6, 8, 9, 10], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765766, + index: 4, + position: [-0.7110210061073303, 1.1036436695272667, -3.066659927368164], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.7110210061073303, 0.004397219483756043, -3.066659927368164], + visible_nodes: [0, 1, 3, 5, 6, 8, 9, 10], + }, + { + accessible_nodes: [4, 6], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765767, + index: 5, + position: [-2.196120023727417, 1.1031389890837116, -3.149280071258545], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.196120023727417, 0, -3.149280071258545], + visible_nodes: [4, 6], + }, + { + accessible_nodes: [4, 5], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765768, + index: 6, + position: [-3.9112000465393066, 1.1050877294170303, -3.016469955444336], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.9112000465393066, 0.0031340039642751005, -3.016469955444336], + visible_nodes: [4, 5], + }, + { + accessible_nodes: [0, 1, 2, 3, 8, 9], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765769, + index: 7, + position: [1.01774001121521, 1.1164417693058593, -1.843209981918335], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.01774001121521, 0.012819098651509542, -1.843209981918335], + visible_nodes: [0, 1, 2, 3, 8, 9], + }, + { + accessible_nodes: [0, 3, 4, 7, 9, 10, 11], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765770, + index: 8, + position: [0.2527239918708801, 1.11661698926637, 1.7196199893951416], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.2527239918708801, 0.015771391061485396, 1.7196199893951416], + visible_nodes: [0, 3, 4, 7, 9, 10, 11], + }, + { + accessible_nodes: [0, 3, 4, 7, 8, 10], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765771, + index: 9, + position: [0.346453994512558, 1.1130644492937816, 2.637190103530884], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.346453994512558, 0.008099600571102705, 2.637190103530884], + visible_nodes: [0, 3, 4, 7, 8, 10], + }, + { + accessible_nodes: [0, 3, 4, 8, 9], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765772, + index: 10, + position: [0.4180789887905121, 1.111143349333909, 3.144670009613037], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.4180789887905121, 0.005309362667727413, 3.144670009613037], + visible_nodes: [0, 3, 4, 8, 9], + }, + { + accessible_nodes: [8, 12, 13], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765773, + index: 11, + position: [-1.099120020866394, 1.1157396293843729, 2.116610050201416], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.099120020866394, 0.014863925875566064, 2.116610050201416], + visible_nodes: [8, 12, 13], + }, + { + accessible_nodes: [11, 13], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765774, + index: 12, + position: [-1.8044699430465698, 1.1205140992666227, 1.6033999919891357], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.8044699430465698, 0.01867265971453569, 1.6033999919891357], + visible_nodes: [11, 13], + }, + { + accessible_nodes: [11, 12], + create_time: '2022-02-07T16:57:19+08:00', + floor_index: 0, + id: 79765775, + index: 13, + position: [-3.985260009765625, 1.1186207092965585, 1.4914599657058716], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.985260009765625, 0.016895707464748, 1.4914599657058716], + visible_nodes: [11, 12], + }, + ], + panorama: { + count: 14, + list: [ + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_f.jpg', + index: 0, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_f.jpg', + index: 1, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_f.jpg', + index: 2, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_f.jpg', + index: 3, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_f.jpg', + index: 4, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_f.jpg', + index: 5, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_f.jpg', + index: 6, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_f.jpg', + index: 7, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_f.jpg', + index: 8, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_f.jpg', + index: 9, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_f.jpg', + index: 10, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_f.jpg', + index: 11, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_f.jpg', + index: 12, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_u.jpg', + }, + { + back: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_b.jpg', + down: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_d.jpg', + front: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_f.jpg', + index: 13, + left: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_l.jpg', + right: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_r.jpg', + tiles: [1, 2], + up: 'release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_u.jpg', + }, + ], + }, + picture_url: 'vrframework/release/ue4_decoration_plan/gmMq5a7zbF9leWMk/vrproc-ue4/render/picture.jpg', +} diff --git a/open-works/virtual/81gmMq5a7zbF9leWMk/work.json b/open-works/virtual/81gmMq5a7zbF9leWMk/work.json new file mode 100644 index 000000000..89a9aef27 --- /dev/null +++ b/open-works/virtual/81gmMq5a7zbF9leWMk/work.json @@ -0,0 +1,416 @@ +{ + "_signature": "InXGmenKmIO5lGtDoTXEfRqELoFfzizYMjc077m1eJvfVNrjReL7AF7XFkaDU/cejObbDKJeE0gcKemepflsnQbePRyrgwsjigYORygvKq7Fs04RQDHDvXyVgulgwK5Lw5L9Ym8eZ0e94Q9S6NWyhib+3igKdjAtsF9ZkgLnXto=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": null, + "expire_at": "1960894725229", + "initial": { + "flag_position": [-2.7074851195931218, -1.1011130051623583, -0.16486783437267372], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 1.1763007364483862, + "pano_index": 0 + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/gmMq5a7zbF9leWMk/vrproc-ue4/render/model.at3d", + "material_base_url": "https://vrlab-public.ljcdn.com/", + "material_textures": [ + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_0.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_1.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_2.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_3.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_4.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_5.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_6.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_7.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_8.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_9.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_10.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_11.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_12.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_13.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_14.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_15.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_16.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_17.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_18.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_19.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_20.jpg", + "release/ue4/fba30a456a1576ec9b1c60f22fc8e678/at3d_results/texture_21.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [1, 2, 3, 4, 7, 8, 9, 10], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765762, + "index": 0, + "position": [0.09141919761896133, 1.1138173893692536, -0.08654399961233139], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.09141919761896133, 0.008460694152031545, -0.08654399961233139], + "visible_nodes": [1, 2, 3, 4, 7, 8, 9, 10] + }, + { + "accessible_nodes": [0, 2, 3, 4, 7], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765763, + "index": 1, + "position": [-1.6820100545883179, 1.1115840494299871, 0.07329510152339935], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.6820100545883179, 0.01284792484609465, 0.07329510152339935], + "visible_nodes": [0, 2, 3, 4, 7] + }, + { + "accessible_nodes": [0, 1, 3, 7], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765764, + "index": 2, + "position": [-3.437459945678711, 1.1090025043364247, 0.06699030101299286], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.437459945678711, 0.01757188648782715, 0.06699030101299286], + "visible_nodes": [0, 1, 3, 7] + }, + { + "accessible_nodes": [0, 1, 2, 4, 7, 8, 9, 10], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765765, + "index": 3, + "position": [-0.618914008140564, 1.1130503593145502, -1.6621500253677368], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.618914008140564, 0.008730999445763388, -1.6621500253677368], + "visible_nodes": [0, 1, 2, 4, 7, 8, 9, 10] + }, + { + "accessible_nodes": [0, 1, 3, 5, 6, 8, 9, 10], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765766, + "index": 4, + "position": [-0.7110210061073303, 1.1036436695272667, -3.066659927368164], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.7110210061073303, 0.004397219483756043, -3.066659927368164], + "visible_nodes": [0, 1, 3, 5, 6, 8, 9, 10] + }, + { + "accessible_nodes": [4, 6], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765767, + "index": 5, + "position": [-2.196120023727417, 1.1031389890837116, -3.149280071258545], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.196120023727417, 0, -3.149280071258545], + "visible_nodes": [4, 6] + }, + { + "accessible_nodes": [4, 5], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765768, + "index": 6, + "position": [-3.9112000465393066, 1.1050877294170303, -3.016469955444336], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.9112000465393066, 0.0031340039642751005, -3.016469955444336], + "visible_nodes": [4, 5] + }, + { + "accessible_nodes": [0, 1, 2, 3, 8, 9], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765769, + "index": 7, + "position": [1.01774001121521, 1.1164417693058593, -1.843209981918335], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.01774001121521, 0.012819098651509542, -1.843209981918335], + "visible_nodes": [0, 1, 2, 3, 8, 9] + }, + { + "accessible_nodes": [0, 3, 4, 7, 9, 10, 11], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765770, + "index": 8, + "position": [0.2527239918708801, 1.11661698926637, 1.7196199893951416], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.2527239918708801, 0.015771391061485396, 1.7196199893951416], + "visible_nodes": [0, 3, 4, 7, 9, 10, 11] + }, + { + "accessible_nodes": [0, 3, 4, 7, 8, 10], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765771, + "index": 9, + "position": [0.346453994512558, 1.1130644492937816, 2.637190103530884], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.346453994512558, 0.008099600571102705, 2.637190103530884], + "visible_nodes": [0, 3, 4, 7, 8, 10] + }, + { + "accessible_nodes": [0, 3, 4, 8, 9], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765772, + "index": 10, + "position": [0.4180789887905121, 1.111143349333909, 3.144670009613037], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.4180789887905121, 0.005309362667727413, 3.144670009613037], + "visible_nodes": [0, 3, 4, 8, 9] + }, + { + "accessible_nodes": [8, 12, 13], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765773, + "index": 11, + "position": [-1.099120020866394, 1.1157396293843729, 2.116610050201416], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.099120020866394, 0.014863925875566064, 2.116610050201416], + "visible_nodes": [8, 12, 13] + }, + { + "accessible_nodes": [11, 13], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765774, + "index": 12, + "position": [-1.8044699430465698, 1.1205140992666227, 1.6033999919891357], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.8044699430465698, 0.01867265971453569, 1.6033999919891357], + "visible_nodes": [11, 13] + }, + { + "accessible_nodes": [11, 12], + "create_time": "2022-02-07T16:57:19+08:00", + "floor_index": 0, + "id": 79765775, + "index": 13, + "position": [-3.985260009765625, 1.1186207092965585, 1.4914599657058716], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.985260009765625, 0.016895707464748, 1.4914599657058716], + "visible_nodes": [11, 12] + } + ], + "panorama": { + "count": 14, + "list": [ + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/11/11_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_f.jpg", + "index": 12, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/12/12_u.jpg" + }, + { + "back": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_b.jpg", + "down": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_d.jpg", + "front": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_f.jpg", + "index": 13, + "left": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_l.jpg", + "right": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/a724ffbd9590e5bf156e05e6368037d5/ue4_result/cube_2048/13/13_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/gmMq5a7zbF9leWMk/vrproc-ue4/render/picture.jpg" +} diff --git a/open-works/virtual/81gmMq5eXl5I9y7JMk/index.js b/open-works/virtual/81gmMq5eXl5I9y7JMk/index.js new file mode 100644 index 000000000..4f2e7e0b6 --- /dev/null +++ b/open-works/virtual/81gmMq5eXl5I9y7JMk/index.js @@ -0,0 +1,4 @@ +import { work } from './work' +import { modelTag } from './modelTag' + +export default { work, modelTag } diff --git a/open-works/virtual/81gmMq5eXl5I9y7JMk/modelTag.js b/open-works/virtual/81gmMq5eXl5I9y7JMk/modelTag.js new file mode 100644 index 000000000..4ed67a3d9 --- /dev/null +++ b/open-works/virtual/81gmMq5eXl5I9y7JMk/modelTag.js @@ -0,0 +1,2954 @@ +export const model_tag = [ + { + id: 'generated-c0d2a369-56a8-4173-aa71-86a1fa972607', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-1.17139626224593, 0.8104077156977465, -2.525483], + normal: [0, 0, -1], + }, + { + id: 'generated-c0d2a369-56a8-4173-aa71-86a1fa972607', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-1.0801470251391196, 0.6792272291450375, -2.4663312847972985], + normal: [1, 0, 0], + }, + { + id: 'generated-c0d2a369-56a8-4173-aa71-86a1fa972607', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-1.1713957911875057, 0.8104072165306094, -2.407977], + normal: [0, 0, 1], + }, + { + id: 'generated-c0d2a369-56a8-4173-aa71-86a1fa972607', + decoration_model_id: 1094, + decoration_model_series_id: 969, + name: '卫浴五金', + brand: '如视家居', + length: 0, + width: 0, + height: 0, + version: '', + series: '', + material: '其他', + surface_material: '', + positioning: '', + weight: 3, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4', + price: 0, + unit: '件', + size_text: '', + material_text: ['其他'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 969, + source: 'rushijiaju', + name: '海尔全屋生态', + style: 'modern', + color: '浅色系', + feature: '', + image_url: '', + create_time: '2022-02-24 10:37:57', + modify_time: '2022-02-24 10:37:57', + source_text: '如视家居', + style_text: '现代简约', + }, + position: [-1.171513931265473, 0.8105335690940403, -2.466331002555347], + normal: [-1, 0, 0], + }, + { + id: 'generated-ef175e00-7802-450a-80d9-db18114f0e40', + decoration_model_id: 19306, + decoration_model_series_id: 47, + name: '3S橡木双开隔板柜', + brand: '南鱼定制', + length: 60, + width: 35, + height: 70, + version: 'GC-D-08', + series: '', + material: '刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '35x60x70cm', + material_text: ['刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [3.875348412532503, 2.399968832166826, 4.70162062140875], + normal: [0, 0, 1], + }, + { + id: 'generated-ef175e00-7802-450a-80d9-db18114f0e40', + decoration_model_id: 19306, + decoration_model_series_id: 47, + name: '3S橡木双开隔板柜', + brand: '南鱼定制', + length: 60, + width: 35, + height: 70, + version: 'GC-D-08', + series: '', + material: '刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '35x60x70cm', + material_text: ['刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [3.8753482941683637, 2.3999689473070394, 4.102359920278322], + normal: [-1, 0, 0], + }, + { + id: 'generated-ef175e00-7802-450a-80d9-db18114f0e40', + decoration_model_id: 19306, + decoration_model_series_id: 47, + name: '3S橡木双开隔板柜', + brand: '南鱼定制', + length: 60, + width: 35, + height: 70, + version: 'GC-D-08', + series: '', + material: '刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '35x60x70cm', + material_text: ['刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [4.224675666666667, 2.3999656666666667, 4.1023533], + normal: [0, 0, -1], + }, + { + id: 'generated-ef175e00-7802-450a-80d9-db18114f0e40', + decoration_model_id: 19306, + decoration_model_series_id: 47, + name: '3S橡木双开隔板柜', + brand: '南鱼定制', + length: 60, + width: 35, + height: 70, + version: 'GC-D-08', + series: '', + material: '刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '35x60x70cm', + material_text: ['刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [4.224675666666667, 2.3999656666666667, 4.701626699999999], + normal: [1, 0, 0], + }, + { + id: 'generated-67543672-c926-4aa1-a98c-525a1647a964', + decoration_model_id: 19331, + decoration_model_series_id: 47, + name: '3S橡木双开水槽柜', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-10', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-1.3800959998000002, 0.8384622323478259, -2.8380238668], + normal: [1, 0, 0], + }, + { + id: 'generated-67543672-c926-4aa1-a98c-525a1647a964', + decoration_model_id: 19331, + decoration_model_series_id: 47, + name: '3S橡木双开水槽柜', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-10', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.279915, 0.8384622323478259, -2.8380238668], + normal: [0, 0, 1], + }, + { + id: 'generated-67543672-c926-4aa1-a98c-525a1647a964', + decoration_model_id: 19331, + decoration_model_series_id: 47, + name: '3S橡木双开水槽柜', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-10', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.279915, 0.8908661218695652, -3.4779838668], + normal: [-1, 0, 0], + }, + { + id: 'generated-67543672-c926-4aa1-a98c-525a1647a964', + decoration_model_id: 19331, + decoration_model_series_id: 47, + name: '3S橡木双开水槽柜', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-10', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-1.3800959998000002, 0.8908661218695652, -3.4779838668], + normal: [0, 0, -1], + }, + { + id: 'generated-93026ca0-e251-4b33-b24c-dae4f16f18f2', + decoration_model_id: 19454, + decoration_model_series_id: 47, + name: '3S橡木双开隔板(灶具)', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-11', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.4182024364727273, 0.7941767647058824, -2.2829509999999997], + normal: [0, 0, -1], + }, + { + id: 'generated-93026ca0-e251-4b33-b24c-dae4f16f18f2', + decoration_model_id: 19454, + decoration_model_series_id: 47, + name: '3S橡木双开隔板(灶具)', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-11', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.3600238668, 0.840638, -1.382971], + normal: [1, 0, 0], + }, + { + id: 'generated-93026ca0-e251-4b33-b24c-dae4f16f18f2', + decoration_model_id: 19454, + decoration_model_series_id: 47, + name: '3S橡木双开隔板(灶具)', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-11', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.9992012248320847, 0.8995456406212946, -1.382971], + normal: [0, 0, 1], + }, + { + id: 'generated-93026ca0-e251-4b33-b24c-dae4f16f18f2', + decoration_model_id: 19454, + decoration_model_series_id: 47, + name: '3S橡木双开隔板(灶具)', + brand: '南鱼定制', + length: 90, + width: 57, + height: 84, + version: 'GC-G-11', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '57x90x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.9992012248320847, 0.8995456406212946, -2.2829699999999997], + normal: [-1, 0, 0], + }, + { + id: 'generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [-2.537413777777778, 1.9506445000000001, -2.263082148], + normal: [0, 0, -1], + }, + { + id: 'generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [-2.4845532300061475, 1.9511968646078521, -1.4536327391803003], + normal: [1, 0, 0], + }, + { + id: 'generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [-2.9992750000000004, 1.9506445000000001, -1.4033307391999998], + normal: [0, 0, 1], + }, + { + id: 'generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487', + decoration_model_id: 39053, + decoration_model_series_id: 795, + name: '厨卫电器-抽油烟机', + brand: '浙派', + length: 90, + width: 52, + height: 55.5, + version: 'TD-5', + series: '', + material: '不锈钢玻璃', + surface_material: '', + positioning: '', + weight: 18, + introduction: '', + url: '', + images: [], + video_url: '', + price: 2499, + unit: '件', + size_text: '52x90x55.5cm', + material_text: ['不锈钢玻璃'], + positioning_text: '', + price_text: '2499元/件', + model_series: { + id: 795, + source: 'zhepai', + name: '厨卫电器', + style: 'modern', + color: '深色系', + feature: '', + image_url: '', + create_time: '2021-02-01 16:59:03', + modify_time: '2021-02-01 16:59:03', + source_text: '浙派', + style_text: '现代简约', + }, + position: [-2.9993160000000003, 2.4453130282, -2.0101292068235295], + normal: [-1, 0, 0], + }, + { + id: 'generated-125da186-2a71-47f5-8581-81ac02b1fb7f', + decoration_model_id: 19316, + decoration_model_series_id: 47, + name: '3S橡木单开隔板柜', + brand: '南鱼定制', + length: 45, + width: 58, + height: 84, + version: 'GC-G-04', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x45x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.4235313091454547, 0.7884611164411766, -1.3786108822], + normal: [0, 0, -1], + }, + { + id: 'generated-125da186-2a71-47f5-8581-81ac02b1fb7f', + decoration_model_id: 19316, + decoration_model_series_id: 47, + name: '3S橡木单开隔板柜', + brand: '南鱼定制', + length: 45, + width: 58, + height: 84, + version: 'GC-G-04', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x45x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-2.3653529334, 0.8355529361999999, -0.9816191178], + normal: [1, 0, 0], + }, + { + id: 'generated-125da186-2a71-47f5-8581-81ac02b1fb7f', + decoration_model_id: 19316, + decoration_model_series_id: 47, + name: '3S橡木单开隔板柜', + brand: '南鱼定制', + length: 45, + width: 58, + height: 84, + version: 'GC-G-04', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x45x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-3.004460838821835, 0.8939283660286738, -0.9816191178], + normal: [0, 0, 1], + }, + { + id: 'generated-125da186-2a71-47f5-8581-81ac02b1fb7f', + decoration_model_id: 19316, + decoration_model_series_id: 47, + name: '3S橡木单开隔板柜', + brand: '南鱼定制', + length: 45, + width: 58, + height: 84, + version: 'GC-G-04', + series: '', + material: '石英石,刨花板', + surface_material: '', + positioning: '', + weight: 0, + introduction: '', + url: 'http://www.nanyu.com/', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '58x45x84cm', + material_text: ['石英石', '刨花板'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 47, + source: 'nanyujiazhuang', + name: '3S', + style: 'northern_europe', + color: '原木色橡木', + feature: '', + image_url: '', + create_time: '2020-08-18 10:48:27', + modify_time: '2020-08-18 10:59:47', + source_text: '南鱼家装', + style_text: '北欧', + }, + position: [-3.004460838821835, 0.8939283660286738, -1.3786091178], + normal: [-1, 0, 0], + }, + { + id: 'generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334', + decoration_model_id: 50378, + decoration_model_series_id: 839, + name: '双人沙发', + brand: '如视家居', + length: 186, + width: 98, + height: 91, + version: 'null', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 33, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '98x186x91cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.382991177069563, 0.5451248265568489, -4.081992674420634], + normal: [0, 0, -1], + }, + { + id: 'generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334', + decoration_model_id: 50378, + decoration_model_series_id: 839, + name: '双人沙发', + brand: '如视家居', + length: 186, + width: 98, + height: 91, + version: 'null', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 33, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '98x186x91cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.127791599635555, 0.38468945613216876, -2.3331585718253325], + normal: [1, 0, 0], + }, + { + id: 'generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334', + decoration_model_id: 50378, + decoration_model_series_id: 839, + name: '双人沙发', + brand: '如视家居', + length: 186, + width: 98, + height: 91, + version: 'null', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 33, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '98x186x91cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.692776448338853, 0.5455393988809639, -2.234035524585317], + normal: [0, 0, 1], + }, + { + id: 'generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334', + decoration_model_id: 50378, + decoration_model_series_id: 839, + name: '双人沙发', + brand: '如视家居', + length: 186, + width: 98, + height: 91, + version: 'null', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 33, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '98x186x91cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-7.101252027601536, 0.7063778897389672, -3.3643176774269232], + normal: [-1, 0, 0], + }, + { + id: 'generated-461c0225-6be2-4594-8e06-b825295eedac', + decoration_model_id: 49294, + decoration_model_series_id: 839, + name: '餐桌', + brand: '如视家居', + length: 180, + width: 91, + height: 75, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '91x180x75cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.2047447151663473, 0.7497286197473377, -0.5535339066594027], + normal: [1, 0, 0], + }, + { + id: 'generated-461c0225-6be2-4594-8e06-b825295eedac', + decoration_model_id: 49294, + decoration_model_series_id: 839, + name: '餐桌', + brand: '如视家居', + length: 180, + width: 91, + height: 75, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '91x180x75cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-4.1260065396760774, 0.7497118121449838, -0.5582322099777249], + normal: [0, 0, 1], + }, + { + id: 'generated-461c0225-6be2-4594-8e06-b825295eedac', + decoration_model_id: 49294, + decoration_model_series_id: 839, + name: '餐桌', + brand: '如视家居', + length: 180, + width: 91, + height: 75, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '91x180x75cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-4.995876259291129, 0.7497281695006562, -1.4624761840522855], + normal: [-1, 0, 0], + }, + { + id: 'generated-461c0225-6be2-4594-8e06-b825295eedac', + decoration_model_id: 49294, + decoration_model_series_id: 839, + name: '餐桌', + brand: '如视家居', + length: 180, + width: 91, + height: 75, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '91x180x75cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-4.07461407088091, 0.749711806874681, -1.4577777494444115], + normal: [0, 0, -1], + }, + { + id: 'generated-46e143f0-dcc3-4135-8310-aa0179fb19ef', + decoration_model_id: 48861, + decoration_model_series_id: 839, + name: '边几', + brand: '如视家居', + length: 51, + width: 51, + height: 53, + version: 'null', + series: '', + material: '石材', + surface_material: '', + positioning: '', + weight: 27, + introduction: '采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '51x51x53cm', + material_text: ['石材'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.789666971414025, 0.522895, -2.2280055351127963], + normal: [0, 0, -1], + }, + { + id: 'generated-46e143f0-dcc3-4135-8310-aa0179fb19ef', + decoration_model_id: 48861, + decoration_model_series_id: 839, + name: '边几', + brand: '如视家居', + length: 51, + width: 51, + height: 53, + version: 'null', + series: '', + material: '石材', + surface_material: '', + positioning: '', + weight: 27, + introduction: '采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '51x51x53cm', + material_text: ['石材'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.563178305741456, 0.522895, -1.94497845283499], + normal: [1, 0, 0], + }, + { + id: 'generated-46e143f0-dcc3-4135-8310-aa0179fb19ef', + decoration_model_id: 48861, + decoration_model_series_id: 839, + name: '边几', + brand: '如视家居', + length: 51, + width: 51, + height: 53, + version: 'null', + series: '', + material: '石材', + surface_material: '', + positioning: '', + weight: 27, + introduction: '采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '51x51x53cm', + material_text: ['石材'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.846175028585975, 0.522895, -1.718476464887204], + normal: [0, 0, 1], + }, + { + id: 'generated-46e143f0-dcc3-4135-8310-aa0179fb19ef', + decoration_model_id: 48861, + decoration_model_series_id: 839, + name: '边几', + brand: '如视家居', + length: 51, + width: 51, + height: 53, + version: 'null', + series: '', + material: '石材', + surface_material: '', + positioning: '', + weight: 27, + introduction: '采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '51x51x53cm', + material_text: ['石材'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-7.072663597808445, 0.522895, -2.00150354822193], + normal: [-1, 0, 0], + }, + { + id: 'generated-5c8295c8-556d-4b95-a371-e8d8afa68991', + decoration_model_id: 43603, + decoration_model_series_id: 839, + name: '茶几', + brand: '如视家居', + length: 130, + width: 117, + height: 33, + version: '531983', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '117x130x33cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-5.364552688126528, 0.2170933266666667, -3.8102406451623803], + normal: [0, 0, -1], + }, + { + id: 'generated-5c8295c8-556d-4b95-a371-e8d8afa68991', + decoration_model_id: 43603, + decoration_model_series_id: 839, + name: '茶几', + brand: '如视家居', + length: 130, + width: 117, + height: 33, + version: '531983', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '117x130x33cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-4.7046273813333, 0.32102001, -2.97548798290176], + normal: [1, 0, 0], + }, + { + id: 'generated-5c8295c8-556d-4b95-a371-e8d8afa68991', + decoration_model_id: 43603, + decoration_model_series_id: 839, + name: '茶几', + brand: '如视家居', + length: 130, + width: 117, + height: 33, + version: '531983', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '117x130x33cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-5.26176979380954, 0.32102001, -2.5113079732865424], + normal: [0, 0, 1], + }, + { + id: 'generated-5c8295c8-556d-4b95-a371-e8d8afa68991', + decoration_model_id: 43603, + decoration_model_series_id: 839, + name: '茶几', + brand: '如视家居', + length: 130, + width: 117, + height: 33, + version: '531983', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 27, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '117x130x33cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-5.8706399652696275, 0.26574422357171107, -3.4969764991869634], + normal: [-1, 0, 0], + }, + { + id: 'generated-fd7d1983-4e6c-4883-8df5-9b53b1738158', + decoration_model_id: 9353, + decoration_model_series_id: 839, + name: '电视柜', + brand: '如视家居', + length: 181, + width: 41, + height: 49, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '41x181x49cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.554362540778583, 0.49220979609999993, -2.2544096671285465], + normal: [0, 0, 1], + }, + { + id: 'generated-fd7d1983-4e6c-4883-8df5-9b53b1738158', + decoration_model_id: 9353, + decoration_model_series_id: 839, + name: '电视柜', + brand: '如视家居', + length: 181, + width: 41, + height: 49, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '41x181x49cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.607952, 0.49152286479999996, -4.0609139303], + normal: [-1, 0, 0], + }, + { + id: 'generated-fd7d1983-4e6c-4883-8df5-9b53b1738158', + decoration_model_id: 9353, + decoration_model_series_id: 839, + name: '电视柜', + brand: '如视家居', + length: 181, + width: 41, + height: 49, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '41x181x49cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.200593, 0.4920228148, -4.0614528764], + normal: [0, 0, -1], + }, + { + id: 'generated-fd7d1983-4e6c-4883-8df5-9b53b1738158', + decoration_model_id: 9353, + decoration_model_series_id: 839, + name: '电视柜', + brand: '如视家居', + length: 181, + width: 41, + height: 49, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '41x181x49cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.200591, 0.4920228148, -2.2545715826], + normal: [1, 0, 0], + }, + { + id: 'generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca', + decoration_model_id: 5911, + decoration_model_series_id: 839, + name: '扶手椅', + brand: '如视家居', + length: 51, + width: 59, + height: 84, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4', + price: 0, + unit: '件', + size_text: '59x51x84cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.8998048903691234, 0.6275826811148087, -0.445290487145095], + normal: [-1, 0, 0], + }, + { + id: 'generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca', + decoration_model_id: 5911, + decoration_model_series_id: 839, + name: '扶手椅', + brand: '如视家居', + length: 51, + width: 59, + height: 84, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4', + price: 0, + unit: '件', + size_text: '59x51x84cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.5105677152740107, 0.41631035488407225, -0.5386976133438817], + normal: [0, 0, -1], + }, + { + id: 'generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca', + decoration_model_id: 5911, + decoration_model_series_id: 839, + name: '扶手椅', + brand: '如视家居', + length: 51, + width: 59, + height: 84, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4', + price: 0, + unit: '件', + size_text: '59x51x84cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.397874614018624, 0.6303136793067236, -0.07375373303805505], + normal: [1, 0, 0], + }, + { + id: 'generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca', + decoration_model_id: 5911, + decoration_model_series_id: 839, + name: '扶手椅', + brand: '如视家居', + length: 51, + width: 59, + height: 84, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 30, + introduction: '', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4', + price: 0, + unit: '件', + size_text: '59x51x84cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.678032481331081, 0.8286045944521502, 0.021421959008493252], + normal: [0, 0, 1], + }, + { + id: 'generated-96882f31-20b5-4da0-812e-91b28e5836dc', + decoration_model_id: 8008, + decoration_model_series_id: 839, + name: '鞋柜', + brand: '如视家居', + length: 81, + width: 22, + height: 111, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '22x81x111cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.9607921121, 1.1070232865999998, -1.002624], + normal: [0, 0, -1], + }, + { + id: 'generated-96882f31-20b5-4da0-812e-91b28e5836dc', + decoration_model_id: 8008, + decoration_model_series_id: 839, + name: '鞋柜', + brand: '如视家居', + length: 81, + width: 22, + height: 111, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '22x81x111cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-6.8941531099999995, 1.094870502, -0.1939599999999999], + normal: [1, 0, 0], + }, + { + id: 'generated-96882f31-20b5-4da0-812e-91b28e5836dc', + decoration_model_id: 8008, + decoration_model_series_id: 839, + name: '鞋柜', + brand: '如视家居', + length: 81, + width: 22, + height: 111, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '22x81x111cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-7.1047380494, 1.1069432946, -0.193482], + normal: [0, 0, 1], + }, + { + id: 'generated-96882f31-20b5-4da0-812e-91b28e5836dc', + decoration_model_id: 8008, + decoration_model_series_id: 839, + name: '鞋柜', + brand: '如视家居', + length: 81, + width: 22, + height: 111, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '22x81x111cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-7.1047380494, 1.1069432946, -1.002518], + normal: [-1, 0, 0], + }, + { + id: 'generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc', + decoration_model_id: 9740, + decoration_model_series_id: 839, + name: '餐边柜', + brand: '如视家居', + length: 180, + width: 42, + height: 112, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '42x180x112cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-5.69978859, 1.119676611141, 0.58717759], + normal: [-1, 0, 0], + }, + { + id: 'generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc', + decoration_model_id: 9740, + decoration_model_series_id: 839, + name: '餐边柜', + brand: '如视家居', + length: 180, + width: 42, + height: 112, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '42x180x112cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.90021141, 1.119676611141, 0.58717759], + normal: [0, 0, -1], + }, + { + id: 'generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc', + decoration_model_id: 9740, + decoration_model_series_id: 839, + name: '餐边柜', + brand: '如视家居', + length: 180, + width: 42, + height: 112, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '42x180x112cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-3.9007550799999997, 1.1191329955079998, 1.00124494], + normal: [1, 0, 0], + }, + { + id: 'generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc', + decoration_model_id: 9740, + decoration_model_series_id: 839, + name: '餐边柜', + brand: '如视家居', + length: 180, + width: 42, + height: 112, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '42x180x112cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [-5.69924492, 1.1191329955079998, 1.00124494], + normal: [0, 0, 1], + }, + { + id: 'generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38', + decoration_model_id: 49292, + decoration_model_series_id: 839, + name: '床', + brand: '公库-设计', + length: 226, + width: 256, + height: 75, + version: '501293', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '256x226x75cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [1.6795559846906645, 0.007639684699846421, 2.9779310412859483], + normal: [0, 0, 1], + }, + { + id: 'generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38', + decoration_model_id: 49292, + decoration_model_series_id: 839, + name: '床', + brand: '公库-设计', + length: 226, + width: 256, + height: 75, + version: '501293', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '256x226x75cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [1.5306324000591482, 0.006028624625032296, 2.8821667887139664], + normal: [-1, 0, 0], + }, + { + id: 'generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38', + decoration_model_id: 49292, + decoration_model_series_id: 839, + name: '床', + brand: '公库-设计', + length: 226, + width: 256, + height: 75, + version: '501293', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '256x226x75cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [1.932706011301165, 0.006356659246428744, 0.7260394976316278], + normal: [0, 0, -1], + }, + { + id: 'generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38', + decoration_model_id: 49292, + decoration_model_series_id: 839, + name: '床', + brand: '公库-设计', + length: 226, + width: 256, + height: 75, + version: '501293', + series: '', + material: '布艺', + surface_material: '', + positioning: '', + weight: 21, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '256x226x75cm', + material_text: ['布艺'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [4.078815936642709, 0.6418031865055516, 2.722789954272924], + normal: [1, 0, 0], + }, + { + id: 'generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4', + decoration_model_id: 46851, + decoration_model_series_id: 839, + name: '床头柜', + brand: '公库-设计', + length: 46, + width: 46, + height: 48, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '46x46x48cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [3.854071, 0.474261704404199, 0.7215141655232086], + normal: [0, 0, 1], + }, + { + id: 'generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4', + decoration_model_id: 46851, + decoration_model_series_id: 839, + name: '床头柜', + brand: '公库-设计', + length: 46, + width: 46, + height: 48, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '46x46x48cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [3.623643523795674, 0.47426214720430254, 0.4911080001], + normal: [-1, 0, 0], + }, + { + id: 'generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4', + decoration_model_id: 46851, + decoration_model_series_id: 839, + name: '床头柜', + brand: '公库-设计', + length: 46, + width: 46, + height: 48, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '46x46x48cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [3.854072, 0.4742624917190784, 0.2607038717120793], + normal: [0, 0, -1], + }, + { + id: 'generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4', + decoration_model_id: 46851, + decoration_model_series_id: 839, + name: '床头柜', + brand: '公库-设计', + length: 46, + width: 46, + height: 48, + version: 'null', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '46x46x48cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [4.084499476204326, 0.47426214720430254, 0.4911080001], + normal: [1, 0, 0], + }, + { + id: 'generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c', + decoration_model_id: 246, + decoration_model_series_id: 839, + name: '衣柜', + brand: '如视家居', + length: 180, + width: 60, + height: 237, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4', + price: 0, + unit: '件', + size_text: '60x180x237cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [4.084994050000001, 2.369758828414, 0.252472044708], + normal: [1, 0, 0], + }, + { + id: 'generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c', + decoration_model_id: 246, + decoration_model_series_id: 839, + name: '衣柜', + brand: '如视家居', + length: 180, + width: 60, + height: 237, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4', + price: 0, + unit: '件', + size_text: '60x180x237cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [2.2847441980731236, 2.369758828414, 0.25246624528802597], + normal: [0, 0, 1], + }, + { + id: 'generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c', + decoration_model_id: 246, + decoration_model_series_id: 839, + name: '衣柜', + brand: '如视家居', + length: 180, + width: 60, + height: 237, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4', + price: 0, + unit: '件', + size_text: '60x180x237cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [2.28474595, 2.369758828414, -0.347473794708], + normal: [-1, 0, 0], + }, + { + id: 'generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c', + decoration_model_id: 246, + decoration_model_series_id: 839, + name: '衣柜', + brand: '如视家居', + length: 180, + width: 60, + height: 237, + version: '', + series: '', + material: '木质', + surface_material: '', + positioning: '', + weight: 24, + introduction: '衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。', + url: '', + images: [], + video_url: 'https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4', + price: 0, + unit: '件', + size_text: '60x180x237cm', + material_text: ['木质'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 839, + source: 'rushijiaju', + name: '侘寂', + style: 'northern_europe', + color: '白色;深色', + feature: '', + image_url: '', + create_time: '2021-06-11 11:14:13', + modify_time: '2021-06-11 11:14:13', + source_text: '如视家居', + style_text: '北欧', + }, + position: [4.084995809981314, 2.369758828414, -0.34746799528800004], + normal: [0, 0, -1], + }, + { + id: 'generated-c22c1b72-ea53-4342-8204-13c86f791a23', + decoration_model_id: 27801, + decoration_model_series_id: 412, + name: '冰箱', + brand: '海尔电器', + length: 62.3, + width: 55.3, + height: 180.4, + version: 'BCD-225WDGK', + series: '', + material: 'ABS材料,GPPS材料', + surface_material: '', + positioning: '', + weight: 15, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '55.3x62.3x180.4cm', + material_text: ['ABS材料', 'GPPS材料'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 412, + source: 'haierdianqi', + name: '海尔', + style: 'modern', + color: '深色系、浅色系', + feature: '', + image_url: '', + create_time: '2020-11-09 14:37:30', + modify_time: '2020-11-09 14:37:30', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-2.3793099841, 1.8021777641999999, -0.9847029999999999], + normal: [0, 0, -1], + }, + { + id: 'generated-c22c1b72-ea53-4342-8204-13c86f791a23', + decoration_model_id: 27801, + decoration_model_series_id: 412, + name: '冰箱', + brand: '海尔电器', + length: 62.3, + width: 55.3, + height: 180.4, + version: 'BCD-225WDGK', + series: '', + material: 'ABS材料,GPPS材料', + surface_material: '', + positioning: '', + weight: 15, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '55.3x62.3x180.4cm', + material_text: ['ABS材料', 'GPPS材料'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 412, + source: 'haierdianqi', + name: '海尔', + style: 'modern', + color: '深色系、浅色系', + feature: '', + image_url: '', + create_time: '2020-11-09 14:37:30', + modify_time: '2020-11-09 14:37:30', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-2.3793099841, 1.8021787640999998, -0.43424199999999996], + normal: [1, 0, 0], + }, + { + id: 'generated-c22c1b72-ea53-4342-8204-13c86f791a23', + decoration_model_id: 27801, + decoration_model_series_id: 412, + name: '冰箱', + brand: '海尔电器', + length: 62.3, + width: 55.3, + height: 180.4, + version: 'BCD-225WDGK', + series: '', + material: 'ABS材料,GPPS材料', + surface_material: '', + positioning: '', + weight: 15, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '55.3x62.3x180.4cm', + material_text: ['ABS材料', 'GPPS材料'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 412, + source: 'haierdianqi', + name: '海尔', + style: 'modern', + color: '深色系、浅色系', + feature: '', + image_url: '', + create_time: '2020-11-09 14:37:30', + modify_time: '2020-11-09 14:37:30', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-2.9996249464, 1.8027927027, -0.43415399999999993], + normal: [0, 0, 1], + }, + { + id: 'generated-c22c1b72-ea53-4342-8204-13c86f791a23', + decoration_model_id: 27801, + decoration_model_series_id: 412, + name: '冰箱', + brand: '海尔电器', + length: 62.3, + width: 55.3, + height: 180.4, + version: 'BCD-225WDGK', + series: '', + material: 'ABS材料,GPPS材料', + surface_material: '', + positioning: '', + weight: 15, + introduction: '', + url: '', + images: [], + video_url: '', + price: 0, + unit: '件', + size_text: '55.3x62.3x180.4cm', + material_text: ['ABS材料', 'GPPS材料'], + positioning_text: '', + price_text: '价格暂无', + model_series: { + id: 412, + source: 'haierdianqi', + name: '海尔', + style: 'modern', + color: '深色系、浅色系', + feature: '', + image_url: '', + create_time: '2020-11-09 14:37:30', + modify_time: '2020-11-09 14:37:30', + source_text: '海尔智家', + style_text: '现代简约', + }, + position: [-2.9996249464, 1.8027927027, -0.984942], + normal: [-1, 0, 0], + }, +] diff --git a/open-works/virtual/81gmMq5eXl5I9y7JMk/modelTag.json b/open-works/virtual/81gmMq5eXl5I9y7JMk/modelTag.json new file mode 100644 index 000000000..ff7cfd06b --- /dev/null +++ b/open-works/virtual/81gmMq5eXl5I9y7JMk/modelTag.json @@ -0,0 +1,2954 @@ +[ + { + "id": "generated-c0d2a369-56a8-4173-aa71-86a1fa972607", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-1.17139626224593, 0.8104077156977465, -2.525483], + "normal": [0, 0, -1] + }, + { + "id": "generated-c0d2a369-56a8-4173-aa71-86a1fa972607", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-1.0801470251391196, 0.6792272291450375, -2.4663312847972985], + "normal": [1, 0, 0] + }, + { + "id": "generated-c0d2a369-56a8-4173-aa71-86a1fa972607", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-1.1713957911875057, 0.8104072165306094, -2.407977], + "normal": [0, 0, 1] + }, + { + "id": "generated-c0d2a369-56a8-4173-aa71-86a1fa972607", + "decoration_model_id": 1094, + "decoration_model_series_id": 969, + "name": "卫浴五金", + "brand": "如视家居", + "length": 0, + "width": 0, + "height": 0, + "version": "", + "series": "", + "material": "其他", + "surface_material": "", + "positioning": "", + "weight": 3, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/454fbc2e598223e56cd5eb28c9a4869a/video.mp4", + "price": 0, + "unit": "件", + "size_text": "", + "material_text": ["其他"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 969, + "source": "rushijiaju", + "name": "海尔全屋生态", + "style": "modern", + "color": "浅色系", + "feature": "", + "image_url": "", + "create_time": "2022-02-24 10:37:57", + "modify_time": "2022-02-24 10:37:57", + "source_text": "如视家居", + "style_text": "现代简约" + }, + "position": [-1.171513931265473, 0.8105335690940403, -2.466331002555347], + "normal": [-1, 0, 0] + }, + { + "id": "generated-ef175e00-7802-450a-80d9-db18114f0e40", + "decoration_model_id": 19306, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板柜", + "brand": "南鱼定制", + "length": 60, + "width": 35, + "height": 70, + "version": "GC-D-08", + "series": "", + "material": "刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "35x60x70cm", + "material_text": ["刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [3.875348412532503, 2.399968832166826, 4.70162062140875], + "normal": [0, 0, 1] + }, + { + "id": "generated-ef175e00-7802-450a-80d9-db18114f0e40", + "decoration_model_id": 19306, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板柜", + "brand": "南鱼定制", + "length": 60, + "width": 35, + "height": 70, + "version": "GC-D-08", + "series": "", + "material": "刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "35x60x70cm", + "material_text": ["刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [3.8753482941683637, 2.3999689473070394, 4.102359920278322], + "normal": [-1, 0, 0] + }, + { + "id": "generated-ef175e00-7802-450a-80d9-db18114f0e40", + "decoration_model_id": 19306, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板柜", + "brand": "南鱼定制", + "length": 60, + "width": 35, + "height": 70, + "version": "GC-D-08", + "series": "", + "material": "刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "35x60x70cm", + "material_text": ["刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [4.224675666666667, 2.3999656666666667, 4.1023533], + "normal": [0, 0, -1] + }, + { + "id": "generated-ef175e00-7802-450a-80d9-db18114f0e40", + "decoration_model_id": 19306, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板柜", + "brand": "南鱼定制", + "length": 60, + "width": 35, + "height": 70, + "version": "GC-D-08", + "series": "", + "material": "刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "35x60x70cm", + "material_text": ["刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [4.224675666666667, 2.3999656666666667, 4.701626699999999], + "normal": [1, 0, 0] + }, + { + "id": "generated-67543672-c926-4aa1-a98c-525a1647a964", + "decoration_model_id": 19331, + "decoration_model_series_id": 47, + "name": "3S橡木双开水槽柜", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-10", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-1.3800959998000002, 0.8384622323478259, -2.8380238668], + "normal": [1, 0, 0] + }, + { + "id": "generated-67543672-c926-4aa1-a98c-525a1647a964", + "decoration_model_id": 19331, + "decoration_model_series_id": 47, + "name": "3S橡木双开水槽柜", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-10", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.279915, 0.8384622323478259, -2.8380238668], + "normal": [0, 0, 1] + }, + { + "id": "generated-67543672-c926-4aa1-a98c-525a1647a964", + "decoration_model_id": 19331, + "decoration_model_series_id": 47, + "name": "3S橡木双开水槽柜", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-10", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.279915, 0.8908661218695652, -3.4779838668], + "normal": [-1, 0, 0] + }, + { + "id": "generated-67543672-c926-4aa1-a98c-525a1647a964", + "decoration_model_id": 19331, + "decoration_model_series_id": 47, + "name": "3S橡木双开水槽柜", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-10", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "60㎝的单槽洗菜池足够使用,而且能最大限度节省台面空间。可搭配沥水篮使用,不管是果蔬还是锅具都可以轻松清洗。", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-1.3800959998000002, 0.8908661218695652, -3.4779838668], + "normal": [0, 0, -1] + }, + { + "id": "generated-93026ca0-e251-4b33-b24c-dae4f16f18f2", + "decoration_model_id": 19454, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板(灶具)", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-11", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.4182024364727273, 0.7941767647058824, -2.2829509999999997], + "normal": [0, 0, -1] + }, + { + "id": "generated-93026ca0-e251-4b33-b24c-dae4f16f18f2", + "decoration_model_id": 19454, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板(灶具)", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-11", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.3600238668, 0.840638, -1.382971], + "normal": [1, 0, 0] + }, + { + "id": "generated-93026ca0-e251-4b33-b24c-dae4f16f18f2", + "decoration_model_id": 19454, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板(灶具)", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-11", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.9992012248320847, 0.8995456406212946, -1.382971], + "normal": [0, 0, 1] + }, + { + "id": "generated-93026ca0-e251-4b33-b24c-dae4f16f18f2", + "decoration_model_id": 19454, + "decoration_model_series_id": 47, + "name": "3S橡木双开隔板(灶具)", + "brand": "南鱼定制", + "length": 90, + "width": 57, + "height": 84, + "version": "GC-G-11", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "57x90x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.9992012248320847, 0.8995456406212946, -2.2829699999999997], + "normal": [-1, 0, 0] + }, + { + "id": "generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [-2.537413777777778, 1.9506445000000001, -2.263082148], + "normal": [0, 0, -1] + }, + { + "id": "generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [-2.4845532300061475, 1.9511968646078521, -1.4536327391803003], + "normal": [1, 0, 0] + }, + { + "id": "generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [-2.9992750000000004, 1.9506445000000001, -1.4033307391999998], + "normal": [0, 0, 1] + }, + { + "id": "generated-e2a9918f-5dc0-4e67-a8f3-ceaa8f6eb487", + "decoration_model_id": 39053, + "decoration_model_series_id": 795, + "name": "厨卫电器-抽油烟机", + "brand": "浙派", + "length": 90, + "width": 52, + "height": 55.5, + "version": "TD-5", + "series": "", + "material": "不锈钢玻璃", + "surface_material": "", + "positioning": "", + "weight": 18, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 2499, + "unit": "件", + "size_text": "52x90x55.5cm", + "material_text": ["不锈钢玻璃"], + "positioning_text": "", + "price_text": "2499元/件", + "model_series": { + "id": 795, + "source": "zhepai", + "name": "厨卫电器", + "style": "modern", + "color": "深色系", + "feature": "", + "image_url": "", + "create_time": "2021-02-01 16:59:03", + "modify_time": "2021-02-01 16:59:03", + "source_text": "浙派", + "style_text": "现代简约" + }, + "position": [-2.9993160000000003, 2.4453130282, -2.0101292068235295], + "normal": [-1, 0, 0] + }, + { + "id": "generated-125da186-2a71-47f5-8581-81ac02b1fb7f", + "decoration_model_id": 19316, + "decoration_model_series_id": 47, + "name": "3S橡木单开隔板柜", + "brand": "南鱼定制", + "length": 45, + "width": 58, + "height": 84, + "version": "GC-G-04", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x45x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.4235313091454547, 0.7884611164411766, -1.3786108822], + "normal": [0, 0, -1] + }, + { + "id": "generated-125da186-2a71-47f5-8581-81ac02b1fb7f", + "decoration_model_id": 19316, + "decoration_model_series_id": 47, + "name": "3S橡木单开隔板柜", + "brand": "南鱼定制", + "length": 45, + "width": 58, + "height": 84, + "version": "GC-G-04", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x45x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-2.3653529334, 0.8355529361999999, -0.9816191178], + "normal": [1, 0, 0] + }, + { + "id": "generated-125da186-2a71-47f5-8581-81ac02b1fb7f", + "decoration_model_id": 19316, + "decoration_model_series_id": 47, + "name": "3S橡木单开隔板柜", + "brand": "南鱼定制", + "length": 45, + "width": 58, + "height": 84, + "version": "GC-G-04", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x45x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-3.004460838821835, 0.8939283660286738, -0.9816191178], + "normal": [0, 0, 1] + }, + { + "id": "generated-125da186-2a71-47f5-8581-81ac02b1fb7f", + "decoration_model_id": 19316, + "decoration_model_series_id": 47, + "name": "3S橡木单开隔板柜", + "brand": "南鱼定制", + "length": 45, + "width": 58, + "height": 84, + "version": "GC-G-04", + "series": "", + "material": "石英石,刨花板", + "surface_material": "", + "positioning": "", + "weight": 0, + "introduction": "", + "url": "http://www.nanyu.com/", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "58x45x84cm", + "material_text": ["石英石", "刨花板"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 47, + "source": "nanyujiazhuang", + "name": "3S", + "style": "northern_europe", + "color": "原木色橡木", + "feature": "", + "image_url": "", + "create_time": "2020-08-18 10:48:27", + "modify_time": "2020-08-18 10:59:47", + "source_text": "南鱼家装", + "style_text": "北欧" + }, + "position": [-3.004460838821835, 0.8939283660286738, -1.3786091178], + "normal": [-1, 0, 0] + }, + { + "id": "generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334", + "decoration_model_id": 50378, + "decoration_model_series_id": 839, + "name": "双人沙发", + "brand": "如视家居", + "length": 186, + "width": 98, + "height": 91, + "version": "null", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 33, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "98x186x91cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.382991177069563, 0.5451248265568489, -4.081992674420634], + "normal": [0, 0, -1] + }, + { + "id": "generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334", + "decoration_model_id": 50378, + "decoration_model_series_id": 839, + "name": "双人沙发", + "brand": "如视家居", + "length": 186, + "width": 98, + "height": 91, + "version": "null", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 33, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "98x186x91cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.127791599635555, 0.38468945613216876, -2.3331585718253325], + "normal": [1, 0, 0] + }, + { + "id": "generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334", + "decoration_model_id": 50378, + "decoration_model_series_id": 839, + "name": "双人沙发", + "brand": "如视家居", + "length": 186, + "width": 98, + "height": 91, + "version": "null", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 33, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "98x186x91cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.692776448338853, 0.5455393988809639, -2.234035524585317], + "normal": [0, 0, 1] + }, + { + "id": "generated-47be935e-cb17-4cc5-919d-fc7ec4a1e334", + "decoration_model_id": 50378, + "decoration_model_series_id": 839, + "name": "双人沙发", + "brand": "如视家居", + "length": 186, + "width": 98, + "height": 91, + "version": "null", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 33, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "98x186x91cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-7.101252027601536, 0.7063778897389672, -3.3643176774269232], + "normal": [-1, 0, 0] + }, + { + "id": "generated-461c0225-6be2-4594-8e06-b825295eedac", + "decoration_model_id": 49294, + "decoration_model_series_id": 839, + "name": "餐桌", + "brand": "如视家居", + "length": 180, + "width": 91, + "height": 75, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "91x180x75cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.2047447151663473, 0.7497286197473377, -0.5535339066594027], + "normal": [1, 0, 0] + }, + { + "id": "generated-461c0225-6be2-4594-8e06-b825295eedac", + "decoration_model_id": 49294, + "decoration_model_series_id": 839, + "name": "餐桌", + "brand": "如视家居", + "length": 180, + "width": 91, + "height": 75, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "91x180x75cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-4.1260065396760774, 0.7497118121449838, -0.5582322099777249], + "normal": [0, 0, 1] + }, + { + "id": "generated-461c0225-6be2-4594-8e06-b825295eedac", + "decoration_model_id": 49294, + "decoration_model_series_id": 839, + "name": "餐桌", + "brand": "如视家居", + "length": 180, + "width": 91, + "height": 75, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "91x180x75cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-4.995876259291129, 0.7497281695006562, -1.4624761840522855], + "normal": [-1, 0, 0] + }, + { + "id": "generated-461c0225-6be2-4594-8e06-b825295eedac", + "decoration_model_id": 49294, + "decoration_model_series_id": 839, + "name": "餐桌", + "brand": "如视家居", + "length": 180, + "width": 91, + "height": 75, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "91x180x75cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-4.07461407088091, 0.749711806874681, -1.4577777494444115], + "normal": [0, 0, -1] + }, + { + "id": "generated-46e143f0-dcc3-4135-8310-aa0179fb19ef", + "decoration_model_id": 48861, + "decoration_model_series_id": 839, + "name": "边几", + "brand": "如视家居", + "length": 51, + "width": 51, + "height": 53, + "version": "null", + "series": "", + "material": "石材", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "51x51x53cm", + "material_text": ["石材"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.789666971414025, 0.522895, -2.2280055351127963], + "normal": [0, 0, -1] + }, + { + "id": "generated-46e143f0-dcc3-4135-8310-aa0179fb19ef", + "decoration_model_id": 48861, + "decoration_model_series_id": 839, + "name": "边几", + "brand": "如视家居", + "length": 51, + "width": 51, + "height": 53, + "version": "null", + "series": "", + "material": "石材", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "51x51x53cm", + "material_text": ["石材"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.563178305741456, 0.522895, -1.94497845283499], + "normal": [1, 0, 0] + }, + { + "id": "generated-46e143f0-dcc3-4135-8310-aa0179fb19ef", + "decoration_model_id": 48861, + "decoration_model_series_id": 839, + "name": "边几", + "brand": "如视家居", + "length": 51, + "width": 51, + "height": 53, + "version": "null", + "series": "", + "material": "石材", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "51x51x53cm", + "material_text": ["石材"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.846175028585975, 0.522895, -1.718476464887204], + "normal": [0, 0, 1] + }, + { + "id": "generated-46e143f0-dcc3-4135-8310-aa0179fb19ef", + "decoration_model_id": 48861, + "decoration_model_series_id": 839, + "name": "边几", + "brand": "如视家居", + "length": 51, + "width": 51, + "height": 53, + "version": "null", + "series": "", + "material": "石材", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "采用大理石不规则切割工艺,温润淡雅,圆润打磨抗渗透,防水防污,体现出几何艺术的独特美感。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "51x51x53cm", + "material_text": ["石材"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-7.072663597808445, 0.522895, -2.00150354822193], + "normal": [-1, 0, 0] + }, + { + "id": "generated-5c8295c8-556d-4b95-a371-e8d8afa68991", + "decoration_model_id": 43603, + "decoration_model_series_id": 839, + "name": "茶几", + "brand": "如视家居", + "length": 130, + "width": 117, + "height": 33, + "version": "531983", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "117x130x33cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-5.364552688126528, 0.2170933266666667, -3.8102406451623803], + "normal": [0, 0, -1] + }, + { + "id": "generated-5c8295c8-556d-4b95-a371-e8d8afa68991", + "decoration_model_id": 43603, + "decoration_model_series_id": 839, + "name": "茶几", + "brand": "如视家居", + "length": 130, + "width": 117, + "height": 33, + "version": "531983", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "117x130x33cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-4.7046273813333, 0.32102001, -2.97548798290176], + "normal": [1, 0, 0] + }, + { + "id": "generated-5c8295c8-556d-4b95-a371-e8d8afa68991", + "decoration_model_id": 43603, + "decoration_model_series_id": 839, + "name": "茶几", + "brand": "如视家居", + "length": 130, + "width": 117, + "height": 33, + "version": "531983", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "117x130x33cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-5.26176979380954, 0.32102001, -2.5113079732865424], + "normal": [0, 0, 1] + }, + { + "id": "generated-5c8295c8-556d-4b95-a371-e8d8afa68991", + "decoration_model_id": 43603, + "decoration_model_series_id": 839, + "name": "茶几", + "brand": "如视家居", + "length": 130, + "width": 117, + "height": 33, + "version": "531983", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 27, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "117x130x33cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-5.8706399652696275, 0.26574422357171107, -3.4969764991869634], + "normal": [-1, 0, 0] + }, + { + "id": "generated-fd7d1983-4e6c-4883-8df5-9b53b1738158", + "decoration_model_id": 9353, + "decoration_model_series_id": 839, + "name": "电视柜", + "brand": "如视家居", + "length": 181, + "width": 41, + "height": 49, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "41x181x49cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.554362540778583, 0.49220979609999993, -2.2544096671285465], + "normal": [0, 0, 1] + }, + { + "id": "generated-fd7d1983-4e6c-4883-8df5-9b53b1738158", + "decoration_model_id": 9353, + "decoration_model_series_id": 839, + "name": "电视柜", + "brand": "如视家居", + "length": 181, + "width": 41, + "height": 49, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "41x181x49cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.607952, 0.49152286479999996, -4.0609139303], + "normal": [-1, 0, 0] + }, + { + "id": "generated-fd7d1983-4e6c-4883-8df5-9b53b1738158", + "decoration_model_id": 9353, + "decoration_model_series_id": 839, + "name": "电视柜", + "brand": "如视家居", + "length": 181, + "width": 41, + "height": 49, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "41x181x49cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.200593, 0.4920228148, -4.0614528764], + "normal": [0, 0, -1] + }, + { + "id": "generated-fd7d1983-4e6c-4883-8df5-9b53b1738158", + "decoration_model_id": 9353, + "decoration_model_series_id": 839, + "name": "电视柜", + "brand": "如视家居", + "length": 181, + "width": 41, + "height": 49, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "41x181x49cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.200591, 0.4920228148, -2.2545715826], + "normal": [1, 0, 0] + }, + { + "id": "generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca", + "decoration_model_id": 5911, + "decoration_model_series_id": 839, + "name": "扶手椅", + "brand": "如视家居", + "length": 51, + "width": 59, + "height": 84, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4", + "price": 0, + "unit": "件", + "size_text": "59x51x84cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.8998048903691234, 0.6275826811148087, -0.445290487145095], + "normal": [-1, 0, 0] + }, + { + "id": "generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca", + "decoration_model_id": 5911, + "decoration_model_series_id": 839, + "name": "扶手椅", + "brand": "如视家居", + "length": 51, + "width": 59, + "height": 84, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4", + "price": 0, + "unit": "件", + "size_text": "59x51x84cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.5105677152740107, 0.41631035488407225, -0.5386976133438817], + "normal": [0, 0, -1] + }, + { + "id": "generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca", + "decoration_model_id": 5911, + "decoration_model_series_id": 839, + "name": "扶手椅", + "brand": "如视家居", + "length": 51, + "width": 59, + "height": 84, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4", + "price": 0, + "unit": "件", + "size_text": "59x51x84cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.397874614018624, 0.6303136793067236, -0.07375373303805505], + "normal": [1, 0, 0] + }, + { + "id": "generated-ac0ace9f-527d-41ce-9f2b-30d2d735b2ca", + "decoration_model_id": 5911, + "decoration_model_series_id": 839, + "name": "扶手椅", + "brand": "如视家居", + "length": 51, + "width": 59, + "height": 84, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 30, + "introduction": "", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/release/ue4furniture/28b141c09dfe31074712862d1a127034/video.mp4", + "price": 0, + "unit": "件", + "size_text": "59x51x84cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.678032481331081, 0.8286045944521502, 0.021421959008493252], + "normal": [0, 0, 1] + }, + { + "id": "generated-96882f31-20b5-4da0-812e-91b28e5836dc", + "decoration_model_id": 8008, + "decoration_model_series_id": 839, + "name": "鞋柜", + "brand": "如视家居", + "length": 81, + "width": 22, + "height": 111, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "22x81x111cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.9607921121, 1.1070232865999998, -1.002624], + "normal": [0, 0, -1] + }, + { + "id": "generated-96882f31-20b5-4da0-812e-91b28e5836dc", + "decoration_model_id": 8008, + "decoration_model_series_id": 839, + "name": "鞋柜", + "brand": "如视家居", + "length": 81, + "width": 22, + "height": 111, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "22x81x111cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-6.8941531099999995, 1.094870502, -0.1939599999999999], + "normal": [1, 0, 0] + }, + { + "id": "generated-96882f31-20b5-4da0-812e-91b28e5836dc", + "decoration_model_id": 8008, + "decoration_model_series_id": 839, + "name": "鞋柜", + "brand": "如视家居", + "length": 81, + "width": 22, + "height": 111, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "22x81x111cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-7.1047380494, 1.1069432946, -0.193482], + "normal": [0, 0, 1] + }, + { + "id": "generated-96882f31-20b5-4da0-812e-91b28e5836dc", + "decoration_model_id": 8008, + "decoration_model_series_id": 839, + "name": "鞋柜", + "brand": "如视家居", + "length": 81, + "width": 22, + "height": 111, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "以自然简洁为原则,整体浅色基调,采用优质木材打造而成,配以金属拉手点缀,彰显出北欧风格。", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "22x81x111cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-7.1047380494, 1.1069432946, -1.002518], + "normal": [-1, 0, 0] + }, + { + "id": "generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc", + "decoration_model_id": 9740, + "decoration_model_series_id": 839, + "name": "餐边柜", + "brand": "如视家居", + "length": 180, + "width": 42, + "height": 112, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "42x180x112cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-5.69978859, 1.119676611141, 0.58717759], + "normal": [-1, 0, 0] + }, + { + "id": "generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc", + "decoration_model_id": 9740, + "decoration_model_series_id": 839, + "name": "餐边柜", + "brand": "如视家居", + "length": 180, + "width": 42, + "height": 112, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "42x180x112cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.90021141, 1.119676611141, 0.58717759], + "normal": [0, 0, -1] + }, + { + "id": "generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc", + "decoration_model_id": 9740, + "decoration_model_series_id": 839, + "name": "餐边柜", + "brand": "如视家居", + "length": 180, + "width": 42, + "height": 112, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "42x180x112cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-3.9007550799999997, 1.1191329955079998, 1.00124494], + "normal": [1, 0, 0] + }, + { + "id": "generated-697d1ab0-a025-4060-b35d-31abbe1d8fdc", + "decoration_model_id": 9740, + "decoration_model_series_id": 839, + "name": "餐边柜", + "brand": "如视家居", + "length": 180, + "width": 42, + "height": 112, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "42x180x112cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [-5.69924492, 1.1191329955079998, 1.00124494], + "normal": [0, 0, 1] + }, + { + "id": "generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38", + "decoration_model_id": 49292, + "decoration_model_series_id": 839, + "name": "床", + "brand": "公库-设计", + "length": 226, + "width": 256, + "height": 75, + "version": "501293", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "256x226x75cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [1.6795559846906645, 0.007639684699846421, 2.9779310412859483], + "normal": [0, 0, 1] + }, + { + "id": "generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38", + "decoration_model_id": 49292, + "decoration_model_series_id": 839, + "name": "床", + "brand": "公库-设计", + "length": 226, + "width": 256, + "height": 75, + "version": "501293", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "256x226x75cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [1.5306324000591482, 0.006028624625032296, 2.8821667887139664], + "normal": [-1, 0, 0] + }, + { + "id": "generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38", + "decoration_model_id": 49292, + "decoration_model_series_id": 839, + "name": "床", + "brand": "公库-设计", + "length": 226, + "width": 256, + "height": 75, + "version": "501293", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "256x226x75cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [1.932706011301165, 0.006356659246428744, 0.7260394976316278], + "normal": [0, 0, -1] + }, + { + "id": "generated-582d05e4-1e61-4cd8-9f6a-b4f3f44ffa38", + "decoration_model_id": 49292, + "decoration_model_series_id": 839, + "name": "床", + "brand": "公库-设计", + "length": 226, + "width": 256, + "height": 75, + "version": "501293", + "series": "", + "material": "布艺", + "surface_material": "", + "positioning": "", + "weight": 21, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "256x226x75cm", + "material_text": ["布艺"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [4.078815936642709, 0.6418031865055516, 2.722789954272924], + "normal": [1, 0, 0] + }, + { + "id": "generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4", + "decoration_model_id": 46851, + "decoration_model_series_id": 839, + "name": "床头柜", + "brand": "公库-设计", + "length": 46, + "width": 46, + "height": 48, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "46x46x48cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [3.854071, 0.474261704404199, 0.7215141655232086], + "normal": [0, 0, 1] + }, + { + "id": "generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4", + "decoration_model_id": 46851, + "decoration_model_series_id": 839, + "name": "床头柜", + "brand": "公库-设计", + "length": 46, + "width": 46, + "height": 48, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "46x46x48cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [3.623643523795674, 0.47426214720430254, 0.4911080001], + "normal": [-1, 0, 0] + }, + { + "id": "generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4", + "decoration_model_id": 46851, + "decoration_model_series_id": 839, + "name": "床头柜", + "brand": "公库-设计", + "length": 46, + "width": 46, + "height": 48, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "46x46x48cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [3.854072, 0.4742624917190784, 0.2607038717120793], + "normal": [0, 0, -1] + }, + { + "id": "generated-ddaac49b-7be3-4bbd-9690-dfcf208c13e4", + "decoration_model_id": 46851, + "decoration_model_series_id": 839, + "name": "床头柜", + "brand": "公库-设计", + "length": 46, + "width": 46, + "height": 48, + "version": "null", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "46x46x48cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [4.084499476204326, 0.47426214720430254, 0.4911080001], + "normal": [1, 0, 0] + }, + { + "id": "generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c", + "decoration_model_id": 246, + "decoration_model_series_id": 839, + "name": "衣柜", + "brand": "如视家居", + "length": 180, + "width": 60, + "height": 237, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4", + "price": 0, + "unit": "件", + "size_text": "60x180x237cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [4.084994050000001, 2.369758828414, 0.252472044708], + "normal": [1, 0, 0] + }, + { + "id": "generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c", + "decoration_model_id": 246, + "decoration_model_series_id": 839, + "name": "衣柜", + "brand": "如视家居", + "length": 180, + "width": 60, + "height": 237, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4", + "price": 0, + "unit": "件", + "size_text": "60x180x237cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [2.2847441980731236, 2.369758828414, 0.25246624528802597], + "normal": [0, 0, 1] + }, + { + "id": "generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c", + "decoration_model_id": 246, + "decoration_model_series_id": 839, + "name": "衣柜", + "brand": "如视家居", + "length": 180, + "width": 60, + "height": 237, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4", + "price": 0, + "unit": "件", + "size_text": "60x180x237cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [2.28474595, 2.369758828414, -0.347473794708], + "normal": [-1, 0, 0] + }, + { + "id": "generated-91065b3e-865d-4cbb-9764-0da5ffc32d4c", + "decoration_model_id": 246, + "decoration_model_series_id": 839, + "name": "衣柜", + "brand": "如视家居", + "length": 180, + "width": 60, + "height": 237, + "version": "", + "series": "", + "material": "木质", + "surface_material": "", + "positioning": "", + "weight": 24, + "introduction": "衣柜线条柔美流畅,色调素净而淡雅。造型别致,结实耐用。收纳方式多样,方便使用,让家居环境更整洁。", + "url": "", + "images": [], + "video_url": "https://vrlab-public.ljcdn.com/dev/ue4furniture/690812e03914beea00c0c7cc0a645569/video.mp4", + "price": 0, + "unit": "件", + "size_text": "60x180x237cm", + "material_text": ["木质"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 839, + "source": "rushijiaju", + "name": "侘寂", + "style": "northern_europe", + "color": "白色;深色", + "feature": "", + "image_url": "", + "create_time": "2021-06-11 11:14:13", + "modify_time": "2021-06-11 11:14:13", + "source_text": "如视家居", + "style_text": "北欧" + }, + "position": [4.084995809981314, 2.369758828414, -0.34746799528800004], + "normal": [0, 0, -1] + }, + { + "id": "generated-c22c1b72-ea53-4342-8204-13c86f791a23", + "decoration_model_id": 27801, + "decoration_model_series_id": 412, + "name": "冰箱", + "brand": "海尔电器", + "length": 62.3, + "width": 55.3, + "height": 180.4, + "version": "BCD-225WDGK", + "series": "", + "material": "ABS材料,GPPS材料", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "55.3x62.3x180.4cm", + "material_text": ["ABS材料", "GPPS材料"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 412, + "source": "haierdianqi", + "name": "海尔", + "style": "modern", + "color": "深色系、浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-11-09 14:37:30", + "modify_time": "2020-11-09 14:37:30", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-2.3793099841, 1.8021777641999999, -0.9847029999999999], + "normal": [0, 0, -1] + }, + { + "id": "generated-c22c1b72-ea53-4342-8204-13c86f791a23", + "decoration_model_id": 27801, + "decoration_model_series_id": 412, + "name": "冰箱", + "brand": "海尔电器", + "length": 62.3, + "width": 55.3, + "height": 180.4, + "version": "BCD-225WDGK", + "series": "", + "material": "ABS材料,GPPS材料", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "55.3x62.3x180.4cm", + "material_text": ["ABS材料", "GPPS材料"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 412, + "source": "haierdianqi", + "name": "海尔", + "style": "modern", + "color": "深色系、浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-11-09 14:37:30", + "modify_time": "2020-11-09 14:37:30", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-2.3793099841, 1.8021787640999998, -0.43424199999999996], + "normal": [1, 0, 0] + }, + { + "id": "generated-c22c1b72-ea53-4342-8204-13c86f791a23", + "decoration_model_id": 27801, + "decoration_model_series_id": 412, + "name": "冰箱", + "brand": "海尔电器", + "length": 62.3, + "width": 55.3, + "height": 180.4, + "version": "BCD-225WDGK", + "series": "", + "material": "ABS材料,GPPS材料", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "55.3x62.3x180.4cm", + "material_text": ["ABS材料", "GPPS材料"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 412, + "source": "haierdianqi", + "name": "海尔", + "style": "modern", + "color": "深色系、浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-11-09 14:37:30", + "modify_time": "2020-11-09 14:37:30", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-2.9996249464, 1.8027927027, -0.43415399999999993], + "normal": [0, 0, 1] + }, + { + "id": "generated-c22c1b72-ea53-4342-8204-13c86f791a23", + "decoration_model_id": 27801, + "decoration_model_series_id": 412, + "name": "冰箱", + "brand": "海尔电器", + "length": 62.3, + "width": 55.3, + "height": 180.4, + "version": "BCD-225WDGK", + "series": "", + "material": "ABS材料,GPPS材料", + "surface_material": "", + "positioning": "", + "weight": 15, + "introduction": "", + "url": "", + "images": [], + "video_url": "", + "price": 0, + "unit": "件", + "size_text": "55.3x62.3x180.4cm", + "material_text": ["ABS材料", "GPPS材料"], + "positioning_text": "", + "price_text": "价格暂无", + "model_series": { + "id": 412, + "source": "haierdianqi", + "name": "海尔", + "style": "modern", + "color": "深色系、浅色系", + "feature": "", + "image_url": "", + "create_time": "2020-11-09 14:37:30", + "modify_time": "2020-11-09 14:37:30", + "source_text": "海尔智家", + "style_text": "现代简约" + }, + "position": [-2.9996249464, 1.8027927027, -0.984942], + "normal": [-1, 0, 0] + } +] diff --git a/open-works/virtual/81gmMq5eXl5I9y7JMk/work.js b/open-works/virtual/81gmMq5eXl5I9y7JMk/work.js new file mode 100644 index 000000000..c8aaa41c1 --- /dev/null +++ b/open-works/virtual/81gmMq5eXl5I9y7JMk/work.js @@ -0,0 +1,576 @@ +export const work = { + _signature: + 'CdpVSZPOS7d05Ruxy5KIeHFkxaKo4PG2Ku0ThhTc4gxLs6o/X+chn0NgPu1K80ig5OpWVNCRaxPKpMsqie9gSRgoIsyxYWgVjlUYUr3VHw8hpSWCFdgW03EvgVDCjIQZUSVfe4pszFvAO1vhAiZpTVOcdCoVo0j24a6ply5jz5Y=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: null, + expire_at: '1966154124767', + initial: { + flag_position: [-6.00457789708666, -1.2310521821249927, -2.8436501849291558], + fov: 95, + heading: 0, + latitude: 0, + longitude: 6.231411428037283, + pano_index: 16, + }, + model: { + file_url: 'vrframework/release/ue4_decoration_plan/gmMq5eXl5I9y7JMk/vrproc-ue4/render/model.at3d', + material_base_url: 'https://vrlab-public.ljcdn.com/', + material_textures: [ + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_0.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_1.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_2.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_3.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_4.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_5.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_6.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_7.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_8.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_9.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_10.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_11.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_12.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_13.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_14.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_15.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_16.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_17.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_18.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_19.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_20.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_21.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_22.jpg', + 'release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_23.jpg', + ], + }, + observers: [ + { + accessible_nodes: [1, 6, 7, 8, 9, 12, 15, 16], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753169, + index: 0, + position: [-0.2812039852142334, 1.206879784563701, 0.17769600450992584], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.2812039852142334, 0.006879784563700975, 0.17769600450992584], + visible_nodes: [1, 6, 7, 8, 9, 12, 15, 16], + }, + { + accessible_nodes: [0, 2, 3, 4, 5, 12, 15, 16], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753170, + index: 1, + position: [1.8786799907684326, 1.203537811823217, 0.226283997297287], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.8786799907684326, 0.0035378118232169964, 0.226283997297287], + visible_nodes: [0, 2, 3, 4, 5, 12, 15, 16], + }, + { + accessible_nodes: [1, 3, 4, 5, 6], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753171, + index: 2, + position: [2.364530086517334, 1.2, 1.9599100351333618], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.364530086517334, 0, 1.9599100351333618], + visible_nodes: [1, 3, 4, 5, 6], + }, + { + accessible_nodes: [1, 2, 4, 5, 6], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753172, + index: 3, + position: [2.7833199501037598, 1.208603625429208, 3.413450002670288], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.7833199501037598, 0.008603625429208117, 3.413450002670288], + visible_nodes: [1, 2, 4, 5, 6], + }, + { + accessible_nodes: [1, 2, 3, 5, 6], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753173, + index: 4, + position: [3.155679941177368, 1.2053662000539302, 4.558460235595703], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [3.155679941177368, 0.005366200053930292, 4.558460235595703], + visible_nodes: [1, 2, 3, 5, 6], + }, + { + accessible_nodes: [1, 2, 3, 4], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753174, + index: 5, + position: [2.4174699783325195, 1.2039738272639862, 4.558579921722412], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.4174699783325195, 0.003973827263986207, 4.558579921722412], + visible_nodes: [1, 2, 3, 4], + }, + { + accessible_nodes: [0, 2, 3, 4, 7, 8, 9, 10, 11, 12], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753175, + index: 6, + position: [-0.1523910015821457, 1.2057836103516293, -0.9635559916496277], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.1523910015821457, 0.005783610351629331, -0.9635559916496277], + visible_nodes: [0, 2, 3, 4, 7, 8, 9, 10, 11, 12], + }, + { + accessible_nodes: [0, 6, 8], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753176, + index: 7, + position: [-0.164124995470047, 1.2108887086423632, -1.8761299848556519], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.164124995470047, 0.010888708642363243, -1.8761299848556519], + visible_nodes: [0, 6, 8], + }, + { + accessible_nodes: [0, 6, 7], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753177, + index: 8, + position: [-0.30216801166534424, 1.2050508109349871, -2.6479899883270264], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.30216801166534424, 0.00505081093498716, -2.6479899883270264], + visible_nodes: [0, 6, 7], + }, + { + accessible_nodes: [0, 6, 10, 11, 12], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753178, + index: 9, + position: [1.000380039215088, 1.2053010083284668, -1.249959945678711], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.000380039215088, 0.005301008328466805, -1.249959945678711], + visible_nodes: [0, 6, 10, 11, 12], + }, + { + accessible_nodes: [6, 9, 11, 12], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753179, + index: 10, + position: [2.4095799922943115, 1.2046975755731177, -1.835860013961792], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [2.4095799922943115, 0.004697575573117785, -1.835860013961792], + visible_nodes: [6, 9, 11, 12], + }, + { + accessible_nodes: [6, 9, 10, 12], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753180, + index: 11, + position: [3.2265000343322754, 1.2025033350004257, -2.66375994682312], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [3.2265000343322754, 0.002503335000425766, -2.66375994682312], + visible_nodes: [6, 9, 10, 12], + }, + { + accessible_nodes: [0, 1, 6, 9, 10, 11, 13, 14, 15, 16], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753181, + index: 12, + position: [-1.7072900533676147, 1.2052761921356536, 0.39942100644111633], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.7072900533676147, 0.005276192135653668, 0.39942100644111633], + visible_nodes: [0, 1, 6, 9, 10, 11, 13, 14, 15, 16], + }, + { + accessible_nodes: [12, 14], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753182, + index: 13, + position: [-1.861649990081787, 1.204910660608454, -0.6553750038146973], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.861649990081787, 0.0049106606084541315, -0.6553750038146973], + visible_nodes: [12, 14], + }, + { + accessible_nodes: [12, 13], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753183, + index: 14, + position: [-2.030519962310791, 1.20816562709715, -1.99576997756958], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.030519962310791, 0.008165627097149963, -1.99576997756958], + visible_nodes: [12, 13], + }, + { + accessible_nodes: [0, 1, 12, 16, 17, 18, 19], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753184, + index: 15, + position: [-4.021599769592285, 1.2082038296070565, 0.3427090048789978], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.021599769592285, 0.008203829607056567, 0.3427090048789978], + visible_nodes: [0, 1, 12, 16, 17, 18, 19], + }, + { + accessible_nodes: [0, 1, 12, 15, 17, 18, 19], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753185, + index: 16, + position: [-5.278299808502197, 1.2066214785588283, -0.1394830048084259], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-5.278299808502197, 0.006621478558828331, -0.1394830048084259], + visible_nodes: [0, 1, 12, 15, 17, 18, 19], + }, + { + accessible_nodes: [15, 16, 18, 19], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753186, + index: 17, + position: [-5.120950222015381, 1.2046211611304845, -1.6434199810028076], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-5.120950222015381, 0.004621161130484497, -1.6434199810028076], + visible_nodes: [15, 16, 18, 19], + }, + { + accessible_nodes: [15, 16, 17, 19], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753187, + index: 18, + position: [-4.610209941864014, 1.2022449817289724, -2.877269983291626], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.610209941864014, 0.0022449817289724727, -2.877269983291626], + visible_nodes: [15, 16, 17, 19], + }, + { + accessible_nodes: [15, 16, 17, 18], + create_time: '2022-01-13T12:16:10+08:00', + floor_index: 0, + id: 79753188, + index: 19, + position: [-5.145890235900879, 1.2029624220404858, -4.004940032958984], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-5.145890235900879, 0.0029624220404858015, -4.004940032958984], + visible_nodes: [15, 16, 17, 18], + }, + ], + panorama: { + count: 20, + list: [ + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_f.jpg', + index: 0, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_f.jpg', + index: 1, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_f.jpg', + index: 2, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_f.jpg', + index: 3, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_f.jpg', + index: 4, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_f.jpg', + index: 5, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_f.jpg', + index: 6, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_f.jpg', + index: 7, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_f.jpg', + index: 8, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_f.jpg', + index: 9, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_f.jpg', + index: 10, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_f.jpg', + index: 11, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_f.jpg', + index: 12, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_f.jpg', + index: 13, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_f.jpg', + index: 14, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_f.jpg', + index: 15, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_f.jpg', + index: 16, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_f.jpg', + index: 17, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_f.jpg', + index: 18, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_u.jpg', + }, + { + back: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_b.jpg', + down: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_d.jpg', + front: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_f.jpg', + index: 19, + left: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_l.jpg', + right: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_r.jpg', + tiles: [1, 2], + up: 'release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_u.jpg', + }, + ], + }, + picture_url: 'vrframework/release/ue4_decoration_plan/gmMq5eXl5I9y7JMk/vrproc-ue4/render/picture.jpg', +} diff --git a/open-works/virtual/81gmMq5eXl5I9y7JMk/work.json b/open-works/virtual/81gmMq5eXl5I9y7JMk/work.json new file mode 100644 index 000000000..cf7e8fdd8 --- /dev/null +++ b/open-works/virtual/81gmMq5eXl5I9y7JMk/work.json @@ -0,0 +1,574 @@ +{ + "_signature": "CdpVSZPOS7d05Ruxy5KIeHFkxaKo4PG2Ku0ThhTc4gxLs6o/X+chn0NgPu1K80ig5OpWVNCRaxPKpMsqie9gSRgoIsyxYWgVjlUYUr3VHw8hpSWCFdgW03EvgVDCjIQZUSVfe4pszFvAO1vhAiZpTVOcdCoVo0j24a6ply5jz5Y=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": null, + "expire_at": "1966154124767", + "initial": { + "flag_position": [-6.00457789708666, -1.2310521821249927, -2.8436501849291558], + "fov": 95, + "heading": 0, + "latitude": 0, + "longitude": 6.231411428037283, + "pano_index": 16 + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/gmMq5eXl5I9y7JMk/vrproc-ue4/render/model.at3d", + "material_base_url": "https://vrlab-public.ljcdn.com/", + "material_textures": [ + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_0.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_1.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_2.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_3.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_4.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_5.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_6.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_7.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_8.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_9.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_10.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_11.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_12.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_13.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_14.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_15.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_16.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_17.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_18.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_19.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_20.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_21.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_22.jpg", + "release/ue4/28442ea4894c14545139e8aa620cb00f/at3d_results/texture_23.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [1, 6, 7, 8, 9, 12, 15, 16], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753169, + "index": 0, + "position": [-0.2812039852142334, 1.206879784563701, 0.17769600450992584], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.2812039852142334, 0.006879784563700975, 0.17769600450992584], + "visible_nodes": [1, 6, 7, 8, 9, 12, 15, 16] + }, + { + "accessible_nodes": [0, 2, 3, 4, 5, 12, 15, 16], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753170, + "index": 1, + "position": [1.8786799907684326, 1.203537811823217, 0.226283997297287], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.8786799907684326, 0.0035378118232169964, 0.226283997297287], + "visible_nodes": [0, 2, 3, 4, 5, 12, 15, 16] + }, + { + "accessible_nodes": [1, 3, 4, 5, 6], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753171, + "index": 2, + "position": [2.364530086517334, 1.2, 1.9599100351333618], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.364530086517334, 0, 1.9599100351333618], + "visible_nodes": [1, 3, 4, 5, 6] + }, + { + "accessible_nodes": [1, 2, 4, 5, 6], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753172, + "index": 3, + "position": [2.7833199501037598, 1.208603625429208, 3.413450002670288], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.7833199501037598, 0.008603625429208117, 3.413450002670288], + "visible_nodes": [1, 2, 4, 5, 6] + }, + { + "accessible_nodes": [1, 2, 3, 5, 6], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753173, + "index": 4, + "position": [3.155679941177368, 1.2053662000539302, 4.558460235595703], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.155679941177368, 0.005366200053930292, 4.558460235595703], + "visible_nodes": [1, 2, 3, 5, 6] + }, + { + "accessible_nodes": [1, 2, 3, 4], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753174, + "index": 5, + "position": [2.4174699783325195, 1.2039738272639862, 4.558579921722412], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.4174699783325195, 0.003973827263986207, 4.558579921722412], + "visible_nodes": [1, 2, 3, 4] + }, + { + "accessible_nodes": [0, 2, 3, 4, 7, 8, 9, 10, 11, 12], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753175, + "index": 6, + "position": [-0.1523910015821457, 1.2057836103516293, -0.9635559916496277], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.1523910015821457, 0.005783610351629331, -0.9635559916496277], + "visible_nodes": [0, 2, 3, 4, 7, 8, 9, 10, 11, 12] + }, + { + "accessible_nodes": [0, 6, 8], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753176, + "index": 7, + "position": [-0.164124995470047, 1.2108887086423632, -1.8761299848556519], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.164124995470047, 0.010888708642363243, -1.8761299848556519], + "visible_nodes": [0, 6, 8] + }, + { + "accessible_nodes": [0, 6, 7], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753177, + "index": 8, + "position": [-0.30216801166534424, 1.2050508109349871, -2.6479899883270264], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.30216801166534424, 0.00505081093498716, -2.6479899883270264], + "visible_nodes": [0, 6, 7] + }, + { + "accessible_nodes": [0, 6, 10, 11, 12], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753178, + "index": 9, + "position": [1.000380039215088, 1.2053010083284668, -1.249959945678711], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.000380039215088, 0.005301008328466805, -1.249959945678711], + "visible_nodes": [0, 6, 10, 11, 12] + }, + { + "accessible_nodes": [6, 9, 11, 12], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753179, + "index": 10, + "position": [2.4095799922943115, 1.2046975755731177, -1.835860013961792], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.4095799922943115, 0.004697575573117785, -1.835860013961792], + "visible_nodes": [6, 9, 11, 12] + }, + { + "accessible_nodes": [6, 9, 10, 12], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753180, + "index": 11, + "position": [3.2265000343322754, 1.2025033350004257, -2.66375994682312], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.2265000343322754, 0.002503335000425766, -2.66375994682312], + "visible_nodes": [6, 9, 10, 12] + }, + { + "accessible_nodes": [0, 1, 6, 9, 10, 11, 13, 14, 15, 16], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753181, + "index": 12, + "position": [-1.7072900533676147, 1.2052761921356536, 0.39942100644111633], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.7072900533676147, 0.005276192135653668, 0.39942100644111633], + "visible_nodes": [0, 1, 6, 9, 10, 11, 13, 14, 15, 16] + }, + { + "accessible_nodes": [12, 14], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753182, + "index": 13, + "position": [-1.861649990081787, 1.204910660608454, -0.6553750038146973], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.861649990081787, 0.0049106606084541315, -0.6553750038146973], + "visible_nodes": [12, 14] + }, + { + "accessible_nodes": [12, 13], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753183, + "index": 14, + "position": [-2.030519962310791, 1.20816562709715, -1.99576997756958], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.030519962310791, 0.008165627097149963, -1.99576997756958], + "visible_nodes": [12, 13] + }, + { + "accessible_nodes": [0, 1, 12, 16, 17, 18, 19], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753184, + "index": 15, + "position": [-4.021599769592285, 1.2082038296070565, 0.3427090048789978], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.021599769592285, 0.008203829607056567, 0.3427090048789978], + "visible_nodes": [0, 1, 12, 16, 17, 18, 19] + }, + { + "accessible_nodes": [0, 1, 12, 15, 17, 18, 19], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753185, + "index": 16, + "position": [-5.278299808502197, 1.2066214785588283, -0.1394830048084259], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-5.278299808502197, 0.006621478558828331, -0.1394830048084259], + "visible_nodes": [0, 1, 12, 15, 17, 18, 19] + }, + { + "accessible_nodes": [15, 16, 18, 19], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753186, + "index": 17, + "position": [-5.120950222015381, 1.2046211611304845, -1.6434199810028076], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-5.120950222015381, 0.004621161130484497, -1.6434199810028076], + "visible_nodes": [15, 16, 18, 19] + }, + { + "accessible_nodes": [15, 16, 17, 19], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753187, + "index": 18, + "position": [-4.610209941864014, 1.2022449817289724, -2.877269983291626], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.610209941864014, 0.0022449817289724727, -2.877269983291626], + "visible_nodes": [15, 16, 17, 19] + }, + { + "accessible_nodes": [15, 16, 17, 18], + "create_time": "2022-01-13T12:16:10+08:00", + "floor_index": 0, + "id": 79753188, + "index": 19, + "position": [-5.145890235900879, 1.2029624220404858, -4.004940032958984], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-5.145890235900879, 0.0029624220404858015, -4.004940032958984], + "visible_nodes": [15, 16, 17, 18] + } + ], + "panorama": { + "count": 20, + "list": [ + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/11/11_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_f.jpg", + "index": 12, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/12/12_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_f.jpg", + "index": 13, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/13/13_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_f.jpg", + "index": 14, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/14/14_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_f.jpg", + "index": 15, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/15/15_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_f.jpg", + "index": 16, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/16/16_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_f.jpg", + "index": 17, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/17/17_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_f.jpg", + "index": 18, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/18/18_u.jpg" + }, + { + "back": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_b.jpg", + "down": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_d.jpg", + "front": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_f.jpg", + "index": 19, + "left": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_l.jpg", + "right": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/af72fc37b222e7a752d1572a0d02b67b/ue4_result/cube_2048/19/19_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/gmMq5eXl5I9y7JMk/vrproc-ue4/render/picture.jpg" +} diff --git a/open-works/virtual/81w1MyAQybVcNa97ME/index.js b/open-works/virtual/81w1MyAQybVcNa97ME/index.js new file mode 100644 index 000000000..0192fa21a --- /dev/null +++ b/open-works/virtual/81w1MyAQybVcNa97ME/index.js @@ -0,0 +1,3 @@ +import { work } from './work' + +export default { work } diff --git a/open-works/virtual/81w1MyAQybVcNa97ME/work.js b/open-works/virtual/81w1MyAQybVcNa97ME/work.js new file mode 100644 index 000000000..a79f67d6c --- /dev/null +++ b/open-works/virtual/81w1MyAQybVcNa97ME/work.js @@ -0,0 +1,749 @@ +export const work = { + _signature: + 'OjFmcJCpexe9UiYh1gZ6z9M42bzP8RboYP393KbIVAhcBtTd4ei8OeoQOd9sw8YfeqKVZh46QXcozxKGWPvu57CGn5/Bp46WcUcHU7A17EXDEk+MpDtoHhv4l+3ouY53uKc/mN1wuVbv6QwjMtxIrbivZStTOwLE9qxVj7cfilk=', + allow_hosts: ['*'], + base_url: 'https://vrlab-public.ljcdn.com/', + certificate: + '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----', + create_time: null, + expire_at: '1961123170890', + initial: { + fov: 60, + latitude: 0, + longitude: 2.4802333929770715, + pano_index: 25, + recordVideo: false, + }, + model: { + file_url: 'vrframework/release/ue4_decoration_plan/w1MyAQybVcNa97ME/vrproc-ue4/render/model.at3d', + material_base_url: 'https://vrlab-public.ljcdn.com/', + material_textures: [ + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_0.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_1.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_2.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_3.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_4.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_5.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_6.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_7.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_8.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_9.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_10.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_11.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_12.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_13.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_14.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_15.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_16.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_17.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_18.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_19.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_20.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_21.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_22.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_23.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_24.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_25.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_26.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_27.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_28.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_29.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_30.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_31.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_32.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_33.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_34.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_35.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_36.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_37.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_38.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_39.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_40.jpg', + 'release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_41.jpg', + ], + }, + observers: [ + { + accessible_nodes: [6, 10, 14, 19, 20, 23], + create_time: '', + floor_index: 0, + id: 0, + index: 0, + position: [-0.947504, 1.21, -1.398092], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.947504, 0.01, -1.398092], + visible_nodes: [6, 10, 14, 19, 20, 23], + }, + { + accessible_nodes: [5, 6, 9, 11, 13, 15, 16, 19, 22, 23, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 1, + position: [-2.052143, 1.21, -1.614287], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.052143, 0.01, -1.614287], + visible_nodes: [5, 6, 9, 11, 13, 15, 16, 19, 22, 23, 25], + }, + { + accessible_nodes: [4, 5, 9, 15, 16, 17, 18, 24, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 2, + position: [-0.375493, 1.21, -5.37362], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.375493, 0.01, -5.37362], + visible_nodes: [4, 5, 9, 15, 16, 17, 18, 24, 25], + }, + { + accessible_nodes: [11, 21], + create_time: '', + floor_index: 0, + id: 0, + index: 3, + position: [0.298587, 1.21, -2.606489], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.298587, 0.01, -2.606489], + visible_nodes: [11, 21], + }, + { + accessible_nodes: [2, 9, 11, 15, 16, 17, 18, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 4, + position: [-3.950001, 1.21, -6.150001], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.950001, 0.01, -6.150001], + visible_nodes: [2, 9, 11, 15, 16, 17, 18, 25], + }, + { + accessible_nodes: [1, 2, 7, 8, 9, 11, 15, 16, 17, 18, 22, 24, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 5, + position: [-0.913477, 1.21, -7.694327], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.913477, 0.01, -7.694327], + visible_nodes: [1, 2, 7, 8, 9, 11, 15, 16, 17, 18, 22, 24, 25], + }, + { + accessible_nodes: [0, 1, 5, 11, 15, 16, 19, 22], + create_time: '', + floor_index: 0, + id: 0, + index: 6, + position: [-2.308512, 1.21, 0.638652], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.308512, 0.01, 0.638652], + visible_nodes: [0, 1, 5, 11, 15, 16, 19, 22], + }, + { + accessible_nodes: [5, 8, 24], + create_time: '', + floor_index: 0, + id: 0, + index: 7, + position: [-2.940375, 1.21, -7.585725], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.940375, 0.01, -7.585725], + visible_nodes: [5, 8, 24], + }, + { + accessible_nodes: [5, 7, 24], + create_time: '', + floor_index: 0, + id: 0, + index: 8, + position: [-4.270881, 1.21, -7.561524], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.270881, 0.01, -7.561524], + visible_nodes: [5, 7, 24], + }, + { + accessible_nodes: [2, 4, 5, 11, 15, 16, 17, 18, 24, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 9, + position: [-1.003104, 1.21, -6.182765], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-1.003104, 0.01, -6.182765], + visible_nodes: [2, 4, 5, 11, 15, 16, 17, 18, 24, 25], + }, + { + accessible_nodes: [0, 4, 14, 20, 23], + create_time: '', + floor_index: 0, + id: 0, + index: 10, + position: [0.734041, 1.21, 3.298226], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.734041, 0.01, 3.298226], + visible_nodes: [0, 4, 14, 20, 23], + }, + { + accessible_nodes: [1, 2, 3, 4, 5, 6, 9, 15, 16, 19, 21, 22, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 11, + position: [-2.056818, 1.21, -2.788902], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.056818, 0.01, -2.788902], + visible_nodes: [1, 2, 3, 4, 5, 6, 9, 15, 16, 19, 21, 22, 25], + }, + { + accessible_nodes: [1, 13, 20], + create_time: '', + floor_index: 0, + id: 0, + index: 12, + position: [-4.693264, 1.21, -1.01454], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-4.693264, 0.01, -1.01454], + visible_nodes: [1, 13, 20], + }, + { + accessible_nodes: [1, 12, 19, 20, 21], + create_time: '', + floor_index: 0, + id: 0, + index: 13, + position: [-3.316796, 1.21, -1.028055], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.316796, 0.01, -1.028055], + visible_nodes: [1, 12, 19, 20, 21], + }, + { + accessible_nodes: [0, 10, 20, 23], + create_time: '', + floor_index: 0, + id: 0, + index: 14, + position: [-0.473445, 1.21, 1.394685], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.473445, 0.01, 1.394685], + visible_nodes: [0, 10, 20, 23], + }, + { + accessible_nodes: [1, 2, 4, 5, 6, 9, 11, 16, 17, 18, 19, 22, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 15, + position: [-2.04216, 1.21, -5.190287], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.04216, 0.01, -5.190287], + visible_nodes: [1, 2, 4, 5, 6, 9, 11, 16, 17, 18, 19, 22, 25], + }, + { + accessible_nodes: [1, 2, 4, 5, 6, 9, 11, 15, 17, 18, 19, 22, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 16, + position: [-2.04216, 1.21, -4.140287], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.04216, 0.01, -4.140287], + visible_nodes: [1, 2, 4, 5, 6, 9, 11, 15, 17, 18, 19, 22, 25], + }, + { + accessible_nodes: [2, 4, 7, 9, 15, 16, 18, 24, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 17, + position: [1.374507, 1.21, -6.42362], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.374507, 0.01, -6.42362], + visible_nodes: [2, 4, 7, 9, 15, 16, 18, 24, 25], + }, + { + accessible_nodes: [2, 4, 5, 9, 15, 16, 17, 24, 25], + create_time: '', + floor_index: 0, + id: 0, + index: 18, + position: [1.374507, 1.21, -5.37362], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [1.374507, 0.01, -5.37362], + visible_nodes: [2, 4, 5, 9, 15, 16, 17, 24, 25], + }, + { + accessible_nodes: [0, 1, 6, 11, 13, 15, 16, 20, 22], + create_time: '', + floor_index: 0, + id: 0, + index: 19, + position: [-2.102217, 1.21, -0.49989], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.102217, 0.01, -0.49989], + visible_nodes: [0, 1, 6, 11, 13, 15, 16, 20, 22], + }, + { + accessible_nodes: [0, 1, 10, 13, 14, 19, 23], + create_time: '', + floor_index: 0, + id: 0, + index: 20, + position: [-0.532618, 1.21, -0.235537], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.532618, 0.01, -0.235537], + visible_nodes: [0, 1, 10, 13, 14, 19, 23], + }, + { + accessible_nodes: [1, 3, 11, 13], + create_time: '', + floor_index: 0, + id: 0, + index: 21, + position: [-0.915097, 1.21, -2.567557], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-0.915097, 0.01, -2.567557], + visible_nodes: [1, 3, 11, 13], + }, + { + accessible_nodes: [1, 5, 6, 11, 15, 16, 19], + create_time: '', + floor_index: 0, + id: 0, + index: 22, + position: [-2.600988, 1.21, 1.673792], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.600988, 0.01, 1.673792], + visible_nodes: [1, 5, 6, 11, 15, 16, 19], + }, + { + accessible_nodes: [0, 1, 10, 14, 20], + create_time: '', + floor_index: 0, + id: 0, + index: 23, + position: [0.451363, 1.21, 2.277164], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [0.451363, 0.01, 2.277164], + visible_nodes: [0, 1, 10, 14, 20], + }, + { + accessible_nodes: [2, 5, 7, 8, 9, 17, 18], + create_time: '', + floor_index: 0, + id: 0, + index: 24, + position: [-2.119771, 1.21, -8.1661], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-2.119771, 0.01, -8.1661], + visible_nodes: [2, 5, 7, 8, 9, 17, 18], + }, + { + accessible_nodes: [2, 4, 5, 9, 11, 15, 16, 17, 18], + create_time: '', + floor_index: 0, + id: 0, + index: 25, + position: [-3.303104, 1.21, -5.116099], + quaternion: { + w: 0.7071067811865475, + x: 0, + y: 0.7071067811865475, + z: 0, + }, + standing_position: [-3.303104, 0.01, -5.116099], + visible_nodes: [2, 4, 5, 9, 11, 15, 16, 17, 18], + }, + ], + panorama: { + count: 26, + list: [ + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_f.jpg', + index: 0, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_f.jpg', + index: 1, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_f.jpg', + index: 2, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_f.jpg', + index: 3, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_f.jpg', + index: 4, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_f.jpg', + index: 5, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_f.jpg', + index: 6, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_f.jpg', + index: 7, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_f.jpg', + index: 8, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_f.jpg', + index: 9, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_f.jpg', + index: 10, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_f.jpg', + index: 11, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_f.jpg', + index: 12, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_f.jpg', + index: 13, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_f.jpg', + index: 14, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_f.jpg', + index: 15, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_f.jpg', + index: 16, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_f.jpg', + index: 17, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_f.jpg', + index: 18, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_f.jpg', + index: 19, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_f.jpg', + index: 20, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_f.jpg', + index: 21, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_f.jpg', + index: 22, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_f.jpg', + index: 23, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_f.jpg', + index: 24, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_u.jpg', + }, + { + back: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_b.jpg', + down: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_d.jpg', + front: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_f.jpg', + index: 25, + left: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_l.jpg', + right: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_r.jpg', + tiles: [1, 2], + up: 'release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_u.jpg', + }, + ], + }, + picture_url: 'vrframework/release/ue4_decoration_plan/w1MyAQybVcNa97ME/vrproc-ue4/render/picture.jpg', +} diff --git a/open-works/virtual/81w1MyAQybVcNa97ME/work.json b/open-works/virtual/81w1MyAQybVcNa97ME/work.json new file mode 100644 index 000000000..95c18ff17 --- /dev/null +++ b/open-works/virtual/81w1MyAQybVcNa97ME/work.json @@ -0,0 +1,747 @@ +{ + "_signature": "OjFmcJCpexe9UiYh1gZ6z9M42bzP8RboYP393KbIVAhcBtTd4ei8OeoQOd9sw8YfeqKVZh46QXcozxKGWPvu57CGn5/Bp46WcUcHU7A17EXDEk+MpDtoHhv4l+3ouY53uKc/mN1wuVbv6QwjMtxIrbivZStTOwLE9qxVj7cfilk=", + "allow_hosts": ["*"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": null, + "expire_at": "1961123170890", + "initial": { + "fov": 60, + "latitude": 0, + "longitude": 2.4802333929770715, + "pano_index": 25, + "recordVideo": false + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/w1MyAQybVcNa97ME/vrproc-ue4/render/model.at3d", + "material_base_url": "https://vrlab-public.ljcdn.com/", + "material_textures": [ + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_0.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_1.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_2.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_3.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_4.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_5.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_6.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_7.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_8.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_9.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_10.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_11.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_12.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_13.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_14.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_15.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_16.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_17.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_18.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_19.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_20.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_21.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_22.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_23.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_24.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_25.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_26.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_27.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_28.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_29.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_30.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_31.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_32.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_33.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_34.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_35.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_36.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_37.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_38.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_39.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_40.jpg", + "release/ue4/9a870cc06976a0a8f64d4c716accad76/at3d_results/texture_41.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [6, 10, 14, 19, 20, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 0, + "position": [-0.947504, 1.21, -1.398092], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.947504, 0.01, -1.398092], + "visible_nodes": [6, 10, 14, 19, 20, 23] + }, + { + "accessible_nodes": [5, 6, 9, 11, 13, 15, 16, 19, 22, 23, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 1, + "position": [-2.052143, 1.21, -1.614287], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.052143, 0.01, -1.614287], + "visible_nodes": [5, 6, 9, 11, 13, 15, 16, 19, 22, 23, 25] + }, + { + "accessible_nodes": [4, 5, 9, 15, 16, 17, 18, 24, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 2, + "position": [-0.375493, 1.21, -5.37362], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.375493, 0.01, -5.37362], + "visible_nodes": [4, 5, 9, 15, 16, 17, 18, 24, 25] + }, + { + "accessible_nodes": [11, 21], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 3, + "position": [0.298587, 1.21, -2.606489], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.298587, 0.01, -2.606489], + "visible_nodes": [11, 21] + }, + { + "accessible_nodes": [2, 9, 11, 15, 16, 17, 18, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 4, + "position": [-3.950001, 1.21, -6.150001], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.950001, 0.01, -6.150001], + "visible_nodes": [2, 9, 11, 15, 16, 17, 18, 25] + }, + { + "accessible_nodes": [1, 2, 7, 8, 9, 11, 15, 16, 17, 18, 22, 24, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 5, + "position": [-0.913477, 1.21, -7.694327], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.913477, 0.01, -7.694327], + "visible_nodes": [1, 2, 7, 8, 9, 11, 15, 16, 17, 18, 22, 24, 25] + }, + { + "accessible_nodes": [0, 1, 5, 11, 15, 16, 19, 22], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 6, + "position": [-2.308512, 1.21, 0.638652], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.308512, 0.01, 0.638652], + "visible_nodes": [0, 1, 5, 11, 15, 16, 19, 22] + }, + { + "accessible_nodes": [5, 8, 24], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 7, + "position": [-2.940375, 1.21, -7.585725], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.940375, 0.01, -7.585725], + "visible_nodes": [5, 8, 24] + }, + { + "accessible_nodes": [5, 7, 24], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 8, + "position": [-4.270881, 1.21, -7.561524], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.270881, 0.01, -7.561524], + "visible_nodes": [5, 7, 24] + }, + { + "accessible_nodes": [2, 4, 5, 11, 15, 16, 17, 18, 24, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 9, + "position": [-1.003104, 1.21, -6.182765], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-1.003104, 0.01, -6.182765], + "visible_nodes": [2, 4, 5, 11, 15, 16, 17, 18, 24, 25] + }, + { + "accessible_nodes": [0, 4, 14, 20, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 10, + "position": [0.734041, 1.21, 3.298226], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.734041, 0.01, 3.298226], + "visible_nodes": [0, 4, 14, 20, 23] + }, + { + "accessible_nodes": [1, 2, 3, 4, 5, 6, 9, 15, 16, 19, 21, 22, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 11, + "position": [-2.056818, 1.21, -2.788902], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.056818, 0.01, -2.788902], + "visible_nodes": [1, 2, 3, 4, 5, 6, 9, 15, 16, 19, 21, 22, 25] + }, + { + "accessible_nodes": [1, 13, 20], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 12, + "position": [-4.693264, 1.21, -1.01454], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.693264, 0.01, -1.01454], + "visible_nodes": [1, 13, 20] + }, + { + "accessible_nodes": [1, 12, 19, 20, 21], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 13, + "position": [-3.316796, 1.21, -1.028055], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.316796, 0.01, -1.028055], + "visible_nodes": [1, 12, 19, 20, 21] + }, + { + "accessible_nodes": [0, 10, 20, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 14, + "position": [-0.473445, 1.21, 1.394685], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.473445, 0.01, 1.394685], + "visible_nodes": [0, 10, 20, 23] + }, + { + "accessible_nodes": [1, 2, 4, 5, 6, 9, 11, 16, 17, 18, 19, 22, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 15, + "position": [-2.04216, 1.21, -5.190287], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.04216, 0.01, -5.190287], + "visible_nodes": [1, 2, 4, 5, 6, 9, 11, 16, 17, 18, 19, 22, 25] + }, + { + "accessible_nodes": [1, 2, 4, 5, 6, 9, 11, 15, 17, 18, 19, 22, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 16, + "position": [-2.04216, 1.21, -4.140287], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.04216, 0.01, -4.140287], + "visible_nodes": [1, 2, 4, 5, 6, 9, 11, 15, 17, 18, 19, 22, 25] + }, + { + "accessible_nodes": [2, 4, 7, 9, 15, 16, 18, 24, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 17, + "position": [1.374507, 1.21, -6.42362], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.374507, 0.01, -6.42362], + "visible_nodes": [2, 4, 7, 9, 15, 16, 18, 24, 25] + }, + { + "accessible_nodes": [2, 4, 5, 9, 15, 16, 17, 24, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 18, + "position": [1.374507, 1.21, -5.37362], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.374507, 0.01, -5.37362], + "visible_nodes": [2, 4, 5, 9, 15, 16, 17, 24, 25] + }, + { + "accessible_nodes": [0, 1, 6, 11, 13, 15, 16, 20, 22], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 19, + "position": [-2.102217, 1.21, -0.49989], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.102217, 0.01, -0.49989], + "visible_nodes": [0, 1, 6, 11, 13, 15, 16, 20, 22] + }, + { + "accessible_nodes": [0, 1, 10, 13, 14, 19, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 20, + "position": [-0.532618, 1.21, -0.235537], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.532618, 0.01, -0.235537], + "visible_nodes": [0, 1, 10, 13, 14, 19, 23] + }, + { + "accessible_nodes": [1, 3, 11, 13], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 21, + "position": [-0.915097, 1.21, -2.567557], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.915097, 0.01, -2.567557], + "visible_nodes": [1, 3, 11, 13] + }, + { + "accessible_nodes": [1, 5, 6, 11, 15, 16, 19], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 22, + "position": [-2.600988, 1.21, 1.673792], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.600988, 0.01, 1.673792], + "visible_nodes": [1, 5, 6, 11, 15, 16, 19] + }, + { + "accessible_nodes": [0, 1, 10, 14, 20], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 23, + "position": [0.451363, 1.21, 2.277164], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.451363, 0.01, 2.277164], + "visible_nodes": [0, 1, 10, 14, 20] + }, + { + "accessible_nodes": [2, 5, 7, 8, 9, 17, 18], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 24, + "position": [-2.119771, 1.21, -8.1661], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.119771, 0.01, -8.1661], + "visible_nodes": [2, 5, 7, 8, 9, 17, 18] + }, + { + "accessible_nodes": [2, 4, 5, 9, 11, 15, 16, 17, 18], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 25, + "position": [-3.303104, 1.21, -5.116099], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.303104, 0.01, -5.116099], + "visible_nodes": [2, 4, 5, 9, 11, 15, 16, 17, 18] + } + ], + "panorama": { + "count": 26, + "list": [ + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/11/11_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_f.jpg", + "index": 12, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/12/12_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_f.jpg", + "index": 13, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/13/13_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_f.jpg", + "index": 14, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/14/14_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_f.jpg", + "index": 15, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/15/15_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_f.jpg", + "index": 16, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/16/16_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_f.jpg", + "index": 17, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/17/17_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_f.jpg", + "index": 18, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/18/18_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_f.jpg", + "index": 19, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/19/19_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_f.jpg", + "index": 20, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/20/20_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_f.jpg", + "index": 21, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/21/21_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_f.jpg", + "index": 22, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/22/22_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_f.jpg", + "index": 23, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/23/23_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_f.jpg", + "index": 24, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/24/24_u.jpg" + }, + { + "back": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_b.jpg", + "down": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_d.jpg", + "front": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_f.jpg", + "index": 25, + "left": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_l.jpg", + "right": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/bdee81da26dc546227b9047689fb1354/ue4_result/cube_2048/25/25_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/w1MyAQybVcNa97ME/vrproc-ue4/render/picture.jpg" +} diff --git a/open-works/virtual/81xManr9NXhxbrmRmP/index.js b/open-works/virtual/81xManr9NXhxbrmRmP/index.js new file mode 100644 index 000000000..a3bc0fefe --- /dev/null +++ b/open-works/virtual/81xManr9NXhxbrmRmP/index.js @@ -0,0 +1,3 @@ +import work from './work.json' + +export default { work } diff --git a/open-works/virtual/81xManr9NXhxbrmRmP/pipelineData.json b/open-works/virtual/81xManr9NXhxbrmRmP/pipelineData.json new file mode 100644 index 000000000..229275835 --- /dev/null +++ b/open-works/virtual/81xManr9NXhxbrmRmP/pipelineData.json @@ -0,0 +1,1820 @@ +{ + "ConnectsDataset": [ + { + "data": [ + "u-GhEcFR8RR5YtT3", + "u-ztDEr5pGiYxPiT", + "u-58GbZz4Qq5NhrJ", + "u-C2eqF0V21EwhOA", + "u-OFZiV4XaE1wfN0", + "u-iJ5tKTgEbPlS58", + "u-8BFHtMjdW6RTLS", + "u-G0LpIcDDSTCclG", + "u-5EyyspGVAJmOI3", + "u-EdIoeXiYOZaoWK", + "u-ivp9wK4Vrs0Drl", + "u-NAhWyaUPIZmHhC", + "u-vLKYdMCQqxV20C", + "u-STOHhH1g7QZZk5", + "u-i0mMSnP1sCGxkI", + "u-rb7DqaiQBCxbUq", + "u-dAUfzP3r1XSl5u", + "u-Fb6Lh16cGHvHuN" + ], + "end": 84562, + "start": 84561, + "waterType": 5 + }, + { + "data": [ + "u-GhEcFR8RR5YtT3", + "u-ztDEr5pGiYxPiT", + "u-58GbZz4Qq5NhrJ", + "u-C2eqF0V21EwhOA", + "u-OFZiV4XaE1wfN0", + "u-iJ5tKTgEbPlS58", + "u-8BFHtMjdW6RTLS", + "u-G0LpIcDDSTCclG", + "u-5EyyspGVAJmOI3", + "u-EdIoeXiYOZaoWK", + "u-HGIZp0t0wsHWVm", + "u-xDJCsRRFBr9F67", + "u-GWGmST8TpfGgJl", + "u-kJmUlGmTvV9PEN", + "u-CKo9qgSFsz7lqb", + "u-mbCyNSmuyhiBXj" + ], + "end": 84566, + "start": 84561, + "waterType": 5 + }, + { + "data": [ + "u-hpuR4qQClYkz8t", + "u-BYJlKTdm3Y5D2d", + "u-1MSzhMfN4Zf0xB", + "u-ZE8NmbMwSTHLpg", + "u-FCYYmFUeBU0Xxj", + "u-LSluSC4z5KZvhp", + "u-lUOJ4ElaE4zz5E", + "u-64nfqWMVZKOxFg", + "u-OFkcwThew4oasQ" + ], + "end": 76327, + "start": 84647, + "waterType": 2 + }, + { + "data": [ + "u-hpuR4qQClYkz8t", + "u-BYJlKTdm3Y5D2d", + "u-1MSzhMfN4Zf0xB", + "u-OCzT1r76lxbdQw", + "u-GeUwfI7OCax0E2", + "u-fdVYyh4BnUTdQq", + "u-npwdW3ApajCf1O", + "u-hL1kflDazPN7V2", + "u-IXt05EUbTUSHxr", + "u-9D10vYKzThKDXg", + "u-IV7IVNCny9K8dN", + "u-skxQst4d9rPigS", + "u-ugo7JD0WmXZ6jw", + "u-UVULibbbgxekEQ", + "u-Vu14vPLRd4I4EF", + "u-dUzeEHZ8pIrt79", + "u-hJdePo4qKEyF8g", + "u-5yF6qvbN2e7dhg", + "u-RKTP4whxjXeQB6", + "u-7x87UR4Svp2AGb", + "u-GIw6c1F8spFeJY" + ], + "end": 84524, + "start": 84647, + "waterType": 2 + }, + { + "data": [ + "u-hpuR4qQClYkz8t", + "u-BYJlKTdm3Y5D2d", + "u-1MSzhMfN4Zf0xB", + "u-OCzT1r76lxbdQw", + "u-GeUwfI7OCax0E2", + "u-fdVYyh4BnUTdQq", + "u-npwdW3ApajCf1O", + "u-hL1kflDazPN7V2", + "u-IXt05EUbTUSHxr", + "u-9D10vYKzThKDXg", + "u-IV7IVNCny9K8dN", + "u-HCasPAgEg0SPzb", + "u-B0V7POii68UCze", + "u-z82w58d1TI2JCt", + "u-oFFOrGV9ITdLgh", + "u-Bezg2U0HLGod6l", + "u-XH7ngN3ynmUBq9", + "u-LzsKL1hpcYHptm", + "u-X8eI7Un4ezRTfW" + ], + "end": 84534, + "start": 84647, + "waterType": 2 + }, + { + "data": [ + "u-hpuR4qQClYkz8t", + "u-BYJlKTdm3Y5D2d", + "u-1MSzhMfN4Zf0xB", + "u-OCzT1r76lxbdQw", + "u-GeUwfI7OCax0E2", + "u-fdVYyh4BnUTdQq", + "u-npwdW3ApajCf1O", + "u-hL1kflDazPN7V2", + "u-OFIZ8D32Q3zBrr", + "u-cf0dZIyXZSNBgF", + "u-qoIJhGmnck42DT", + "u-8PXIrQqCbrcXbM" + ], + "end": 84532, + "start": 84647, + "waterType": 2 + }, + { + "data": [ + "u-C3wqnWisLaGi1J", + "u-ObrQJ9nk9GjzDs", + "u-SoWgMAYxAgLUeo", + "u-VlsYGPBOKCJJmi", + "u-422dcGqS51FfTx", + "u-I9xRZPDhjiC9oF", + "u-HTBkg7o21TW8Sh", + "u-uL4uCrn4buyLyT", + "u-O2JYKrfcx9crp0", + "u-MXhN9GF4u7x0Xe", + "u-fCGnEyBtAdydoM", + "u-7pBo0aTnQXDjoT", + "u-LAI1BhSGmXKkNg", + "u-bvJVXPhdqinL8v", + "u-g59AZtLVMpT6lc", + "u-kncMMUG2dNPae8", + "u-ZXnHNOJYUfjEJj", + "u-jFVRPyAmAEsowV", + "u-dtxf89ZBm4Cr7t", + "u-Wb6cIMuC6viuCh", + "u-fGSzGuWvXCZGDE", + "u-DoOmNbfhJhT4qx", + "u-pYpDk0URJEjaGw", + "u-iQJAQLoMU9TpUB", + "u-0znEMWILDuj3L0", + "u-zA6cSx0jfgaDYt", + "u-Qz8DKPnaZZEuer", + "u-SsteezTZk4EO9W", + "u-IKC4Odm5oYmvOU", + "u-MJycmXBFOG87OR" + ], + "end": 84621, + "start": 84532, + "waterType": 4 + }, + { + "data": [ + "u-C3wqnWisLaGi1J", + "u-ObrQJ9nk9GjzDs", + "u-SoWgMAYxAgLUeo", + "u-VlsYGPBOKCJJmi", + "u-422dcGqS51FfTx", + "u-I9xRZPDhjiC9oF", + "u-HTBkg7o21TW8Sh", + "u-uL4uCrn4buyLyT", + "u-O2JYKrfcx9crp0", + "u-MXhN9GF4u7x0Xe", + "u-fCGnEyBtAdydoM", + "u-7pBo0aTnQXDjoT", + "u-LAI1BhSGmXKkNg", + "u-bvJVXPhdqinL8v", + "u-g59AZtLVMpT6lc", + "u-kncMMUG2dNPae8", + "u-ZXnHNOJYUfjEJj", + "u-jFVRPyAmAEsowV", + "u-dtxf89ZBm4Cr7t", + "u-Wb6cIMuC6viuCh", + "u-yk76OLh7bxHOLB", + "u-MbmhIrYQjJ5T4Y", + "u-Yw50nv5dgxUBfl", + "u-EBbpfZ4fbPney8", + "u-JFtPSaNNcw1BHV", + "u-bUmvVEDDsgYu3d", + "u-hAYEDcLmf9xvg4", + "u-B6CG0SABpVPtmu", + "u-pzRJkV8RN1a1LX" + ], + "end": 84562, + "start": 84532, + "waterType": 4 + }, + { + "data": [ + "u-C3wqnWisLaGi1J", + "u-ObrQJ9nk9GjzDs", + "u-SoWgMAYxAgLUeo", + "u-VlsYGPBOKCJJmi", + "u-422dcGqS51FfTx", + "u-I9xRZPDhjiC9oF", + "u-HTBkg7o21TW8Sh", + "u-uL4uCrn4buyLyT", + "u-O2JYKrfcx9crp0", + "u-MXhN9GF4u7x0Xe", + "u-fCGnEyBtAdydoM", + "u-7pBo0aTnQXDjoT", + "u-LAI1BhSGmXKkNg", + "u-bvJVXPhdqinL8v", + "u-g59AZtLVMpT6lc", + "u-kncMMUG2dNPae8", + "u-ZXnHNOJYUfjEJj", + "u-jFVRPyAmAEsowV", + "u-dtxf89ZBm4Cr7t", + "u-Wb6cIMuC6viuCh", + "u-yk76OLh7bxHOLB", + "u-MbmhIrYQjJ5T4Y", + "u-Yw50nv5dgxUBfl", + "u-0DEOSn4pnK4vD3", + "u-58VfhOT0YQbyGw", + "u-9koMhkGm8WtDlP", + "u-ijnG6HBsGxtlbZ", + "u-cMYOi25YqeO6eB", + "u-NFGjswxmKIk2AE", + "u-fDqw00nb7BSuQo", + "u-sapYjHo7ROqbo8", + "u-ZNG64GpyusKZnG" + ], + "end": 84566, + "start": 84532, + "waterType": 4 + }, + { + "data": [ + "u-C3wqnWisLaGi1J", + "u-ObrQJ9nk9GjzDs", + "u-SoWgMAYxAgLUeo", + "u-VlsYGPBOKCJJmi", + "u-422dcGqS51FfTx", + "u-I9xRZPDhjiC9oF", + "u-HTBkg7o21TW8Sh", + "u-uL4uCrn4buyLyT", + "u-O2JYKrfcx9crp0", + "u-MXhN9GF4u7x0Xe", + "u-fCGnEyBtAdydoM", + "u-7pBo0aTnQXDjoT", + "u-LAI1BhSGmXKkNg", + "u-bvJVXPhdqinL8v", + "u-g59AZtLVMpT6lc", + "u-kncMMUG2dNPae8", + "u-ZXnHNOJYUfjEJj", + "u-jFVRPyAmAEsowV", + "u-dtxf89ZBm4Cr7t", + "u-Wb6cIMuC6viuCh", + "u-yk76OLh7bxHOLB", + "u-MbmhIrYQjJ5T4Y", + "u-Yw50nv5dgxUBfl", + "u-0DEOSn4pnK4vD3", + "u-58VfhOT0YQbyGw", + "u-9koMhkGm8WtDlP", + "u-pbnDi3ELPEdzda", + "u-UeXJRnELSNtkuT", + "u-fHFZwCGxhd8vtK", + "u-NuWfsA65IoNipx", + "u-2jH16YqiQV0xyg", + "u-uk6tv1KdgipkSp", + "u-rWNveDIFuWH3mM", + "u-P0wUKfIMSytVfy", + "u-0Kt28CgUT98xzu", + "u-cu6m8uOaX6m9kG" + ], + "end": 84561, + "start": 84532, + "waterType": 4 + }, + { + "data": ["u-kYPkpUUjdvfsGg"], + "end": 84647, + "start": 84541, + "waterType": 1 + }, + { + "data": ["u-sF6kxX1ZUfttBQ"], + "end": 84541, + "start": -1, + "waterType": 0 + }, + { + "data": [ + "u-aCQsWwi6TDVGqw", + "u-t0arHTpKW6eQ0K", + "u-B3nlH1sJ6b9pCL", + "u-Lq6FL9HXaaNBNb", + "u-NSH9sTz0rUwdMF", + "u-t3599fysdpo4gN", + "u-vfwkqvtk3zofBj", + "u-uoBJBDDCbwWkic", + "u-uDbx7ZSEHG98Fc" + ], + "end": 76327, + "start": 84534, + "waterType": 5 + }, + { + "data": [ + "u-LLRerTxOXvJXOx", + "u-mY2HQNUQxSta2D", + "u-oyUzzsNx6TBXI4", + "u-bs72EnffbwtHwN", + "u-Yyo4V8pEbVIicv", + "u-czUQD6tWnZRlSk", + "u-5TYVvadcvaovi1", + "u-aSPHS4NxCf1gNl", + "u-Bae1fRlFPfHNMk", + "u-7yF4wGFYEzXeX7", + "u-yHoJvOWfgkgzDC" + ], + "end": 84533, + "start": 84524, + "waterType": 3 + } + ], + "LinesDataset": [ + { + "data": [ + [0.37, 1.86000001, 2.94000006], + [0.63500059, 1.86000001, 2.94000006] + ], + "id": "u-GhEcFR8RR5YtT3", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.30000019, 0.43000001, 3.93000007], + [-8.30000019, 0.43000001, 3.89500022] + ], + "id": "u-hpuR4qQClYkz8t", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.19999981, 0.55000001, 3.48000002], + [-8.38499928, 0.55000001, 3.48000002] + ], + "id": "u-C3wqnWisLaGi1J", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.31000042, 0.44, 4.30000019], + [-8.30000019, 0.43000001, 4.17000008] + ], + "id": "u-kYPkpUUjdvfsGg", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.31000042, 0.44, 5.3499999], + [-8.31000042, 0.44, 4.46000004] + ], + "id": "u-sF6kxX1ZUfttBQ", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.27999973, 0.47999999, 3.1500001], + [-8.27999973, 0.51499999, 3.1500001] + ], + "id": "u-aCQsWwi6TDVGqw", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.35999966, 0.47, 2.50999999], + [-8.38499928, 0.47, 2.50999999] + ], + "id": "u-LLRerTxOXvJXOx", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.29500008, 0.52999997, 3.1500001], + [-8.38499928, 0.52999997, 3.1500001] + ], + "id": "u-B3nlH1sJ6b9pCL", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.53042835, 3.164994], + [-8.39999962, 0.54957163, 3.835006] + ], + "id": "u-NSH9sTz0rUwdMF", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39249992, 0.34999999, 3.86999989], + [-8.36999989, 0.34999999, 3.86999989] + ], + "id": "u-uDbx7ZSEHG98Fc", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.53507447, 3.8514924], + [-8.39999962, 0.36492556, 3.86850739] + ], + "id": "u-vfwkqvtk3zofBj", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.65000057, 1.875, 2.94000006], + [0.65000057, 2.63499999, 2.94000006] + ], + "id": "u-58GbZz4Qq5NhrJ", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.63500059, 2.6500001, 2.94000006], + [0.46499979, 2.6500001, 2.94000006] + ], + "id": "u-OFZiV4XaE1wfN0", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.20000005, 0.79000002, 3.59899998], + [-1.20000005, 0.79000002, 3.46000004] + ], + "id": "u-Fb6Lh16cGHvHuN", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.20000005, 2.63499999, 3.61400008], + [-1.20000005, 0.80500001, 3.61400008] + ], + "id": "u-rb7DqaiQBCxbUq", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.20000005, 2.6500001, 3.47900009], + [-1.20000005, 2.6500001, 3.59899998] + ], + "id": "u-STOHhH1g7QZZk5", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.43499982, 2.6500001, 3.46399999], + [-0.27500001, 2.6500001, 3.46399999] + ], + "id": "u-5EyyspGVAJmOI3", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.44999981, 2.6500001, 2.95500016], + [0.44999981, 2.6500001, 3.44899988] + ], + "id": "u-8BFHtMjdW6RTLS", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.28999999, 1.17999995, 3.60800004], + [-0.28999999, 1.17999995, 3.58999991] + ], + "id": "u-mbCyNSmuyhiBXj", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.28999999, 2.63499999, 3.61400008], + [-0.28999999, 1.19499993, 3.61400008] + ], + "id": "u-kJmUlGmTvV9PEN", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.30499998, 2.6500001, 3.46399999], + [-1.18500006, 2.6500001, 3.46399999] + ], + "id": "u-NAhWyaUPIZmHhC", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.28999999, 2.6500001, 3.47900009], + [-0.28999999, 2.6500001, 3.59899998] + ], + "id": "u-xDJCsRRFBr9F67", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.48499998, 2.50999999], + [-8.39999962, 2.53499985, 2.50999999] + ], + "id": "u-oyUzzsNx6TBXI4", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.38500404, 2.54999995, 2.50964618], + [-6.46499586, 2.54999995, 2.4643538] + ], + "id": "u-Yyo4V8pEbVIicv", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-6.44000006, 1.41999996, 1.97049999], + [-6.44000006, 1.41999996, 1.99000001] + ], + "id": "u-yHoJvOWfgkgzDC", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-6.44000006, 2.53499985, 1.96399999], + [-6.44000006, 1.43499994, 1.96399999] + ], + "id": "u-Bae1fRlFPfHNMk", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-6.44969988, 2.54999995, 2.44900298], + [-6.44029999, 2.54999995, 1.97899699] + ], + "id": "u-5TYVvadcvaovi1", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.31500053, 0.43000001, 3.88000011], + [-8.38499928, 0.43000001, 3.88000011] + ], + "id": "u-1MSzhMfN4Zf0xB", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.43228087, 3.86517453], + [-8.39999962, 0.44771913, 3.76482558] + ], + "id": "u-FCYYmFUeBU0Xxj", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.44499999, 3.88000011], + [-8.39999962, 0.685, 3.88000011] + ], + "id": "u-GeUwfI7OCax0E2", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39249992, 0.34999999, 3.74000001], + [-8.36999989, 0.34999999, 3.74000001] + ], + "id": "u-OFkcwThew4oasQ", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.43507442, 3.7485075], + [-8.39999962, 0.36492556, 3.74149251] + ], + "id": "u-lUOJ4ElaE4zz5E", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.38499928, 0.47999999, 2.6099999], + [-8.35999966, 0.47999999, 2.6099999] + ], + "id": "u-GIw6c1F8spFeJY", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.58500004, 2.6099999], + [-8.39999962, 0.49499997, 2.6099999] + ], + "id": "u-RKTP4whxjXeQB6", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.60000002, 2.63499975], + [-8.39999962, 0.60000002, 2.625] + ], + "id": "u-hJdePo4qKEyF8g", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.685, 2.64999986], + [-8.39999962, 0.61500001, 2.64999986] + ], + "id": "u-Vu14vPLRd4I4EF", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.86500001], + [-8.39999962, 0.69999999, 3.60500002] + ], + "id": "u-npwdW3ApajCf1O", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.565, 3.48000002], + [-8.39999962, 0.59999996, 3.48000002] + ], + "id": "u-SoWgMAYxAgLUeo", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.38499928, 2.54999995, 3.5999999], + [-8.26500034, 2.54999995, 3.5999999] + ], + "id": "u-fCGnEyBtAdydoM", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.91499996, 3.5999999], + [-8.39999962, 2.53499985, 3.5999999] + ], + "id": "u-O2JYKrfcx9crp0", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.89999998, 3.49500012], + [-8.39999962, 0.89999998, 3.5849998] + ], + "id": "u-HTBkg7o21TW8Sh", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.13, 0.34999999, 2.22900009], + [0.13, 0.34999999, 2.26999998] + ], + "id": "u-MJycmXBFOG87OR", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.13, 2.53499985, 2.21399999], + [0.13, 0.36499998, 2.21399999] + ], + "id": "u-SsteezTZk4EO9W", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.13, 2.54999995, 2.34899998], + [0.13, 2.54999995, 2.22900009] + ], + "id": "u-zA6cSx0jfgaDYt", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.53499973, 2.54999995, 2.36400008], + [0.11499999, 2.54999995, 2.36400008] + ], + "id": "u-iQJAQLoMU9TpUB", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.54999971, 2.54999995, 3.44899988], + [-1.54999971, 2.54999995, 2.37900019] + ], + "id": "u-DoOmNbfhJhT4qx", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.53499973, 2.54999995, 3.46399999], + [-1.38499999, 2.54999995, 3.46399999] + ], + "id": "u-MbmhIrYQjJ5T4Y", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-6.88500023, 2.54999995, 3.46399999], + [-1.5649997, 2.54999995, 3.46399999] + ], + "id": "u-dtxf89ZBm4Cr7t", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-6.9000001, 2.54999995, 5.04900026], + [-6.9000001, 2.54999995, 3.47900009] + ], + "id": "u-ZXnHNOJYUfjEJj", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.23499966, 2.54999995, 5.06400013], + [-6.91499996, 2.54999995, 5.06400013] + ], + "id": "u-g59AZtLVMpT6lc", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.25, 2.54999995, 3.61500001], + [-8.25, 2.54999995, 5.04900026] + ], + "id": "u-LAI1BhSGmXKkNg", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.10999966, 0.565, 3.1500001], + [-8.10999966, 0.47, 3.1500001] + ], + "id": "u-X8eI7Un4ezRTfW", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.10999966, 0.57999998, 3.0650003], + [-8.10999966, 0.57999998, 3.13499999] + ], + "id": "u-XH7ngN3ynmUBq9", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.38499928, 0.57999998, 3.05000019], + [-8.125, 0.57999998, 3.05000019] + ], + "id": "u-oFFOrGV9ITdLgh", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.03500009], + [-8.39999962, 0.69999999, 2.66499996] + ], + "id": "u-ugo7JD0WmXZ6jw", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.685, 3.05000019], + [-8.39999962, 0.59499997, 3.05000019] + ], + "id": "u-B0V7POii68UCze", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.37, 0.80000001, 3.59899998], + [-1.37, 0.80000001, 3.46000004] + ], + "id": "u-pzRJkV8RN1a1LX", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.37, 2.53499985, 3.61400008], + [-1.37, 0.815, 3.61400008] + ], + "id": "u-hAYEDcLmf9xvg4", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.37, 2.54999995, 3.47900009], + [-1.37, 2.54999995, 3.59899998] + ], + "id": "u-JFtPSaNNcw1BHV", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-1.35500002, 2.54999995, 3.46399999], + [-0.44499999, 2.54999995, 3.46399999] + ], + "id": "u-58VfhOT0YQbyGw", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.38499928, 0.55000001, 3.58999991], + [-8.19999981, 0.55000001, 3.58999991] + ], + "id": "u-8PXIrQqCbrcXbM", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.57499981], + [-8.39999962, 0.69999999, 3.0650003] + ], + "id": "u-9D10vYKzThKDXg", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.685, 3.58999991], + [-8.39999962, 0.565, 3.58999991] + ], + "id": "u-cf0dZIyXZSNBgF", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.43000001, 1.17999995, 3.60800004], + [-0.43000001, 1.17999995, 3.58999991] + ], + "id": "u-ZNG64GpyusKZnG", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.43000001, 2.53499985, 3.61400008], + [-0.43000001, 1.19499993, 3.61400008] + ], + "id": "u-fDqw00nb7BSuQo", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.43000001, 2.54999995, 3.47900009], + [-0.43000001, 2.54999995, 3.59899998] + ], + "id": "u-cMYOi25YqeO6eB", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-0.41500002, 2.54999995, 3.46399999], + [0.48500001, 2.54999995, 3.46399999] + ], + "id": "u-UeXJRnELSNtkuT", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.63500059, 1.86000001, 3.03999996], + [0.37, 1.86000001, 3.03999996] + ], + "id": "u-cu6m8uOaX6m9kG", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.65000057, 2.53508568, 3.11240053], + [0.65000057, 1.87491453, 3.04159951] + ], + "id": "u-P0wUKfIMSytVfy", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.51499999, 2.54999995, 3.11400008], + [0.63500059, 2.55000019, 3.11400008] + ], + "id": "u-uk6tv1KdgipkSp", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [0.5, 2.54999995, 3.44899988], + [0.5, 2.54999995, 3.12900019] + ], + "id": "u-NuWfsA65IoNipx", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.80000001, 3.48000002], + [-8.39999962, 0.88499999, 3.48000002] + ], + "id": "u-422dcGqS51FfTx", + "name": "PE管", + "type": "I" + }, + { + "data": [ + [-8.39999962, 0.59999996, 3.48000002], + [-8.39999962, 0.70999998, 3.48000002], + [-8.34999943, 0.59999996, 3.48000002], + [-8.31999969, 0.69999999, 3.48000002], + [-8.34999943, 0.80000001, 3.48000002], + [-8.39999962, 0.69, 3.48000002], + [-8.39999962, 0.80000001, 3.48000002] + ], + "id": "u-VlsYGPBOKCJJmi", + "name": "PE管", + "type": "B" + }, + { + "data": [ + [-8.27999973, 0.49999997, 3.1500001], + [-8.27999973, 0.52699995, 3.1500001], + [-8.28299999, 0.52999997, 3.1500001], + [-8.30999947, 0.52999997, 3.1500001] + ], + "id": "u-t0arHTpKW6eQ0K", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.36999989, 0.52999997, 3.1500001], + [-8.39699936, 0.52999997, 3.1500001], + [-8.39999962, 0.53008562, 3.15299892], + [-8.39999962, 0.53085679, 3.17998791] + ], + "id": "u-Lq6FL9HXaaNBNb", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.3798511, 3.86701488], + [-8.39999962, 0.35298511, 3.86970139], + [-8.39699936, 0.34999999, 3.86999989], + [-8.36999989, 0.34999999, 3.86999989] + ], + "id": "u-uoBJBDDCbwWkic", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.5491432, 3.82001209], + [-8.39999962, 0.54991436, 3.84700108], + [-8.39999962, 0.54701489, 3.8502984], + [-8.39999962, 0.52014887, 3.85298491] + ], + "id": "u-t3599fysdpo4gN", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.6200006, 1.86000001, 2.94000006], + [0.64700055, 1.86000001, 2.94000006], + [0.65000057, 1.86300004, 2.94000006], + [0.65000057, 1.88999999, 2.94000006] + ], + "id": "u-ztDEr5pGiYxPiT", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.65000057, 2.62000012, 2.94000006], + [0.65000057, 2.64700007, 2.94000006], + [0.64700055, 2.6500001, 2.94000006], + [0.6200006, 2.6500001, 2.94000006] + ], + "id": "u-C2eqF0V21EwhOA", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-1.20000005, 0.81999999, 3.61400008], + [-1.20000005, 0.79300004, 3.61400008], + [-1.20000005, 0.79000002, 3.61100006], + [-1.20000005, 0.79000002, 3.58400011] + ], + "id": "u-dAUfzP3r1XSl5u", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-1.20000005, 2.6500001, 3.58400011], + [-1.20000005, 2.6500001, 3.61100006], + [-1.20000005, 2.64700007, 3.61400008], + [-1.20000005, 2.62000012, 3.61400008] + ], + "id": "u-i0mMSnP1sCGxkI", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-1.17000008, 2.6500001, 3.46399999], + [-1.19700003, 2.6500001, 3.46399999], + [-1.20000005, 2.6500001, 3.46700001], + [-1.20000005, 2.6500001, 3.49399996] + ], + "id": "u-vLKYdMCQqxV20C", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.44999981, 2.6500001, 3.43400002], + [0.44999981, 2.6500001, 3.46099997], + [0.44699982, 2.6500001, 3.46399999], + [0.41999981, 2.6500001, 3.46399999] + ], + "id": "u-G0LpIcDDSTCclG", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.47999981, 2.6500001, 2.94000006], + [0.4529998, 2.6500001, 2.94000006], + [0.44999981, 2.6500001, 2.94300008], + [0.44999981, 2.6500001, 2.97000003] + ], + "id": "u-iJ5tKTgEbPlS58", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-0.28999999, 1.20999992, 3.61400008], + [-0.28999999, 1.18299997, 3.61400008], + [-0.28999999, 1.17999995, 3.61100006], + [-0.28999999, 1.17999995, 3.58400011] + ], + "id": "u-CKo9qgSFsz7lqb", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-0.28999999, 2.6500001, 3.58400011], + [-0.28999999, 2.6500001, 3.61100006], + [-0.28999999, 2.64700007, 3.61400008], + [-0.28999999, 2.62000012, 3.61400008] + ], + "id": "u-GWGmST8TpfGgJl", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.36999989, 0.47, 2.50999999], + [-8.39699936, 0.47, 2.50999999], + [-8.39999962, 0.47299999, 2.50999999], + [-8.39999962, 0.5, 2.50999999] + ], + "id": "u-mY2HQNUQxSta2D", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 2.51999998, 2.50999999], + [-8.39999962, 2.54699993, 2.50999999], + [-8.39700031, 2.54999995, 2.50992918], + [-8.37000751, 2.54999995, 2.5092926] + ], + "id": "u-bs72EnffbwtHwN", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-6.44000006, 1.44999993, 1.96399999], + [-6.44000006, 1.42299998, 1.96399999], + [-6.44000006, 1.41999996, 1.96700001], + [-6.44000006, 1.41999996, 1.99399996] + ], + "id": "u-7yF4wGFYEzXeX7", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-6.44059992, 2.54999995, 1.993994], + [-6.44006014, 2.54999995, 1.96699941], + [-6.44000006, 2.54699993, 1.96399999], + [-6.44000006, 2.51999998, 1.96399999] + ], + "id": "u-aSPHS4NxCf1gNl", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-6.47999144, 2.54999995, 2.46470737], + [-6.45299911, 2.54999995, 2.4640708], + [-6.44993973, 2.54999995, 2.46100068], + [-6.44939995, 2.54999995, 2.43400598] + ], + "id": "u-czUQD6tWnZRlSk", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.30000019, 0.43000001, 3.91000009], + [-8.30000019, 0.43000001, 3.88300014], + [-8.30300045, 0.43000001, 3.88000011], + [-8.32999992, 0.43000001, 3.88000011] + ], + "id": "u-BYJlKTdm3Y5D2d", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.36999989, 0.43000001, 3.88000011], + [-8.39699936, 0.43000001, 3.88000011], + [-8.39999962, 0.43045619, 3.8770349], + [-8.39999962, 0.43456173, 3.85034895] + ], + "id": "u-ZE8NmbMwSTHLpg", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.36999989, 0.43000001, 3.88000011], + [-8.39699936, 0.43000001, 3.88000011], + [-8.39999962, 0.433, 3.88000011], + [-8.39999962, 0.46000001, 3.88000011] + ], + "id": "u-OCzT1r76lxbdQw", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.3798511, 3.74298501], + [-8.39999962, 0.35298511, 3.74029851], + [-8.39699936, 0.34999999, 3.74000001], + [-8.36999989, 0.34999999, 3.74000001] + ], + "id": "u-64nfqWMVZKOxFg", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.44543827, 3.77965117], + [-8.39999962, 0.4495438, 3.75296521], + [-8.39999962, 0.44701487, 3.7497015], + [-8.39999962, 0.42014888, 3.747015] + ], + "id": "u-LSluSC4z5KZvhp", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.50999999, 2.6099999], + [-8.39999962, 0.48299998, 2.6099999], + [-8.39699936, 0.47999999, 2.6099999], + [-8.36999989, 0.47999999, 2.6099999] + ], + "id": "u-7x87UR4Svp2AGb", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.60000002, 2.63999987], + [-8.39999962, 0.60000002, 2.61299992], + [-8.39999962, 0.597, 2.6099999], + [-8.39999962, 0.57000005, 2.6099999] + ], + "id": "u-5yF6qvbN2e7dhg", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.63, 2.64999986], + [-8.39999962, 0.60300004, 2.64999986], + [-8.39999962, 0.60000002, 2.64699984], + [-8.39999962, 0.60000002, 2.61999989] + ], + "id": "u-dUzeEHZ8pIrt79", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.69999999, 2.67999983], + [-8.39999962, 0.69999999, 2.65299988], + [-8.39999962, 0.69699997, 2.64999986], + [-8.39999962, 0.67000002, 2.64999986] + ], + "id": "u-UVULibbbgxekEQ", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.67000002, 3.88000011], + [-8.39999962, 0.69699997, 3.88000011], + [-8.39999962, 0.69999999, 3.87700009], + [-8.39999962, 0.69999999, 3.85000014] + ], + "id": "u-fdVYyh4BnUTdQq", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.36999989, 0.55000001, 3.48000002], + [-8.39699936, 0.55000001, 3.48000002], + [-8.39999962, 0.55300003, 3.48000002], + [-8.39999962, 0.57999998, 3.48000002] + ], + "id": "u-ObrQJ9nk9GjzDs", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 2.51999998, 3.5999999], + [-8.39999962, 2.54699993, 3.5999999], + [-8.39699936, 2.54999995, 3.5999999], + [-8.36999989, 2.54999995, 3.5999999] + ], + "id": "u-MXhN9GF4u7x0Xe", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.89999998, 3.56999993], + [-8.39999962, 0.89999998, 3.59699988], + [-8.39999962, 0.903, 3.5999999], + [-8.39999962, 0.92999995, 3.5999999] + ], + "id": "u-uL4uCrn4buyLyT", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.87, 3.48000002], + [-8.39999962, 0.89699996, 3.48000002], + [-8.39999962, 0.89999998, 3.48300004], + [-8.39999962, 0.89999998, 3.50999999] + ], + "id": "u-I9xRZPDhjiC9oF", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.13, 0.38, 2.21399999], + [0.13, 0.35299999, 2.21399999], + [0.13, 0.34999999, 2.21700001], + [0.13, 0.34999999, 2.24399996] + ], + "id": "u-IKC4Odm5oYmvOU", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.13, 2.54999995, 2.24399996], + [0.13, 2.54999995, 2.21700001], + [0.13, 2.54699993, 2.21399999], + [0.13, 2.51999998, 2.21399999] + ], + "id": "u-Qz8DKPnaZZEuer", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.09999999, 2.54999995, 2.36400008], + [0.12699999, 2.54999995, 2.36400008], + [0.13, 2.54999995, 2.36100006], + [0.13, 2.54999995, 2.33400011] + ], + "id": "u-0znEMWILDuj3L0", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-1.54999971, 2.54999995, 2.39400005], + [-1.54999971, 2.54999995, 2.3670001], + [-1.54699969, 2.54999995, 2.36400008], + [-1.51999974, 2.54999995, 2.36400008] + ], + "id": "u-pYpDk0URJEjaGw", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-6.9000001, 2.54999995, 3.49399996], + [-6.9000001, 2.54999995, 3.46700001], + [-6.89700031, 2.54999995, 3.46399999], + [-6.86999989, 2.54999995, 3.46399999] + ], + "id": "u-jFVRPyAmAEsowV", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-6.93000031, 2.54999995, 5.06400013], + [-6.90299988, 2.54999995, 5.06400013], + [-6.9000001, 2.54999995, 5.06100035], + [-6.9000001, 2.54999995, 5.03399992] + ], + "id": "u-kncMMUG2dNPae8", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.25, 2.54999995, 5.03399992], + [-8.25, 2.54999995, 5.06100035], + [-8.24699974, 2.54999995, 5.06400013], + [-8.22000027, 2.54999995, 5.06400013] + ], + "id": "u-bvJVXPhdqinL8v", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.27999973, 2.54999995, 3.5999999], + [-8.25300026, 2.54999995, 3.5999999], + [-8.25, 2.54999995, 3.60299993], + [-8.25, 2.54999995, 3.62999988] + ], + "id": "u-7pBo0aTnQXDjoT", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.10999966, 0.57999998, 3.12000012], + [-8.10999966, 0.57999998, 3.14700007], + [-8.10999966, 0.57699996, 3.1500001], + [-8.10999966, 0.55000001, 3.1500001] + ], + "id": "u-LzsKL1hpcYHptm", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.13999939, 0.57999998, 3.05000019], + [-8.11299992, 0.57999998, 3.05000019], + [-8.10999966, 0.57999998, 3.05300021], + [-8.10999966, 0.57999998, 3.08000016] + ], + "id": "u-Bezg2U0HLGod6l", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.60999995, 3.05000019], + [-8.39999962, 0.583, 3.05000019], + [-8.39699936, 0.57999998, 3.05000019], + [-8.36999989, 0.57999998, 3.05000019] + ], + "id": "u-z82w58d1TI2JCt", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-1.37, 0.82999998, 3.61400008], + [-1.37, 0.80300003, 3.61400008], + [-1.37, 0.80000001, 3.61100006], + [-1.37, 0.80000001, 3.58400011] + ], + "id": "u-B6CG0SABpVPtmu", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-1.37, 2.54999995, 3.58400011], + [-1.37, 2.54999995, 3.61100006], + [-1.37, 2.54699993, 3.61400008], + [-1.37, 2.51999998, 3.61400008] + ], + "id": "u-bUmvVEDDsgYu3d", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-8.39999962, 0.57999998, 3.58999991], + [-8.39999962, 0.55300003, 3.58999991], + [-8.39699936, 0.55000001, 3.58999991], + [-8.36999989, 0.55000001, 3.58999991] + ], + "id": "u-qoIJhGmnck42DT", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-0.43000001, 1.20999992, 3.61400008], + [-0.43000001, 1.18299997, 3.61400008], + [-0.43000001, 1.17999995, 3.61100006], + [-0.43000001, 1.17999995, 3.58400011] + ], + "id": "u-sapYjHo7ROqbo8", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-0.43000001, 2.54999995, 3.58400011], + [-0.43000001, 2.54999995, 3.61100006], + [-0.43000001, 2.54699993, 3.61400008], + [-0.43000001, 2.51999998, 3.61400008] + ], + "id": "u-NFGjswxmKIk2AE", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.65000057, 1.88982892, 3.04319906], + [0.65000057, 1.86298287, 3.04031992], + [0.64700055, 1.86000001, 3.03999996], + [0.6200006, 1.86000001, 3.03999996] + ], + "id": "u-0Kt28CgUT98xzu", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.6200006, 2.55000019, 3.11400008], + [0.64700055, 2.55000019, 3.11400008], + [0.65000057, 2.54701734, 3.11368012], + [0.65000057, 2.52017117, 3.11080098] + ], + "id": "u-rWNveDIFuWH3mM", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.5, 2.54999995, 3.14400005], + [0.5, 2.54999995, 3.1170001], + [0.50300002, 2.54999995, 3.11400008], + [0.52999997, 2.54999995, 3.11400008] + ], + "id": "u-2jH16YqiQV0xyg", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [0.47, 2.54999995, 3.46399999], + [0.49700001, 2.54999995, 3.46399999], + [0.5, 2.54999995, 3.46099997], + [0.5, 2.54999995, 3.43400002] + ], + "id": "u-fHFZwCGxhd8vtK", + "name": "PE管", + "type": "C" + }, + { + "data": [ + [-0.28999999, 2.6500001, 3.46399999], + [-0.31999999, 2.6500001, 3.46399999] + ], + "id": "u-ivp9wK4Vrs0Drl", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-0.28999999, 2.6500001, 3.46399999], + [-0.28999999, 2.6500001, 3.49399996] + ], + "id": "u-HGIZp0t0wsHWVm", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-0.25999999, 2.6500001, 3.46399999], + [-0.28999999, 2.6500001, 3.46399999] + ], + "id": "u-EdIoeXiYOZaoWK", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-1.54999971, 2.54999995, 3.46399999], + [-1.54999971, 2.54999995, 3.43400002] + ], + "id": "u-fGSzGuWvXCZGDE", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-1.54999971, 2.54999995, 3.46399999], + [-1.51999974, 2.54999995, 3.46399999] + ], + "id": "u-yk76OLh7bxHOLB", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-1.57999969, 2.54999995, 3.46399999], + [-1.54999971, 2.54999995, 3.46399999] + ], + "id": "u-Wb6cIMuC6viuCh", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.05000019], + [-8.39999962, 0.69999999, 3.02000022] + ], + "id": "u-skxQst4d9rPigS", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.05000019], + [-8.39999962, 0.67000002, 3.05000019] + ], + "id": "u-HCasPAgEg0SPzb", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.08000016], + [-8.39999962, 0.69999999, 3.05000019] + ], + "id": "u-IV7IVNCny9K8dN", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-1.37, 2.54999995, 3.46399999], + [-1.37, 2.54999995, 3.49399996] + ], + "id": "u-EBbpfZ4fbPney8", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-1.37, 2.54999995, 3.46399999], + [-1.34000003, 2.54999995, 3.46399999] + ], + "id": "u-0DEOSn4pnK4vD3", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-1.39999998, 2.54999995, 3.46399999], + [-1.37, 2.54999995, 3.46399999] + ], + "id": "u-Yw50nv5dgxUBfl", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.58999991], + [-8.39999962, 0.69999999, 3.55999994] + ], + "id": "u-IXt05EUbTUSHxr", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.58999991], + [-8.39999962, 0.67000002, 3.58999991] + ], + "id": "u-OFIZ8D32Q3zBrr", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-8.39999962, 0.69999999, 3.61999989], + [-8.39999962, 0.69999999, 3.58999991] + ], + "id": "u-hL1kflDazPN7V2", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-0.43000001, 2.54999995, 3.46399999], + [-0.43000001, 2.54999995, 3.49399996] + ], + "id": "u-ijnG6HBsGxtlbZ", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-0.43000001, 2.54999995, 3.46399999], + [-0.40000001, 2.54999995, 3.46399999] + ], + "id": "u-pbnDi3ELPEdzda", + "name": "PE管", + "type": "T" + }, + { + "data": [ + [-0.46000001, 2.54999995, 3.46399999], + [-0.43000001, 2.54999995, 3.46399999] + ], + "id": "u-9koMhkGm8WtDlP", + "name": "PE管", + "type": "T" + } + ], + "ModelMap": [ + { + "library": 76327, + "name": "厨房洗菜盆" + }, + { + "library": 84647, + "name": "中央净水机" + }, + { + "library": 84524, + "name": "厨下净水器" + }, + { + "library": 84621, + "name": "马桶" + }, + { + "library": 84561, + "name": "电热水器" + }, + { + "library": 84562, + "name": "浴室柜" + }, + { + "library": 84532, + "name": "小型软水机" + }, + { + "library": 84533, + "name": "管线机" + }, + { + "library": 84566, + "name": "花洒" + }, + { + "library": 84534, + "name": "厨宝" + }, + { + "library": 84541, + "name": "前置净水器" + }, + { + "library": -1, + "name": "阀门" + } + ], + "WaterTypeMap": [ + { + "name": "市政自来水", + "type": 0 + }, + { + "name": "粗滤水", + "type": 1 + }, + { + "name": "净水", + "type": 2 + }, + { + "name": "软水", + "type": 3 + }, + { + "name": "直饮水", + "type": 4 + }, + { + "name": "热水", + "type": 5 + }, + { + "name": "热水回水", + "type": 6 + } + ] +} diff --git a/open-works/virtual/81xManr9NXhxbrmRmP/work.json b/open-works/virtual/81xManr9NXhxbrmRmP/work.json new file mode 100644 index 000000000..424370b59 --- /dev/null +++ b/open-works/virtual/81xManr9NXhxbrmRmP/work.json @@ -0,0 +1,861 @@ +{ + "_signature": "PNUCxcs8Jfe2WHYpOGgMQOZrLld3xzEzRUlHbN8OC6N+dkCB+5+HzNwxLwYvAn3/ajMr3d130u5QHlKp5rk1M2js4mACc9i9OI1+DQkI8unZGKqkooosEoZ60V7ujJfZIl9WqGCkderVDy9fPQ+LDwvdDP6wH6s6PldF+yZWIus=", + "allow_hosts": ["realsee-developer.github.io"], + "base_url": "https://vrlab-public.ljcdn.com/", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----", + "create_time": "2022-08-15 19:55:53", + "expire_at": "2015740340000", + "initial": { + "fov": 60, + "latitude": 0, + "longitude": 1.5800694597399252, + "pano_index": 23, + "recordVideo": false + }, + "model": { + "file_url": "vrframework/release/ue4_decoration_plan/5Pl2NlvDuJpga1l0/vrproc-ue4/render/model.at3d", + "material_base_url": "https://vrlab-public.ljcdn.com/", + "material_textures": [ + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_0.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_1.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_2.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_3.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_4.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_5.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_6.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_7.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_8.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_9.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_10.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_11.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_12.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_13.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_14.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_15.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_16.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_17.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_18.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_19.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_20.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_21.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_22.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_23.jpg", + "release/ue4/944a7eb81f3893c61130a0fe0de2a68c/at3d_results/texture_24.jpg" + ] + }, + "observers": [ + { + "accessible_nodes": [1, 2, 3, 4], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 0, + "position": [6.920909, 1.2, 0.528494], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [6.920909, 0, 0.528494], + "visible_nodes": [1, 2, 3, 4] + }, + { + "accessible_nodes": [0, 2, 3, 4, 5], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 1, + "position": [5.799099, 1.2, 0.532451], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [5.799099, 0, 0.532451], + "visible_nodes": [0, 2, 3, 4, 5] + }, + { + "accessible_nodes": [0, 1, 3, 4, 5, 6], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 2, + "position": [4.88383, 1.2, 0.891969], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [4.88383, 0, 0.891969], + "visible_nodes": [0, 1, 3, 4, 5, 6] + }, + { + "accessible_nodes": [0, 1, 2, 4, 5, 6, 10], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 3, + "position": [3.519059, 1.2, 0.961896], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [3.519059, 0, 0.961896], + "visible_nodes": [0, 1, 2, 4, 5, 6, 10] + }, + { + "accessible_nodes": [0, 1, 2, 3, 5, 6, 10, 13], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 4, + "position": [2.537879, 1.2, 1.305809], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [2.537879, 0, 1.305809], + "visible_nodes": [0, 1, 2, 3, 5, 6, 10, 13] + }, + { + "accessible_nodes": [1, 2, 3, 4, 6, 7, 9, 10, 13, 14], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 5, + "position": [1.46185, 1.2, 1.4003], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.46185, 0, 1.4003], + "visible_nodes": [1, 2, 3, 4, 6, 7, 9, 10, 13, 14] + }, + { + "accessible_nodes": [2, 3, 4, 5, 7, 8, 9, 10, 13, 14, 18], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 6, + "position": [0.705456, 1.2, 1.284409], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.705456, 0, 1.284409], + "visible_nodes": [2, 3, 4, 5, 7, 8, 9, 10, 13, 14, 18] + }, + { + "accessible_nodes": [5, 6, 8, 9], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 7, + "position": [0.59441, 1.2, 0.376468], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.59441, 0, 0.376468], + "visible_nodes": [5, 6, 8, 9] + }, + { + "accessible_nodes": [5, 6, 7, 9], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 8, + "position": [0.41192, 1.2, -0.8537], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.41192, 0, -0.8537], + "visible_nodes": [5, 6, 7, 9] + }, + { + "accessible_nodes": [6, 7, 8], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 9, + "position": [1.179129, 1.2, -0.662974], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [1.179129, 0, -0.662974], + "visible_nodes": [6, 7, 8] + }, + { + "accessible_nodes": [3, 4, 5, 6, 11, 13, 14, 18, 19, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 10, + "position": [-0.683301, 1.2, 1.233479], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.683301, 0, 1.233479], + "visible_nodes": [3, 4, 5, 6, 11, 13, 14, 18, 19, 23] + }, + { + "accessible_nodes": [10, 12], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 11, + "position": [-0.777624, 1.2, 2.691293], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-0.777624, 0, 2.691293], + "visible_nodes": [10, 12] + }, + { + "accessible_nodes": [11, 13, 15], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 12, + "position": [0.180003, 1.2, 3.108205], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [0.180003, 0, 3.108205], + "visible_nodes": [11, 13, 15] + }, + { + "accessible_nodes": [4, 5, 6, 10, 14, 15, 16, 17, 18, 19, 20, 23, 26, 27], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 13, + "position": [-2.014242, 1.2, 1.341879], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-2.014242, 0, 1.341879], + "visible_nodes": [4, 5, 6, 10, 14, 15, 16, 17, 18, 19, 20, 23, 26, 27] + }, + { + "accessible_nodes": [5, 6, 10, 13, 15, 16, 17, 18, 19, 20, 21, 23, 24, 27], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 14, + "position": [-3.053051, 1.2, 1.011749], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.053051, 0, 1.011749], + "visible_nodes": [5, 6, 10, 13, 15, 16, 17, 18, 19, 20, 21, 23, 24, 27] + }, + { + "accessible_nodes": [13, 14, 16, 17, 18, 19, 20, 21, 22, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 15, + "position": [-3.07107, 1.2, -0.344362], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.07107, 0, -0.344362], + "visible_nodes": [13, 14, 16, 17, 18, 19, 20, 21, 22, 23] + }, + { + "accessible_nodes": [13, 14, 15, 17, 18, 19, 20, 21, 22, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 16, + "position": [-3.374381, 1.2, -1.2785], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.374381, 0, -1.2785], + "visible_nodes": [13, 14, 15, 17, 18, 19, 20, 21, 22, 23] + }, + { + "accessible_nodes": [13, 14, 15, 16, 18, 19, 20, 21, 22], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 17, + "position": [-4.018281, 1.2, -2.316751], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.018281, 0, -2.316751], + "visible_nodes": [13, 14, 15, 16, 18, 19, 20, 21, 22] + }, + { + "accessible_nodes": [6, 10, 13, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 18, + "position": [-3.553101, 1.2, 2.266119], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-3.553101, 0, 2.266119], + "visible_nodes": [6, 10, 13, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28] + }, + { + "accessible_nodes": [10, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 19, + "position": [-4.67027, 1.2, 1.37276], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.67027, 0, 1.37276], + "visible_nodes": [10, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24] + }, + { + "accessible_nodes": [13, 14, 15, 16, 17, 18, 19, 21, 22], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 20, + "position": [-6.417857, 1.2, 1.199351], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-6.417857, 0, 1.199351], + "visible_nodes": [13, 14, 15, 16, 17, 18, 19, 21, 22] + }, + { + "accessible_nodes": [14, 15, 16, 17, 18, 19, 20, 22], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 21, + "position": [-7.507151, 1.2, 0.784268], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.507151, 0, 0.784268], + "visible_nodes": [14, 15, 16, 17, 18, 19, 20, 22] + }, + { + "accessible_nodes": [15, 16, 19, 20, 21, 23], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 22, + "position": [-7.693901, 1.2, -0.90787], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.693901, 0, -0.90787], + "visible_nodes": [15, 16, 19, 20, 21, 23] + }, + { + "accessible_nodes": [10, 13, 14, 15, 16, 18, 19, 22, 24, 25, 26, 27, 28, 30], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 23, + "position": [-4.896328, 1.2, 2.741833], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.896328, 0, 2.741833], + "visible_nodes": [10, 13, 14, 15, 16, 18, 19, 22, 24, 25, 26, 27, 28, 30] + }, + { + "accessible_nodes": [14, 18, 19, 23, 25], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 24, + "position": [-4.88018, 1.2, 4.42557], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-4.88018, 0, 4.42557], + "visible_nodes": [14, 18, 19, 23, 25] + }, + { + "accessible_nodes": [18, 23, 26, 27, 28, 29, 30], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 25, + "position": [-7.447167, 1.2, 3.127227], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.447167, 0, 3.127227], + "visible_nodes": [18, 23, 26, 27, 28, 29, 30] + }, + { + "accessible_nodes": [13, 18, 23, 25, 27, 28, 29, 30], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 26, + "position": [-6.71689, 1.2, 2.9756], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-6.71689, 0, 2.9756], + "visible_nodes": [13, 18, 23, 25, 27, 28, 29, 30] + }, + { + "accessible_nodes": [13, 14, 15, 18, 19, 23, 25, 26, 28, 29, 30], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 27, + "position": [-5.979681, 1.2, 2.863879], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-5.979681, 0, 2.863879], + "visible_nodes": [13, 14, 15, 18, 19, 23, 25, 26, 28, 29, 30] + }, + { + "accessible_nodes": [18, 23, 25, 26, 27, 29, 30], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 28, + "position": [-7.44377, 1.2, 3.571505], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.44377, 0, 3.571505], + "visible_nodes": [18, 23, 25, 26, 27, 29, 30] + }, + { + "accessible_nodes": [25, 26, 27, 28, 30], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 29, + "position": [-7.455006, 1.2, 4.369258], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.455006, 0, 4.369258], + "visible_nodes": [25, 26, 27, 28, 30] + }, + { + "accessible_nodes": [23, 25, 26, 27, 28, 29], + "create_time": "", + "floor_index": 0, + "id": 0, + "index": 30, + "position": [-7.455006, 1.2, 3.953528], + "quaternion": { + "w": 0.7071067811865475, + "x": 0, + "y": 0.7071067811865475, + "z": 0 + }, + "standing_position": [-7.455006, 0, 3.953528], + "visible_nodes": [23, 25, 26, 27, 28, 29] + } + ], + "panorama": { + "count": 31, + "list": [ + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/0/0_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/0/0_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/0/0_f.jpg", + "index": 0, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/0/0_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/0/0_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/0/0_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/1/1_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/1/1_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/1/1_f.jpg", + "index": 1, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/1/1_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/1/1_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/1/1_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/2/2_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/2/2_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/2/2_f.jpg", + "index": 2, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/2/2_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/2/2_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/2/2_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/3/3_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/3/3_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/3/3_f.jpg", + "index": 3, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/3/3_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/3/3_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/3/3_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/4/4_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/4/4_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/4/4_f.jpg", + "index": 4, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/4/4_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/4/4_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/4/4_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/5/5_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/5/5_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/5/5_f.jpg", + "index": 5, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/5/5_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/5/5_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/5/5_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/6/6_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/6/6_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/6/6_f.jpg", + "index": 6, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/6/6_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/6/6_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/6/6_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/7/7_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/7/7_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/7/7_f.jpg", + "index": 7, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/7/7_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/7/7_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/7/7_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/8/8_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/8/8_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/8/8_f.jpg", + "index": 8, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/8/8_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/8/8_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/8/8_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/9/9_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/9/9_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/9/9_f.jpg", + "index": 9, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/9/9_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/9/9_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/9/9_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/10/10_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/10/10_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/10/10_f.jpg", + "index": 10, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/10/10_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/10/10_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/10/10_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/11/11_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/11/11_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/11/11_f.jpg", + "index": 11, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/11/11_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/11/11_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/11/11_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/12/12_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/12/12_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/12/12_f.jpg", + "index": 12, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/12/12_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/12/12_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/12/12_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/13/13_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/13/13_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/13/13_f.jpg", + "index": 13, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/13/13_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/13/13_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/13/13_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/14/14_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/14/14_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/14/14_f.jpg", + "index": 14, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/14/14_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/14/14_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/14/14_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/15/15_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/15/15_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/15/15_f.jpg", + "index": 15, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/15/15_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/15/15_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/15/15_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/16/16_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/16/16_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/16/16_f.jpg", + "index": 16, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/16/16_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/16/16_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/16/16_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/17/17_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/17/17_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/17/17_f.jpg", + "index": 17, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/17/17_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/17/17_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/17/17_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/18/18_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/18/18_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/18/18_f.jpg", + "index": 18, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/18/18_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/18/18_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/18/18_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/19/19_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/19/19_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/19/19_f.jpg", + "index": 19, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/19/19_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/19/19_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/19/19_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/20/20_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/20/20_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/20/20_f.jpg", + "index": 20, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/20/20_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/20/20_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/20/20_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/21/21_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/21/21_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/21/21_f.jpg", + "index": 21, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/21/21_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/21/21_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/21/21_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/22/22_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/22/22_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/22/22_f.jpg", + "index": 22, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/22/22_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/22/22_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/22/22_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/23/23_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/23/23_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/23/23_f.jpg", + "index": 23, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/23/23_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/23/23_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/23/23_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/24/24_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/24/24_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/24/24_f.jpg", + "index": 24, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/24/24_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/24/24_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/24/24_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/25/25_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/25/25_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/25/25_f.jpg", + "index": 25, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/25/25_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/25/25_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/25/25_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/26/26_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/26/26_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/26/26_f.jpg", + "index": 26, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/26/26_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/26/26_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/26/26_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/27/27_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/27/27_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/27/27_f.jpg", + "index": 27, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/27/27_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/27/27_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/27/27_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/28/28_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/28/28_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/28/28_f.jpg", + "index": 28, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/28/28_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/28/28_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/28/28_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/29/29_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/29/29_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/29/29_f.jpg", + "index": 29, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/29/29_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/29/29_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/29/29_u.jpg" + }, + { + "back": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/30/30_b.jpg", + "down": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/30/30_d.jpg", + "front": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/30/30_f.jpg", + "index": 30, + "left": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/30/30_l.jpg", + "right": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/30/30_r.jpg", + "tiles": [1, 2], + "up": "release/ue4/c54fff1c3b128fa5652d97ce8c8da705/ue4_result/cube_2048/30/30_u.jpg" + } + ] + }, + "picture_url": "vrframework/release/ue4_decoration_plan/5Pl2NlvDuJpga1l0/vrproc-ue4/render/picture.jpg", + "update_time": "2022-08-15 20:09:23" +} diff --git a/package.json b/package.json new file mode 100644 index 000000000..f1b32e0ee --- /dev/null +++ b/package.json @@ -0,0 +1,35 @@ +{ + "name": "@realsee/dnalogel-examples", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "start": "vite -m production --port 3000", + "dev": "vite -m development", + "light-dev": "npm run dev", + "build": "tsc && vite build", + "format": "prettier --write ." + }, + "dependencies": { + "@emotion/react": "^11.11.1", + "@emotion/styled": "^11.11.0", + "@mui/icons-material": "^5.14.1", + "@mui/material": "^5.14.1", + "@realsee/dnalogel": "^3.25.5", + "@realsee/vapor": "latest", + "react": "17.0.2", + "react-dom": "17.0.2", + "three": "0.117.1" + }, + "devDependencies": { + "@babel/core": "^7.22.9", + "@realsee/five": "6.3.0-alpha.10", + "@types/react": "^17.0.62", + "@types/react-dom": "^17.0.20", + "@vitejs/plugin-react": "^4.0.3", + "glob": "^8.1.0", + "prettier": "^3.2.5", + "typescript": "5.5.4", + "vite": "^4.4.6" + } +} diff --git a/src/AreaMakerPlugin/App.tsx b/src/AreaMakerPlugin/App.tsx new file mode 100644 index 000000000..42a6cf77f --- /dev/null +++ b/src/AreaMakerPlugin/App.tsx @@ -0,0 +1,39 @@ +import { AreaMakerPlugin } from '@realsee/dnalogel/dist' +import { createFiveProvider, FiveCanvas } from '@realsee/five/react' +import * as React from 'react' +import { useWindowDimensions } from './useWindowDimensions' +import PanoTagPluginUse from './AreaMakerPluginUse' +import { parseWork } from '@realsee/five' +import useFetchDatas, { DATA_TYPES } from '../utils/useFetchDatas' + +const FiveProvider = createFiveProvider({ + imageOptions: { size: 512 }, // 图片默认分辨率 + textureOptions: { size: 128 }, // 贴图默认分辨率 + onlyRenderIfNeeds: true, + plugins: [[AreaMakerPlugin, 'areaMakerPlugin']], +}) + +const App: React.FC = () => { + const size = useWindowDimensions() + const work = useFetchDatas(DATA_TYPES.WORK) + + return ( + work && ( + +
+ +
+ +
+ ) + ) +} + +export default App diff --git a/src/AreaMakerPlugin/AreaMakerPluginUse.tsx b/src/AreaMakerPlugin/AreaMakerPluginUse.tsx new file mode 100644 index 000000000..123edd833 --- /dev/null +++ b/src/AreaMakerPlugin/AreaMakerPluginUse.tsx @@ -0,0 +1,89 @@ +import { unsafe__useFiveInstance, useFiveState } from '@realsee/five/react' +import { Five, Mode } from '@realsee/five' +import { ContentType } from '@realsee/dnalogel/dist' +import { Paper, BottomNavigation, BottomNavigationAction, ButtonGroup, Button } from '@mui/material' +import { AreaMakerController } from '@realsee/dnalogel/dist/AreaMakerPlugin/typing' +import React from 'react' + +const AreaMakerPluginUse = () => { + const five = unsafe__useFiveInstance() + // const [fiveState, setFiveState] = useFiveState() + const pluginInstance = five.plugins.areaMakerPlugin as AreaMakerController + + React.useEffect(() => { + pluginInstance.appendTo(five.getElement()!.parentElement!) + + pluginInstance.load({ + list: [ + { + id: 1, + name: '有模型', + object_data: { + points: [ + [0, 0, 0], + [1, 0, 1], + [0, 0, 1], + ], + floorIndex: 0, + height: 2, + fixedY: 0, + fixedHeight: 2, + color: '#000000', + }, + }, + { + id: 2, + name: '没有模型', + object_data: { + points: [ + [0, 0, 0], + [-1, 0, -1], + [0, 0, 1], + ], + floorIndex: 0, + height: 2, + fixedY: 0, + fixedHeight: 2, + color: '#000000', + visible: false, + }, + }, + ], + }) + + pluginInstance.itemMap.forEach((item) => { + item.hooks.on('tagShow', () => console.info('tagShow', item.id)) + item.hooks.on('tagHide', () => console.info('tagHide', item.id)) + }) + }, []) + + // React.useEffect(() => {}, [ + // five. + // ]) + + return ( + <> + + { + // setFiveState({ mode: newValue }) + // }} + > + + + + + + + + + + + + + ) +} + +export default AreaMakerPluginUse diff --git a/src/AreaMakerPlugin/index.html b/src/AreaMakerPlugin/index.html new file mode 100644 index 000000000..2c74fa6a5 --- /dev/null +++ b/src/AreaMakerPlugin/index.html @@ -0,0 +1,45 @@ + + + + + + + AreaMakerPlugin + + + + + + +
+ + + diff --git a/src/AreaMakerPlugin/index.tsx b/src/AreaMakerPlugin/index.tsx new file mode 100644 index 000000000..c265ebf2b --- /dev/null +++ b/src/AreaMakerPlugin/index.tsx @@ -0,0 +1,7 @@ +import React from 'react' +import ReactDOM from 'react-dom' +import App from './App' + +ReactDOM.render(, document.querySelector('#app')) + +export {} diff --git a/src/AreaMakerPlugin/useWindowDimensions.ts b/src/AreaMakerPlugin/useWindowDimensions.ts new file mode 100644 index 000000000..2be1e45cd --- /dev/null +++ b/src/AreaMakerPlugin/useWindowDimensions.ts @@ -0,0 +1,23 @@ +import { useState, useEffect } from 'react' + +/** + * 获取当前窗口的尺寸 + */ +function getWindowDimensions() { + return { width: window.innerWidth, height: window.innerHeight } +} + +/** + * React Hook: 获取当前窗口的尺寸 + */ +function useWindowDimensions() { + const [size, setSize] = useState(getWindowDimensions) + useEffect(() => { + const listener = () => setSize(getWindowDimensions()) + window.addEventListener('resize', listener, false) + return () => window.removeEventListener('resize', listener, false) + }) + return size +} + +export { useWindowDimensions } diff --git a/src/CSS3DRenderPlugin/App.tsx b/src/CSS3DRenderPlugin/App.tsx new file mode 100644 index 000000000..cf098ec39 --- /dev/null +++ b/src/CSS3DRenderPlugin/App.tsx @@ -0,0 +1,32 @@ +import { CSS3DRenderPlugin, PanoTagPlugin } from '@realsee/dnalogel/dist' +import { createFiveProvider, FiveCanvas } from '@realsee/five/react' +import * as React from 'react' +import { useWindowDimensions } from './useWindowDimensions' +import { parseWork } from '@realsee/five' +import CSS3DRenderPluginUse from './CSS3DRenderPluginUse' +import useFetchDatas, { DATA_TYPES } from '../utils/useFetchDatas' + +const FiveProvider = createFiveProvider({ + imageOptions: { size: 512 }, // 图片默认分辨率 + textureOptions: { size: 512 }, // 贴图默认分辨率 + plugins: [ + [CSS3DRenderPlugin, 'css3DRenderPlugin'], + [PanoTagPlugin, 'panoTagPlugin'], + ], +}) + +const App: React.FC = () => { + const size = useWindowDimensions() + const work = useFetchDatas(DATA_TYPES.WORK) + + return ( + work && ( + + + + + ) + ) +} + +export default App diff --git a/src/CSS3DRenderPlugin/CSS3DRenderPluginUse.tsx b/src/CSS3DRenderPlugin/CSS3DRenderPluginUse.tsx new file mode 100644 index 000000000..41a676068 --- /dev/null +++ b/src/CSS3DRenderPlugin/CSS3DRenderPluginUse.tsx @@ -0,0 +1,179 @@ +import * as React from 'react' +import * as ReactDOM from 'react-dom' +import './index.css' +import { unsafe__useFiveInstance, useFiveModelReadyState } from '@realsee/five/react' +import { iframePoints, ImageExamplePoints, VideoExamplePoints } from './points' +import { useFivePlugin } from '../utils/hooks/useFivePlugin' +import { CSS3DRenderPlugin } from '@realsee/dnalogel/dist' + +// function ReactExample() { +// const [count, setCount] = React.useState(0) + +// return ( +//
+//

React Components

+//

You clicked {count} times

+// +//
+// ) +// } + +const CSS3DRenderPluginUse: React.FC = () => { + const five = unsafe__useFiveInstance() + const fiveModelReadyState = useFiveModelReadyState() + const css3DRenderPlugin = useFivePlugin('css3DRenderPlugin') + const [visible, setVisible] = React.useState(css3DRenderPlugin.state.visible) + const [catCodingVisible, setCatCodingVisible] = React.useState(true) + const [enable, setEnable] = React.useState(css3DRenderPlugin.state.enabled) + + React.useEffect(() => { + // const fivecanvas = five.getElement() + // if (fivecanvas) fivecanvas.style.position = 'relative' + five.plugins.panoTagPlugin.load({ + tagList: [ + { + dimensionType: '2D', + pointType: 'PointTag', + contentType: 'Text', + position: [-3.3344076411262944, 0.7070410926642972, -2.3397009372711186], + data: { + text: '112123', + }, + }, + ], + }) + const { container, dispose, setVisible } = + css3DRenderPlugin.create3DDomContainer(ImageExamplePoints, { + pointerEvents: 'auto', + // ratio: 0.005, + }) || {} + container && ReactDOM.render(, container) + Object.assign(window, { setCatCodingVisible: setVisible }) + return () => { + dispose?.() + } + }, [five]) + + React.useEffect(() => { + const { container, dispose } = + css3DRenderPlugin.create3DDomContainer(iframePoints, { + pointerEvents: 'auto', + ratio: 0.002, + }) || {} + container && ReactDOM.render(