@remotion/three 3.3.62 → 3.3.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/SuspenseLoader.d.ts +4 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/SuspenseLoader.js +18 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/ThreeCanvas.d.ts +12 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/ThreeCanvas.js +36 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/index.d.ts +2 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/index.js +2 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/use-video-texture.d.ts +9 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/use-video-texture.js +78 -0
- package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/tsconfig-esm.tsbuildinfo +1 -0
- package/dist/cjs/SuspenseLoader.d.ts +4 -0
- package/dist/cjs/SuspenseLoader.js +22 -0
- package/dist/cjs/ThreeCanvas.d.ts +12 -0
- package/dist/cjs/ThreeCanvas.js +40 -0
- package/dist/cjs/index.d.ts +2 -0
- package/dist/cjs/index.js +7 -0
- package/dist/cjs/use-video-texture.d.ts +9 -0
- package/dist/cjs/use-video-texture.js +105 -0
- package/dist/esm/SuspenseLoader.d.ts +4 -0
- package/dist/esm/ThreeCanvas.d.ts +12 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.mjs +131 -0
- package/dist/esm/use-video-texture.d.ts +9 -0
- package/dist/tsconfig-esm.tsbuildinfo +1 -0
- package/package.json +9 -6
- package/rollup.config.js +29 -0
- package/tsconfig-esm.json +13 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Suspense, useLayoutEffect } from 'react';
|
|
3
|
+
import { continueRender, delayRender } from 'remotion';
|
|
4
|
+
const Unblocker = () => {
|
|
5
|
+
if (typeof document !== 'undefined') {
|
|
6
|
+
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
7
|
+
useLayoutEffect(() => {
|
|
8
|
+
const handle = delayRender(`Waiting for <Suspense /> of <ThreeCanvas /> to resolve`);
|
|
9
|
+
return () => {
|
|
10
|
+
continueRender(handle);
|
|
11
|
+
};
|
|
12
|
+
}, []);
|
|
13
|
+
}
|
|
14
|
+
return null;
|
|
15
|
+
};
|
|
16
|
+
export const SuspenseLoader = ({ children }) => {
|
|
17
|
+
return _jsx(Suspense, { fallback: _jsx(Unblocker, {}), children: children });
|
|
18
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Canvas } from '@react-three/fiber';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare type ThreeCanvasProps = React.ComponentProps<typeof Canvas> & {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* @description A wrapper for React Three Fiber's <Canvas /> which synchronizes with Remotions useCurrentFrame().
|
|
10
|
+
* @see [Documentation](https://www.remotion.dev/docs/three-canvas)
|
|
11
|
+
*/
|
|
12
|
+
export declare const ThreeCanvas: (props: ThreeCanvasProps) => JSX.Element;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Canvas, useThree } from '@react-three/fiber';
|
|
3
|
+
import { useCallback, useLayoutEffect, useState } from 'react';
|
|
4
|
+
import { continueRender, delayRender, Internals } from 'remotion';
|
|
5
|
+
import { SuspenseLoader } from './SuspenseLoader';
|
|
6
|
+
const Scale = ({ width, height }) => {
|
|
7
|
+
const { set, setSize: threeSetSize } = useThree();
|
|
8
|
+
const [setSize] = useState(() => threeSetSize);
|
|
9
|
+
useLayoutEffect(() => {
|
|
10
|
+
setSize(width, height);
|
|
11
|
+
set({ setSize: () => null });
|
|
12
|
+
return () => set({ setSize });
|
|
13
|
+
}, [setSize, width, height, set]);
|
|
14
|
+
return null;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @description A wrapper for React Three Fiber's <Canvas /> which synchronizes with Remotions useCurrentFrame().
|
|
18
|
+
* @see [Documentation](https://www.remotion.dev/docs/three-canvas)
|
|
19
|
+
*/
|
|
20
|
+
export const ThreeCanvas = (props) => {
|
|
21
|
+
const { children, width, height, style, onCreated, ...rest } = props;
|
|
22
|
+
const [waitForCreated] = useState(() => delayRender('Waiting for <ThreeCanvas/> to be created'));
|
|
23
|
+
Internals.validateDimension(width, 'width', 'of the <ThreeCanvas /> component');
|
|
24
|
+
Internals.validateDimension(height, 'height', 'of the <ThreeCanvas /> component');
|
|
25
|
+
const contexts = Internals.useRemotionContexts();
|
|
26
|
+
const actualStyle = {
|
|
27
|
+
width: props.width,
|
|
28
|
+
height: props.height,
|
|
29
|
+
...(style !== null && style !== void 0 ? style : {}),
|
|
30
|
+
};
|
|
31
|
+
const remotion_onCreated = useCallback((state) => {
|
|
32
|
+
continueRender(waitForCreated);
|
|
33
|
+
onCreated === null || onCreated === void 0 ? void 0 : onCreated(state);
|
|
34
|
+
}, [onCreated, waitForCreated]);
|
|
35
|
+
return (_jsx(SuspenseLoader, { children: _jsxs(Canvas, { style: actualStyle, ...rest, onCreated: remotion_onCreated, children: [_jsx(Scale, { width: width, height: height }), _jsx(Internals.RemotionContextProvider, { contexts: contexts, children: children })] }) }));
|
|
36
|
+
};
|
package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/use-video-texture.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Video } from 'remotion';
|
|
3
|
+
import type { VideoTexture } from 'three/src/textures/VideoTexture';
|
|
4
|
+
export declare type UseVideoTextureOptions = React.ComponentProps<typeof Video>;
|
|
5
|
+
/**
|
|
6
|
+
* @description Allows you to use a video in React Three Fiber that is synchronized with Remotion's useCurrentFrame().
|
|
7
|
+
* @see [Documentation](https://www.remotion.dev/docs/use-video-texture)
|
|
8
|
+
*/
|
|
9
|
+
export declare const useVideoTexture: (videoRef: React.RefObject<HTMLVideoElement>) => VideoTexture | null;
|
package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/esm/use-video-texture.js
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import React, { useCallback, useState } from 'react';
|
|
2
|
+
import { continueRender, delayRender, useCurrentFrame } from 'remotion';
|
|
3
|
+
let warned = false;
|
|
4
|
+
const warnAboutRequestVideoFrameCallback = () => {
|
|
5
|
+
if (warned) {
|
|
6
|
+
return false;
|
|
7
|
+
}
|
|
8
|
+
warned = true;
|
|
9
|
+
console.warn('Browser does not support requestVideoFrameCallback. Cannot display video.');
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @description Allows you to use a video in React Three Fiber that is synchronized with Remotion's useCurrentFrame().
|
|
13
|
+
* @see [Documentation](https://www.remotion.dev/docs/use-video-texture)
|
|
14
|
+
*/
|
|
15
|
+
export const useVideoTexture = (videoRef) => {
|
|
16
|
+
const [loaded] = useState(() => {
|
|
17
|
+
if (typeof document === 'undefined') {
|
|
18
|
+
return 0;
|
|
19
|
+
}
|
|
20
|
+
return delayRender(`Waiting for texture in useVideoTexture() to be loaded`);
|
|
21
|
+
});
|
|
22
|
+
const [videoTexture, setVideoTexture] = useState(null);
|
|
23
|
+
const [vidText] = useState(() => import('three/src/textures/VideoTexture.js'));
|
|
24
|
+
const [error, setError] = useState(null);
|
|
25
|
+
const frame = useCurrentFrame();
|
|
26
|
+
if (error) {
|
|
27
|
+
throw error;
|
|
28
|
+
}
|
|
29
|
+
const onReady = useCallback(() => {
|
|
30
|
+
vidText
|
|
31
|
+
.then(({ VideoTexture }) => {
|
|
32
|
+
if (!videoRef.current) {
|
|
33
|
+
throw new Error('Video not ready');
|
|
34
|
+
}
|
|
35
|
+
const vt = new VideoTexture(videoRef.current);
|
|
36
|
+
videoRef.current.width = videoRef.current.videoWidth;
|
|
37
|
+
videoRef.current.height = videoRef.current.videoHeight;
|
|
38
|
+
setVideoTexture(vt);
|
|
39
|
+
continueRender(loaded);
|
|
40
|
+
})
|
|
41
|
+
.catch((err) => {
|
|
42
|
+
setError(err);
|
|
43
|
+
});
|
|
44
|
+
}, [loaded, vidText, videoRef]);
|
|
45
|
+
React.useEffect(() => {
|
|
46
|
+
if (!videoRef.current) {
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
if (videoRef.current.readyState >= 2) {
|
|
50
|
+
onReady();
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
videoRef.current.addEventListener('loadeddata', () => {
|
|
54
|
+
onReady();
|
|
55
|
+
}, { once: true });
|
|
56
|
+
}, [loaded, onReady, videoRef]);
|
|
57
|
+
React.useEffect(() => {
|
|
58
|
+
const { current } = videoRef;
|
|
59
|
+
if (!current) {
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
if (!current.requestVideoFrameCallback) {
|
|
63
|
+
warnAboutRequestVideoFrameCallback();
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
const ready = () => {
|
|
67
|
+
// Now force a new render so the latest video frame shows up in the canvas
|
|
68
|
+
// Allow remotion to continue
|
|
69
|
+
};
|
|
70
|
+
current.requestVideoFrameCallback(ready);
|
|
71
|
+
}, [frame, loaded, videoRef]);
|
|
72
|
+
if (typeof HTMLVideoElement === 'undefined' ||
|
|
73
|
+
!HTMLVideoElement.prototype.requestVideoFrameCallback) {
|
|
74
|
+
continueRender(loaded);
|
|
75
|
+
return null;
|
|
76
|
+
}
|
|
77
|
+
return videoTexture;
|
|
78
|
+
};
|
package/.rollup.cache/Users/jonathanburger/remotion/packages/three/dist/tsconfig-esm.tsbuildinfo
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.1/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/jsx-runtime.d.ts","../../core/dist/cjs/asset-types.d.ts","../../core/dist/cjs/folder.d.ts","../../core/dist/cjs/compositionmanager.d.ts","../../core/dist/cjs/get-static-files.d.ts","../../core/dist/cjs/nativelayers.d.ts","../../core/dist/cjs/absolutefill.d.ts","../../core/dist/cjs/volume-prop.d.ts","../../core/dist/cjs/audio/props.d.ts","../../core/dist/cjs/audio/audio.d.ts","../../core/dist/cjs/audio/index.d.ts","../../core/dist/cjs/cancel-render.d.ts","../../core/dist/cjs/composition.d.ts","../../core/dist/cjs/config.d.ts","../../core/dist/cjs/config/input-props.d.ts","../../core/dist/cjs/delay-render.d.ts","../../core/dist/cjs/easing.d.ts","../../core/dist/cjs/freeze.d.ts","../../core/dist/cjs/iframe.d.ts","../../core/dist/cjs/img.d.ts","../../core/dist/cjs/default-css.d.ts","../../core/dist/cjs/get-environment.d.ts","../../core/dist/cjs/timeline-position-state.d.ts","../../core/dist/cjs/truthy.d.ts","../../core/dist/cjs/volume-position-state.d.ts","../../core/dist/cjs/sequencecontext.d.ts","../../core/dist/cjs/nonce.d.ts","../../core/dist/cjs/wrap-remotion-context.d.ts","../../core/dist/cjs/video-config.d.ts","../../core/dist/cjs/internals.d.ts","../../core/dist/cjs/interpolate-colors.d.ts","../../core/dist/cjs/interpolate.d.ts","../../core/dist/cjs/sequence.d.ts","../../core/dist/cjs/loop/index.d.ts","../../core/dist/cjs/prefetch.d.ts","../../core/dist/cjs/random.d.ts","../../core/dist/cjs/register-root.d.ts","../../core/dist/cjs/series/index.d.ts","../../core/dist/cjs/spring/spring-utils.d.ts","../../core/dist/cjs/spring/measure-spring.d.ts","../../core/dist/cjs/spring/index.d.ts","../../core/dist/cjs/static-file.d.ts","../../core/dist/cjs/still.d.ts","../../core/dist/cjs/use-current-frame.d.ts","../../core/dist/cjs/use-video-config.d.ts","../../core/dist/cjs/version.d.ts","../../core/dist/cjs/video/props.d.ts","../../core/dist/cjs/video/offthreadvideo.d.ts","../../core/dist/cjs/video/video.d.ts","../../core/dist/cjs/video/index.d.ts","../../core/dist/cjs/index.d.ts","../src/suspenseloader.tsx","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/constants.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/three.legacy.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/quaternion.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/euler.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/layers.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/scenes/fog.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/vector2.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/interleavedbuffer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/interleavedbufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/triangle.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/box3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/sphere.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/line3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/plane.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/eventdispatcher.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/uniformslib.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/shaderlib.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/texture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/material.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/scenes/scene.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglcapabilities.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglextensions.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglshader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/vector4.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglstate.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglproperties.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webgltextures.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webgluniforms.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglprogram.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglinfo.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglobjects.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/depthtexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglrendertarget.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/lightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/light.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglshadowmap.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/group.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/buffergeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglrenderlists.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglmultiplerendertargets.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webxr/webxr.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webxr/webxrmanager.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/datatexture3d.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/datatexture2darray.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglrenderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/ray.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/raycaster.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/discreteinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/linearinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/cubicinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/keyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/bone.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationclip.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/object3d.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/camera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/spherical.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/cylindrical.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/vector3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/matrix4.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/matrix3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/bufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/color.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/utils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/vectorkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/stringkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/quaternionkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/numberkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/colorkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/booleankeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/propertymixer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/propertybinding.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationobjectgroup.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationaction.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationmixer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audiocontext.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audiolistener.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audio.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/positionalaudio.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audioanalyser.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/perspectivecamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/stereocamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/orthographiccamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/cubetexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglcuberendertarget.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/cubecamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/arraycamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/uniform.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/instancedbuffergeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/instancedinterleavedbuffer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/instancedbufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/glbufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/clock.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/curve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/ellipsecurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/arccurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/catmullromcurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/cubicbeziercurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/cubicbeziercurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/linecurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/linecurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/quadraticbeziercurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/quadraticbeziercurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/splinecurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/curves.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/curvepath.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/path.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/shape.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/shapepath.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/datautils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/imageutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/shapeutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/pmremgenerator.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/boxgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/circlegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/cylindergeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/conegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/polyhedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/dodecahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/edgesgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/extrudegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/icosahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/lathegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/octahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/planegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/ringgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/shapegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/spheregeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/tetrahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/torusgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/torusknotgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/tubegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/wireframegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/geometries.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/line.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/linesegments.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/spotlighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/skeletonhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/pointlightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/pointlight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/pointlighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/hemispherelight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshbasicmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/hemispherelighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/gridhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/polargridhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/directionallightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/directionallight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/directionallighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/camerahelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/boxhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/box3helper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/planehelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/mesh.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/arrowhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/axeshelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/spotlightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/spotlight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/rectarealight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/ambientlight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/sphericalharmonics3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/lightprobe.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/ambientlightprobe.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/hemispherelightprobe.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/loader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/loadingmanager.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/animationloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/compressedtexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/compressedtextureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/datatexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/datatextureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/cubetextureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/textureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/objectloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/materialloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/buffergeometryloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/imageloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/imagebitmaploader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/fileloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/loaderutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/cache.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/audioloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/shadowmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/spritematerial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/shadermaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/rawshadermaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/pointsmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshstandardmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshphysicalmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshphongmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshtoonmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshnormalmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshlambertmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshdepthmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshdistancematerial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshmatcapmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/linebasicmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/linedashedmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/materials.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/quaternionlinearinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/sprite.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/frustum.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/box2.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/mathutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/lod.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/instancedmesh.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/skeleton.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/skinnedmesh.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/lineloop.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/points.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglmultisamplerendertarget.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl1renderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/uniformsutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/shaderchunk.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglbufferrenderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglclipping.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglcubeuvmaps.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglattributes.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglgeometries.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglindexedbufferrenderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webgllights.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglcubemaps.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglbindingstates.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglprograms.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webxr/webxrcontroller.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/scenes/fogexp2.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/videotexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/canvastexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/three.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/index.d.ts","../../../node_modules/.pnpm/zustand@3.7.2_react@18.0.0/node_modules/zustand/vanilla.d.ts","../../../node_modules/.pnpm/zustand@3.7.2_react@18.0.0/node_modules/zustand/react.d.ts","../../../node_modules/.pnpm/zustand@3.7.2_react@18.0.0/node_modules/zustand/index.d.ts","../../../node_modules/.pnpm/@types+react-reconciler@0.26.7/node_modules/@types/react-reconciler/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/renderer.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/utils.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/store.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/events.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/three-types.d.ts","../../../node_modules/.pnpm/react-use-measure@2.1.1_zpnidt7m3osuk7shl3s4oenomq/node_modules/react-use-measure/types/index.d.ts","../../../node_modules/.pnpm/@types+react-reconciler@0.26.4/node_modules/@types/react-reconciler/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/loop.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/examples/jsm/loaders/dracoloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/examples/jsm/loaders/ktx2loader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/examples/jsm/loaders/gltfloader.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/hooks.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/web/canvas.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/web/events.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/react-three-fiber.cjs.d.ts","../src/threecanvas.tsx","../src/use-video-texture.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+web@0.0.78/node_modules/@types/web/iterable.d.ts","../../../node_modules/.pnpm/@types+web@0.0.78/node_modules/@types/web/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.9/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","117554f1f5046af1916d12ee4302f90855dea0440fb3d757c78fc6bd3c69d76e","472e6ef9d93f7259bd69e48235b29d65bef154ff88e1977028cb96736d2ee2be","1ef3ed3abe134dc67b9795f650be32383df3fe4498ed28b13f341767c0f9d028","59cdc2e038bdd8737bafdc581293bb2b8828653e35bbf5d26145ca7f2a2f8fa5","8676190846039cb3cd9f24894b1248ff608e2a8eae976e706194cb9e86abd766","641db1293684775c1c0c954d93f34821804ad69f97eb60a35b2b719cf6debbe1","c94bc6b926d0a5f4d38715489291d2198ea1710ffdc74069f4a82240024e435f","a6ab353e5a7c57cfadf60f0468127a870ddf3def9e58609c3dc099cdaf8c2684","77a28b4142b61db765c8ee13a3eab667f4beefd9a8bac0e82241f3b0bbcc4f60","736eea59824b87cc7afe7157a53e720956f900ac4f5f01b54047ed927af8fec7","9ec6e0bc0c492b9107c49baf1e78769540ea2a3c593f8631a9437a582af57f39","3c8c7dfcea92e3b32501cd4a9e81e638be4a86069fbfb53442486fe02894898c",{"version":"b5c0fbcdc9a6c34211ba20d695e8574ba4926742c6d38df7aa75358f2b31066e","affectsGlobalScope":true},"6921e7365ce247409e7785df10ec38f37a0e101307764866b572019cbf3ac99f","923ad6daeef6cd47a9d121f9a410f990619dd7e3250dd999ed163ed2d539709c","93dd4f7113bcc5ef507ddf75163ef1885317e4871e677a173166922f354603ff","7683d4e56b714769b707a1dc361a0b09dcece340f0a001a3c550d7756c57046d","ab5a2d8d47f269d1c94993d31fcbbc5a32dda80b263dc6f6fd8d30d7c4deec0b","612cf6b50fb86e9df7574ac3b95060d6b35d8db8bb8f7196457297a5e7ca364e","bde4bb646eba9524dede275e59d032494af2e889b5e2c05bdb37af3961ec5434","37976a829fdd39e2b927e5f3a2ff39a307ed9364820b9a1d5cb1f361597bd6ba","ee83bd3792e0449a8fe92318d015775ac23c04350efc2190e46e922ebaa513be","a4e075b09839f3741a4be9fc1b8b006bafe9929009b905f2f96e57087761a580","9c361f6137478031e15cc76889c41812f1d574fb288c1c4eb9a6a44ac4ec1d35","61df201e7c60933851ec13e57d894a710f107a2e45b52e9db1d49407671e4efb","11fff246cdd97e84faef2a7ffb7e77d4dad65fc31bb8878a1b97f47df2e33077","12ea565b4c39de671020acbe794bc8177e928a5e7987636fe0ebe07bb87ed2e9","f4a5ff88403b713c6b9201057805369ad08338ae9a6e5f6dd595e808a76c1824","0333dfa0216b1d3ab12de6e12799f35b6c0970c5b525b331336dfd5035325c44","afec1e7f59fcd84dcee0aa2f84009b08310b1b4679f75066dacb637c078a2552","cf81fec1540c0841da1fe7b4badfe5ca4b2a862620e13298efdae96cdeb0e541","d970db698b79bde67856d7fd39b3c566b6f4641866b35cb7b8fa2096261cf22c","6e23930ae513b9b2abe2862e2dca3bfc1746c4df43f5543d6ca63ba537d73b2b","8c9e13867a5d6f68c9c84634ca5c81cf00d0a97d3108c088cda459f66aa189ca","09a2b384117c27deb313d43628110586c3eccc247572507b312482405e96aa34","27f3902bb2aa0d593f94e4d954253b009e4d025ad888090ca42bef6eeb6f7786","5fdd1589e18dff1225e612ca574fbf16a20a96076b8d0c923086c226bc3dcc19","c65e41ba6509368dac938de889898fb8fb24c52198de7194e2021ce850966e9f","cfd14e9d6ed98d28ea83a80e5bcac0b5a4b095b215b9447999392b2f9ce5ccac","ff45c89d0397b00161151eab5f1cdaff9b50a7317ecdb816380fe9071c30b5ec","1a0968366374f3700f0d30e22453dee83733f8987f5fc207e84e63f413ec85ee","596db561b3d3629271a42352bac745e9903f1a225041ca17215a8dc107811dfb","8761f74baf198ac04b6adb9e313df91b814046d31cec231c0fcede87417e24ff","bebe9f83f9f67515b46698c69b2120fe46a6763ba63445d6448e4e2273a5f9ec","ed8fcca1029c601e8480fe613d9147c12371cb5d9363e5bea1e395387d42054e","b5b145b992ff8520cc6e516d0a28d41b647868d9330c33b6146a36b36f5b3080","a964ea970369ac113b4d63520545056e4d2633e73a9520ac76666efdb8479b8d","5a16c4cbe7d2d309f990bfd63637cca7a4335f4f236ff037dcdd28ba1beaa8a3","8ee1752b81302b943ea4ad0a5c65c0de1b700f5f16b739b667edb2687111feb0",{"version":"b8a1e0b12c414d452378e2853726157d819c28f2f7b7ebbed69a6dcd1dac6a5e","affectsGlobalScope":true},"65a6e61090b2a13a6704dbabb62d4df6e5be76b8831fdc9b1f39686287c07712","c753d9f4b5de5146ff13ec6b62e8fadb08643b1eccdc26fa723263765fe93dfd","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a0503bd98814760190666ca0ceabeda1436066d93784da923375b51181fc6d24","d12f5fb934377314a0e5dbf6cb65c1be5ab6178ca5fbfc8546c50d3eee458647","51d508d4ff9616032a769e6048f2ada3e54a729c251e5dcff834ee9e0c2b828a","5273a936870e6f0a324df8e1d9b80190265fd3c9e7a6c1c889817ae9c60fa909","c660f4adf75a5c4725a46f7f73ba9a19c24d5b67101d7e282398ed483f3590c1","c688c76a19a30efa6f73cc6c133caf2cf8f9568120ff6f1b314e1fad98528681","8314c95ca15641f2a2c25704752dc2d9fc10f533986b312dcbf1f8fe544f939d","1384aadb7b4b5479a690236ac96e93098a45401c1ced6e3fdf0f2d27639e4573","6d2a46050aaf02cf513f501e7df478b031018461c2fe85c91233e2b54ae366d8","8e9c191443e616c30bd47669cc59e4946b5fc23ff03c42c4578a48396688d526","0d040d689a5b08f47143fae77e8447caead3fc54c18b0213d99679e7f304e660","d5dd35a3ab9b497d3932fb0b6f40d5c1c063ba1579ff53b9a6ed4199a3bcb0b9","89005628a158578cfb8bc873c4bb6dbfc08e3b2c0fdab46ee7e5d9703cb8528e","8868268b7cb5bfb508e3844fc129cbdde23e24fae35024fca6798653a3eed289","166c027b2bfc241c7540aaf3832fdee69018185a3f8a5c8e52baba6fdbcfbd20","c5ea5901bbd92a63fe12ced6766cef417369795fe2ec478ab92d5f3049f20883","ae4d8079cea9398d4e2dfcdf548e0c4dcc41dff3fd972be13e5cf894d8a3b7ba","6930fdbc3cfdab7d0afc49022405717674ea095c77d045219d213bbd82c3b570","60c34643c5d1be4050f79a4e589bfa7e46792440efad2a3c49cfda8a72135308","fc3596b10eb99c07fccec7b04b9404d36bea341b9f486173aff1e234aceaccff","b71e7f69e72d51d44ad171e6e93aedc2c33c339dab5fa2656e7b1ee5ba19b2ad","030b5aba86fdbc5d46ffb2c024d7764791848520332a03b662dd26962e1125ad","3755d34ddf0835f31833c825aaf3c996d22d96dfc6db6d04b55e8c29213bac0a","281eb8e4ddd65b6733cf1f175dd1af1bb2595bbcea7c12324f028079ba78fdf9","54d68fee094e2ec6d34c4b7d89ba849ff87a2030fb8e907b0c4ad252009d40cf","e0fdf687219271c3031ae25cd8d3e9fe7c16ce46453ce775292887f486c2aa16","f17592fc258a847bb7d38ab25799eabce4865f24fcb441cc69a6a6277a48e6a7","512d2b3f264aac071278060d3e4f019508b8a504283708a0fc503198f244c363","5f477e9897e29f47b860b52218d645178362d3ebd17c990df9f36b0c52d0e6ff","0df7497ada3a4f6459420803ecf7e555f1ad1e7bd43c1e17bdafbc34e19d7162","367bba45eb437cea29f41c3a382c292c6fe6cdb7b26a389ee5d3a5eea5d75040","16ae8a0bdbb8d72fc63437587e08d0eee84ec1c165a7ea12e7d7e6f6457b7a63","1e23aa4e949aef6f654fb097b41ce07dedef1090a6bca21e9aefd985bda68653","1e4d12496a28dfeafbe1e5debbfe5e146df5a39e581a0ee2344a435c941458dd","10757352393ef1239b2efb42b41aa940ff67d9a40409958e9b9d3a9c7a524a64","2923047a1c951231f48fe77a6c2fffba8198c20dd05d4ec1b90f9e45f129adea","74952846d3e9b6c9ddaa3003f962a5b83f55f58f3b55525a962087fafab7f6c7","d0cb43e1b996459c97f19bd66cebb8cc603ce427d736ff7fcb7e729067834f50","d78cadcff2b7eee1aecf1fda437d844617e64507e640f47ea729c80aef632fe8","9e22a3941d4e9ff901b1e3efa2f18efb5cced7f1248c2af03a511d59dd1f37e2","1e0477cba50bdeed193409008aea9e008380d7ceb9c41e4bcac9281248875570","432fe3b8769c1e1090be43baff32bccfb436c1fce8d470a45fef5a8016dbaab1","ed0e3159c03180a7ae7fe891f12b386eb311a9440a3a97e546c4d57039e43162","4fd1de9625188f3e7b2933c700c44b2bf01ced07a3daeceabbd5014561b64148","b4ec3dcc11e8a52b81878d7aa998218182c36e3222e6c55177172880434823e3","83c36ab1f5c06db3c480cb1cc68c1caaa25b3b14a49dcae7cdaf17482e4f6dcb","4ba733d1a5ff0a0779b714468b13c9089f0d877e6fbd0147fac7c3af54c89fe0","a39e9304639454356f4a1fe20741899de0c3163e1f040d0e0acfdc8532f779e3","3bf8a15acc2dbde99020f0ebe9d16ceba9e6220e41e034003fc8f835b47642af","eae4d78e9a2660a6af2a638ac809a81d2bba1b90ec36620b2035a65cf296646b","1e21eb1938604e43aea31c89888967c7c39774d26074057ac87582208b349adc","f677a74b2b038509ea5aef4030fadc0e090cc9fd4dca4c71147934e6697c23b0","78b1daa0a8aa1f54530c110600cdcadf70c1238c0d71fd7208c1bd5b31b77db1","6e767f67b713d0507a4c5c450cee1d3b27ce1b523d5e6ade7d225da613e0318a","3470118b64b6e9ea140a7be15b04f8e39d9b17869182a177fd12be31b524c383","f4cadee14617809fe2c126a40aae853ca83700eaac4711bcde7e8b87fa349d76","63162eaa0e0e77c318006455f7053f006a974ee71206a51efd669fd762b4349c","4bba3ad827ca0b92f7573673ec06ba1af0b741391ee1478268c0287006b25b03","418728880845307b1f5ce97a2f2f20e3d9f116886dfbed928b047377c661fe55","18076eca74d509e15742ef6733a1c96689485664c1a3e771d0d705fbe560007b","aa090f388d526153627ee51507c40e659a6fb9d7c669b57db95314bf429076b0","6a6bea61fbd65654e92ee68eb084d26300f7eb194bac5dcb7c3721611ec6fd8d","f8fd4518f157df6d897a336595dac0833595b4e97bdd4cc380cddfc856d51642","b688ddf5ad2d24f3fa58efd84f9ac9e3e1455031d8881dd917d72432a951e9e8","8cc83bf53997f80f7ddf98c0b70d4c625c3cd5b93ae2efe2fc0084a26d997a7a","71eb65c9011c56ea56932a87d9d171cf225f29c3aa601cffdd5818ebd0e16bd7","164f1c5c8ad203e80b827350fe3ca1c59c8106c8613e20a3ec4ea9e63dd2e730","a228ab0a7976c724d6135bbc153016418e3b8560a44101999192c5204fd31dfd","7a921991afa2ab5da7c9d94d6ee81de34724f82520fb3fabbe6eeaa29a7b5661","4c136da3b1dce49c12eac152699c6b4bc64fa93d6c7224a43c816f7e51b00930","bfac6d6a4817bf56d574b1f32b174f655e05ce45c5ddf6d17c9b592660f10935","bc7d1326a9187df243a5af0eddbc3095dc3442ffcc153c23e3974553e11b7972","0e6b3c7f300f6e2587c62783ebf78c74e61e7e85d37591e1e1ecf82cc15adc01","139ab16e09553addf17cfb7122108eb39cd406b8009692c4d1d9e3dea96ef83d","69f3d18ee459096c5e1426df332673a939b56b8bafeeec0b31b3cab1a9e4dadd","192ad3de0ae2044e97d375c601ef54149382bcf59a9eec35066465a73c434c0a","a99712388b38c17ca788b4b93cee993cc487ba69e18d98dba66000031e90c378","c8ac2f17b13f98787daf66f81b0f215e296c7f2acf5b0b43463d685700059653","e1b5820a2298308c97ac20096c391a4a064c02819ea897a20ea3f08f15051035","9d948541e42e0af1cf6e33967c13bdb3193d6507c4ff2bfde6849fe4ee15366c","a37385e604ee8726100c207afa819823079a766c30f5c38a242a9368d8c28e45","ab8c6e4a2b49a17c71848a8c7d14aa7fae2a2620c734922d8d004d59baf59ffb","c53f1e0dcd4a2c1c3e86c83345fd078ff75425ffb78654306b0f58521dc30f50","21b08a722f729d8d95892465be0977a8563dcf630b38d87886517ce6f027389c","80639ea4472a40009209e18013d543954e3e2379c712b571101ac2e8c5da0fcb","1fc98030aad398bba258e0fd2d5d6e39ab085c5d22257fbcd8181e0c2621489f","c60124cf00efc8b113c643d222cc146d15d5ea184c04df3cce9ce8652e42a6fc","7bf91a5d5e38618029b7d1703db7c0219f9eda3024fd816360d2ae791e89d1b3","0f4e57b76239328d40d68e9c6271b4f17a19970bdbff18d90e08031b04efc19d","bd683b2b79122ede787c445f2a35505d9dc60cdd3c2ed08cc05d1140c6807241","361ec213e909dea3b00f0aa91e1f1ccafe04eaae327a45bf33fe3c3a9a28d13d","6a60665f3bf35c7be844746ab2f796bb4076118559a7c660cf95fe01163bc79f","6e322a837838dbaad00bd298c6f33f5dfc9a5fed6792b0ae1d00b2da68afc2ac","bd307a41d5962bb877f46e5447db73aead39ca6e87ec7fb9c29368a78731cd32","0f638672b9749835cda995e8eea6ffd2c17c505eb5b51cd263686b1abb5af9ea","105d7842497ad972a7f358d57aa0f95f722d67ce8fb0efc7d93247be6e7b025d","beb69bf7a052aa881fc18d7f7ccd47918719c1ba9ea2c92304bca4266a95df6e","1f0a034bc92b2b6bf1579253aa20a4983b2170cebdad9ff1e13718c5b58aadbc","07d41369f44f66a60cdd99267d7fd3b4c195d8fb9576a7a326b439bf3cc7b11a","8eb1f35d3bd99cfb4a61c87f756ae9389709e3cfdc0c4a54589b2e37c814b5a5","8027a5c97cc51405a3382c6b59d9690fd4ad8166dbb43e7976e62efc4a49fdce","d6fc38421f16d0a68a6d782a94f567464c1c441fc14949441a140b87a29d7ddd","9e9e3b18823c2179e426b11a6945f6586450d9db21e9eea0eb60491d018fa62b","d7a12dd03519d05cf43d70990cff5caf033f9b283aac0706e11519ddebf4e945","4998cbff67e76f385d9955674a9f2ac385926e807ed371ed357ccb6f03a4d72e","882c2025c42189f3f88ad3e72060ce9022c6d44f22fc066f1944c166dc04be01","1c548e5976ee7f2a3c46b88c09db5d1e7d95d464eff7536cb26515eb62b68694","a1e35cae2fcc3e93644f0c69984e138e84b3732961a3b9e91225d612946b4d4d","848c83b9294d41fc9fd8eb360b5a28563cc24f3e8f045f169b5cf1a7201a551a","08f77f39ef225aadaa1351d0ae1c4ca7a1d1886b1425c7cb63ef910885582c69","b29f216a35d3fd0688b305d31f483781b27c64a40cf76816020a1dcda4816fe5","9fe3723a3f5f2daa1317099c833ddf6e9859c3298fdc0edb4e06b463f9805761","09f59f210312b40890556fb204cc7822a41b918bdb90ba2618a932ab4af715da","371ddc98c5d6b8e553cf188d0b4037e773f4e1c5838dc0d68d23a3a8e376f312","a4ef836229dea41c44c1263d9abcf8b5d671969db90b3c6bb791094dc39a9a53","78f98988f34eef18c7b8e6853a3f5a4cf6247ae21832467932fbcc09a1287cab","1bdf5b5d4a633c4f5f246f81935cbce1cf5e5d8d9803b51fce46e1bd77cd892e","978f06f93739191b46c5b2d4e04be2c11bc22dfe6eb030deb12b0b0c39815729","62141f6672ab5a102d856e071fe459b2d83c973e150b842e9c1921965546d00b","fd4052ed9390d80ff9010fef9801e2635a65130e21ecd5fed1955df3d1b7f2b4","9d9dc517c138ae88e9a5d51b87f5bc5a16131746ec95ed3a5b0f84009e64da4c","1ea27fff2ec857fa8a4dace7d210563a6c1f6b137fef3ec9455b4075124f35f9","4e8d8b63d319990a4ad7d5517e63a6cbcd773306e2fc7df46622d9bc9fd83b69","49d91fb60620bc8b3be5c1907cfc9a4811af9059b9e431941ca3b9a27309a185","f359dfb36d9ff7a94275b957a1c44709260497699a91bdfe1a5d2fd027a57b29","477f83ae5ac7bbc5e9bbf9981eaf7e720bb5a4f81d71427a9599f77a98889b64","06a6cf05c5d3724580e0800cae14f63f7c47865ad46e0160195eadd8d6d66eb9","c78a500c32fa34be839024265a785c8172a655e270bd726f596716400ccb6191","b7fc8c07ca728c94149ce0e5ee64c21100aca7be97cc53917eb5b8b18976bd59","88b73800dc18e1470090faaf16765668ae154f87788da73214713a05980f68e6","5afeb741b747e4ca22dbcfd57b569c68eb7012c628841ef194eda42ba5b408ab","a14ea1f18d4eaa96304da4f985ae6b7df60268057601c95609ede9ff9fafb905","841a5f4d214aacf90c4e24733ae833d73bda64e2f59a855719e127829e985f6e","09aae1dcce8147ec93604c2b0c08efa3d4604f49401cb7c3da22d461b341a734","5265463dd08020db16b1763ce461004ba99f7d90288ce9444b765cd5060a51bf","3d55311307c15709ca243752aa8a7975fabd92dcc05e6121b2d48ad3213d39f1","b5c5844591132b944b7e5ab87bd288637ecacb23d945637de4ddc9344f25a20d","5e739c6cdb908e7546e5da530ba079166632e69cddd942736660e570acb92479","8f7482100023e5397eb7c1d8fd2595c929727ff423ea1f0b904cebdd37051bc7","7610fe0373d65bcc33f21d57eeba77551e8ce06a8a6abf7576298c69425f81a6","0313fbd97cac12034f11dea9fe85423e240c36ad36d646b00c5d4bbe57f33d7b","ff3765ee3b28da17a4537c891a04883e9f48bb5634f131f5860a85c8ec6dfd75","05c84e8c5123994a210f56d11a4cb9e623f6ad1897c1728c22e4f42f7dd1bf33","dfdc40f6fb796f1bf2f6e2336d711542fd7f3babe1da9d0acb5567e529fb4ab6","ba60980f49610f5e93009be094d68bc20f63568b1aa0c1d08151466390c0c203","9118804631fdd772a2164f6d7f94f290950b317aa4b81a543a9bcb1c9a01aa0a","37bfbfbec5d900c379b7dc65bf3ad2a9a0312fad4c91778ae3c73590d2d37b6b","00ada18d868f7ef9a1081f0e6645bcf753869e1d999b51ce0322238a4c67998d","747199468ebdc82eb604ad75091390d5a1312bfc6e4a2411aa2e69a01b9b6062","0ba73f979f6f0846573338b7391911f80115004c5bed0e2e01b5d83064fbc06f","9b8829ef6f4c70d21e9a9f4653b1b69bc122b482aeccb6e1f7344bbe226837b2","afd5b50a4d20db25e060396161acdf718fffa3b73a85fb3ec75f2607cfed03c6","752e7f35c0b26df44e99a773ca1f37195dacce8847394a28fb29fc2984d98bda","d3eb2f8d171b641149c42a27d8d9d046ddfcd7d80ecc13aabf745eb77aec83ea","cd5588e6cb3863212109cb8f531b5715b23818491a1f7cce7633fc25db67d855","8c14b1e1ad4ddf5e8145459bc11ffdc84a35bad032d0671d67f4e62f9fcb6848","9fa45eaaf2626085d031569a52f54714405cec7b6bacb041f28fe7adfd247a05","56e3c947d17551543a81da36538d51efe75cc56a8576f89bbbdba62934b0b3b1","a790d356ff04c04e692adeb8c560bc16461afff7fff70864df967e57629a23e6","5d729de8b0b70bb4a4f0de2c263f42a3fc9612234665cb5d4f147e82e4ff7419","8350938747a211bf7666131edf2bcf38b464c048aff5a3b64e119fb9b900280c","25987a832e6a9303585accbe47950a9880445f1da53144094f6fc1090335392f","cceaa2d33e02d167889ed2484bd540d08792a8dc695e2352f1ea32b061d9d8b9","55a3a1e1a6b1d91c3a233e3e1eaee28db13e3fc917941f3f5022f28469480cad","a70bf51744ec939a5c87a636c383e0118d3b9332b9863b2c1df158194e1680a6","e52ad7566b687e35a98b4a202e3ee380ecfd5babfec74f79519a52d70211260e","24551b8482b56cba01f5a76871010c9898f87ef22c066b654bc79d6851fb65d8","e1b7d8ebc348369c2636d0548fcb95772a41f13669a92484998636d5c6f6f84c","0c39a6721f4481d28125672874d12f869db7beeb63efa5ea207a894a06b01990","fbd6c3eca05525d6dd186a7b1c6e52d8dd5ffba961478a5bf3a2d17c1209fb2f","fbf180777acc17ed6f59f0fd1639745c64dedecb2ca7886214999c0535ff02da","473a574ee3ffd1ab73bf001acb92d443c50c7ce58854c08c78ae89522f3b2af1","28cf4b88597d75f21d50d3e89cc60914ef1100ca7647c0bca0d44d0e04a83fdc","b93c28cb909567706ed85fcead09cd9ec116a9951727e9560a908b8e92c31ebe","3e0528d53eb3f2386d770412b4dcdd508ea8db6d7a32fac07b27e857b200c6bc","7efce11f987fd2d555babdcbbf505520c31671ad4ac08b298bc237f62ddd6941","5d96064fd7419a9faf2ec2118c273a6245d4933ff18774b39237e3a130ba0ea0","94755c3ecfcf813ef35c06e17b0494cea726eff490be46ec7f10b343cd6d6c66","59bf56dbda4409f8e87676340c5bfb65cf674442e611a680f9f461c8898c46dd","fe605c9e09b87c3032c78e3728f1b06f3402c3377dadde55aa2a31b325c5a977","57f2d9377264cf90b169ba4bbbcee8135d1350d8523d60a41d5523cf8456f226","8d2a53c59c82a8fac953afd36ca75783f60dcc5dec4740f1a00e8986f1119634","9fbae82aa0cef1eb7c06998fafcaaf8b7b049c1fb95db6e9bed4ae0138617a17","a708f4132704cfb8b845d32c02cd098651a52a1d63881e31dd62c6cbb030f1ba","814e5e8981fd7045432c56c64277119870f6e38086b25ca288b4cb7e91281c47","1b905f84eb4131fdbbaa1df421065c1eabca4eb7c0836a52e3975b9f1a57ca3c","2946da37f4281a3ae5953029d73da48da996766b7bd4fffa79e075c3d417e42c","6fc46a5d53ec8adf91eab29757341dafa54f9501c82289215f36a5bd43c6931c","90a06a0b0c7769bfc5675c4c20b337326387b609ef9dd578fabd44f277edb0b3","13152f53e825223b643376711dc4ddbf3fc02d0f2f1ded4e78ff3abe860f563f","81404cf1eb59c372d341a4e4e9ccadaf97cd3fe7e8ff0d46e428d4dc4470bd5e","7ff73f6c8e866cf4d94c06eda365b1e24185a070f66d8d14191ae8a53943d1d9","fa7641ba6b65ee5cc712bb8e79d55aefabc3d9f77595370fde1b344b56798293","fbae464f654de7497f07a70e88429222c0b6a5fcc785f54809b6774ecba8f88b","fe0e99fc2ff678d100b516eef3c5989c5cc49ecac82569630944f6b561e7599e","0312f4bdc9c7ac185ae0fefc98a77d86121aaecb95ad620adec260ebb813af73","d90f57351d3732b66e3245e3e38c3327396a25a9d638c81313307110d99b5cdc","d7065c2df449f17ae78a3a7382deac2e388ada6bc0428c5747a4a80d0718e283","355d745d283e4f89bd785542bdba50ae1ab31ca5fa9618f2e221fbe12b9933cc","384fddf003645c4e2212b1a9cf7709ac125dc572e0fec9c9378a2bf9ba6369d3","bbcd46158e4cc0eccc0043c93b22cdc522148ab501cb09c90e96820f8d87d9ee","6d72d622f589ff41ab26a4cb2adcd01fcb3d271c26b2985ec29c17bcafc82649","6c703676e52e268bd57f00eb52f4ea47a8490b103ede7db6259a83e73cfbbc1b","c6b0ce58e6fd87a883d690422cbd04b16346cf268acbffc434df6c3f88716c65","ef64d9a231218149fd0ca3a1ef5c27332ec1048288f7703e12d1ae69efb2d941","72bca262d6021aecd6ce0e5f1c8f7cefd78deb83bbc9c7363ccdbe1cd2af5b11","a8044bef7f524d3a03f0666eb260818025177c1cbc6ed6c17c0c1639b7892a04","c9034cec3d059fd9345ab9b5f9c35ce88e1293b6cd0e7449422d91faf5a2bd2a","46f7c04e8a6fc8476293af851ad39f5dd275aad4a8ada115dc7831fd2a86644b","aaff0d72aa207f1558cbfb1a4748c5a5a9a7e0257abadc338cab6a019eb3c0c8","a1325c800e29589d0931806b33b36eb23d44b735138734d0e7280d524e814a10","6f887e3afb0de4b6a4e79fb8512910736c1cb43909dabded07521a98fb3ab493","1e23c65f00a3bbb5a94f4a344e7d16762fcc7a9abaf7be7600a8cd38f22531d8","b428ef19e21c3a1895fef811262cc7ae0bde0274e77fe0426663c27ce86a1946","6996398eb3a1f3ee5bc2540f38f716ab941c9ad70fbdfc5a7d7eea87ba6c3cab","85a60dc56301151a1290f2935618f1c10642db39c9385d85bb56580f0481bdb3","a57dd6772ffab02f233287ba6a8f769e35906316605e82ed4f023f409319f2c8","a26ac33854e8d27ef4253f517861b287eb5e7f7c3eb53b3f8a06e28b0e3cfa23","c0052b367c598946d934581c9156f5bf06846a543bd8f1a419fbbedf0c49db5d","2360668f67c85a1ea07864282b797189555b9b9928be94685773ed8381302588","59fc39062aec81b871c29e9f246333d14d0c60ce3d5e3a01b3eb6336f69b6473","ccc6589b9029f32ed53b59cbe7bc71ce795ce0006a93b7cb2427f573856c74e9","821d22def6acf0fb49cdb3e0912881f47c5039f8dd730db1113bef321b9bb4ff","6c5c5605ae801d8af7781b57643e379106763ba7c30d7535e42f65e5ed957b58","31ac52f37d77ba63441903136b65f863071d22fa41ce8ca3bd12fdaa8fbae4b2","408d7457ea4c677bac1a16b0266eba485959ebd5bb49cbc2653d3dbeb0ac38a4","cf11f4e19b500ba6f488bdb61a1810c23e15d7bdb994e821d405470158ada1cf","9736f4d069b690ae03aab866b7d899230edb963c3291db0290373bf6891ed2f8","3b39e23a40117d502c5991e42ef8ce547e468dc3356d85770e9509ae894f1704","61eb525f298d2be157e9f77ffee5a428714f466518aec7dd531a69ab40b7e80d","903345b5fc1e6010f8c03e36619e33f9e0d3a6787779aeb7687454d2a6c3ef6d","e320742c95e2e0284d2ccbff0a2f2792a8f542cfb0a463c4e0a69b2cd3680625","bec45e0777e88662fdbb5e8ef48f3fd1a474768075abe838b184973025c94244","097ddb99d443f0fafd23af7a3ce196ba07cb879ec64de8600fd528626bd24b10","016e0883e583bf129fdd83bddd728b78ee48b719f9ff0b62e3cd88d71daf5fc0","cc068f1f61f62be88d869a9b6c00b53447b033eb0185829804bea1c1f4ffcc4f","70bd913b62083ef5ac69e9ba9852385febaf5915c92d4f50a8371aa26f4346bb","0f271a79b718e34af77deebdf48fb60428e1de7cd5b735e623abc03788d91791",{"version":"03bb626e7b50d622426b7a0754eb4d3af31f9df1aac2d28c2ef533d9e523ece1","affectsGlobalScope":true},"4454ad1362637a1e0a36b6bc4ba460ca89dbabc0769c2bc5204a6ec0c08523d9","a3e1fc008abda72e8acecb706f19c77129589e55ad67f6ce85333c5b62656bc8","9138a234f0be31929672b9feb4d02c4e2b80967ff015b3fd5e97fbbd37f82434","b4a4b2e87686501d36ffcfa76c5e09f2e021a1c94e6f0cbe33ba83bf24983d05","532e8cc605501c772ab97a88240d874977c9d375770f0fbf310b31cdb1c57b15","f36c89f8a3714bdcf18fab979a866266f3bb74f428da85604f84cd7d830db956","0563d9bd22da47ba73effd9c9fbd14ee2e9424e0a6dc50f959eebb7b4d91cc7d","6f5720343e9dd5acdb8012814c9030a1bfa869c6ff2c9bfc1ff028307895f6cc","3f6aaca8e063b6e5bb1a57d18e3196a01c957337f6e9950ede5a317cf72a1bb5","eac877fde1f64a20fc53b50a25feb3ab21325617f75971150345a4dfc08e683f","c3e6b4104d102f5d467cfebf71cfd9993894055d59e9a090836642dc02a3984e","b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de","bfaf6200a345300e39c96bb069930403ea60a415fb17990c43ffe9f350413527","9f8c51d9817a3de3bdda6889d63e08e2dcbc1b2b2c0b9d95bfd6b85421802f35","a5cdec5f6ef536346b8495e2607b4d34371532d7993c26ca095e80b1c4e963b8","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"dc5f6951bbf5b544349cbdef895c08dee6929818abd27d7d53c38cf1209091b3","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","7674b65ac0a3b160232d84464b3486d727415581e5b99ff4aec324500adc98a4","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"e0b57467c219609094799676d14077c40e6529c82c6882ea4bd3c29d67d3f56e",{"version":"7f0c3157466019ef6c06f403411f4f9d2efa3370e0e1c0be137fb90966495fe9","affectsGlobalScope":true},{"version":"25c417746f6bec6367e0ed91c462036be251406c75becbbc08c75346f0dd7141","affectsGlobalScope":true},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6"],"options":{"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":99,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":5},"fileIdsList":[[323,326,330],[39,323,326,328,329,330,338],[39,323,326,327,328,329,330,331,332,334,335,339],[323,328,330],[323,326,327,329,330,331],[39,323,326,329,331],[39,323,328,330],[328,329,330,331,332,340,341,342],[39,323,328,331],[39,333,340],[326,330,331],[343],[397,398],[394,395,396,397],[398],[360,361,368,377],[352,360,368],[384],[356,361,369],[377],[358,360,368],[360],[360,362,377,383],[361],[368,377,383],[360,361,363,368,377,380,383],[363,377,380,383],[348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390],[383],[358,360,377],[350],[382],[375,384,386],[368],[374],[360,362,377,383,386],[39],[35,36,37,38],[322],[322,336,337],[92,146,147,168],[92,144,145,151],[92,106,146,147,166,167],[146],[92,141,142,143],[144],[92,144],[147,169,170],[171],[147,169],[170,171],[174],[147,151,152],[111,137,147,178],[148],[148,174],[92,152,153],[92,94,98,100,102,103,106,151,152,154],[130,154],[130],[99],[92,100],[99,152,153,154],[94,95,96,106,110,111,129,130,137,139,146,148,151,152,153],[96,98,138,147,148,151],[98,151],[98,187],[98,199],[98,200],[98,155,201],[188],[151,187],[188,189,190,191,192,193,194,195,196,197],[92,109],[109,111,125,137,177],[209],[211],[98,130,151,187,201],[207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[98,130],[130,201],[130,151,187],[147,151,156,228,247],[155,229],[102,155,229],[147,156,229],[148,229],[147,152,156,228,241],[156,229],[147,152,155,156,235,236],[105,229],[147,152,156,233],[145,147,152,229],[127,147,152,156,229],[127,156],[156,255],[127,147,151,156,240],[126,176],[127,151,155,156],[126,147,155],[127,254],[98,115,125,127,148,152],[127,156,232],[126,174],[127,147,151,155,156,250],[146,258,259],[258,259],[130,182,258,259],[258,259,261],[177,258,259],[258,259,263],[259],[258],[109,110,258,259],[109,110,130,146,147,182,258,259],[109,258,259],[110,155,156],[290],[92,105,106,108,109,137,155,156],[110,236,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291],[92,109,110,155,156],[92,109,110],[109,110,151],[92,98,109,110,155,156],[92,98,109,110],[98,109,155,281],[109,110,155,156],[278],[92,107,110],[98],[101,103,105,147,151,152,154],[154,156],[151],[94,151,152],[102,103,105,147,151,152,294],[140],[151,152],[94],[94,95,151,153],[102,103,104,151,152,153],[95,151,152],[102,103,105,151,152],[102,105,151,152],[98,100,102,105,151,154],[153,154],[94,95,98,100,148,149,150,152,153,154],[94,98,152,154],[147],[110,130,152,154,155,184,247],[110,130,139,147],[110,130,228],[139,147,148],[145,152,263],[110,130,151,152,247,300],[98,130,139,147,292],[107],[100,112,154],[110,112,113,121,130,147,154,311],[112,113,122],[110,117,148],[137],[112],[122,130,147,154,311],[121],[112,113],[114,120,137],[110,111,112,113,121,137,309,315,316],[110,111,117,121,129,130,147,148],[92,111,112,123,127,137,148],[92,110,112,113,115],[112,113,116,117,118,122],[119,121],[109,125,137,177],[106,109],[125],[92,98,102,109,110,111,112,113,115,116,117,121,122,125,128,130,131,132,133,134,135,136,147,148,151,155,156],[92,106,109,115,124],[129,133],[106,129,133,148],[155,156],[97,155],[97,109,110,137,147,148,155],[92,98,106,153],[92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,198,199,200,201,202,203,204,205,206,227,228,229,230,231,232,233,234,235,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,312,313,314,317,318,319,320,321],[155],[392],[324,325],[324],[39,47,48],[48,49],[39,47],[39,42],[39,42,43,44,45,46,50,51,52,53,54,55,56,57,58,59,62,68,69,70,71,72,73,74,75,76,77,80,81,82,83,84,85,89],[39,43,52,60,61,62,63,64,65,67,68,90],[39,72],[78,79],[78],[39,52],[68],[86,87,88],[39,86],[39,47,86],[39,43,45,62,65,66],[40,345,346],[39,40,90],[39,40,90,91,344],[39,40,90,320]],"referencedMap":[[331,1],[339,2],[340,3],[335,4],[328,5],[330,6],[329,7],[343,8],[332,9],[341,10],[342,11],[344,12],[399,13],[398,14],[395,15],[352,16],[353,17],[354,18],[355,19],[356,20],[357,21],[359,22],[360,22],[361,23],[362,24],[363,25],[364,26],[365,27],[391,28],[366,22],[367,29],[368,30],[371,31],[372,32],[375,22],[376,33],[377,22],[380,34],[382,34],[383,35],[385,20],[388,36],[389,20],[334,37],[327,37],[39,38],[40,37],[336,39],[338,40],[337,39],[323,39],[167,41],[146,42],[168,43],[165,44],[144,45],[162,46],[161,47],[160,47],[159,47],[158,47],[157,47],[171,48],[173,49],[170,50],[172,51],[180,52],[148,53],[179,54],[176,55],[174,55],[175,56],[154,57],[130,58],[184,59],[182,60],[183,61],[99,62],[100,63],[147,64],[139,65],[187,66],[199,67],[200,68],[201,69],[202,70],[189,71],[190,72],[191,67],[192,72],[198,73],[188,67],[193,67],[194,72],[195,67],[196,72],[197,67],[204,74],[206,75],[207,60],[208,60],[210,76],[209,60],[212,77],[213,60],[214,78],[227,79],[215,77],[216,80],[217,77],[218,60],[211,60],[219,60],[220,81],[221,60],[222,77],[223,60],[224,60],[225,82],[226,60],[248,83],[249,84],[245,85],[244,86],[243,87],[242,88],[238,89],[237,90],[246,91],[234,92],[239,89],[231,93],[230,94],[253,95],[256,96],[241,97],[240,98],[235,99],[257,96],[127,100],[255,101],[126,102],[233,103],[232,104],[252,95],[251,105],[250,104],[260,106],[275,107],[269,108],[262,109],[265,110],[264,111],[272,107],[271,107],[270,107],[258,112],[259,113],[268,114],[267,115],[266,116],[290,117],[291,118],[110,119],[292,120],[236,121],[287,122],[288,123],[286,121],[289,124],[285,125],[283,124],[282,126],[281,124],[284,124],[280,127],[279,128],[278,129],[276,117],[277,127],[296,130],[102,131],[155,132],[150,133],[95,134],[295,135],[143,136],[141,136],[142,136],[293,136],[104,137],[297,138],[153,137],[152,139],[105,140],[94,141],[138,142],[103,143],[149,133],[254,133],[101,144],[98,145],[151,146],[115,147],[145,148],[129,148],[299,149],[228,150],[302,151],[229,151],[298,152],[247,150],[303,150],[300,153],[301,154],[294,155],[108,156],[311,157],[316,158],[308,159],[309,160],[315,161],[310,39],[113,162],[312,163],[122,164],[314,165],[121,166],[317,167],[131,168],[128,169],[116,170],[119,171],[120,172],[305,161],[178,173],[132,174],[304,175],[137,176],[125,177],[318,178],[134,179],[97,180],[319,181],[111,182],[321,74],[261,74],[177,74],[263,74],[136,74],[135,74],[124,74],[109,183],[320,74],[322,184],[156,185],[393,186],[326,187],[325,188],[46,37],[49,189],[50,190],[48,191],[52,37],[43,192],[42,37],[57,37],[58,37],[59,37],[90,193],[69,194],[73,195],[45,37],[66,37],[76,37],[72,37],[65,37],[77,195],[80,196],[79,197],[82,198],[62,37],[84,199],[89,200],[87,201],[86,191],[88,202],[64,37],[67,203],[347,204],[91,205],[345,206],[346,207]],"exportedModulesMap":[[331,1],[339,2],[340,3],[335,4],[328,5],[330,6],[329,7],[343,8],[332,9],[341,10],[342,11],[344,12],[399,13],[398,14],[395,15],[352,16],[353,17],[354,18],[355,19],[356,20],[357,21],[359,22],[360,22],[361,23],[362,24],[363,25],[364,26],[365,27],[391,28],[366,22],[367,29],[368,30],[371,31],[372,32],[375,22],[376,33],[377,22],[380,34],[382,34],[383,35],[385,20],[388,36],[389,20],[334,37],[327,37],[39,38],[40,37],[336,39],[338,40],[337,39],[323,39],[167,41],[146,42],[168,43],[165,44],[144,45],[162,46],[161,47],[160,47],[159,47],[158,47],[157,47],[171,48],[173,49],[170,50],[172,51],[180,52],[148,53],[179,54],[176,55],[174,55],[175,56],[154,57],[130,58],[184,59],[182,60],[183,61],[99,62],[100,63],[147,64],[139,65],[187,66],[199,67],[200,68],[201,69],[202,70],[189,71],[190,72],[191,67],[192,72],[198,73],[188,67],[193,67],[194,72],[195,67],[196,72],[197,67],[204,74],[206,75],[207,60],[208,60],[210,76],[209,60],[212,77],[213,60],[214,78],[227,79],[215,77],[216,80],[217,77],[218,60],[211,60],[219,60],[220,81],[221,60],[222,77],[223,60],[224,60],[225,82],[226,60],[248,83],[249,84],[245,85],[244,86],[243,87],[242,88],[238,89],[237,90],[246,91],[234,92],[239,89],[231,93],[230,94],[253,95],[256,96],[241,97],[240,98],[235,99],[257,96],[127,100],[255,101],[126,102],[233,103],[232,104],[252,95],[251,105],[250,104],[260,106],[275,107],[269,108],[262,109],[265,110],[264,111],[272,107],[271,107],[270,107],[258,112],[259,113],[268,114],[267,115],[266,116],[290,117],[291,118],[110,119],[292,120],[236,121],[287,122],[288,123],[286,121],[289,124],[285,125],[283,124],[282,126],[281,124],[284,124],[280,127],[279,128],[278,129],[276,117],[277,127],[296,130],[102,131],[155,132],[150,133],[95,134],[295,135],[143,136],[141,136],[142,136],[293,136],[104,137],[297,138],[153,137],[152,139],[105,140],[94,141],[138,142],[103,143],[149,133],[254,133],[101,144],[98,145],[151,146],[115,147],[145,148],[129,148],[299,149],[228,150],[302,151],[229,151],[298,152],[247,150],[303,150],[300,153],[301,154],[294,155],[108,156],[311,157],[316,158],[308,159],[309,160],[315,161],[310,39],[113,162],[312,163],[122,164],[314,165],[121,166],[317,167],[131,168],[128,169],[116,170],[119,171],[120,172],[305,161],[178,173],[132,174],[304,175],[137,176],[125,177],[318,178],[134,179],[97,180],[319,181],[111,182],[321,74],[261,74],[177,74],[263,74],[136,74],[135,74],[124,74],[109,183],[320,74],[322,184],[156,185],[393,186],[326,187],[325,188],[46,37],[49,189],[50,190],[48,191],[52,37],[43,192],[42,37],[57,37],[58,37],[59,37],[90,193],[69,194],[73,195],[45,37],[66,37],[76,37],[72,37],[65,37],[77,195],[80,196],[79,197],[82,198],[62,37],[84,199],[89,200],[87,201],[86,191],[88,202],[64,37],[67,203],[347,204],[91,205],[345,206],[346,207]],"semanticDiagnosticsPerFile":[331,339,340,335,328,330,329,343,332,341,342,344,399,394,398,395,397,396,348,350,351,352,353,354,355,356,357,358,359,360,361,362,349,390,363,364,365,391,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,37,334,327,35,39,40,38,336,338,337,323,167,146,168,166,165,144,164,163,162,161,160,159,158,157,171,173,169,170,172,180,148,179,176,174,175,92,154,130,186,106,185,184,182,183,99,100,96,147,139,181,187,199,200,201,202,189,190,191,192,198,188,193,194,195,196,197,203,204,206,205,207,208,210,209,212,213,214,227,215,216,217,218,211,219,220,221,222,223,224,225,226,248,249,245,244,243,242,238,237,246,234,239,231,230,253,256,241,240,235,257,127,255,126,233,232,252,251,250,260,275,269,274,262,265,264,272,271,270,258,273,259,268,267,266,290,291,110,292,236,287,288,286,289,285,283,282,281,284,280,279,278,276,277,296,102,155,150,95,295,140,143,141,142,293,104,297,153,152,105,94,138,103,149,254,101,98,151,115,145,129,299,228,302,229,298,247,303,300,301,294,307,108,107,306,311,316,308,112,309,315,310,113,312,313,122,314,123,121,317,117,131,114,128,116,119,120,118,305,178,132,304,137,125,133,318,134,97,319,111,321,261,177,263,136,135,124,109,320,322,93,156,393,392,36,333,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,33,1,34,326,325,324,46,41,49,50,48,51,52,43,53,54,60,55,56,42,57,61,44,58,59,90,69,70,71,73,45,66,74,75,76,72,65,77,80,79,78,81,82,62,63,83,84,85,68,89,87,86,88,64,47,67,347,91,345,346]},"version":"4.7.2"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SuspenseLoader = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const react_1 = require("react");
|
|
6
|
+
const remotion_1 = require("remotion");
|
|
7
|
+
const Unblocker = () => {
|
|
8
|
+
if (typeof document !== 'undefined') {
|
|
9
|
+
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
10
|
+
(0, react_1.useLayoutEffect)(() => {
|
|
11
|
+
const handle = (0, remotion_1.delayRender)(`Waiting for <Suspense /> of <ThreeCanvas /> to resolve`);
|
|
12
|
+
return () => {
|
|
13
|
+
(0, remotion_1.continueRender)(handle);
|
|
14
|
+
};
|
|
15
|
+
}, []);
|
|
16
|
+
}
|
|
17
|
+
return null;
|
|
18
|
+
};
|
|
19
|
+
const SuspenseLoader = ({ children }) => {
|
|
20
|
+
return (0, jsx_runtime_1.jsx)(react_1.Suspense, { fallback: (0, jsx_runtime_1.jsx)(Unblocker, {}), children: children });
|
|
21
|
+
};
|
|
22
|
+
exports.SuspenseLoader = SuspenseLoader;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Canvas } from '@react-three/fiber';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare type ThreeCanvasProps = React.ComponentProps<typeof Canvas> & {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* @description A wrapper for React Three Fiber's <Canvas /> which synchronizes with Remotions useCurrentFrame().
|
|
10
|
+
* @see [Documentation](https://www.remotion.dev/docs/three-canvas)
|
|
11
|
+
*/
|
|
12
|
+
export declare const ThreeCanvas: (props: ThreeCanvasProps) => JSX.Element;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ThreeCanvas = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const fiber_1 = require("@react-three/fiber");
|
|
6
|
+
const react_1 = require("react");
|
|
7
|
+
const remotion_1 = require("remotion");
|
|
8
|
+
const SuspenseLoader_1 = require("./SuspenseLoader");
|
|
9
|
+
const Scale = ({ width, height }) => {
|
|
10
|
+
const { set, setSize: threeSetSize } = (0, fiber_1.useThree)();
|
|
11
|
+
const [setSize] = (0, react_1.useState)(() => threeSetSize);
|
|
12
|
+
(0, react_1.useLayoutEffect)(() => {
|
|
13
|
+
setSize(width, height);
|
|
14
|
+
set({ setSize: () => null });
|
|
15
|
+
return () => set({ setSize });
|
|
16
|
+
}, [setSize, width, height, set]);
|
|
17
|
+
return null;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* @description A wrapper for React Three Fiber's <Canvas /> which synchronizes with Remotions useCurrentFrame().
|
|
21
|
+
* @see [Documentation](https://www.remotion.dev/docs/three-canvas)
|
|
22
|
+
*/
|
|
23
|
+
const ThreeCanvas = (props) => {
|
|
24
|
+
const { children, width, height, style, onCreated, ...rest } = props;
|
|
25
|
+
const [waitForCreated] = (0, react_1.useState)(() => (0, remotion_1.delayRender)('Waiting for <ThreeCanvas/> to be created'));
|
|
26
|
+
remotion_1.Internals.validateDimension(width, 'width', 'of the <ThreeCanvas /> component');
|
|
27
|
+
remotion_1.Internals.validateDimension(height, 'height', 'of the <ThreeCanvas /> component');
|
|
28
|
+
const contexts = remotion_1.Internals.useRemotionContexts();
|
|
29
|
+
const actualStyle = {
|
|
30
|
+
width: props.width,
|
|
31
|
+
height: props.height,
|
|
32
|
+
...(style !== null && style !== void 0 ? style : {}),
|
|
33
|
+
};
|
|
34
|
+
const remotion_onCreated = (0, react_1.useCallback)((state) => {
|
|
35
|
+
(0, remotion_1.continueRender)(waitForCreated);
|
|
36
|
+
onCreated === null || onCreated === void 0 ? void 0 : onCreated(state);
|
|
37
|
+
}, [onCreated, waitForCreated]);
|
|
38
|
+
return ((0, jsx_runtime_1.jsx)(SuspenseLoader_1.SuspenseLoader, { children: (0, jsx_runtime_1.jsxs)(fiber_1.Canvas, { style: actualStyle, ...rest, onCreated: remotion_onCreated, children: [(0, jsx_runtime_1.jsx)(Scale, { width: width, height: height }), (0, jsx_runtime_1.jsx)(remotion_1.Internals.RemotionContextProvider, { contexts: contexts, children: children })] }) }));
|
|
39
|
+
};
|
|
40
|
+
exports.ThreeCanvas = ThreeCanvas;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useVideoTexture = exports.ThreeCanvas = void 0;
|
|
4
|
+
var ThreeCanvas_1 = require("./ThreeCanvas");
|
|
5
|
+
Object.defineProperty(exports, "ThreeCanvas", { enumerable: true, get: function () { return ThreeCanvas_1.ThreeCanvas; } });
|
|
6
|
+
var use_video_texture_1 = require("./use-video-texture");
|
|
7
|
+
Object.defineProperty(exports, "useVideoTexture", { enumerable: true, get: function () { return use_video_texture_1.useVideoTexture; } });
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Video } from 'remotion';
|
|
3
|
+
import type { VideoTexture } from 'three/src/textures/VideoTexture';
|
|
4
|
+
export declare type UseVideoTextureOptions = React.ComponentProps<typeof Video>;
|
|
5
|
+
/**
|
|
6
|
+
* @description Allows you to use a video in React Three Fiber that is synchronized with Remotion's useCurrentFrame().
|
|
7
|
+
* @see [Documentation](https://www.remotion.dev/docs/use-video-texture)
|
|
8
|
+
*/
|
|
9
|
+
export declare const useVideoTexture: (videoRef: React.RefObject<HTMLVideoElement>) => VideoTexture | null;
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.useVideoTexture = void 0;
|
|
27
|
+
const react_1 = __importStar(require("react"));
|
|
28
|
+
const remotion_1 = require("remotion");
|
|
29
|
+
let warned = false;
|
|
30
|
+
const warnAboutRequestVideoFrameCallback = () => {
|
|
31
|
+
if (warned) {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
warned = true;
|
|
35
|
+
console.warn('Browser does not support requestVideoFrameCallback. Cannot display video.');
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @description Allows you to use a video in React Three Fiber that is synchronized with Remotion's useCurrentFrame().
|
|
39
|
+
* @see [Documentation](https://www.remotion.dev/docs/use-video-texture)
|
|
40
|
+
*/
|
|
41
|
+
const useVideoTexture = (videoRef) => {
|
|
42
|
+
const [loaded] = (0, react_1.useState)(() => {
|
|
43
|
+
if (typeof document === 'undefined') {
|
|
44
|
+
return 0;
|
|
45
|
+
}
|
|
46
|
+
return (0, remotion_1.delayRender)(`Waiting for texture in useVideoTexture() to be loaded`);
|
|
47
|
+
});
|
|
48
|
+
const [videoTexture, setVideoTexture] = (0, react_1.useState)(null);
|
|
49
|
+
const [vidText] = (0, react_1.useState)(() => Promise.resolve().then(() => __importStar(require('three/src/textures/VideoTexture.js'))));
|
|
50
|
+
const [error, setError] = (0, react_1.useState)(null);
|
|
51
|
+
const frame = (0, remotion_1.useCurrentFrame)();
|
|
52
|
+
if (error) {
|
|
53
|
+
throw error;
|
|
54
|
+
}
|
|
55
|
+
const onReady = (0, react_1.useCallback)(() => {
|
|
56
|
+
vidText
|
|
57
|
+
.then(({ VideoTexture }) => {
|
|
58
|
+
if (!videoRef.current) {
|
|
59
|
+
throw new Error('Video not ready');
|
|
60
|
+
}
|
|
61
|
+
const vt = new VideoTexture(videoRef.current);
|
|
62
|
+
videoRef.current.width = videoRef.current.videoWidth;
|
|
63
|
+
videoRef.current.height = videoRef.current.videoHeight;
|
|
64
|
+
setVideoTexture(vt);
|
|
65
|
+
(0, remotion_1.continueRender)(loaded);
|
|
66
|
+
})
|
|
67
|
+
.catch((err) => {
|
|
68
|
+
setError(err);
|
|
69
|
+
});
|
|
70
|
+
}, [loaded, vidText, videoRef]);
|
|
71
|
+
react_1.default.useEffect(() => {
|
|
72
|
+
if (!videoRef.current) {
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
if (videoRef.current.readyState >= 2) {
|
|
76
|
+
onReady();
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
videoRef.current.addEventListener('loadeddata', () => {
|
|
80
|
+
onReady();
|
|
81
|
+
}, { once: true });
|
|
82
|
+
}, [loaded, onReady, videoRef]);
|
|
83
|
+
react_1.default.useEffect(() => {
|
|
84
|
+
const { current } = videoRef;
|
|
85
|
+
if (!current) {
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
if (!current.requestVideoFrameCallback) {
|
|
89
|
+
warnAboutRequestVideoFrameCallback();
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
const ready = () => {
|
|
93
|
+
// Now force a new render so the latest video frame shows up in the canvas
|
|
94
|
+
// Allow remotion to continue
|
|
95
|
+
};
|
|
96
|
+
current.requestVideoFrameCallback(ready);
|
|
97
|
+
}, [frame, loaded, videoRef]);
|
|
98
|
+
if (typeof HTMLVideoElement === 'undefined' ||
|
|
99
|
+
!HTMLVideoElement.prototype.requestVideoFrameCallback) {
|
|
100
|
+
(0, remotion_1.continueRender)(loaded);
|
|
101
|
+
return null;
|
|
102
|
+
}
|
|
103
|
+
return videoTexture;
|
|
104
|
+
};
|
|
105
|
+
exports.useVideoTexture = useVideoTexture;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Canvas } from '@react-three/fiber';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare type ThreeCanvasProps = React.ComponentProps<typeof Canvas> & {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* @description A wrapper for React Three Fiber's <Canvas /> which synchronizes with Remotions useCurrentFrame().
|
|
10
|
+
* @see [Documentation](https://www.remotion.dev/docs/three-canvas)
|
|
11
|
+
*/
|
|
12
|
+
export declare const ThreeCanvas: (props: ThreeCanvasProps) => JSX.Element;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import { Canvas, useThree } from '@react-three/fiber';
|
|
3
|
+
import React, { Suspense, useLayoutEffect, useState, useCallback } from 'react';
|
|
4
|
+
import { delayRender, continueRender, Internals, useCurrentFrame } from 'remotion';
|
|
5
|
+
|
|
6
|
+
const Unblocker = () => {
|
|
7
|
+
if (typeof document !== 'undefined') {
|
|
8
|
+
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
9
|
+
useLayoutEffect(() => {
|
|
10
|
+
const handle = delayRender(`Waiting for <Suspense /> of <ThreeCanvas /> to resolve`);
|
|
11
|
+
return () => {
|
|
12
|
+
continueRender(handle);
|
|
13
|
+
};
|
|
14
|
+
}, []);
|
|
15
|
+
}
|
|
16
|
+
return null;
|
|
17
|
+
};
|
|
18
|
+
const SuspenseLoader = ({ children }) => {
|
|
19
|
+
return jsx(Suspense, { fallback: jsx(Unblocker, {}), children: children });
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
const Scale = ({ width, height }) => {
|
|
23
|
+
const { set, setSize: threeSetSize } = useThree();
|
|
24
|
+
const [setSize] = useState(() => threeSetSize);
|
|
25
|
+
useLayoutEffect(() => {
|
|
26
|
+
setSize(width, height);
|
|
27
|
+
set({ setSize: () => null });
|
|
28
|
+
return () => set({ setSize });
|
|
29
|
+
}, [setSize, width, height, set]);
|
|
30
|
+
return null;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @description A wrapper for React Three Fiber's <Canvas /> which synchronizes with Remotions useCurrentFrame().
|
|
34
|
+
* @see [Documentation](https://www.remotion.dev/docs/three-canvas)
|
|
35
|
+
*/
|
|
36
|
+
const ThreeCanvas = (props) => {
|
|
37
|
+
const { children, width, height, style, onCreated, ...rest } = props;
|
|
38
|
+
const [waitForCreated] = useState(() => delayRender('Waiting for <ThreeCanvas/> to be created'));
|
|
39
|
+
Internals.validateDimension(width, 'width', 'of the <ThreeCanvas /> component');
|
|
40
|
+
Internals.validateDimension(height, 'height', 'of the <ThreeCanvas /> component');
|
|
41
|
+
const contexts = Internals.useRemotionContexts();
|
|
42
|
+
const actualStyle = {
|
|
43
|
+
width: props.width,
|
|
44
|
+
height: props.height,
|
|
45
|
+
...(style !== null && style !== void 0 ? style : {}),
|
|
46
|
+
};
|
|
47
|
+
const remotion_onCreated = useCallback((state) => {
|
|
48
|
+
continueRender(waitForCreated);
|
|
49
|
+
onCreated === null || onCreated === void 0 ? void 0 : onCreated(state);
|
|
50
|
+
}, [onCreated, waitForCreated]);
|
|
51
|
+
return (jsx(SuspenseLoader, { children: jsxs(Canvas, { style: actualStyle, ...rest, onCreated: remotion_onCreated, children: [jsx(Scale, { width: width, height: height }), jsx(Internals.RemotionContextProvider, { contexts: contexts, children: children })] }) }));
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
let warned = false;
|
|
55
|
+
const warnAboutRequestVideoFrameCallback = () => {
|
|
56
|
+
if (warned) {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
warned = true;
|
|
60
|
+
console.warn('Browser does not support requestVideoFrameCallback. Cannot display video.');
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @description Allows you to use a video in React Three Fiber that is synchronized with Remotion's useCurrentFrame().
|
|
64
|
+
* @see [Documentation](https://www.remotion.dev/docs/use-video-texture)
|
|
65
|
+
*/
|
|
66
|
+
const useVideoTexture = (videoRef) => {
|
|
67
|
+
const [loaded] = useState(() => {
|
|
68
|
+
if (typeof document === 'undefined') {
|
|
69
|
+
return 0;
|
|
70
|
+
}
|
|
71
|
+
return delayRender(`Waiting for texture in useVideoTexture() to be loaded`);
|
|
72
|
+
});
|
|
73
|
+
const [videoTexture, setVideoTexture] = useState(null);
|
|
74
|
+
const [vidText] = useState(() => import('three/src/textures/VideoTexture.js'));
|
|
75
|
+
const [error, setError] = useState(null);
|
|
76
|
+
const frame = useCurrentFrame();
|
|
77
|
+
if (error) {
|
|
78
|
+
throw error;
|
|
79
|
+
}
|
|
80
|
+
const onReady = useCallback(() => {
|
|
81
|
+
vidText
|
|
82
|
+
.then(({ VideoTexture }) => {
|
|
83
|
+
if (!videoRef.current) {
|
|
84
|
+
throw new Error('Video not ready');
|
|
85
|
+
}
|
|
86
|
+
const vt = new VideoTexture(videoRef.current);
|
|
87
|
+
videoRef.current.width = videoRef.current.videoWidth;
|
|
88
|
+
videoRef.current.height = videoRef.current.videoHeight;
|
|
89
|
+
setVideoTexture(vt);
|
|
90
|
+
continueRender(loaded);
|
|
91
|
+
})
|
|
92
|
+
.catch((err) => {
|
|
93
|
+
setError(err);
|
|
94
|
+
});
|
|
95
|
+
}, [loaded, vidText, videoRef]);
|
|
96
|
+
React.useEffect(() => {
|
|
97
|
+
if (!videoRef.current) {
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
if (videoRef.current.readyState >= 2) {
|
|
101
|
+
onReady();
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
videoRef.current.addEventListener('loadeddata', () => {
|
|
105
|
+
onReady();
|
|
106
|
+
}, { once: true });
|
|
107
|
+
}, [loaded, onReady, videoRef]);
|
|
108
|
+
React.useEffect(() => {
|
|
109
|
+
const { current } = videoRef;
|
|
110
|
+
if (!current) {
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
if (!current.requestVideoFrameCallback) {
|
|
114
|
+
warnAboutRequestVideoFrameCallback();
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
117
|
+
const ready = () => {
|
|
118
|
+
// Now force a new render so the latest video frame shows up in the canvas
|
|
119
|
+
// Allow remotion to continue
|
|
120
|
+
};
|
|
121
|
+
current.requestVideoFrameCallback(ready);
|
|
122
|
+
}, [frame, loaded, videoRef]);
|
|
123
|
+
if (typeof HTMLVideoElement === 'undefined' ||
|
|
124
|
+
!HTMLVideoElement.prototype.requestVideoFrameCallback) {
|
|
125
|
+
continueRender(loaded);
|
|
126
|
+
return null;
|
|
127
|
+
}
|
|
128
|
+
return videoTexture;
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
export { ThreeCanvas, useVideoTexture };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Video } from 'remotion';
|
|
3
|
+
import type { VideoTexture } from 'three/src/textures/VideoTexture';
|
|
4
|
+
export declare type UseVideoTextureOptions = React.ComponentProps<typeof Video>;
|
|
5
|
+
/**
|
|
6
|
+
* @description Allows you to use a video in React Three Fiber that is synchronized with Remotion's useCurrentFrame().
|
|
7
|
+
* @see [Documentation](https://www.remotion.dev/docs/use-video-texture)
|
|
8
|
+
*/
|
|
9
|
+
export declare const useVideoTexture: (videoRef: React.RefObject<HTMLVideoElement>) => VideoTexture | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.1/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/jsx-runtime.d.ts","../../core/dist/cjs/asset-types.d.ts","../../core/dist/cjs/folder.d.ts","../../core/dist/cjs/compositionmanager.d.ts","../../core/dist/cjs/get-static-files.d.ts","../../core/dist/cjs/nativelayers.d.ts","../../core/dist/cjs/absolutefill.d.ts","../../core/dist/cjs/volume-prop.d.ts","../../core/dist/cjs/audio/props.d.ts","../../core/dist/cjs/audio/audio.d.ts","../../core/dist/cjs/audio/index.d.ts","../../core/dist/cjs/cancel-render.d.ts","../../core/dist/cjs/composition.d.ts","../../core/dist/cjs/config.d.ts","../../core/dist/cjs/config/input-props.d.ts","../../core/dist/cjs/delay-render.d.ts","../../core/dist/cjs/easing.d.ts","../../core/dist/cjs/freeze.d.ts","../../core/dist/cjs/iframe.d.ts","../../core/dist/cjs/img.d.ts","../../core/dist/cjs/default-css.d.ts","../../core/dist/cjs/get-environment.d.ts","../../core/dist/cjs/timeline-position-state.d.ts","../../core/dist/cjs/truthy.d.ts","../../core/dist/cjs/volume-position-state.d.ts","../../core/dist/cjs/sequencecontext.d.ts","../../core/dist/cjs/nonce.d.ts","../../core/dist/cjs/wrap-remotion-context.d.ts","../../core/dist/cjs/video-config.d.ts","../../core/dist/cjs/internals.d.ts","../../core/dist/cjs/interpolate-colors.d.ts","../../core/dist/cjs/interpolate.d.ts","../../core/dist/cjs/sequence.d.ts","../../core/dist/cjs/loop/index.d.ts","../../core/dist/cjs/prefetch.d.ts","../../core/dist/cjs/random.d.ts","../../core/dist/cjs/register-root.d.ts","../../core/dist/cjs/series/index.d.ts","../../core/dist/cjs/spring/spring-utils.d.ts","../../core/dist/cjs/spring/measure-spring.d.ts","../../core/dist/cjs/spring/index.d.ts","../../core/dist/cjs/static-file.d.ts","../../core/dist/cjs/still.d.ts","../../core/dist/cjs/use-current-frame.d.ts","../../core/dist/cjs/use-video-config.d.ts","../../core/dist/cjs/version.d.ts","../../core/dist/cjs/video/props.d.ts","../../core/dist/cjs/video/offthreadvideo.d.ts","../../core/dist/cjs/video/video.d.ts","../../core/dist/cjs/video/index.d.ts","../../core/dist/cjs/index.d.ts","../src/suspenseloader.tsx","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/constants.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/three.legacy.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/quaternion.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/euler.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/layers.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/scenes/fog.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/vector2.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/interleavedbuffer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/interleavedbufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/triangle.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/box3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/sphere.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/line3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/plane.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/eventdispatcher.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/uniformslib.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/shaderlib.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/texture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/material.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/scenes/scene.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglcapabilities.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglextensions.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglshader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/vector4.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglstate.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglproperties.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webgltextures.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webgluniforms.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglprogram.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglinfo.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglobjects.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/depthtexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglrendertarget.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/lightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/light.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglshadowmap.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/group.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/buffergeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglrenderlists.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglmultiplerendertargets.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webxr/webxr.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webxr/webxrmanager.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/datatexture3d.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/datatexture2darray.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglrenderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/ray.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/raycaster.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/discreteinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/linearinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/cubicinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/keyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/bone.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationclip.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/object3d.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/camera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/spherical.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/cylindrical.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/vector3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/matrix4.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/matrix3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/bufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/color.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/utils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/vectorkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/stringkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/quaternionkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/numberkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/colorkeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/tracks/booleankeyframetrack.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/propertymixer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/propertybinding.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationobjectgroup.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationaction.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/animation/animationmixer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audiocontext.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audiolistener.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audio.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/positionalaudio.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/audio/audioanalyser.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/perspectivecamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/stereocamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/orthographiccamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/cubetexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglcuberendertarget.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/cubecamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/cameras/arraycamera.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/uniform.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/instancedbuffergeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/instancedinterleavedbuffer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/instancedbufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/glbufferattribute.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/core/clock.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/curve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/ellipsecurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/arccurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/catmullromcurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/cubicbeziercurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/cubicbeziercurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/linecurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/linecurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/quadraticbeziercurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/quadraticbeziercurve3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/splinecurve.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/curves/curves.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/curvepath.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/path.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/shape.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/core/shapepath.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/datautils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/imageutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/shapeutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/extras/pmremgenerator.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/boxgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/circlegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/cylindergeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/conegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/polyhedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/dodecahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/edgesgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/extrudegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/icosahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/lathegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/octahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/planegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/ringgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/shapegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/spheregeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/tetrahedrongeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/torusgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/torusknotgeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/tubegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/wireframegeometry.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/geometries/geometries.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/line.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/linesegments.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/spotlighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/skeletonhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/pointlightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/pointlight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/pointlighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/hemispherelight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshbasicmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/hemispherelighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/gridhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/polargridhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/directionallightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/directionallight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/directionallighthelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/camerahelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/boxhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/box3helper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/planehelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/mesh.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/arrowhelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/helpers/axeshelper.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/spotlightshadow.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/spotlight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/rectarealight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/ambientlight.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/sphericalharmonics3.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/lightprobe.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/ambientlightprobe.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/lights/hemispherelightprobe.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/loader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/loadingmanager.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/animationloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/compressedtexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/compressedtextureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/datatexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/datatextureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/cubetextureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/textureloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/objectloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/materialloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/buffergeometryloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/imageloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/imagebitmaploader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/fileloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/loaderutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/cache.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/loaders/audioloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/shadowmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/spritematerial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/shadermaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/rawshadermaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/pointsmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshstandardmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshphysicalmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshphongmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshtoonmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshnormalmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshlambertmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshdepthmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshdistancematerial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/meshmatcapmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/linebasicmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/linedashedmaterial.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/materials/materials.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/interpolants/quaternionlinearinterpolant.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/sprite.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/frustum.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/box2.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/math/mathutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/lod.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/instancedmesh.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/skeleton.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/skinnedmesh.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/lineloop.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/objects/points.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webglmultisamplerendertarget.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl1renderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/uniformsutils.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/shaders/shaderchunk.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglbufferrenderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglclipping.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglcubeuvmaps.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglattributes.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglgeometries.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglindexedbufferrenderer.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webgllights.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglcubemaps.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglbindingstates.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webgl/webglprograms.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/renderers/webxr/webxrcontroller.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/scenes/fogexp2.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/videotexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/textures/canvastexture.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/src/three.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/index.d.ts","../../../node_modules/.pnpm/zustand@3.7.2_react@18.0.0/node_modules/zustand/vanilla.d.ts","../../../node_modules/.pnpm/zustand@3.7.2_react@18.0.0/node_modules/zustand/react.d.ts","../../../node_modules/.pnpm/zustand@3.7.2_react@18.0.0/node_modules/zustand/index.d.ts","../../../node_modules/.pnpm/@types+react-reconciler@0.26.7/node_modules/@types/react-reconciler/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/renderer.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/utils.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/store.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/events.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/three-types.d.ts","../../../node_modules/.pnpm/react-use-measure@2.1.1_zpnidt7m3osuk7shl3s4oenomq/node_modules/react-use-measure/types/index.d.ts","../../../node_modules/.pnpm/@types+react-reconciler@0.26.4/node_modules/@types/react-reconciler/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/loop.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/examples/jsm/loaders/dracoloader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/examples/jsm/loaders/ktx2loader.d.ts","../../../node_modules/.pnpm/@types+three@0.134.0/node_modules/@types/three/examples/jsm/loaders/gltfloader.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/hooks.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/core/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/web/canvas.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/web/events.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/declarations/src/index.d.ts","../../../node_modules/.pnpm/@react-three+fiber@8.8.10_u3n4asvhgbrwklmocjcudrf5be/node_modules/@react-three/fiber/dist/react-three-fiber.cjs.d.ts","../src/threecanvas.tsx","../src/use-video-texture.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+web@0.0.78/node_modules/@types/web/iterable.d.ts","../../../node_modules/.pnpm/@types+web@0.0.78/node_modules/@types/web/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.9/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","117554f1f5046af1916d12ee4302f90855dea0440fb3d757c78fc6bd3c69d76e","472e6ef9d93f7259bd69e48235b29d65bef154ff88e1977028cb96736d2ee2be","1ef3ed3abe134dc67b9795f650be32383df3fe4498ed28b13f341767c0f9d028","59cdc2e038bdd8737bafdc581293bb2b8828653e35bbf5d26145ca7f2a2f8fa5","8676190846039cb3cd9f24894b1248ff608e2a8eae976e706194cb9e86abd766","641db1293684775c1c0c954d93f34821804ad69f97eb60a35b2b719cf6debbe1","c94bc6b926d0a5f4d38715489291d2198ea1710ffdc74069f4a82240024e435f","a6ab353e5a7c57cfadf60f0468127a870ddf3def9e58609c3dc099cdaf8c2684","77a28b4142b61db765c8ee13a3eab667f4beefd9a8bac0e82241f3b0bbcc4f60","736eea59824b87cc7afe7157a53e720956f900ac4f5f01b54047ed927af8fec7","9ec6e0bc0c492b9107c49baf1e78769540ea2a3c593f8631a9437a582af57f39","3c8c7dfcea92e3b32501cd4a9e81e638be4a86069fbfb53442486fe02894898c",{"version":"b5c0fbcdc9a6c34211ba20d695e8574ba4926742c6d38df7aa75358f2b31066e","affectsGlobalScope":true},"6921e7365ce247409e7785df10ec38f37a0e101307764866b572019cbf3ac99f","923ad6daeef6cd47a9d121f9a410f990619dd7e3250dd999ed163ed2d539709c","93dd4f7113bcc5ef507ddf75163ef1885317e4871e677a173166922f354603ff","7683d4e56b714769b707a1dc361a0b09dcece340f0a001a3c550d7756c57046d","ab5a2d8d47f269d1c94993d31fcbbc5a32dda80b263dc6f6fd8d30d7c4deec0b","612cf6b50fb86e9df7574ac3b95060d6b35d8db8bb8f7196457297a5e7ca364e","bde4bb646eba9524dede275e59d032494af2e889b5e2c05bdb37af3961ec5434","37976a829fdd39e2b927e5f3a2ff39a307ed9364820b9a1d5cb1f361597bd6ba","ee83bd3792e0449a8fe92318d015775ac23c04350efc2190e46e922ebaa513be","a4e075b09839f3741a4be9fc1b8b006bafe9929009b905f2f96e57087761a580","9c361f6137478031e15cc76889c41812f1d574fb288c1c4eb9a6a44ac4ec1d35","61df201e7c60933851ec13e57d894a710f107a2e45b52e9db1d49407671e4efb","11fff246cdd97e84faef2a7ffb7e77d4dad65fc31bb8878a1b97f47df2e33077","12ea565b4c39de671020acbe794bc8177e928a5e7987636fe0ebe07bb87ed2e9","f4a5ff88403b713c6b9201057805369ad08338ae9a6e5f6dd595e808a76c1824","0333dfa0216b1d3ab12de6e12799f35b6c0970c5b525b331336dfd5035325c44","afec1e7f59fcd84dcee0aa2f84009b08310b1b4679f75066dacb637c078a2552","cf81fec1540c0841da1fe7b4badfe5ca4b2a862620e13298efdae96cdeb0e541","d970db698b79bde67856d7fd39b3c566b6f4641866b35cb7b8fa2096261cf22c","6e23930ae513b9b2abe2862e2dca3bfc1746c4df43f5543d6ca63ba537d73b2b","8c9e13867a5d6f68c9c84634ca5c81cf00d0a97d3108c088cda459f66aa189ca","09a2b384117c27deb313d43628110586c3eccc247572507b312482405e96aa34","27f3902bb2aa0d593f94e4d954253b009e4d025ad888090ca42bef6eeb6f7786","5fdd1589e18dff1225e612ca574fbf16a20a96076b8d0c923086c226bc3dcc19","c65e41ba6509368dac938de889898fb8fb24c52198de7194e2021ce850966e9f","cfd14e9d6ed98d28ea83a80e5bcac0b5a4b095b215b9447999392b2f9ce5ccac","ff45c89d0397b00161151eab5f1cdaff9b50a7317ecdb816380fe9071c30b5ec","1a0968366374f3700f0d30e22453dee83733f8987f5fc207e84e63f413ec85ee","596db561b3d3629271a42352bac745e9903f1a225041ca17215a8dc107811dfb","8761f74baf198ac04b6adb9e313df91b814046d31cec231c0fcede87417e24ff","bebe9f83f9f67515b46698c69b2120fe46a6763ba63445d6448e4e2273a5f9ec","ed8fcca1029c601e8480fe613d9147c12371cb5d9363e5bea1e395387d42054e","b5b145b992ff8520cc6e516d0a28d41b647868d9330c33b6146a36b36f5b3080","a964ea970369ac113b4d63520545056e4d2633e73a9520ac76666efdb8479b8d","5a16c4cbe7d2d309f990bfd63637cca7a4335f4f236ff037dcdd28ba1beaa8a3","8ee1752b81302b943ea4ad0a5c65c0de1b700f5f16b739b667edb2687111feb0",{"version":"b8a1e0b12c414d452378e2853726157d819c28f2f7b7ebbed69a6dcd1dac6a5e","affectsGlobalScope":true},"65a6e61090b2a13a6704dbabb62d4df6e5be76b8831fdc9b1f39686287c07712","c753d9f4b5de5146ff13ec6b62e8fadb08643b1eccdc26fa723263765fe93dfd","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a0503bd98814760190666ca0ceabeda1436066d93784da923375b51181fc6d24","d12f5fb934377314a0e5dbf6cb65c1be5ab6178ca5fbfc8546c50d3eee458647","51d508d4ff9616032a769e6048f2ada3e54a729c251e5dcff834ee9e0c2b828a","5273a936870e6f0a324df8e1d9b80190265fd3c9e7a6c1c889817ae9c60fa909","c660f4adf75a5c4725a46f7f73ba9a19c24d5b67101d7e282398ed483f3590c1","c688c76a19a30efa6f73cc6c133caf2cf8f9568120ff6f1b314e1fad98528681","8314c95ca15641f2a2c25704752dc2d9fc10f533986b312dcbf1f8fe544f939d","1384aadb7b4b5479a690236ac96e93098a45401c1ced6e3fdf0f2d27639e4573","6d2a46050aaf02cf513f501e7df478b031018461c2fe85c91233e2b54ae366d8","8e9c191443e616c30bd47669cc59e4946b5fc23ff03c42c4578a48396688d526","0d040d689a5b08f47143fae77e8447caead3fc54c18b0213d99679e7f304e660","d5dd35a3ab9b497d3932fb0b6f40d5c1c063ba1579ff53b9a6ed4199a3bcb0b9","89005628a158578cfb8bc873c4bb6dbfc08e3b2c0fdab46ee7e5d9703cb8528e","8868268b7cb5bfb508e3844fc129cbdde23e24fae35024fca6798653a3eed289","166c027b2bfc241c7540aaf3832fdee69018185a3f8a5c8e52baba6fdbcfbd20","c5ea5901bbd92a63fe12ced6766cef417369795fe2ec478ab92d5f3049f20883","ae4d8079cea9398d4e2dfcdf548e0c4dcc41dff3fd972be13e5cf894d8a3b7ba","6930fdbc3cfdab7d0afc49022405717674ea095c77d045219d213bbd82c3b570","60c34643c5d1be4050f79a4e589bfa7e46792440efad2a3c49cfda8a72135308","fc3596b10eb99c07fccec7b04b9404d36bea341b9f486173aff1e234aceaccff","b71e7f69e72d51d44ad171e6e93aedc2c33c339dab5fa2656e7b1ee5ba19b2ad","030b5aba86fdbc5d46ffb2c024d7764791848520332a03b662dd26962e1125ad","3755d34ddf0835f31833c825aaf3c996d22d96dfc6db6d04b55e8c29213bac0a","281eb8e4ddd65b6733cf1f175dd1af1bb2595bbcea7c12324f028079ba78fdf9","54d68fee094e2ec6d34c4b7d89ba849ff87a2030fb8e907b0c4ad252009d40cf","e0fdf687219271c3031ae25cd8d3e9fe7c16ce46453ce775292887f486c2aa16","f17592fc258a847bb7d38ab25799eabce4865f24fcb441cc69a6a6277a48e6a7","512d2b3f264aac071278060d3e4f019508b8a504283708a0fc503198f244c363","5f477e9897e29f47b860b52218d645178362d3ebd17c990df9f36b0c52d0e6ff","0df7497ada3a4f6459420803ecf7e555f1ad1e7bd43c1e17bdafbc34e19d7162","367bba45eb437cea29f41c3a382c292c6fe6cdb7b26a389ee5d3a5eea5d75040","16ae8a0bdbb8d72fc63437587e08d0eee84ec1c165a7ea12e7d7e6f6457b7a63","1e23aa4e949aef6f654fb097b41ce07dedef1090a6bca21e9aefd985bda68653","1e4d12496a28dfeafbe1e5debbfe5e146df5a39e581a0ee2344a435c941458dd","10757352393ef1239b2efb42b41aa940ff67d9a40409958e9b9d3a9c7a524a64","2923047a1c951231f48fe77a6c2fffba8198c20dd05d4ec1b90f9e45f129adea","74952846d3e9b6c9ddaa3003f962a5b83f55f58f3b55525a962087fafab7f6c7","d0cb43e1b996459c97f19bd66cebb8cc603ce427d736ff7fcb7e729067834f50","d78cadcff2b7eee1aecf1fda437d844617e64507e640f47ea729c80aef632fe8","9e22a3941d4e9ff901b1e3efa2f18efb5cced7f1248c2af03a511d59dd1f37e2","1e0477cba50bdeed193409008aea9e008380d7ceb9c41e4bcac9281248875570","432fe3b8769c1e1090be43baff32bccfb436c1fce8d470a45fef5a8016dbaab1","ed0e3159c03180a7ae7fe891f12b386eb311a9440a3a97e546c4d57039e43162","4fd1de9625188f3e7b2933c700c44b2bf01ced07a3daeceabbd5014561b64148","b4ec3dcc11e8a52b81878d7aa998218182c36e3222e6c55177172880434823e3","83c36ab1f5c06db3c480cb1cc68c1caaa25b3b14a49dcae7cdaf17482e4f6dcb","4ba733d1a5ff0a0779b714468b13c9089f0d877e6fbd0147fac7c3af54c89fe0","a39e9304639454356f4a1fe20741899de0c3163e1f040d0e0acfdc8532f779e3","3bf8a15acc2dbde99020f0ebe9d16ceba9e6220e41e034003fc8f835b47642af","eae4d78e9a2660a6af2a638ac809a81d2bba1b90ec36620b2035a65cf296646b","1e21eb1938604e43aea31c89888967c7c39774d26074057ac87582208b349adc","f677a74b2b038509ea5aef4030fadc0e090cc9fd4dca4c71147934e6697c23b0","78b1daa0a8aa1f54530c110600cdcadf70c1238c0d71fd7208c1bd5b31b77db1","6e767f67b713d0507a4c5c450cee1d3b27ce1b523d5e6ade7d225da613e0318a","3470118b64b6e9ea140a7be15b04f8e39d9b17869182a177fd12be31b524c383","f4cadee14617809fe2c126a40aae853ca83700eaac4711bcde7e8b87fa349d76","63162eaa0e0e77c318006455f7053f006a974ee71206a51efd669fd762b4349c","4bba3ad827ca0b92f7573673ec06ba1af0b741391ee1478268c0287006b25b03","418728880845307b1f5ce97a2f2f20e3d9f116886dfbed928b047377c661fe55","18076eca74d509e15742ef6733a1c96689485664c1a3e771d0d705fbe560007b","aa090f388d526153627ee51507c40e659a6fb9d7c669b57db95314bf429076b0","6a6bea61fbd65654e92ee68eb084d26300f7eb194bac5dcb7c3721611ec6fd8d","f8fd4518f157df6d897a336595dac0833595b4e97bdd4cc380cddfc856d51642","b688ddf5ad2d24f3fa58efd84f9ac9e3e1455031d8881dd917d72432a951e9e8","8cc83bf53997f80f7ddf98c0b70d4c625c3cd5b93ae2efe2fc0084a26d997a7a","71eb65c9011c56ea56932a87d9d171cf225f29c3aa601cffdd5818ebd0e16bd7","164f1c5c8ad203e80b827350fe3ca1c59c8106c8613e20a3ec4ea9e63dd2e730","a228ab0a7976c724d6135bbc153016418e3b8560a44101999192c5204fd31dfd","7a921991afa2ab5da7c9d94d6ee81de34724f82520fb3fabbe6eeaa29a7b5661","4c136da3b1dce49c12eac152699c6b4bc64fa93d6c7224a43c816f7e51b00930","bfac6d6a4817bf56d574b1f32b174f655e05ce45c5ddf6d17c9b592660f10935","bc7d1326a9187df243a5af0eddbc3095dc3442ffcc153c23e3974553e11b7972","0e6b3c7f300f6e2587c62783ebf78c74e61e7e85d37591e1e1ecf82cc15adc01","139ab16e09553addf17cfb7122108eb39cd406b8009692c4d1d9e3dea96ef83d","69f3d18ee459096c5e1426df332673a939b56b8bafeeec0b31b3cab1a9e4dadd","192ad3de0ae2044e97d375c601ef54149382bcf59a9eec35066465a73c434c0a","a99712388b38c17ca788b4b93cee993cc487ba69e18d98dba66000031e90c378","c8ac2f17b13f98787daf66f81b0f215e296c7f2acf5b0b43463d685700059653","e1b5820a2298308c97ac20096c391a4a064c02819ea897a20ea3f08f15051035","9d948541e42e0af1cf6e33967c13bdb3193d6507c4ff2bfde6849fe4ee15366c","a37385e604ee8726100c207afa819823079a766c30f5c38a242a9368d8c28e45","ab8c6e4a2b49a17c71848a8c7d14aa7fae2a2620c734922d8d004d59baf59ffb","c53f1e0dcd4a2c1c3e86c83345fd078ff75425ffb78654306b0f58521dc30f50","21b08a722f729d8d95892465be0977a8563dcf630b38d87886517ce6f027389c","80639ea4472a40009209e18013d543954e3e2379c712b571101ac2e8c5da0fcb","1fc98030aad398bba258e0fd2d5d6e39ab085c5d22257fbcd8181e0c2621489f","c60124cf00efc8b113c643d222cc146d15d5ea184c04df3cce9ce8652e42a6fc","7bf91a5d5e38618029b7d1703db7c0219f9eda3024fd816360d2ae791e89d1b3","0f4e57b76239328d40d68e9c6271b4f17a19970bdbff18d90e08031b04efc19d","bd683b2b79122ede787c445f2a35505d9dc60cdd3c2ed08cc05d1140c6807241","361ec213e909dea3b00f0aa91e1f1ccafe04eaae327a45bf33fe3c3a9a28d13d","6a60665f3bf35c7be844746ab2f796bb4076118559a7c660cf95fe01163bc79f","6e322a837838dbaad00bd298c6f33f5dfc9a5fed6792b0ae1d00b2da68afc2ac","bd307a41d5962bb877f46e5447db73aead39ca6e87ec7fb9c29368a78731cd32","0f638672b9749835cda995e8eea6ffd2c17c505eb5b51cd263686b1abb5af9ea","105d7842497ad972a7f358d57aa0f95f722d67ce8fb0efc7d93247be6e7b025d","beb69bf7a052aa881fc18d7f7ccd47918719c1ba9ea2c92304bca4266a95df6e","1f0a034bc92b2b6bf1579253aa20a4983b2170cebdad9ff1e13718c5b58aadbc","07d41369f44f66a60cdd99267d7fd3b4c195d8fb9576a7a326b439bf3cc7b11a","8eb1f35d3bd99cfb4a61c87f756ae9389709e3cfdc0c4a54589b2e37c814b5a5","8027a5c97cc51405a3382c6b59d9690fd4ad8166dbb43e7976e62efc4a49fdce","d6fc38421f16d0a68a6d782a94f567464c1c441fc14949441a140b87a29d7ddd","9e9e3b18823c2179e426b11a6945f6586450d9db21e9eea0eb60491d018fa62b","d7a12dd03519d05cf43d70990cff5caf033f9b283aac0706e11519ddebf4e945","4998cbff67e76f385d9955674a9f2ac385926e807ed371ed357ccb6f03a4d72e","882c2025c42189f3f88ad3e72060ce9022c6d44f22fc066f1944c166dc04be01","1c548e5976ee7f2a3c46b88c09db5d1e7d95d464eff7536cb26515eb62b68694","a1e35cae2fcc3e93644f0c69984e138e84b3732961a3b9e91225d612946b4d4d","848c83b9294d41fc9fd8eb360b5a28563cc24f3e8f045f169b5cf1a7201a551a","08f77f39ef225aadaa1351d0ae1c4ca7a1d1886b1425c7cb63ef910885582c69","b29f216a35d3fd0688b305d31f483781b27c64a40cf76816020a1dcda4816fe5","9fe3723a3f5f2daa1317099c833ddf6e9859c3298fdc0edb4e06b463f9805761","09f59f210312b40890556fb204cc7822a41b918bdb90ba2618a932ab4af715da","371ddc98c5d6b8e553cf188d0b4037e773f4e1c5838dc0d68d23a3a8e376f312","a4ef836229dea41c44c1263d9abcf8b5d671969db90b3c6bb791094dc39a9a53","78f98988f34eef18c7b8e6853a3f5a4cf6247ae21832467932fbcc09a1287cab","1bdf5b5d4a633c4f5f246f81935cbce1cf5e5d8d9803b51fce46e1bd77cd892e","978f06f93739191b46c5b2d4e04be2c11bc22dfe6eb030deb12b0b0c39815729","62141f6672ab5a102d856e071fe459b2d83c973e150b842e9c1921965546d00b","fd4052ed9390d80ff9010fef9801e2635a65130e21ecd5fed1955df3d1b7f2b4","9d9dc517c138ae88e9a5d51b87f5bc5a16131746ec95ed3a5b0f84009e64da4c","1ea27fff2ec857fa8a4dace7d210563a6c1f6b137fef3ec9455b4075124f35f9","4e8d8b63d319990a4ad7d5517e63a6cbcd773306e2fc7df46622d9bc9fd83b69","49d91fb60620bc8b3be5c1907cfc9a4811af9059b9e431941ca3b9a27309a185","f359dfb36d9ff7a94275b957a1c44709260497699a91bdfe1a5d2fd027a57b29","477f83ae5ac7bbc5e9bbf9981eaf7e720bb5a4f81d71427a9599f77a98889b64","06a6cf05c5d3724580e0800cae14f63f7c47865ad46e0160195eadd8d6d66eb9","c78a500c32fa34be839024265a785c8172a655e270bd726f596716400ccb6191","b7fc8c07ca728c94149ce0e5ee64c21100aca7be97cc53917eb5b8b18976bd59","88b73800dc18e1470090faaf16765668ae154f87788da73214713a05980f68e6","5afeb741b747e4ca22dbcfd57b569c68eb7012c628841ef194eda42ba5b408ab","a14ea1f18d4eaa96304da4f985ae6b7df60268057601c95609ede9ff9fafb905","841a5f4d214aacf90c4e24733ae833d73bda64e2f59a855719e127829e985f6e","09aae1dcce8147ec93604c2b0c08efa3d4604f49401cb7c3da22d461b341a734","5265463dd08020db16b1763ce461004ba99f7d90288ce9444b765cd5060a51bf","3d55311307c15709ca243752aa8a7975fabd92dcc05e6121b2d48ad3213d39f1","b5c5844591132b944b7e5ab87bd288637ecacb23d945637de4ddc9344f25a20d","5e739c6cdb908e7546e5da530ba079166632e69cddd942736660e570acb92479","8f7482100023e5397eb7c1d8fd2595c929727ff423ea1f0b904cebdd37051bc7","7610fe0373d65bcc33f21d57eeba77551e8ce06a8a6abf7576298c69425f81a6","0313fbd97cac12034f11dea9fe85423e240c36ad36d646b00c5d4bbe57f33d7b","ff3765ee3b28da17a4537c891a04883e9f48bb5634f131f5860a85c8ec6dfd75","05c84e8c5123994a210f56d11a4cb9e623f6ad1897c1728c22e4f42f7dd1bf33","dfdc40f6fb796f1bf2f6e2336d711542fd7f3babe1da9d0acb5567e529fb4ab6","ba60980f49610f5e93009be094d68bc20f63568b1aa0c1d08151466390c0c203","9118804631fdd772a2164f6d7f94f290950b317aa4b81a543a9bcb1c9a01aa0a","37bfbfbec5d900c379b7dc65bf3ad2a9a0312fad4c91778ae3c73590d2d37b6b","00ada18d868f7ef9a1081f0e6645bcf753869e1d999b51ce0322238a4c67998d","747199468ebdc82eb604ad75091390d5a1312bfc6e4a2411aa2e69a01b9b6062","0ba73f979f6f0846573338b7391911f80115004c5bed0e2e01b5d83064fbc06f","9b8829ef6f4c70d21e9a9f4653b1b69bc122b482aeccb6e1f7344bbe226837b2","afd5b50a4d20db25e060396161acdf718fffa3b73a85fb3ec75f2607cfed03c6","752e7f35c0b26df44e99a773ca1f37195dacce8847394a28fb29fc2984d98bda","d3eb2f8d171b641149c42a27d8d9d046ddfcd7d80ecc13aabf745eb77aec83ea","cd5588e6cb3863212109cb8f531b5715b23818491a1f7cce7633fc25db67d855","8c14b1e1ad4ddf5e8145459bc11ffdc84a35bad032d0671d67f4e62f9fcb6848","9fa45eaaf2626085d031569a52f54714405cec7b6bacb041f28fe7adfd247a05","56e3c947d17551543a81da36538d51efe75cc56a8576f89bbbdba62934b0b3b1","a790d356ff04c04e692adeb8c560bc16461afff7fff70864df967e57629a23e6","5d729de8b0b70bb4a4f0de2c263f42a3fc9612234665cb5d4f147e82e4ff7419","8350938747a211bf7666131edf2bcf38b464c048aff5a3b64e119fb9b900280c","25987a832e6a9303585accbe47950a9880445f1da53144094f6fc1090335392f","cceaa2d33e02d167889ed2484bd540d08792a8dc695e2352f1ea32b061d9d8b9","55a3a1e1a6b1d91c3a233e3e1eaee28db13e3fc917941f3f5022f28469480cad","a70bf51744ec939a5c87a636c383e0118d3b9332b9863b2c1df158194e1680a6","e52ad7566b687e35a98b4a202e3ee380ecfd5babfec74f79519a52d70211260e","24551b8482b56cba01f5a76871010c9898f87ef22c066b654bc79d6851fb65d8","e1b7d8ebc348369c2636d0548fcb95772a41f13669a92484998636d5c6f6f84c","0c39a6721f4481d28125672874d12f869db7beeb63efa5ea207a894a06b01990","fbd6c3eca05525d6dd186a7b1c6e52d8dd5ffba961478a5bf3a2d17c1209fb2f","fbf180777acc17ed6f59f0fd1639745c64dedecb2ca7886214999c0535ff02da","473a574ee3ffd1ab73bf001acb92d443c50c7ce58854c08c78ae89522f3b2af1","28cf4b88597d75f21d50d3e89cc60914ef1100ca7647c0bca0d44d0e04a83fdc","b93c28cb909567706ed85fcead09cd9ec116a9951727e9560a908b8e92c31ebe","3e0528d53eb3f2386d770412b4dcdd508ea8db6d7a32fac07b27e857b200c6bc","7efce11f987fd2d555babdcbbf505520c31671ad4ac08b298bc237f62ddd6941","5d96064fd7419a9faf2ec2118c273a6245d4933ff18774b39237e3a130ba0ea0","94755c3ecfcf813ef35c06e17b0494cea726eff490be46ec7f10b343cd6d6c66","59bf56dbda4409f8e87676340c5bfb65cf674442e611a680f9f461c8898c46dd","fe605c9e09b87c3032c78e3728f1b06f3402c3377dadde55aa2a31b325c5a977","57f2d9377264cf90b169ba4bbbcee8135d1350d8523d60a41d5523cf8456f226","8d2a53c59c82a8fac953afd36ca75783f60dcc5dec4740f1a00e8986f1119634","9fbae82aa0cef1eb7c06998fafcaaf8b7b049c1fb95db6e9bed4ae0138617a17","a708f4132704cfb8b845d32c02cd098651a52a1d63881e31dd62c6cbb030f1ba","814e5e8981fd7045432c56c64277119870f6e38086b25ca288b4cb7e91281c47","1b905f84eb4131fdbbaa1df421065c1eabca4eb7c0836a52e3975b9f1a57ca3c","2946da37f4281a3ae5953029d73da48da996766b7bd4fffa79e075c3d417e42c","6fc46a5d53ec8adf91eab29757341dafa54f9501c82289215f36a5bd43c6931c","90a06a0b0c7769bfc5675c4c20b337326387b609ef9dd578fabd44f277edb0b3","13152f53e825223b643376711dc4ddbf3fc02d0f2f1ded4e78ff3abe860f563f","81404cf1eb59c372d341a4e4e9ccadaf97cd3fe7e8ff0d46e428d4dc4470bd5e","7ff73f6c8e866cf4d94c06eda365b1e24185a070f66d8d14191ae8a53943d1d9","fa7641ba6b65ee5cc712bb8e79d55aefabc3d9f77595370fde1b344b56798293","fbae464f654de7497f07a70e88429222c0b6a5fcc785f54809b6774ecba8f88b","fe0e99fc2ff678d100b516eef3c5989c5cc49ecac82569630944f6b561e7599e","0312f4bdc9c7ac185ae0fefc98a77d86121aaecb95ad620adec260ebb813af73","d90f57351d3732b66e3245e3e38c3327396a25a9d638c81313307110d99b5cdc","d7065c2df449f17ae78a3a7382deac2e388ada6bc0428c5747a4a80d0718e283","355d745d283e4f89bd785542bdba50ae1ab31ca5fa9618f2e221fbe12b9933cc","384fddf003645c4e2212b1a9cf7709ac125dc572e0fec9c9378a2bf9ba6369d3","bbcd46158e4cc0eccc0043c93b22cdc522148ab501cb09c90e96820f8d87d9ee","6d72d622f589ff41ab26a4cb2adcd01fcb3d271c26b2985ec29c17bcafc82649","6c703676e52e268bd57f00eb52f4ea47a8490b103ede7db6259a83e73cfbbc1b","c6b0ce58e6fd87a883d690422cbd04b16346cf268acbffc434df6c3f88716c65","ef64d9a231218149fd0ca3a1ef5c27332ec1048288f7703e12d1ae69efb2d941","72bca262d6021aecd6ce0e5f1c8f7cefd78deb83bbc9c7363ccdbe1cd2af5b11","a8044bef7f524d3a03f0666eb260818025177c1cbc6ed6c17c0c1639b7892a04","c9034cec3d059fd9345ab9b5f9c35ce88e1293b6cd0e7449422d91faf5a2bd2a","46f7c04e8a6fc8476293af851ad39f5dd275aad4a8ada115dc7831fd2a86644b","aaff0d72aa207f1558cbfb1a4748c5a5a9a7e0257abadc338cab6a019eb3c0c8","a1325c800e29589d0931806b33b36eb23d44b735138734d0e7280d524e814a10","6f887e3afb0de4b6a4e79fb8512910736c1cb43909dabded07521a98fb3ab493","1e23c65f00a3bbb5a94f4a344e7d16762fcc7a9abaf7be7600a8cd38f22531d8","b428ef19e21c3a1895fef811262cc7ae0bde0274e77fe0426663c27ce86a1946","6996398eb3a1f3ee5bc2540f38f716ab941c9ad70fbdfc5a7d7eea87ba6c3cab","85a60dc56301151a1290f2935618f1c10642db39c9385d85bb56580f0481bdb3","a57dd6772ffab02f233287ba6a8f769e35906316605e82ed4f023f409319f2c8","a26ac33854e8d27ef4253f517861b287eb5e7f7c3eb53b3f8a06e28b0e3cfa23","c0052b367c598946d934581c9156f5bf06846a543bd8f1a419fbbedf0c49db5d","2360668f67c85a1ea07864282b797189555b9b9928be94685773ed8381302588","59fc39062aec81b871c29e9f246333d14d0c60ce3d5e3a01b3eb6336f69b6473","ccc6589b9029f32ed53b59cbe7bc71ce795ce0006a93b7cb2427f573856c74e9","821d22def6acf0fb49cdb3e0912881f47c5039f8dd730db1113bef321b9bb4ff","6c5c5605ae801d8af7781b57643e379106763ba7c30d7535e42f65e5ed957b58","31ac52f37d77ba63441903136b65f863071d22fa41ce8ca3bd12fdaa8fbae4b2","408d7457ea4c677bac1a16b0266eba485959ebd5bb49cbc2653d3dbeb0ac38a4","cf11f4e19b500ba6f488bdb61a1810c23e15d7bdb994e821d405470158ada1cf","9736f4d069b690ae03aab866b7d899230edb963c3291db0290373bf6891ed2f8","3b39e23a40117d502c5991e42ef8ce547e468dc3356d85770e9509ae894f1704","61eb525f298d2be157e9f77ffee5a428714f466518aec7dd531a69ab40b7e80d","903345b5fc1e6010f8c03e36619e33f9e0d3a6787779aeb7687454d2a6c3ef6d","e320742c95e2e0284d2ccbff0a2f2792a8f542cfb0a463c4e0a69b2cd3680625","bec45e0777e88662fdbb5e8ef48f3fd1a474768075abe838b184973025c94244","097ddb99d443f0fafd23af7a3ce196ba07cb879ec64de8600fd528626bd24b10","016e0883e583bf129fdd83bddd728b78ee48b719f9ff0b62e3cd88d71daf5fc0","cc068f1f61f62be88d869a9b6c00b53447b033eb0185829804bea1c1f4ffcc4f","70bd913b62083ef5ac69e9ba9852385febaf5915c92d4f50a8371aa26f4346bb","0f271a79b718e34af77deebdf48fb60428e1de7cd5b735e623abc03788d91791",{"version":"03bb626e7b50d622426b7a0754eb4d3af31f9df1aac2d28c2ef533d9e523ece1","affectsGlobalScope":true},"4454ad1362637a1e0a36b6bc4ba460ca89dbabc0769c2bc5204a6ec0c08523d9","a3e1fc008abda72e8acecb706f19c77129589e55ad67f6ce85333c5b62656bc8","9138a234f0be31929672b9feb4d02c4e2b80967ff015b3fd5e97fbbd37f82434","b4a4b2e87686501d36ffcfa76c5e09f2e021a1c94e6f0cbe33ba83bf24983d05","532e8cc605501c772ab97a88240d874977c9d375770f0fbf310b31cdb1c57b15","f36c89f8a3714bdcf18fab979a866266f3bb74f428da85604f84cd7d830db956","0563d9bd22da47ba73effd9c9fbd14ee2e9424e0a6dc50f959eebb7b4d91cc7d","6f5720343e9dd5acdb8012814c9030a1bfa869c6ff2c9bfc1ff028307895f6cc","3f6aaca8e063b6e5bb1a57d18e3196a01c957337f6e9950ede5a317cf72a1bb5","eac877fde1f64a20fc53b50a25feb3ab21325617f75971150345a4dfc08e683f","c3e6b4104d102f5d467cfebf71cfd9993894055d59e9a090836642dc02a3984e","b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de","bfaf6200a345300e39c96bb069930403ea60a415fb17990c43ffe9f350413527","9f8c51d9817a3de3bdda6889d63e08e2dcbc1b2b2c0b9d95bfd6b85421802f35","a5cdec5f6ef536346b8495e2607b4d34371532d7993c26ca095e80b1c4e963b8","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"dc5f6951bbf5b544349cbdef895c08dee6929818abd27d7d53c38cf1209091b3","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","7674b65ac0a3b160232d84464b3486d727415581e5b99ff4aec324500adc98a4","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"e0b57467c219609094799676d14077c40e6529c82c6882ea4bd3c29d67d3f56e",{"version":"7f0c3157466019ef6c06f403411f4f9d2efa3370e0e1c0be137fb90966495fe9","affectsGlobalScope":true},{"version":"25c417746f6bec6367e0ed91c462036be251406c75becbbc08c75346f0dd7141","affectsGlobalScope":true},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6"],"options":{"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":99,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":5},"fileIdsList":[[323,326,330],[39,323,326,328,329,330,338],[39,323,326,327,328,329,330,331,332,334,335,339],[323,328,330],[323,326,327,329,330,331],[39,323,326,329,331],[39,323,328,330],[328,329,330,331,332,340,341,342],[39,323,328,331],[39,333,340],[326,330,331],[343],[397,398],[394,395,396,397],[398],[360,361,368,377],[352,360,368],[384],[356,361,369],[377],[358,360,368],[360],[360,362,377,383],[361],[368,377,383],[360,361,363,368,377,380,383],[363,377,380,383],[348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390],[383],[358,360,377],[350],[382],[375,384,386],[368],[374],[360,362,377,383,386],[39],[35,36,37,38],[322],[322,336,337],[92,146,147,168],[92,144,145,151],[92,106,146,147,166,167],[146],[92,141,142,143],[144],[92,144],[147,169,170],[171],[147,169],[170,171],[174],[147,151,152],[111,137,147,178],[148],[148,174],[92,152,153],[92,94,98,100,102,103,106,151,152,154],[130,154],[130],[99],[92,100],[99,152,153,154],[94,95,96,106,110,111,129,130,137,139,146,148,151,152,153],[96,98,138,147,148,151],[98,151],[98,187],[98,199],[98,200],[98,155,201],[188],[151,187],[188,189,190,191,192,193,194,195,196,197],[92,109],[109,111,125,137,177],[209],[211],[98,130,151,187,201],[207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[98,130],[130,201],[130,151,187],[147,151,156,228,247],[155,229],[102,155,229],[147,156,229],[148,229],[147,152,156,228,241],[156,229],[147,152,155,156,235,236],[105,229],[147,152,156,233],[145,147,152,229],[127,147,152,156,229],[127,156],[156,255],[127,147,151,156,240],[126,176],[127,151,155,156],[126,147,155],[127,254],[98,115,125,127,148,152],[127,156,232],[126,174],[127,147,151,155,156,250],[146,258,259],[258,259],[130,182,258,259],[258,259,261],[177,258,259],[258,259,263],[259],[258],[109,110,258,259],[109,110,130,146,147,182,258,259],[109,258,259],[110,155,156],[290],[92,105,106,108,109,137,155,156],[110,236,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291],[92,109,110,155,156],[92,109,110],[109,110,151],[92,98,109,110,155,156],[92,98,109,110],[98,109,155,281],[109,110,155,156],[278],[92,107,110],[98],[101,103,105,147,151,152,154],[154,156],[151],[94,151,152],[102,103,105,147,151,152,294],[140],[151,152],[94],[94,95,151,153],[102,103,104,151,152,153],[95,151,152],[102,103,105,151,152],[102,105,151,152],[98,100,102,105,151,154],[153,154],[94,95,98,100,148,149,150,152,153,154],[94,98,152,154],[147],[110,130,152,154,155,184,247],[110,130,139,147],[110,130,228],[139,147,148],[145,152,263],[110,130,151,152,247,300],[98,130,139,147,292],[107],[100,112,154],[110,112,113,121,130,147,154,311],[112,113,122],[110,117,148],[137],[112],[122,130,147,154,311],[121],[112,113],[114,120,137],[110,111,112,113,121,137,309,315,316],[110,111,117,121,129,130,147,148],[92,111,112,123,127,137,148],[92,110,112,113,115],[112,113,116,117,118,122],[119,121],[109,125,137,177],[106,109],[125],[92,98,102,109,110,111,112,113,115,116,117,121,122,125,128,130,131,132,133,134,135,136,147,148,151,155,156],[92,106,109,115,124],[129,133],[106,129,133,148],[155,156],[97,155],[97,109,110,137,147,148,155],[92,98,106,153],[92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,198,199,200,201,202,203,204,205,206,227,228,229,230,231,232,233,234,235,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,312,313,314,317,318,319,320,321],[155],[392],[324,325],[324],[39,47,48],[48,49],[39,47],[39,42],[39,42,43,44,45,46,50,51,52,53,54,55,56,57,58,59,62,68,69,70,71,72,73,74,75,76,77,80,81,82,83,84,85,89],[39,43,52,60,61,62,63,64,65,67,68,90],[39,72],[78,79],[78],[39,52],[68],[86,87,88],[39,86],[39,47,86],[39,43,45,62,65,66],[40,345,346],[39,40,90],[39,40,90,91,344],[39,40,90,320]],"referencedMap":[[331,1],[339,2],[340,3],[335,4],[328,5],[330,6],[329,7],[343,8],[332,9],[341,10],[342,11],[344,12],[399,13],[398,14],[395,15],[352,16],[353,17],[354,18],[355,19],[356,20],[357,21],[359,22],[360,22],[361,23],[362,24],[363,25],[364,26],[365,27],[391,28],[366,22],[367,29],[368,30],[371,31],[372,32],[375,22],[376,33],[377,22],[380,34],[382,34],[383,35],[385,20],[388,36],[389,20],[334,37],[327,37],[39,38],[40,37],[336,39],[338,40],[337,39],[323,39],[167,41],[146,42],[168,43],[165,44],[144,45],[162,46],[161,47],[160,47],[159,47],[158,47],[157,47],[171,48],[173,49],[170,50],[172,51],[180,52],[148,53],[179,54],[176,55],[174,55],[175,56],[154,57],[130,58],[184,59],[182,60],[183,61],[99,62],[100,63],[147,64],[139,65],[187,66],[199,67],[200,68],[201,69],[202,70],[189,71],[190,72],[191,67],[192,72],[198,73],[188,67],[193,67],[194,72],[195,67],[196,72],[197,67],[204,74],[206,75],[207,60],[208,60],[210,76],[209,60],[212,77],[213,60],[214,78],[227,79],[215,77],[216,80],[217,77],[218,60],[211,60],[219,60],[220,81],[221,60],[222,77],[223,60],[224,60],[225,82],[226,60],[248,83],[249,84],[245,85],[244,86],[243,87],[242,88],[238,89],[237,90],[246,91],[234,92],[239,89],[231,93],[230,94],[253,95],[256,96],[241,97],[240,98],[235,99],[257,96],[127,100],[255,101],[126,102],[233,103],[232,104],[252,95],[251,105],[250,104],[260,106],[275,107],[269,108],[262,109],[265,110],[264,111],[272,107],[271,107],[270,107],[258,112],[259,113],[268,114],[267,115],[266,116],[290,117],[291,118],[110,119],[292,120],[236,121],[287,122],[288,123],[286,121],[289,124],[285,125],[283,124],[282,126],[281,124],[284,124],[280,127],[279,128],[278,129],[276,117],[277,127],[296,130],[102,131],[155,132],[150,133],[95,134],[295,135],[143,136],[141,136],[142,136],[293,136],[104,137],[297,138],[153,137],[152,139],[105,140],[94,141],[138,142],[103,143],[149,133],[254,133],[101,144],[98,145],[151,146],[115,147],[145,148],[129,148],[299,149],[228,150],[302,151],[229,151],[298,152],[247,150],[303,150],[300,153],[301,154],[294,155],[108,156],[311,157],[316,158],[308,159],[309,160],[315,161],[310,39],[113,162],[312,163],[122,164],[314,165],[121,166],[317,167],[131,168],[128,169],[116,170],[119,171],[120,172],[305,161],[178,173],[132,174],[304,175],[137,176],[125,177],[318,178],[134,179],[97,180],[319,181],[111,182],[321,74],[261,74],[177,74],[263,74],[136,74],[135,74],[124,74],[109,183],[320,74],[322,184],[156,185],[393,186],[326,187],[325,188],[46,37],[49,189],[50,190],[48,191],[52,37],[43,192],[42,37],[57,37],[58,37],[59,37],[90,193],[69,194],[73,195],[45,37],[66,37],[76,37],[72,37],[65,37],[77,195],[80,196],[79,197],[82,198],[62,37],[84,199],[89,200],[87,201],[86,191],[88,202],[64,37],[67,203],[347,204],[91,205],[345,206],[346,207]],"exportedModulesMap":[[331,1],[339,2],[340,3],[335,4],[328,5],[330,6],[329,7],[343,8],[332,9],[341,10],[342,11],[344,12],[399,13],[398,14],[395,15],[352,16],[353,17],[354,18],[355,19],[356,20],[357,21],[359,22],[360,22],[361,23],[362,24],[363,25],[364,26],[365,27],[391,28],[366,22],[367,29],[368,30],[371,31],[372,32],[375,22],[376,33],[377,22],[380,34],[382,34],[383,35],[385,20],[388,36],[389,20],[334,37],[327,37],[39,38],[40,37],[336,39],[338,40],[337,39],[323,39],[167,41],[146,42],[168,43],[165,44],[144,45],[162,46],[161,47],[160,47],[159,47],[158,47],[157,47],[171,48],[173,49],[170,50],[172,51],[180,52],[148,53],[179,54],[176,55],[174,55],[175,56],[154,57],[130,58],[184,59],[182,60],[183,61],[99,62],[100,63],[147,64],[139,65],[187,66],[199,67],[200,68],[201,69],[202,70],[189,71],[190,72],[191,67],[192,72],[198,73],[188,67],[193,67],[194,72],[195,67],[196,72],[197,67],[204,74],[206,75],[207,60],[208,60],[210,76],[209,60],[212,77],[213,60],[214,78],[227,79],[215,77],[216,80],[217,77],[218,60],[211,60],[219,60],[220,81],[221,60],[222,77],[223,60],[224,60],[225,82],[226,60],[248,83],[249,84],[245,85],[244,86],[243,87],[242,88],[238,89],[237,90],[246,91],[234,92],[239,89],[231,93],[230,94],[253,95],[256,96],[241,97],[240,98],[235,99],[257,96],[127,100],[255,101],[126,102],[233,103],[232,104],[252,95],[251,105],[250,104],[260,106],[275,107],[269,108],[262,109],[265,110],[264,111],[272,107],[271,107],[270,107],[258,112],[259,113],[268,114],[267,115],[266,116],[290,117],[291,118],[110,119],[292,120],[236,121],[287,122],[288,123],[286,121],[289,124],[285,125],[283,124],[282,126],[281,124],[284,124],[280,127],[279,128],[278,129],[276,117],[277,127],[296,130],[102,131],[155,132],[150,133],[95,134],[295,135],[143,136],[141,136],[142,136],[293,136],[104,137],[297,138],[153,137],[152,139],[105,140],[94,141],[138,142],[103,143],[149,133],[254,133],[101,144],[98,145],[151,146],[115,147],[145,148],[129,148],[299,149],[228,150],[302,151],[229,151],[298,152],[247,150],[303,150],[300,153],[301,154],[294,155],[108,156],[311,157],[316,158],[308,159],[309,160],[315,161],[310,39],[113,162],[312,163],[122,164],[314,165],[121,166],[317,167],[131,168],[128,169],[116,170],[119,171],[120,172],[305,161],[178,173],[132,174],[304,175],[137,176],[125,177],[318,178],[134,179],[97,180],[319,181],[111,182],[321,74],[261,74],[177,74],[263,74],[136,74],[135,74],[124,74],[109,183],[320,74],[322,184],[156,185],[393,186],[326,187],[325,188],[46,37],[49,189],[50,190],[48,191],[52,37],[43,192],[42,37],[57,37],[58,37],[59,37],[90,193],[69,194],[73,195],[45,37],[66,37],[76,37],[72,37],[65,37],[77,195],[80,196],[79,197],[82,198],[62,37],[84,199],[89,200],[87,201],[86,191],[88,202],[64,37],[67,203],[347,204],[91,205],[345,206],[346,207]],"semanticDiagnosticsPerFile":[331,339,340,335,328,330,329,343,332,341,342,344,399,394,398,395,397,396,348,350,351,352,353,354,355,356,357,358,359,360,361,362,349,390,363,364,365,391,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,37,334,327,35,39,40,38,336,338,337,323,167,146,168,166,165,144,164,163,162,161,160,159,158,157,171,173,169,170,172,180,148,179,176,174,175,92,154,130,186,106,185,184,182,183,99,100,96,147,139,181,187,199,200,201,202,189,190,191,192,198,188,193,194,195,196,197,203,204,206,205,207,208,210,209,212,213,214,227,215,216,217,218,211,219,220,221,222,223,224,225,226,248,249,245,244,243,242,238,237,246,234,239,231,230,253,256,241,240,235,257,127,255,126,233,232,252,251,250,260,275,269,274,262,265,264,272,271,270,258,273,259,268,267,266,290,291,110,292,236,287,288,286,289,285,283,282,281,284,280,279,278,276,277,296,102,155,150,95,295,140,143,141,142,293,104,297,153,152,105,94,138,103,149,254,101,98,151,115,145,129,299,228,302,229,298,247,303,300,301,294,307,108,107,306,311,316,308,112,309,315,310,113,312,313,122,314,123,121,317,117,131,114,128,116,119,120,118,305,178,132,304,137,125,133,318,134,97,319,111,321,261,177,263,136,135,124,109,320,322,93,156,393,392,36,333,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,33,1,34,326,325,324,46,41,49,50,48,51,52,43,53,54,60,55,56,42,57,61,44,58,59,90,69,70,71,73,45,66,74,75,76,72,65,77,80,79,78,81,82,62,63,83,84,85,68,89,87,86,88,64,47,67,347,91,345,346]},"version":"4.7.2"}
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/three",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.64",
|
|
4
4
|
"description": "Utility functions for using react-three-fiber with remotion",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
|
+
"types": "dist/cjs/index.d.ts",
|
|
7
|
+
"module": "dist/esm/index.mjs",
|
|
7
8
|
"sideEffects": false,
|
|
8
9
|
"scripts": {
|
|
9
10
|
"lint": "eslint src --ext ts,tsx",
|
|
10
11
|
"watch": "tsc -w",
|
|
11
|
-
"build": "tsc -d"
|
|
12
|
+
"build": "rollup --config rollup.config.js && tsc -d"
|
|
12
13
|
},
|
|
13
14
|
"author": "Björn Zeutzheim",
|
|
14
15
|
"contributors": [],
|
|
@@ -20,7 +21,7 @@
|
|
|
20
21
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
|
-
"remotion": "3.3.
|
|
24
|
+
"remotion": "3.3.64"
|
|
24
25
|
},
|
|
25
26
|
"peerDependencies": {
|
|
26
27
|
"@react-three/fiber": ">=8.0.0",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"devDependencies": {
|
|
32
33
|
"@jonny/eslint-config": "3.0.266",
|
|
33
34
|
"@react-three/fiber": ">=8.0.0",
|
|
35
|
+
"@rollup/plugin-typescript": "^8.2.0",
|
|
34
36
|
"@types/node": "^14.14.14",
|
|
35
37
|
"@types/react": "18.0.26",
|
|
36
38
|
"@types/react-reconciler": "^0.26.4",
|
|
@@ -41,6 +43,7 @@
|
|
|
41
43
|
"prettier-plugin-organize-imports": "^2.3.4",
|
|
42
44
|
"react": "18.0.0",
|
|
43
45
|
"react-dom": "18.0.0",
|
|
46
|
+
"rollup": "^2.70.1",
|
|
44
47
|
"three": "^0.145.0",
|
|
45
48
|
"typescript": "^4.7.0"
|
|
46
49
|
},
|
|
@@ -55,5 +58,5 @@
|
|
|
55
58
|
"publishConfig": {
|
|
56
59
|
"access": "public"
|
|
57
60
|
},
|
|
58
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "1a1b9b629f944b951b2085f46ff863a139589c5f"
|
|
59
62
|
}
|
package/rollup.config.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// rollup.config.js
|
|
2
|
+
import typescript from '@rollup/plugin-typescript';
|
|
3
|
+
|
|
4
|
+
export default [
|
|
5
|
+
{
|
|
6
|
+
input: 'src/index.ts',
|
|
7
|
+
output: [
|
|
8
|
+
{
|
|
9
|
+
file: 'dist/esm/index.mjs',
|
|
10
|
+
format: 'es',
|
|
11
|
+
sourcemap: false,
|
|
12
|
+
},
|
|
13
|
+
],
|
|
14
|
+
external: [
|
|
15
|
+
'react',
|
|
16
|
+
'remotion',
|
|
17
|
+
'react/jsx-runtime',
|
|
18
|
+
'@react-three/fiber',
|
|
19
|
+
'three/src/textures/VideoTexture.js',
|
|
20
|
+
],
|
|
21
|
+
plugins: [
|
|
22
|
+
typescript({
|
|
23
|
+
tsconfig: 'tsconfig-esm.json',
|
|
24
|
+
sourceMap: false,
|
|
25
|
+
outputToFilesystem: true,
|
|
26
|
+
}),
|
|
27
|
+
],
|
|
28
|
+
},
|
|
29
|
+
];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../tsconfig-esm.settings.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
"rootDir": "./src",
|
|
6
|
+
"outDir": "./dist/esm",
|
|
7
|
+
"skipLibCheck": true,
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"moduleResolution": "node"
|
|
10
|
+
},
|
|
11
|
+
"references": [{"path": "../core"}],
|
|
12
|
+
"include": ["./src"]
|
|
13
|
+
}
|