@revideo/player-react 0.5.10 → 0.5.11-alpha.1101

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.
@@ -1 +1 @@
1
- {"version":3,"file":"controls.d.ts","sourceRoot":"","sources":["../src/controls.tsx"],"names":[],"mappings":"AAwHA,wBAAgB,QAAQ,CAAC,EACvB,QAAQ,EACR,OAAO,EACP,UAAU,EACV,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,MAAM,EACN,SAAS,GACV,EAAE;IACD,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,iBAAiB,EAAE,OAAO,GAAG,SAAS,GAAG,UAAU,CAAC;IACpD,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC,2CAsBA"}
1
+ {"version":3,"file":"controls.d.ts","sourceRoot":"","sources":["../src/controls.tsx"],"names":[],"mappings":"AAoHA,wBAAgB,QAAQ,CAAC,EACvB,QAAQ,EACR,OAAO,EACP,UAAU,EACV,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,MAAM,EACN,SAAS,GACV,EAAE;IACD,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,iBAAiB,EAAE,OAAO,GAAG,SAAS,GAAG,UAAU,CAAC;IACpD,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC,2CAsBA"}
package/dist/controls.js CHANGED
@@ -3,7 +3,7 @@ import { useState } from 'react';
3
3
  import { MutedSoundIcon, PauseButton, PlayButton, SoundIcon } from './icons';
4
4
  import { getFormattedTime } from './utils';
5
5
  function PlayPause({ playing, setPlaying, }) {
6
- return (_jsx("button", { type: "button", className: "p-p-1", onClick: () => setPlaying(!playing), children: playing ? _jsx(PauseButton, {}) : _jsx(PlayButton, {}) }));
6
+ return (_jsx("button", { type: "button", className: "p-1", onClick: () => setPlaying(!playing), children: playing ? _jsx(PauseButton, {}) : _jsx(PlayButton, {}) }));
7
7
  }
8
8
  function VolumeSlider({ volume, setVolume, }) {
9
9
  const [isHovering, setIsHovering] = useState(false);
@@ -18,23 +18,23 @@ function VolumeSlider({ volume, setVolume, }) {
18
18
  setVolume(previousVolume);
19
19
  }
20
20
  };
21
- return (_jsxs("div", { className: "p-flex p-items-center p-space-x-2 p-relative", onMouseEnter: () => setIsHovering(true), onMouseLeave: () => {
21
+ return (_jsxs("div", { className: "flex items-center space-x-2 relative", onMouseEnter: () => setIsHovering(true), onMouseLeave: () => {
22
22
  if (!isInteracting) {
23
23
  setIsHovering(false);
24
24
  }
25
- }, children: [_jsx("div", { className: "p-w-6 p-h-6 p-flex p-items-center p-justify-center p-cursor-pointer", onClick: handleIconClick, children: volume === 0 ? _jsx(MutedSoundIcon, {}) : _jsx(SoundIcon, {}) }), (isHovering || isInteracting) && (_jsx("div", { className: "p-flex p-items-center p-h-1.5 p-whitespace-nowrap", children: _jsxs("div", { className: "p-relative p-w-20 p-h-1.5 p-bg-gray-300 p-rounded-full", children: [_jsx("div", { className: "p-absolute p-top-0 p-left-0 p-h-full p-bg-gray-100 p-rounded-full", style: { width: `${volume * 100}%` } }), _jsx("input", { type: "range", min: 0, max: 1, step: 0.01, value: volume, onChange: e => {
25
+ }, children: [_jsx("div", { className: "w-6 h-6 flex items-center justify-center cursor-pointer", onClick: handleIconClick, children: volume === 0 ? _jsx(MutedSoundIcon, {}) : _jsx(SoundIcon, {}) }), (isHovering || isInteracting) && (_jsx("div", { className: "flex items-center h-1.5 whitespace-nowrap", children: _jsxs("div", { className: "relative w-20 h-1.5 bg-gray-300 rounded-full", children: [_jsx("div", { className: "absolute top-0 left-0 h-full bg-gray-100 rounded-full", style: { width: `${volume * 100}%` } }), _jsx("input", { type: "range", min: 0, max: 1, step: 0.01, value: volume, onChange: e => {
26
26
  const newVolume = Number(e.target.value);
27
27
  setVolume(newVolume);
28
28
  if (newVolume > 0) {
29
29
  setPreviousVolume(newVolume);
30
30
  }
31
- }, onMouseDown: () => setIsInteracting(true), onMouseUp: () => setIsInteracting(false), onMouseLeave: () => setIsInteracting(false), className: "p-absolute p-top-0 p-left-0 p-w-full p-h-full p-opacity-0 p-cursor-pointer" })] }) }))] }));
31
+ }, onMouseDown: () => setIsInteracting(true), onMouseUp: () => setIsInteracting(false), onMouseLeave: () => setIsInteracting(false), className: "absolute top-0 left-0 w-full h-full opacity-0 cursor-pointer" })] }) }))] }));
32
32
  }
33
33
  function Timeline({ currentTime, duration, setCurrentTime, }) {
34
34
  const progressPercentage = (currentTime / duration) * 100;
35
- return (_jsxs("div", { className: "p-relative p-flex-1 p-w-full p-h-1.5 p-bg-gray-300 p-rounded-full p-overflow-hidden", children: [_jsx("div", { className: "p-absolute p-top-0 p-left-0 p-h-full p-bg-gray-100", style: { width: `${progressPercentage}%` } }), _jsx("input", { type: "range", value: currentTime, min: 0, max: duration, step: 0.01, className: "p-absolute p-top-0 p-left-0 p-w-full p-h-full p-opacity-0 p-cursor-pointer", onChange: event => setCurrentTime(Number(event.target.value)) })] }));
35
+ return (_jsxs("div", { className: "relative flex-1 w-full h-1.5 bg-gray-300 rounded-full overflow-hidden", children: [_jsx("div", { className: "absolute top-0 left-0 h-full bg-gray-100", style: { width: `${progressPercentage}%` } }), _jsx("input", { type: "range", value: currentTime, min: 0, max: duration, step: 0.01, className: "absolute top-0 left-0 w-full h-full opacity-0 cursor-pointer", onChange: event => setCurrentTime(Number(event.target.value)) })] }));
36
36
  }
37
37
  export function Controls({ duration, playing, setPlaying, currentTime, setForcedTime, timeDisplayFormat, volume, setVolume, }) {
38
- return (_jsxs("div", { className: "p-text-white p-p-4 p-flex-col p-space-y-2 p-bg-gradient-to-t p-from-gray-500 p-to-transparent", children: [_jsxs("div", { className: "p-flex p-items-center p-space-x-2", children: [_jsx(PlayPause, { playing: playing, setPlaying: setPlaying }), _jsxs("div", { className: "p-flex p-items-center p-space-x-2", children: [_jsx(VolumeSlider, { volume: volume, setVolume: setVolume }), _jsx("div", { children: _jsx("span", { children: getFormattedTime(currentTime, duration, timeDisplayFormat) }) })] }), _jsx("div", { className: "p-flex-grow" })] }), _jsx(Timeline, { currentTime: currentTime, duration: duration, setCurrentTime: setForcedTime })] }));
38
+ return (_jsxs("div", { className: "text-white p-4 flex-col space-y-2 bg-gradient-to-t from-gray-500 to-transparent", children: [_jsxs("div", { className: "flex items-center space-x-2", children: [_jsx(PlayPause, { playing: playing, setPlaying: setPlaying }), _jsxs("div", { className: "flex items-center space-x-2", children: [_jsx(VolumeSlider, { volume: volume, setVolume: setVolume }), _jsx("div", { children: _jsx("span", { children: getFormattedTime(currentTime, duration, timeDisplayFormat) }) })] }), _jsx("div", { className: "flex-grow" })] }), _jsx(Timeline, { currentTime: currentTime, duration: duration, setCurrentTime: setForcedTime })] }));
39
39
  }
40
40
  //# sourceMappingURL=controls.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"controls.js","sourceRoot":"","sources":["../src/controls.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"controls.js","sourceRoot":"","sources":["../src/controls.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAC,QAAQ,EAAC,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAC,cAAc,EAAE,WAAW,EAAE,UAAU,EAAE,SAAS,EAAC,MAAM,SAAS,CAAC;AAC3E,OAAO,EAAC,gBAAgB,EAAC,MAAM,SAAS,CAAC;AAEzC,SAAS,SAAS,CAAC,EACjB,OAAO,EACP,UAAU,GAIX;IACC,OAAO,CACL,iBAAQ,IAAI,EAAC,QAAQ,EAAC,SAAS,EAAC,KAAK,EAAC,OAAO,EAAE,GAAG,EAAE,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,YACtE,OAAO,CAAC,CAAC,CAAC,KAAC,WAAW,KAAG,CAAC,CAAC,CAAC,KAAC,UAAU,KAAG,GACpC,CACV,CAAC;AACJ,CAAC;AAED,SAAS,YAAY,CAAC,EACpB,MAAM,EACN,SAAS,GAIV;IACC,MAAM,CAAC,UAAU,EAAE,aAAa,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IACpD,MAAM,CAAC,aAAa,EAAE,gBAAgB,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC1D,MAAM,CAAC,cAAc,EAAE,iBAAiB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAExD,MAAM,eAAe,GAAG,GAAG,EAAE;QAC3B,IAAI,MAAM,GAAG,CAAC,EAAE,CAAC;YACf,iBAAiB,CAAC,MAAM,CAAC,CAAC;YAC1B,SAAS,CAAC,CAAC,CAAC,CAAC;QACf,CAAC;aAAM,CAAC;YACN,SAAS,CAAC,cAAc,CAAC,CAAC;QAC5B,CAAC;IACH,CAAC,CAAC;IAEF,OAAO,CACL,eACE,SAAS,EAAC,sCAAsC,EAChD,YAAY,EAAE,GAAG,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,EACvC,YAAY,EAAE,GAAG,EAAE;YACjB,IAAI,CAAC,aAAa,EAAE,CAAC;gBACnB,aAAa,CAAC,KAAK,CAAC,CAAC;YACvB,CAAC;QACH,CAAC,aAED,cACE,SAAS,EAAC,yDAAyD,EACnE,OAAO,EAAE,eAAe,YAEvB,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,KAAC,cAAc,KAAG,CAAC,CAAC,CAAC,KAAC,SAAS,KAAG,GAC9C,EACL,CAAC,UAAU,IAAI,aAAa,CAAC,IAAI,CAChC,cAAK,SAAS,EAAC,2CAA2C,YACxD,eAAK,SAAS,EAAC,8CAA8C,aAC3D,cACE,SAAS,EAAC,uDAAuD,EACjE,KAAK,EAAE,EAAC,KAAK,EAAE,GAAG,MAAM,GAAG,GAAG,GAAG,EAAC,GAClC,EACF,gBACE,IAAI,EAAC,OAAO,EACZ,GAAG,EAAE,CAAC,EACN,GAAG,EAAE,CAAC,EACN,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,CAAC,CAAC,EAAE;gCACZ,MAAM,SAAS,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;gCACzC,SAAS,CAAC,SAAS,CAAC,CAAC;gCACrB,IAAI,SAAS,GAAG,CAAC,EAAE,CAAC;oCAClB,iBAAiB,CAAC,SAAS,CAAC,CAAC;gCAC/B,CAAC;4BACH,CAAC,EACD,WAAW,EAAE,GAAG,EAAE,CAAC,gBAAgB,CAAC,IAAI,CAAC,EACzC,SAAS,EAAE,GAAG,EAAE,CAAC,gBAAgB,CAAC,KAAK,CAAC,EACxC,YAAY,EAAE,GAAG,EAAE,CAAC,gBAAgB,CAAC,KAAK,CAAC,EAC3C,SAAS,EAAC,8DAA8D,GACxE,IACE,GACF,CACP,IACG,CACP,CAAC;AACJ,CAAC;AAED,SAAS,QAAQ,CAAC,EAChB,WAAW,EACX,QAAQ,EACR,cAAc,GAKf;IACC,MAAM,kBAAkB,GAAG,CAAC,WAAW,GAAG,QAAQ,CAAC,GAAG,GAAG,CAAC;IAE1D,OAAO,CACL,eAAK,SAAS,EAAC,uEAAuE,aACpF,cACE,SAAS,EAAC,0CAA0C,EACpD,KAAK,EAAE,EAAC,KAAK,EAAE,GAAG,kBAAkB,GAAG,EAAC,GACxC,EACF,gBACE,IAAI,EAAC,OAAO,EACZ,KAAK,EAAE,WAAW,EAClB,GAAG,EAAE,CAAC,EACN,GAAG,EAAE,QAAQ,EACb,IAAI,EAAE,IAAI,EACV,SAAS,EAAC,8DAA8D,EACxE,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAC7D,IACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,QAAQ,CAAC,EACvB,QAAQ,EACR,OAAO,EACP,UAAU,EACV,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,MAAM,EACN,SAAS,GAUV;IACC,OAAO,CACL,eAAK,SAAS,EAAC,iFAAiF,aAC9F,eAAK,SAAS,EAAC,6BAA6B,aAC1C,KAAC,SAAS,IAAC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,GAAI,EACvD,eAAK,SAAS,EAAC,6BAA6B,aAC1C,KAAC,YAAY,IAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,GAAI,EACtD,wBACE,yBACG,gBAAgB,CAAC,WAAW,EAAE,QAAQ,EAAE,iBAAiB,CAAC,GACtD,GACH,IACF,EACN,cAAK,SAAS,EAAC,WAAW,GAAG,IACzB,EACN,KAAC,QAAQ,IACP,WAAW,EAAE,WAAW,EACxB,QAAQ,EAAE,QAAQ,EAClB,cAAc,EAAE,aAAa,GAC7B,IACE,CACP,CAAC;AACJ,CAAC"}
package/dist/icons.js CHANGED
@@ -1,9 +1,9 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  export function PlayButton() {
3
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "p-w-6 p-h-6", children: _jsx("path", { fillRule: "evenodd", d: "M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643V5.653Z", clipRule: "evenodd" }) }));
3
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "w-6 h-6", children: _jsx("path", { fillRule: "evenodd", d: "M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643V5.653Z", clipRule: "evenodd" }) }));
4
4
  }
5
5
  export function PauseButton() {
6
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "p-w-6 p-h-6", children: _jsx("path", { fillRule: "evenodd", d: "M6.75 5.25a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75V5.25Zm7.5 0A.75.75 0 0 1 15 4.5h1.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H15a.75.75 0 0 1-.75-.75V5.25Z", clipRule: "evenodd" }) }));
6
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "w-6 h-6", children: _jsx("path", { fillRule: "evenodd", d: "M6.75 5.25a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75V5.25Zm7.5 0A.75.75 0 0 1 15 4.5h1.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H15a.75.75 0 0 1-.75-.75V5.25Z", clipRule: "evenodd" }) }));
7
7
  }
8
8
  export function SoundIcon() {
9
9
  return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "p-w-6 p-h-6", children: [_jsx("path", { d: "M18.36,19.36a1,1,0,0,1-.7-.29,1,1,0,0,1,0-1.41,8,8,0,0,0,0-11.32,1,1,0,0,1,1.41-1.41,10,10,0,0,1,0,14.14A1,1,0,0,1,18.36,19.36Z" }), _jsx("path", { d: "M15.54,16.54a1,1,0,0,1-.71-.3,1,1,0,0,1,0-1.41,4,4,0,0,0,0-5.66,1,1,0,0,1,1.41-1.41,6,6,0,0,1,0,8.48A1,1,0,0,1,15.54,16.54Z" }), _jsx("path", { d: "M11.38,4.08a1,1,0,0,0-1.09.21L6.59,8H4a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2H6.59l3.7,3.71A1,1,0,0,0,11,20a.84.84,0,0,0,.38-.08A1,1,0,0,0,12,19V5A1,1,0,0,0,11.38,4.08Z" })] }));
package/dist/icons.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"icons.js","sourceRoot":"","sources":["../src/icons.tsx"],"names":[],"mappings":";AAAA,MAAM,UAAU,UAAU;IACxB,OAAO,CACL,cACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,YAEvB,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wIAAwI,EAC1I,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,WAAW;IACzB,OAAO,CACL,cACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,YAEvB,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wNAAwN,EAC1N,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,SAAS;IACvB,OAAO,CACL,eACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,aAEvB,eAAM,CAAC,EAAC,iIAAiI,GAAG,EAC5I,eAAM,CAAC,EAAC,6HAA6H,GAAG,EACxI,eAAM,CAAC,EAAC,iKAAiK,GAAG,IACxK,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,cAAc;IAC5B,OAAO,CACL,eACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,aAEvB,eAAM,CAAC,EAAC,iKAAiK,GAAG,EAC5K,eAAM,CAAC,EAAC,6FAA6F,GAAG,EACxG,eAAM,CAAC,EAAC,6FAA6F,GAAG,IACpG,CACP,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"icons.js","sourceRoot":"","sources":["../src/icons.tsx"],"names":[],"mappings":";AAAA,MAAM,UAAU,UAAU;IACxB,OAAO,CACL,cACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,SAAS,YAEnB,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wIAAwI,EAC1I,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,WAAW;IACzB,OAAO,CACL,cACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,SAAS,YAEnB,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wNAAwN,EAC1N,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,SAAS;IACvB,OAAO,CACL,eACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,aAEvB,eAAM,CAAC,EAAC,iIAAiI,GAAG,EAC5I,eAAM,CAAC,EAAC,6HAA6H,GAAG,EACxI,eAAM,CAAC,EAAC,iKAAiK,GAAG,IACxK,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,cAAc;IAC5B,OAAO,CACL,eACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,aAEvB,eAAM,CAAC,EAAC,iKAAiK,GAAG,EAC5K,eAAM,CAAC,EAAC,6FAA6F,GAAG,EACxG,eAAM,CAAC,EAAC,6FAA6F,GAAG,IACpG,CACP,CAAC;AACJ,CAAC"}
package/dist/index.css ADDED
@@ -0,0 +1,2 @@
1
+ .revideo-player-root{*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }
2
+ /*! tailwindcss v3.4.12 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e5e5;box-sizing:border-box}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#acacac;opacity:1}input::placeholder,textarea::placeholder{color:#acacac;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}}.revideo-player-root .static{position:static}.revideo-player-root .absolute{position:absolute}.revideo-player-root .relative{position:relative}.revideo-player-root .bottom-0{bottom:0}.revideo-player-root .left-0{left:0}.revideo-player-root .top-0{top:0}.revideo-player-root .block{display:block}.revideo-player-root .flex{display:flex}.revideo-player-root .contents{display:contents}.revideo-player-root .h-1\.5{height:.375rem}.revideo-player-root .h-6{height:1.5rem}.revideo-player-root .h-full{height:100%}.revideo-player-root .w-20{width:5rem}.revideo-player-root .w-6{width:1.5rem}.revideo-player-root .w-full{width:100%}.revideo-player-root .flex-1{flex:1 1 0%}.revideo-player-root .flex-grow{flex-grow:1}.revideo-player-root .cursor-default{cursor:default}.revideo-player-root .cursor-pointer{cursor:pointer}.revideo-player-root .flex-col{flex-direction:column}.revideo-player-root .items-center{align-items:center}.revideo-player-root .justify-center{justify-content:center}.revideo-player-root :is(.space-x-2>:not([hidden])~:not([hidden])){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.revideo-player-root :is(.space-y-2>:not([hidden])~:not([hidden])){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.revideo-player-root .overflow-hidden{overflow:hidden}.revideo-player-root .whitespace-nowrap{white-space:nowrap}.revideo-player-root .rounded-full{border-radius:9999px}.revideo-player-root .bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 243 243/var(--tw-bg-opacity))}.revideo-player-root .bg-gray-300{--tw-bg-opacity:1;background-color:rgb(199 199 199/var(--tw-bg-opacity))}.revideo-player-root .bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.revideo-player-root .from-gray-500{--tw-gradient-from:grey var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,50%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.revideo-player-root .to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.revideo-player-root .p-1{padding:.25rem}.revideo-player-root .p-4{padding:1rem}.revideo-player-root .text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.revideo-player-root .opacity-0{opacity:0}.revideo-player-root .opacity-100{opacity:1}.revideo-player-root .transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.revideo-player-root .transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.revideo-player-root .duration-200{transition-duration:.2s}.revideo-player-root .focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}
package/dist/index.d.ts CHANGED
@@ -1,8 +1,7 @@
1
- import { Player as CorePlayer } from '@revideo/core';
1
+ import { Player as CorePlayer, Project } from '@revideo/core';
2
2
  import { ComponentProps } from 'react';
3
- import './styles.css';
3
+ import './index.css';
4
4
  interface RevideoPlayerProps {
5
- src: `${string}/`;
6
5
  playing?: string;
7
6
  variables?: string;
8
7
  looping?: string;
@@ -10,6 +9,7 @@ interface RevideoPlayerProps {
10
9
  height?: number;
11
10
  quality?: number;
12
11
  fps?: number;
12
+ volume?: number;
13
13
  }
14
14
  declare global {
15
15
  namespace JSX {
@@ -19,7 +19,7 @@ declare global {
19
19
  }
20
20
  }
21
21
  interface PlayerProps {
22
- src: `${string}/`;
22
+ project: Project;
23
23
  controls?: boolean;
24
24
  variables?: Record<string, any>;
25
25
  playing?: boolean;
@@ -36,6 +36,6 @@ interface PlayerProps {
36
36
  onPlayerReady?: (player: CorePlayer) => void;
37
37
  onPlayerResize?: (rect: DOMRectReadOnly) => void;
38
38
  }
39
- export declare function Player({ src, controls, variables, playing, currentTime, volume, looping, fps, width, height, quality, timeDisplayFormat, onDurationChange, onTimeUpdate, onPlayerReady, onPlayerResize, }: PlayerProps): import("react/jsx-runtime").JSX.Element;
39
+ export declare function Player({ project, controls, variables, playing, currentTime, volume, looping, fps, width, height, quality, timeDisplayFormat, onDurationChange, onTimeUpdate, onPlayerReady, onPlayerResize, }: PlayerProps): import("react/jsx-runtime").JSX.Element;
40
40
  export {};
41
41
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,MAAM,IAAI,UAAU,EAAC,MAAM,eAAe,CAAC;AACnD,OAAO,EAAC,cAAc,EAA2C,MAAM,OAAO,CAAC;AAE/E,OAAO,cAAc,CAAC;AAGtB,UAAU,kBAAkB;IAC1B,GAAG,EAAE,GAAG,MAAM,GAAG,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,GAAG,CAAC;QACZ,UAAU,iBAAiB;YAEzB,gBAAgB,EAAE,kBAAkB,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC;SAC9D;KACF;CACF;AAED,UAAU,WAAW;IACnB,GAAG,EAAE,GAAG,MAAM,GAAG,CAAC;IAElB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iBAAiB,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,SAAS,CAAC;IAErD,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,YAAY,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,aAAa,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IAC7C,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,eAAe,KAAK,IAAI,CAAC;CAClD;AAED,wBAAgB,MAAM,CAAC,EACrB,GAAG,EAEH,QAAe,EACf,SAAc,EACd,OAAe,EACf,WAAe,EACf,MAAU,EACV,OAAc,EACd,GAAQ,EAER,KAAiB,EACjB,MAAkB,EAClB,OAAmB,EACnB,iBAA2B,EAE3B,gBAA2B,EAC3B,YAAuB,EACvB,aAAwB,EACxB,cAAyB,GAC1B,EAAE,WAAW,2CA8Lb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,MAAM,IAAI,UAAU,EAAE,OAAO,EAAC,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAC,cAAc,EAA2C,MAAM,OAAO,CAAC;AAE/E,OAAO,aAAa,CAAC;AAGrB,UAAU,kBAAkB;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,GAAG,CAAC;QACZ,UAAU,iBAAiB;YAEzB,gBAAgB,EAAE,kBAAkB,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC;SAC9D;KACF;CACF;AAED,UAAU,WAAW;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iBAAiB,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,SAAS,CAAC;IAErD,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,YAAY,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,aAAa,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IAC7C,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,eAAe,KAAK,IAAI,CAAC;CAClD;AAED,wBAAgB,MAAM,CAAC,EACrB,OAAO,EACP,QAAe,EACf,SAAc,EACd,OAAe,EACf,WAAe,EACf,MAAU,EACV,OAAc,EACd,GAAQ,EAER,KAAiB,EACjB,MAAkB,EAClB,OAAmB,EACnB,iBAA2B,EAE3B,gBAA2B,EAC3B,YAAuB,EACvB,aAAwB,EACxB,cAAyB,GAC1B,EAAE,WAAW,2CA6Lb"}
package/dist/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { useCallback, useEffect, useRef, useState } from 'react';
4
4
  import { Controls } from './controls';
5
- import './styles.css';
5
+ import './index.css';
6
6
  import { shouldShowControls } from './utils';
7
- export function Player({ src, controls = true, variables = {}, playing = false, currentTime = 0, volume = 1, looping = true, fps = 30, width = undefined, height = undefined, quality = undefined, timeDisplayFormat = 'MM:SS', onDurationChange = () => { }, onTimeUpdate = () => { }, onPlayerReady = () => { }, onPlayerResize = () => { }, }) {
7
+ export function Player({ project, controls = true, variables = {}, playing = false, currentTime = 0, volume = 1, looping = true, fps = 30, width = undefined, height = undefined, quality = undefined, timeDisplayFormat = 'MM:SS', onDurationChange = () => { }, onTimeUpdate = () => { }, onPlayerReady = () => { }, onPlayerResize = () => { }, }) {
8
8
  const [playingState, setPlaying] = useState(playing);
9
9
  const [isMouseOver, setIsMouseOver] = useState(false);
10
10
  const [currentTimeState, setCurrentTime] = useState(currentTime);
@@ -26,7 +26,7 @@ export function Player({ src, controls = true, variables = {}, playing = false,
26
26
  */
27
27
  useEffect(() => {
28
28
  const diff = Math.abs(currentTime - currentTimeState);
29
- if (diff > 0.03) {
29
+ if (diff > 0.05) {
30
30
  setForcedTime(currentTime);
31
31
  }
32
32
  }, [currentTime]);
@@ -66,17 +66,15 @@ export function Player({ src, controls = true, variables = {}, playing = false,
66
66
  };
67
67
  const handlePlayerResize = useCallback((entries) => {
68
68
  const [firstEntry] = entries;
69
- if (!firstEntry || !wrapperRef.current) {
69
+ if (!firstEntry || !wrapperRef.current || !lastRect.current) {
70
70
  return;
71
71
  }
72
72
  const newRect = firstEntry.contentRect;
73
- const sameWidth = newRect.width === lastRect.current.width;
74
- const sameHeight = newRect.height === lastRect.current.height;
75
- if (lastRect.current && sameWidth && sameHeight) {
76
- return;
73
+ if (newRect.width !== lastRect.current.width ||
74
+ newRect.height !== lastRect.current.height) {
75
+ lastRect.current = newRect;
76
+ onPlayerResize(newRect);
77
77
  }
78
- lastRect.current = newRect;
79
- onPlayerResize(newRect);
80
78
  }, [onPlayerResize]);
81
79
  useEffect(() => {
82
80
  if (!wrapperRef.current)
@@ -91,7 +89,11 @@ export function Player({ src, controls = true, variables = {}, playing = false,
91
89
  * Import the player and add all event listeners.
92
90
  */
93
91
  useEffect(() => {
94
- import('./internal');
92
+ import('./internal').then(() => {
93
+ if (playerRef.current) {
94
+ playerRef.current.setProject(project);
95
+ }
96
+ });
95
97
  playerRef.current?.addEventListener('timeupdate', handleTimeUpdate);
96
98
  playerRef.current?.addEventListener('duration', handleDurationUpdate);
97
99
  playerRef.current?.addEventListener('playerready', handlePlayerReady);
@@ -101,12 +103,8 @@ export function Player({ src, controls = true, variables = {}, playing = false,
101
103
  playerRef.current?.removeEventListener('duration', handleDurationUpdate);
102
104
  playerRef.current?.removeEventListener('playerready', handlePlayerReady);
103
105
  document.removeEventListener('keydown', handleKeyDown);
104
- const frameElement = document.getElementById('revideo-2d-frame');
105
- if (frameElement) {
106
- frameElement.remove();
107
- }
108
106
  };
109
- }, []);
107
+ }, [project]);
110
108
  /**
111
109
  * When the forced time changes, seek to that time.
112
110
  */
@@ -121,8 +119,8 @@ export function Player({ src, controls = true, variables = {}, playing = false,
121
119
  playerRef.current.dispatchEvent(new CustomEvent('volumechange', { detail: volume }));
122
120
  }
123
121
  }
124
- return (_jsx("div", { "data-player": "true", style: { display: 'contents' }, children: _jsx("div", { ref: wrapperRef, className: "p-relative p-cursor-default p-focus:outline-none", onFocus: () => (focus.current = true), onBlur: () => (focus.current = false), tabIndex: 0, onMouseEnter: () => setIsMouseOver(true), onMouseLeave: () => setIsMouseOver(false), children: _jsxs("div", { className: "p-relative", children: [_jsx("revideo-player", { ref: playerRef, src: src, playing: String(playingState), onClick: onClickHandler, variables: JSON.stringify(variables), looping: looping ? 'true' : 'false', width: width, height: height, quality: quality, fps: fps }), _jsx("div", { className: `p-absolute p-bottom-0 p-w-full p-transition-opacity p-duration-200 ${shouldShowControls(playingState, isMouseOver, !controls)
125
- ? 'p-opacity-100'
126
- : 'p-opacity-0'}`, children: _jsx(Controls, { duration: duration, playing: playingState, setPlaying: setPlaying, currentTime: currentTimeState, setForcedTime: setForcedTime, timeDisplayFormat: timeDisplayFormat, volume: volumeState, setVolume: setForcedVolume }) })] }) }) }));
122
+ return (_jsx("div", { className: "revideo-player-root", style: { display: 'contents' }, children: _jsx("div", { ref: wrapperRef, className: "relative cursor-default focus:outline-none", onFocus: () => (focus.current = true), onBlur: () => (focus.current = false), tabIndex: 0, onMouseEnter: () => setIsMouseOver(true), onMouseLeave: () => setIsMouseOver(false), children: _jsxs("div", { className: "relative", children: [_jsx("revideo-player", { ref: playerRef, playing: String(playingState), onClick: onClickHandler, variables: JSON.stringify(variables), looping: looping ? 'true' : 'false', width: width, height: height, quality: quality, fps: fps, volume: volumeState }), _jsx("div", { className: `absolute bottom-0 w-full transition-opacity duration-200 ${shouldShowControls(playingState, isMouseOver, !controls)
123
+ ? 'opacity-100'
124
+ : 'opacity-0'}`, children: _jsx(Controls, { duration: duration, playing: playingState, setPlaying: setPlaying, currentTime: currentTimeState, setForcedTime: setForcedTime, timeDisplayFormat: timeDisplayFormat, volume: volumeState, setVolume: setForcedVolume }) })] }) }) }));
127
125
  }
128
126
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,EAAiB,WAAW,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAC,MAAM,OAAO,CAAC;AAC/E,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AACpC,OAAO,cAAc,CAAC;AACtB,OAAO,EAAC,kBAAkB,EAAC,MAAM,SAAS,CAAC;AA4C3C,MAAM,UAAU,MAAM,CAAC,EACrB,GAAG,EAEH,QAAQ,GAAG,IAAI,EACf,SAAS,GAAG,EAAE,EACd,OAAO,GAAG,KAAK,EACf,WAAW,GAAG,CAAC,EACf,MAAM,GAAG,CAAC,EACV,OAAO,GAAG,IAAI,EACd,GAAG,GAAG,EAAE,EAER,KAAK,GAAG,SAAS,EACjB,MAAM,GAAG,SAAS,EAClB,OAAO,GAAG,SAAS,EACnB,iBAAiB,GAAG,OAAO,EAE3B,gBAAgB,GAAG,GAAG,EAAE,GAAE,CAAC,EAC3B,YAAY,GAAG,GAAG,EAAE,GAAE,CAAC,EACvB,aAAa,GAAG,GAAG,EAAE,GAAE,CAAC,EACxB,cAAc,GAAG,GAAG,EAAE,GAAE,CAAC,GACb;IACZ,MAAM,CAAC,YAAY,EAAE,UAAU,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;IACrD,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IACtD,MAAM,CAAC,gBAAgB,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAC,WAAW,CAAC,CAAC;IACjE,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;IACvD,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;IAE7C,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;IAC5B,MAAM,SAAS,GAAG,MAAM,CAAwB,IAAI,CAAC,CAAC;IACtD,MAAM,UAAU,GAAG,MAAM,CAAwB,IAAI,CAAC,CAAC;IACvD,MAAM,QAAQ,GAAG,MAAM,CAAyB,IAAI,CAAC,CAAC;IAEtD,MAAM,cAAc,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAE9E;;OAEG;IACH,SAAS,CAAC,GAAG,EAAE;QACb,UAAU,CAAC,OAAO,CAAC,CAAC;IACtB,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAEd;;OAEG;IACH,SAAS,CAAC,GAAG,EAAE;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,WAAW,GAAG,gBAAgB,CAAC,CAAC;QACtD,IAAI,IAAI,GAAG,IAAI,EAAE,CAAC;YAChB,aAAa,CAAC,WAAW,CAAC,CAAC;QAC7B,CAAC;IACH,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC;IAElB,SAAS,CAAC,GAAG,EAAE;QACb,eAAe,CAAC,MAAM,CAAC,CAAC;IAC1B,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAEb;;OAEG;IACH,MAAM,gBAAgB,GAAG,CAAC,KAAY,EAAE,EAAE;QACxC,MAAM,CAAC,GAAG,KAAoB,CAAC;QAC/B,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;QACzB,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;IACzB,CAAC,CAAC;IAEF;;OAEG;IACH,MAAM,oBAAoB,GAAG,CAAC,KAAY,EAAE,EAAE;QAC5C,MAAM,CAAC,GAAG,KAAoB,CAAC;QAC/B,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;QACtB,gBAAgB,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;IAC7B,CAAC,CAAC;IAEF;;OAEG;IACH,MAAM,aAAa,GAAG,CAAC,KAAoB,EAAE,EAAE;QAC7C,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC;YAC5C,KAAK,CAAC,cAAc,EAAE,CAAC;YACvB,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;QAC5B,CAAC;IACH,CAAC,CAAC;IAEF,MAAM,iBAAiB,GAAG,CAAC,KAAY,EAAE,EAAE;QACzC,MAAM,MAAM,GAAI,KAAqB,CAAC,MAAM,CAAC;QAC7C,IAAI,MAAM,EAAE,CAAC;YACX,aAAa,CAAC,MAAM,CAAC,CAAC;QACxB,CAAC;IACH,CAAC,CAAC;IAEF,MAAM,kBAAkB,GAAG,WAAW,CACpC,CAAC,OAA8B,EAAE,EAAE;QACjC,MAAM,CAAC,UAAU,CAAC,GAAG,OAAO,CAAC;QAC7B,IAAI,CAAC,UAAU,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC;YACvC,OAAO;QACT,CAAC;QAED,MAAM,OAAO,GAAG,UAAU,CAAC,WAAW,CAAC;QACvC,MAAM,SAAS,GAAG,OAAO,CAAC,KAAK,KAAK,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC;QAC3D,MAAM,UAAU,GAAG,OAAO,CAAC,MAAM,KAAK,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC;QAC9D,IAAI,QAAQ,CAAC,OAAO,IAAI,SAAS,IAAI,UAAU,EAAE,CAAC;YAChD,OAAO;QACT,CAAC;QAED,QAAQ,CAAC,OAAO,GAAG,OAAO,CAAC;QAC3B,cAAc,CAAC,OAAO,CAAC,CAAC;IAC1B,CAAC,EACD,CAAC,cAAc,CAAC,CACjB,CAAC;IAEF,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,UAAU,CAAC,OAAO;YAAE,OAAO;QAEhC,MAAM,cAAc,GAAG,IAAI,cAAc,CAAC,kBAAkB,CAAC,CAAC;QAC9D,cAAc,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;QAE3C,OAAO,GAAG,EAAE;YACV,cAAc,CAAC,UAAU,EAAE,CAAC;QAC9B,CAAC,CAAC;IACJ,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC,CAAC;IAEzB;;OAEG;IACH,SAAS,CAAC,GAAG,EAAE;QACb,MAAM,CAAC,YAAY,CAAC,CAAC;QAErB,SAAS,CAAC,OAAO,EAAE,gBAAgB,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;QACpE,SAAS,CAAC,OAAO,EAAE,gBAAgB,CAAC,UAAU,EAAE,oBAAoB,CAAC,CAAC;QACtE,SAAS,CAAC,OAAO,EAAE,gBAAgB,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;QACtE,QAAQ,CAAC,gBAAgB,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;QAEpD,OAAO,GAAG,EAAE;YACV,SAAS,CAAC,OAAO,EAAE,mBAAmB,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;YACvE,SAAS,CAAC,OAAO,EAAE,mBAAmB,CAAC,UAAU,EAAE,oBAAoB,CAAC,CAAC;YACzE,SAAS,CAAC,OAAO,EAAE,mBAAmB,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;YACzE,QAAQ,CAAC,mBAAmB,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;YACvD,MAAM,YAAY,GAAG,QAAQ,CAAC,cAAc,CAAC,kBAAkB,CAAC,CAAC;YACjE,IAAI,YAAY,EAAE,CAAC;gBACjB,YAAY,CAAC,MAAM,EAAE,CAAC;YACxB,CAAC;QACH,CAAC,CAAC;IACJ,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP;;OAEG;IACH,SAAS,aAAa,CAAC,UAAkB;QACvC,IAAI,SAAS,CAAC,OAAO,EAAE,CAAC;YACtB,SAAS,CAAC,OAAO,CAAC,aAAa,CAC7B,IAAI,WAAW,CAAC,QAAQ,EAAE,EAAC,MAAM,EAAE,UAAU,EAAC,CAAC,CAChD,CAAC;QACJ,CAAC;IACH,CAAC;IAED,SAAS,eAAe,CAAC,MAAc;QACrC,cAAc,CAAC,MAAM,CAAC,CAAC;QACvB,IAAI,SAAS,CAAC,OAAO,EAAE,CAAC;YACtB,SAAS,CAAC,OAAO,CAAC,aAAa,CAC7B,IAAI,WAAW,CAAC,cAAc,EAAE,EAAC,MAAM,EAAE,MAAM,EAAC,CAAC,CAClD,CAAC;QACJ,CAAC;IACH,CAAC;IAED,OAAO,CACL,6BAAiB,MAAM,EAAC,KAAK,EAAE,EAAC,OAAO,EAAE,UAAU,EAAC,YAClD,cACE,GAAG,EAAE,UAAU,EACf,SAAS,EAAC,kDAAkD,EAC5D,OAAO,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,GAAG,IAAI,CAAC,EACrC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,EACrC,QAAQ,EAAE,CAAC,EACX,YAAY,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,EACxC,YAAY,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,KAAK,CAAC,YAEzC,eAAK,SAAS,EAAC,YAAY,aACzB,yBACE,GAAG,EAAE,SAAS,EACd,GAAG,EAAE,GAAG,EACR,OAAO,EAAE,MAAM,CAAC,YAAY,CAAC,EAC7B,OAAO,EAAE,cAAc,EACvB,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,EACpC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EACnC,KAAK,EAAE,KAAK,EACZ,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,OAAO,EAChB,GAAG,EAAE,GAAG,GACR,EACF,cACE,SAAS,EAAE,sEACT,kBAAkB,CAAC,YAAY,EAAE,WAAW,EAAE,CAAC,QAAQ,CAAC;4BACtD,CAAC,CAAC,eAAe;4BACjB,CAAC,CAAC,aACN,EAAE,YAEF,KAAC,QAAQ,IACP,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,YAAY,EACrB,UAAU,EAAE,UAAU,EACtB,WAAW,EAAE,gBAAgB,EAC7B,aAAa,EAAE,aAAa,EAC5B,iBAAiB,EAAE,iBAAiB,EACpC,MAAM,EAAE,WAAW,EACnB,SAAS,EAAE,eAAe,GAC1B,GACE,IACF,GACF,GACF,CACP,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
package/dist/internal.js CHANGED
@@ -1,5 +1,4 @@
1
- import { Player, Stage } from '@revideo/core';
2
- import { v4 as uuidv4 } from 'uuid';
1
+ import { Player, Stage, getFullPreviewSettings } from '@revideo/core';
3
2
  import { Vector2 } from '@revideo/core';
4
3
  const stylesNew = `
5
4
  .overlay {
@@ -34,7 +33,6 @@ var State;
34
33
  class RevideoPlayer extends HTMLElement {
35
34
  static get observedAttributes() {
36
35
  return [
37
- 'src',
38
36
  'playing',
39
37
  'variables',
40
38
  'looping',
@@ -42,23 +40,26 @@ class RevideoPlayer extends HTMLElement {
42
40
  'quality',
43
41
  'width',
44
42
  'height',
43
+ 'volume',
45
44
  ];
46
45
  }
47
46
  get fps() {
48
47
  const attr = this.getAttribute('fps');
49
- return attr ? parseFloat(attr) : this.defaultSettings?.fps ?? 60;
48
+ return attr ? parseFloat(attr) : (this.defaultSettings?.fps ?? 60);
50
49
  }
51
50
  get quality() {
52
51
  const attr = this.getAttribute('quality');
53
- return attr ? parseFloat(attr) : this.defaultSettings?.resolutionScale ?? 1;
52
+ return attr
53
+ ? parseFloat(attr)
54
+ : (this.defaultSettings?.resolutionScale ?? 1);
54
55
  }
55
56
  get width() {
56
57
  const attr = this.getAttribute('width');
57
- return attr ? parseFloat(attr) : this.defaultSettings?.size.width ?? 0;
58
+ return attr ? parseFloat(attr) : (this.defaultSettings?.size.width ?? 0);
58
59
  }
59
60
  get height() {
60
61
  const attr = this.getAttribute('height');
61
- return attr ? parseFloat(attr) : this.defaultSettings?.size.height ?? 0;
62
+ return attr ? parseFloat(attr) : (this.defaultSettings?.size.height ?? 0);
62
63
  }
63
64
  get variables() {
64
65
  try {
@@ -84,7 +85,7 @@ class RevideoPlayer extends HTMLElement {
84
85
  duration = 0; // in frames
85
86
  looping = true;
86
87
  volume = 1;
87
- volumeChangeRequested = false;
88
+ volumeChangeRequested = true;
88
89
  constructor() {
89
90
  super();
90
91
  this.root = this.attachShadow({ mode: 'open' });
@@ -95,6 +96,9 @@ class RevideoPlayer extends HTMLElement {
95
96
  this.root.prepend(this.canvas);
96
97
  this.setState(State.Initial);
97
98
  }
99
+ setProject(project) {
100
+ this.updateProject(project);
101
+ }
98
102
  setState(state) {
99
103
  this.state = state;
100
104
  this.setPlaying(this.playing);
@@ -109,56 +113,32 @@ class RevideoPlayer extends HTMLElement {
109
113
  this.playing = false;
110
114
  }
111
115
  }
112
- async updateSource(source) {
116
+ async updateProject(project) {
117
+ const playing = this.playing;
113
118
  this.setState(State.Initial);
114
119
  this.abortController?.abort();
115
120
  this.abortController = new AbortController();
116
- let project;
117
- try {
118
- const promise = import(
119
- /* webpackIgnore: true */ source + `project.js?instance=${uuidv4()}`);
120
- const delay = new Promise(resolve => setTimeout(resolve, 200));
121
- await Promise.any([delay, promise]);
122
- this.setState(State.Loading);
123
- project = (await promise).default;
124
- }
125
- catch (e) {
126
- console.error(e);
127
- this.setState(State.Error);
128
- return;
129
- }
130
- try {
131
- const link = document.createElement('link');
132
- link.rel = 'stylesheet';
133
- link.href = source + 'project.css';
134
- document.head.appendChild(link);
135
- }
136
- catch (e) {
137
- console.error(e);
138
- }
139
- project.setAssetBase(source);
140
- this.defaultSettings = project.meta.getFullPreviewSettings();
141
- const player = new Player(project);
121
+ this.project = project;
122
+ console.log(project);
123
+ this.defaultSettings = getFullPreviewSettings(this.project);
124
+ const player = new Player(this.project);
142
125
  player.setVariables(this.variables);
143
126
  player.toggleLoop(this.looping);
144
127
  this.player?.onRender.unsubscribe(this.render);
145
128
  this.player?.onFrameChanged.unsubscribe(this.handleFrameChanged);
146
129
  this.player?.togglePlayback(false);
147
130
  this.player?.deactivate();
148
- this.project = project;
149
131
  this.player = player;
150
132
  this.updateSettings();
151
- this.player.onRender.subscribe(this.render);
152
- this.player.onFrameChanged.subscribe(this.handleFrameChanged);
153
- this.player.togglePlayback(this.playing);
154
133
  this.setState(State.Ready);
155
134
  this.dispatchEvent(new CustomEvent('playerready', { detail: this.player }));
135
+ // Restore previous state
136
+ this.setPlaying(playing);
137
+ this.player.onRender.subscribe(this.render);
138
+ this.player.onFrameChanged.subscribe(this.handleFrameChanged);
156
139
  }
157
140
  attributeChangedCallback(name, _, newValue) {
158
141
  switch (name) {
159
- case 'src':
160
- this.updateSource(newValue);
161
- break;
162
142
  case 'playing':
163
143
  this.setPlaying(newValue === 'true');
164
144
  break;
@@ -177,6 +157,9 @@ class RevideoPlayer extends HTMLElement {
177
157
  case 'height':
178
158
  this.updateSettings();
179
159
  break;
160
+ case 'volume':
161
+ this.volume = newValue;
162
+ this.volumeChangeRequested = true;
180
163
  }
181
164
  }
182
165
  /**
@@ -221,7 +204,7 @@ class RevideoPlayer extends HTMLElement {
221
204
  * Triggered by the player.
222
205
  */
223
206
  handleFrameChanged = (frame) => {
224
- if (!this.project) {
207
+ if (!this.project || !this.player) {
225
208
  return;
226
209
  }
227
210
  this.time = frame / this.player.playback.fps;
@@ -1 +1 @@
1
- {"version":3,"file":"internal.js","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"internal.js","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../src/icons.tsx","../src/utils.ts","../src/controls.tsx","../../core/lib/events/EventDispatcherBase.d.ts","../../core/lib/events/AsyncEventDispatcher.d.ts","../../core/lib/events/EventDispatcher.d.ts","../../core/lib/events/FlagDispatcher.d.ts","../../core/lib/events/ValueDispatcher.d.ts","../../core/lib/events/index.d.ts","../../core/lib/app/Logger.d.ts","../../core/lib/types/Type.d.ts","../../core/lib/types/Origin.d.ts","../../core/lib/types/Vector.d.ts","../../core/lib/types/Matrix2D.d.ts","../../core/lib/types/Spacing.d.ts","../../core/lib/types/BBox.d.ts","../../core/lib/types/Canvas.d.ts","../../../node_modules/@types/chroma-js/index.d.ts","../../core/lib/types/Color.d.ts","../../core/lib/types/Matrix.d.ts","../../core/lib/types/index.d.ts","../../core/lib/tweening/interpolationFunctions.d.ts","../../core/lib/threading/ThreadGenerator.d.ts","../../core/lib/threading/Thread.d.ts","../../core/lib/threading/cancel.d.ts","../../core/lib/threading/join.d.ts","../../core/lib/threading/names.d.ts","../../core/lib/threading/spawn.d.ts","../../core/lib/threading/threads.d.ts","../../core/lib/threading/index.d.ts","../../core/lib/tweening/spring.d.ts","../../core/lib/tweening/timingFunctions.d.ts","../../core/lib/tweening/tween.d.ts","../../core/lib/tweening/index.d.ts","../../core/lib/signals/DependencyContext.d.ts","../../core/lib/signals/symbols.d.ts","../../core/lib/signals/types.d.ts","../../core/lib/signals/SignalContext.d.ts","../../core/lib/signals/CompoundSignalContext.d.ts","../../core/lib/signals/ComputedContext.d.ts","../../core/lib/signals/createComputed.d.ts","../../core/lib/signals/createComputedAsync.d.ts","../../core/lib/signals/createSignal.d.ts","../../core/lib/signals/utils.d.ts","../../core/lib/signals/index.d.ts","../../core/lib/meta/MetaField.d.ts","../../core/lib/meta/BoolMetaField.d.ts","../../core/lib/meta/ColorMetaField.d.ts","../../core/lib/meta/MetaOption.d.ts","../../core/lib/meta/EnumMetaField.d.ts","../../core/lib/meta/ExporterMetaFile.d.ts","../../core/lib/meta/MetaFile.d.ts","../../core/lib/meta/NumberMetaField.d.ts","../../core/lib/meta/ObjectMetaField.d.ts","../../core/lib/meta/RangeMetaField.d.ts","../../core/lib/meta/StringMetaField.d.ts","../../core/lib/meta/Vector2MetaField.d.ts","../../core/lib/meta/index.d.ts","../../core/lib/app/ProjectMetadata.d.ts","../../core/lib/app/SettingsMetadata.d.ts","../../core/lib/app/Project.d.ts","../../core/lib/app/Stage.d.ts","../../core/lib/app/TimeEstimator.d.ts","../../core/lib/app/Renderer.d.ts","../../core/lib/exporter/Exporter.d.ts","../../core/lib/exporter/FFmpegExporter.d.ts","../../core/lib/exporter/ImageExporter.d.ts","../../core/lib/exporter/WasmExporter.d.ts","../../core/lib/exporter/index.d.ts","../../core/lib/plugin/Plugin.d.ts","../../core/lib/plugin/makePlugin.d.ts","../../core/lib/plugin/index.d.ts","../../core/lib/scenes/Random.d.ts","../../core/lib/scenes/timeEvents/TimeEvent.d.ts","../../core/lib/scenes/timeEvents/TimeEvents.d.ts","../../core/lib/scenes/timeEvents/EditableTimeEvents.d.ts","../../core/lib/scenes/timeEvents/ReadOnlyTimeEvents.d.ts","../../core/lib/scenes/timeEvents/SerializedTimeEvent.d.ts","../../core/lib/scenes/timeEvents/index.d.ts","../../core/lib/scenes/SceneMetadata.d.ts","../../core/lib/app/SharedWebGLContext.d.ts","../../core/lib/scenes/Shaders.d.ts","../../core/lib/scenes/Slides.d.ts","../../core/lib/scenes/Variables.d.ts","../../core/lib/scenes/Scene.d.ts","../../core/lib/scenes/LifecycleEvents.d.ts","../../core/lib/scenes/Threadable.d.ts","../../core/lib/scenes/GeneratorScene.d.ts","../../core/lib/scenes/Inspectable.d.ts","../../core/lib/scenes/SceneState.d.ts","../../core/lib/scenes/index.d.ts","../../core/lib/app/PlaybackManager.d.ts","../../core/lib/app/PlaybackStatus.d.ts","../../core/lib/media/AudioData.d.ts","../../core/lib/media/AudioManager.d.ts","../../core/lib/media/loadImage.d.ts","../../core/lib/media/index.d.ts","../../core/lib/app/Player.d.ts","../../core/lib/app/Presenter.d.ts","../../core/lib/app/bootstrap.d.ts","../../core/lib/app/index.d.ts","../../core/lib/decorators/decorate.d.ts","../../core/lib/decorators/lazy.d.ts","../../core/lib/decorators/threadable.d.ts","../../core/lib/decorators/index.d.ts","../../core/lib/flow/all.d.ts","../../core/lib/flow/any.d.ts","../../core/lib/flow/chain.d.ts","../../core/lib/flow/delay.d.ts","../../core/lib/flow/every.d.ts","../../core/lib/flow/loop.d.ts","../../core/lib/flow/loopFor.d.ts","../../core/lib/flow/loopUntil.d.ts","../../core/lib/flow/noop.d.ts","../../core/lib/flow/run.d.ts","../../core/lib/flow/scheduling.d.ts","../../core/lib/flow/sequence.d.ts","../../core/lib/flow/index.d.ts","../../core/lib/plugin/DefaultPlugin.d.ts","../../core/lib/transitions/fadeTransition.d.ts","../../core/lib/transitions/slideTransition.d.ts","../../core/lib/transitions/useTransition.d.ts","../../core/lib/transitions/zoomInTransition.d.ts","../../core/lib/transitions/zoomOutTransition.d.ts","../../core/lib/transitions/index.d.ts","../../core/lib/utils/DetailedError.d.ts","../../core/lib/utils/ExperimentalError.d.ts","../../core/lib/utils/Semaphore.d.ts","../../core/lib/utils/beginSlide.d.ts","../../core/lib/utils/capitalize.d.ts","../../core/lib/utils/createRef.d.ts","../../core/lib/utils/createRefArray.d.ts","../../core/lib/utils/createRefMap.d.ts","../../core/lib/utils/debug.d.ts","../../core/lib/utils/deprecate.d.ts","../../core/lib/utils/errorToLog.d.ts","../../core/lib/utils/experimentalLog.d.ts","../../core/lib/utils/getContext.d.ts","../../core/lib/utils/math.d.ts","../../core/lib/utils/proxyUtils.d.ts","../../core/lib/utils/range.d.ts","../../core/lib/utils/useAssetBase.d.ts","../../core/lib/utils/useContext.d.ts","../../core/lib/utils/useDuration.d.ts","../../core/lib/utils/usePlayback.d.ts","../../core/lib/utils/useRandom.d.ts","../../core/lib/utils/useScene.d.ts","../../core/lib/utils/useThread.d.ts","../../core/lib/utils/useTime.d.ts","../../core/lib/utils/index.d.ts","../../core/lib/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../src/internal.ts","../src/index.tsx","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3",{"version":"53a57c4d787e2e9dfa133d29fb046ac673a3c9fa91e3779f0443bde4840788f1","signature":"68dfe1dd77c1a00a0748499d9dafbc9e9a40974bae35ec1a97b08112b2c7572e"},{"version":"178acc1e4613d09be9f2af9fabeda23e2b9b03b376f621626f19e4e97c9c2837","signature":"19c37e35f0a55f082f6827ffb07f7ce8b8a9b990d74b42925e4b13a0a07744c9"},{"version":"567afe7e787745195f932a311ab71cc8237cdb4742d49dfd42fc73e4ff976abe","signature":"2eae38c8ee1fce200ac5fccedd6c4abc49c8ef5d52bfcea6f243a45c5ea96fcc"},"4f349e43a7884421ca5ea9214e02f22a351b8a4fdd8b31a040626efead932521","5f29a6dfce5e0fe5c74b27a4a6be35556fe29b867ff43ca79fe005ab5a484327","9e9e143b8838472cd64656d226d2e48ed7a6841ca633c31abdc126cfe74108cc","5b20354f951643b6f08a36c405cb75ff5a041311bb2afb82f9a05a5b6e60c9ff","c5cdc31c53fe27ba6a42d50c6e6990ce15f22b5fc3a5869b766d897cf2141fa9","a0256a66bae75a77a38a7b7975116f2d028a29290fb7a3756d3d00f785c5d397","2f1924232de0c31e37650242680c828c92bfe05c35fff8eae3da29741f7354e8","060408017b125a1746a5666a70b555a25901a1e2e1517a3801cf7959e937b38f","5877798bcc574de57a72126ec7d002e4fed7ab9fbcbe6b59164002d3df46c321","e5628e3cdc6dd5f66cb122fe832e96a9bb6810bad557fe25a528385df8b442ac","315ade201bd0630ab01be72faf94f70aac3e69c6d9c8f14850f50b052f2e8f0c","7c81e4b6324044d013c4fd1317f3f2057151399e2126bf93ca90151ae8751f41","e1dd0877838200cd4f807f57e283891a8355b8cdd1e25712b0fef1029dba11b8","b9c0ccd334098a2d264457f4a667c0642dc098e33cdace7ec357ee7d2ffcfb02","73a4400d051fc0d781dd5310bc1b6833c95b0f0e7b6b998a29cbcda84deec90b","1146931f63f657fbd40c9ba92b5ef2b4442746ffb8653684e438582eb322412d","514099e9ff0c7705a386205fdcaa86e864176bebe268c0fddf9fab639868c2b8","2fb79d7dd6a76ff1e2c9c628476efac06e490f924a0580a8e00ec23e73d8af64","a337fb948fcb4e440b1e5affefbbded16185209b75cbaca1c15abdf57ef48e48","14d16a74c682cf6a38b2a297c3f4610c4abefc047ba6b36e61bc6bee4bc21a58","d6de73ac0596bbe36b21ffc23ca89d580f59abc60096a4b0b7b454c1f15aa90e","c704bfa4286ef2b14e7a8db40156c1f74008828e29b38c2e5694a8dada06cd56","22c94bc72d1cd3dfca28ab10655b7dbc08ddf2dbe8e4bdc8e0706df14ef83fb3","113eb1f34c34a9888d6b96e7304b237d857885d778a990075871e593c2fd78a1","9e633f7870c4ac292038337f19e093c7d3331d21ed6e7a5486e6d03c6faa7581","8bb73e0f1fc1f19e4c753fbdefdf8667b4c1cfedfb6d8754e19280072feb28e6","803ee18da7bbd300f451c5839c93bfca71b1f37f55f743b0e579c559df148f72","abd3231e8de472d47699b289c652605950168334e88ab3671c34e9b317899b25","ac0072ca991f8373fbd420ae4ee2ce5d64464305840c620f19d11eb232f119cc","b1ac774f01f58656af3836eb3360b0ab0e3f75f77200c24cb616b3442729091c","530f499bf05cdd9a528b9aa3f1c063d5d534f39a1a80fedcdb4b5a35c95b3374","930d5dbcbad8ed9c39b849345fc375962282b41ddf6ffcfac9e9d043185432ba","4993f7fe71e85da0d76da4c10ffa475e23f5a2786cf08fa526d7a250d831de49","3d3b00fd6657ab691f640b2a3a483df186b144d671995ce31c10e892b35b0f9e","f00aa2b5087c1ea4132a269b333cb022e57277b13f3bf4119ab2020d787bb6f8","a3a956ecaec11f64c4f15503552ed7b1206221807195416df20bc9c821c3919f","e28061274902bdc8c9e652bdd2d40d9a3c2a5dd359afa49862d36675323bad20","79e7685394515a8a6a52dc84ec2f5d1da8394c8c61350f6991fad35877767c62","82570b0da6697ba5540a5c220cc8af336b7e0455dc5fb344bc2f86132170d8fa","1227599806413ff3fd872d8feaf511cc2fb26bf5407cdceb030acd96162926ec","4dfce2bf42a0b02b2c88828f5a0c6dc5865540f251c2d7b98d87029704c9fed1","775010f42d8f22c3539309c14d36c10d0552116a185b32090cfd4548dd7ea6eb","9b2612538c16237124633a88869917dd1a856f602dabbefba4400d1a49022e06","4121005f42878a2ff3354bed054f31e75b500090c8294dfb7289f2702d12e87c","c262800f756900728155b88942e2860d9f6158fd7f157155d3e1eeface3c10c6","a8e57b3d5a1c276d56c0d569b17f7c1c0970807a5ae2e077593fd2186662ac5c","272525ab0d01accfba7e50dc4a8a6613ef6c145ef4d489af2b143f282a45b9f1","04dc80886ebb3e1f641b71a271685f8bf03b2995e1004e2045a854f85f7660eb","62579453f0b1b76dd088705317383c4243925cb99580fec594b41c24794b2721","9c9c80eed8f2c29e7734673a4df768df31d9bb255300dea7f5361ad19f5dbb37","754ed6823ae5bfd6ccfd01e29b7672338d0de5fa2da68fa8e6a07a74a9472c5b","3610485332f6a87c7f6482668a208df0fcfb88ea7065d6218b9bc54e77da9277","3c699b40039718b993bdc05687a6ef0fffe8898b7e254f8ce9906f83936de4e6","c45777b0b273b02058430d9c68b94f8c33568d58cb8237103390151f82571398","baab4cfc635fd10fe0a37342e5d0995a0d1b85928d1bf39952c888a01faa5748","efd2235b41bf56e6f57fff8ec024a6d9fc86af6f02300b8e801a112e81040851","55b9398bb2cd6179dc53f41aee9f3c8d8966aea24d4eae9390ef934aa93e2a74","7b0c8218bd70ef5736bf13ca99e68f494fa7434f93cb934d0ad50e89c11502fd","4b49aa5b475b9bf98aed367c205575eb014db8bbd90fd271bcffa6c34bc40da1","d31735704ccfd0728e98278d256cc2ea5504705441012cbb90de54b5eb8d7e9e","25c54e6d39cd06d7a8fda62aed99602c5ae47b234d44c4e36bed99d67638e5e7","7e1371c0a17305a2f3e6e275f224c7c11415a4b226907e7d92a062159233b0e8","142d298ffdbb52d993a32b1bea54e3a322bd065888638113314798a7498fbb74","82c2ba362761223c6436b45600d295abdd2163faf47766519554605799bd0da4","e2a334329493606af23021dde65e5dfe658e8453bbbd22f3f0ae23e0706c4a85","1dd65e4300cccec8048555f67e9fb9fa060daeab97db67d72864a2d4cd320c62","167144745b062b72e0526e6357fbcb10541802d6ca791b0d2f4f3b700d2c2c2b","1800f3c2d02797e29cfde6702a13f4f15931a0ce4887ac4c28ec45d014737eb4","5879083c71d6b059d9e6a9e307973d9f0db1f130196d7226643a07ad20183f0b","d726a4fe12cd1e86cf383f2324382596621e49207528f02f4960b4fa05bf0e35","375b74c20c4f203745b6f97254253f8ab90a8ca291b8cc30f476c911c356f0b0","c0ae097cc9507be985de5822cdc9e2102f7979702dbf73f4c2cca3f71c35c4e1","e5996f39b6d296288f6626d1977d4569ef88fc8fbbfafd9efe4cb948ca1dbe92","ee029ba6e08b1d6f657bf6033f94f138bbba1bed1556fcc02cfeb48087129b5a","12b4f4997f9a30569c39e35e72072ba6fc2dcedda241a350d3d8040f72172fff","ab064bc7fbc1432099ef9c1880a21ba7b0b7d96f430b6549a81f69ba23ab5841","a57d1b8498fcbe6c2ae4df8f1e1b96e1b971c9f70df98a002d1bfb8c52fddf5e","46c60811e48ba403a340e3ccb21810b92f6fe4f3107ea0cb325a8c48680fd18a","9bcd9a22250ee7337ef7be4c343747a06d0c07d4995d45032fca19937403c850","089f28cb06ddfad5752b1a5681124c444b5735af4e5452032034b5706dcb4c53","5454ca5b16abe2af2e76b8ebeffc1f12a724386e929c39a68d021012ae879e2c","9897002f148deaa65aa0b471b61b235e606226c657168272113809f25dcb76cf","63a4a1770e263e4ce7cff9d77b63f2893fc372d88edafc5604acfedc00d4e6ba","c82119d5cdc5ff33964c8bf70521ac538d5f7630bf055d160585ea6fd659ee00","40c49f058a9609daf22efc205e0ec0ea630f5668ba1389934529461aee9c32e8","97fd428923d5e9eedc07db125ec22f60ccf65c3e077b4300c21df2d4939908ed","d5e628a360caae221167bedc6e5ce25dbab684f6f2a4004de92c1aeb3acfd630","6c415f9d126201670fb9152ab05e40c5ad7834f5c7ef875854b7fe0e4b16387b","ddacd6d16f26885641a7b756af5b7379d02cfdf3deb88506df316b62bc34c6fd","f9b74f19eb30ed9298d7ab17a545b1bb5269fde8c0f694700a1e9c429a4ed9c9","cb71283202b560116e9251856217b01c453600ce7f8feb0fbd34f7a54de3be10","d202f6ac83bb6234140f3d5cdee92c84f0833abdd3afdc6b1035c4289c09d497","08e650b6ecf49c924a597566eea6afdfd1cae7f16c1aeb21f5334be673a4f781","aa4e034c98dc000dd998a50ed4283a45090e81fe2d8ad709d449a04b60df1e8a","b562fed5d1b14d7e8cefa48e55a0f2c3e575c92be9f0008737dbd7e5dbbfe033","5bc624b8134d568b591bf6e3f0df56663141382726c7cb6ea189dfa91f8f0656","b0194d95f717d338450601ea50a64b2db73842ad3b0b108017bffce2c8297832","aaf943acf36a4633d2f87f308aec5e8de18fb0ae940da9102eefef513f437260","74d3260b63171451a22870217315b7b340f8d38f4dc5095b181c7ce7c42b7d20","2dfcc5fbaeab1b4f121df808a7571448634af6bb3c8eef11602fc15e1d587ef2","d5f635b704170b5baa44ac2c583087fcb3a1bd3ff072e4028a9a338946867872","e963db78e31527ee8d57aa1552db0733bddf041ac6c7b1c90c2ae70188c7a420","5810a4f7023fcb2d9a0df634d9a13ed99e91983e194d4f372b3781d62bccdec3","0a18a8c9729b5d939bbec223bc0370e6ae3ec30d2ae380a00f34ff0068191e94","e550a0f42371644ce12b31bcb37f84fd7e94d7e6e7f63386dc526e42072494f0","3575dd5e92963c0b4513cc6c205f3145e8fad9f7359faec1a22f81634212b075","4eae54053e4e1f3c93829c4120ac3d8ba318b811ede1bb9aec10c0c015acba82","5e165817ee9e0267bd5fc51882322d1f65b0b90dd3468c4f3c689ad49ad37218","49a372302f7f7ec6d7fb3ed7150011f76b24f346054403aadf49e43877b5250e","7625fb8ecafce58520c7b9b146140cc64259440e412f02fa5d453cd6070b974e","21f7ed97c0fc36612da4ccd555f284d21a284b4e1a0b515539a8f42e5a889aa6","86bdb501559fc19b744f2a435b5318b7f983ce994439117d63993c86209572b4","d772e381722aabc89ecc13140d008d48e27a5ab6d38e4ac510882040eb303e91","408b1cffb4abcdd965a20bc3ee69457a64cbee17ee140163d3ec90acef9c5df5","820278489690ec7d8af5dc8b88c2b97555bd4afe63efa30d94d79fefe84bbbdf","d730e9462d98c9c4c4ac210c8196a13e615b2432d09f0f4c537429f9c2f17d1a","8f57633d6e9364e7fda1e00cb1da817d61a5a3ea9dce65f4ba275863988f5d57","17b16af19b9145350a2c0a78dc6b36ec8eec8a92dfc3c6fc8f95d51aba5f5424","9a9698e4b44b64ae68dd03fe48d3f938f27bbb75b348e0fe3802a76edfb15af9","ee93d65787c86fada0b0e7051d0b2bc9624ccc1c2701d9b50856283dcf9eb72f","1fad5a2de12eb94b7c064ca926faf0d7149d4ae7c1f4b569358071e61a8c1024","3a5fb2a9e9c0a830b0dfc1dba37e8a0e0a0b671d219ef6627cc6b1df1d9fbaf4","2bbd7affc221dfb21f084d6086b975132c34c32ee23bc7e531d5d30583d022e7","504dfd3016f1c91ad69cf19d83c3bc365b887b8ada53179ffb1aaadb5016212b","79e7818895be49dddb17df0bab720aa336803bbb93a8f9b5d83275c11ae5f988","a5b185e5a86e8b13b0c77aa5c5723047afceb67176d02f3a1e193c6a34f6c1b9","2c638e2e5f385b8376362570930c860409f1ff5abd9db3ca61a5cb4101aaeb6a","16664af3ea4b68caf6c142b7e8edaf8831b8b2d05554d0144886311a4e0a84e0","e3cafb6e9c69fd6a2cc6b0f3599b921b4ed58c72efdbe40e8df2b836d76399fb","9e82432b4eac7171281b2b377c0378e7cd06e8223c11386cf09830a8fced47db","2869577a010cb998860b8568ca45a8c6c6e616826e99768c4c2c5e194d0f3f7e","cf0b0e034128e8b88986198ca8c0457ae3f68d88c397dd7d3818c138dd942bc5","1e6ae0ca26732323995ad3d9405d1d9b94f97bde3cd1287cec8007a4e3338720","495148e0ccbeba3ab44f7448e4ac6974fd54cb9dcbcf2ff7b1a6d91e2088d574","0276183fa38af140097aeaeb74fdf9bcca9f8e603ca5b1b223b529b20974afab","3893fd5283b40c7ef77987e555123e4406afe3c2518f44b3f5032ec944099c22","250551bf02b4acc9853a23843174f9073a701fc28404af13168da9a06abf8fec","c90dff077593c2211f2f54c90bf4916f79c01965adce59d3f23a448b3ea341b2","a028a7e30a4ab93d8cf1d867970f79a7ea7b9bb288b3c779c136e562a26ad1b2","15acd1b633dd108e85845cf9ba35bcdc638cd67d23538c322020e2753c17b26f","160a0aaa51aee91c1cf09b5a8169547d4c03f36304aa44fe9b92f443430f853e","ff26fd85c6b95e3c949f8c8fd9cf35d183cea099c99aeb307fdbbb18c2528e18","d25e959e406ac10b8481b82d21c3cdc3ec3aacad07ffd18c260db6156bb59e64","5430c669b15b51ecbb4eda578a5f14443cff36a5d2513bd781921d8082db5049","0a11591ca3ea3cd124f764b7f39bbaa68dcb58f66f6dc534069bd073b0f8c082","3f96c54b500bd4ea34b805bb335d76e65be59f682ea32dcac99c5abf7d02b4fd","2b03378e32329e0e0037f1f26d51786ef3ff6d06667282c033f5cfab21b88c0a","8e6ef6a408d9f5c41472967fc3a23561c1cc24dcf160547a4c5920911fd3635b","7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",{"version":"9117c4a3d87fa73b168379ff034eb27c8cae4fd169a28ed16448ff2b1c19e150","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8c368be7d563096c1097801293bb14f51d4e0e6e2ffc7a8757fe4487867c27bb","signature":"f02fbcf15f0bccfaeb210ab6b251965c2f5af96a36b64a02bb4b958f7eff5134","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","a15eb098ed86a4135cba05d77e792d6189fa8607a00c9b1b381c0e9550c04ba5",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6"],"root":[[75,77],227,228],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"esModuleInterop":false,"jsx":4,"jsxImportSource":"react","module":99,"noImplicitAny":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[275],[229,275],[232,275],[233,238,266,275],[234,245,246,253,263,274,275],[234,235,245,253,275],[236,275],[237,238,246,254,275],[238,263,271,275],[239,241,245,253,275],[240,275],[241,242,275],[245,275],[243,245,275],[245,246,247,263,274,275],[245,246,247,260,263,266,275],[275,279],[241,248,253,263,274,275],[245,246,248,249,253,263,271,274,275],[248,250,263,271,274,275],[229,230,231,232,233,234,235,236,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,276,277,278,279,280,281],[245,251,275],[252,274,275],[241,245,253,263,275],[254,275],[255,275],[232,256,275],[257,273,275,279],[258,275],[259,275],[245,260,261,275],[260,262,275,277],[233,245,263,264,265,266,275],[233,263,265,275],[263,264,275],[266,275],[267,275],[245,269,270,275],[269,270,275],[238,253,263,271,275],[272,275],[253,273,275],[233,248,259,274,275],[238,275],[263,275,276],[275,277],[275,278],[233,238,245,247,256,263,274,275,277,279],[263,275,280],[70,71,72,275],[73,275],[83,275],[83,165,275],[166,275],[83,84,95,135,166,167,171,275],[83,135,136,165,166,275],[84,133,134,146,165,275],[95,132,135,275],[83,135,136,137,275],[132,275],[84,275],[95,165,275],[84,132,135,146,275],[84,133,134,135,136,138,155,166,167,172,173,174,275],[176,177,178,275],[78,275],[78,79,80,81,82,275],[132,135,138,275],[132,135,138,139,275],[84,95,132,135,138,139,275],[139,140,141,142,275],[104,275],[180,181,182,183,184,185,186,187,188,189,190,191,275],[104,185,275],[83,95,104,108,119,132,143,146,165,171,175,179,192,193,199,224,275],[83,168,175,275],[168,169,170,275],[120,275],[95,120,275],[120,123,275],[83,120,143,175,275],[83,120,275],[120,121,122,123,124,125,126,127,128,129,130,131,275],[144,275],[143,175,275],[144,145,275],[83,95,104,119,147,153,154,156,157,158,159,160,161,175,275],[87,275],[83,159,275],[83,95,119,146,147,153,154,156,157,158,160,175,275],[132,153,275],[155,159,275],[83,104,275],[159,275],[147,154,156,157,158,159,160,161,162,163,164,275],[83,148,149,159,275],[83,148,275],[148,149,150,151,152,275],[108,111,112,275],[109,275],[104,108,109,110,111,275],[119,275],[108,119,275],[109,110,111,112,113,114,115,116,117,118,275],[104,108,110,275],[111,275],[97,119,275],[98,275],[97,275],[97,98,99,100,101,102,103,275],[97,98,275],[194,195,196,197,198,275],[95,104,275],[96,105,106,107,275],[95,275],[85,87,88,89,108,119,275],[85,92,108,119,275],[85,87,275],[85,108,119,275],[85,86,88,108,119,275],[85,86,87,88,89,90,91,93,94,275],[175,275],[175,200,275],[205,275],[200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,275],[165,275],[165,225,275],[73,74,75,76,275],[74,275],[73,74,76,77,225,227,275],[74,225,226,275],[74],[73,74,225]],"referencedMap":[[92,1],[229,2],[230,2],[232,3],[233,4],[234,5],[235,6],[236,7],[237,8],[238,9],[239,10],[240,11],[241,12],[242,12],[244,13],[243,14],[245,13],[246,15],[247,16],[231,17],[281,1],[248,18],[249,19],[250,20],[282,21],[251,22],[252,23],[253,24],[254,25],[255,26],[256,27],[257,28],[258,29],[259,30],[260,31],[261,31],[262,32],[263,33],[265,34],[264,35],[266,36],[267,37],[268,1],[269,38],[270,39],[271,40],[272,41],[273,42],[274,43],[275,44],[276,45],[277,46],[278,47],[279,48],[280,49],[72,1],[70,1],[73,50],[74,51],[226,1],[71,1],[68,1],[69,1],[12,1],[13,1],[15,1],[14,1],[2,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[3,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[8,1],[52,1],[49,1],[50,1],[51,1],[53,1],[9,1],[54,1],[55,1],[56,1],[59,1],[57,1],[58,1],[60,1],[61,1],[10,1],[1,1],[62,1],[11,1],[66,1],[64,1],[63,1],[67,1],[65,1],[84,52],[166,53],[167,54],[172,55],[173,56],[135,57],[133,58],[138,59],[134,60],[155,61],[136,62],[137,52],[174,63],[175,64],[176,1],[179,65],[177,1],[178,1],[79,66],[80,66],[78,1],[81,66],[82,66],[83,67],[139,68],[140,69],[141,70],[142,69],[143,71],[180,72],[181,72],[182,72],[183,72],[184,72],[192,73],[185,72],[186,74],[187,74],[188,72],[189,72],[190,72],[191,72],[225,75],[168,1],[169,76],[171,77],[170,1],[121,78],[122,79],[124,80],[125,81],[120,52],[126,78],[123,1],[127,80],[128,82],[129,78],[130,80],[131,79],[132,83],[193,84],[144,85],[146,86],[145,84],[162,87],[163,88],[160,89],[147,1],[159,90],[154,91],[164,1],[156,92],[157,89],[161,93],[158,94],[165,95],[150,96],[151,96],[152,1],[148,1],[149,97],[153,98],[113,99],[114,100],[109,93],[112,101],[115,102],[116,102],[117,103],[119,104],[110,1],[111,105],[118,106],[98,107],[97,108],[99,109],[104,110],[100,109],[101,1],[102,109],[103,111],[194,72],[199,112],[195,113],[196,106],[197,113],[198,113],[108,114],[96,115],[105,72],[106,1],[107,72],[90,116],[91,1],[93,117],[94,1],[88,118],[86,88],[89,119],[85,1],[87,120],[95,121],[200,122],[201,123],[202,1],[203,72],[204,1],[205,1],[206,124],[207,124],[208,1],[209,1],[210,122],[211,122],[212,1],[224,125],[213,1],[214,1],[215,1],[216,1],[217,1],[218,1],[219,122],[220,126],[221,127],[222,72],[223,1],[77,128],[75,129],[228,130],[227,131],[76,129]],"exportedModulesMap":[[92,1],[229,2],[230,2],[232,3],[233,4],[234,5],[235,6],[236,7],[237,8],[238,9],[239,10],[240,11],[241,12],[242,12],[244,13],[243,14],[245,13],[246,15],[247,16],[231,17],[281,1],[248,18],[249,19],[250,20],[282,21],[251,22],[252,23],[253,24],[254,25],[255,26],[256,27],[257,28],[258,29],[259,30],[260,31],[261,31],[262,32],[263,33],[265,34],[264,35],[266,36],[267,37],[268,1],[269,38],[270,39],[271,40],[272,41],[273,42],[274,43],[275,44],[276,45],[277,46],[278,47],[279,48],[280,49],[72,1],[70,1],[73,50],[74,51],[226,1],[71,1],[68,1],[69,1],[12,1],[13,1],[15,1],[14,1],[2,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[3,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[8,1],[52,1],[49,1],[50,1],[51,1],[53,1],[9,1],[54,1],[55,1],[56,1],[59,1],[57,1],[58,1],[60,1],[61,1],[10,1],[1,1],[62,1],[11,1],[66,1],[64,1],[63,1],[67,1],[65,1],[84,52],[166,53],[167,54],[172,55],[173,56],[135,57],[133,58],[138,59],[134,60],[155,61],[136,62],[137,52],[174,63],[175,64],[176,1],[179,65],[177,1],[178,1],[79,66],[80,66],[78,1],[81,66],[82,66],[83,67],[139,68],[140,69],[141,70],[142,69],[143,71],[180,72],[181,72],[182,72],[183,72],[184,72],[192,73],[185,72],[186,74],[187,74],[188,72],[189,72],[190,72],[191,72],[225,75],[168,1],[169,76],[171,77],[170,1],[121,78],[122,79],[124,80],[125,81],[120,52],[126,78],[123,1],[127,80],[128,82],[129,78],[130,80],[131,79],[132,83],[193,84],[144,85],[146,86],[145,84],[162,87],[163,88],[160,89],[147,1],[159,90],[154,91],[164,1],[156,92],[157,89],[161,93],[158,94],[165,95],[150,96],[151,96],[152,1],[148,1],[149,97],[153,98],[113,99],[114,100],[109,93],[112,101],[115,102],[116,102],[117,103],[119,104],[110,1],[111,105],[118,106],[98,107],[97,108],[99,109],[104,110],[100,109],[101,1],[102,109],[103,111],[194,72],[199,112],[195,113],[196,106],[197,113],[198,113],[108,114],[96,115],[105,72],[106,1],[107,72],[90,116],[91,1],[93,117],[94,1],[88,118],[86,88],[89,119],[85,1],[87,120],[95,121],[200,122],[201,123],[202,1],[203,72],[204,1],[205,1],[206,124],[207,124],[208,1],[209,1],[210,122],[211,122],[212,1],[224,125],[213,1],[214,1],[215,1],[216,1],[217,1],[218,1],[219,122],[220,126],[221,127],[222,72],[223,1],[77,132],[75,132],[228,133]],"semanticDiagnosticsPerFile":[92,229,230,232,233,234,235,236,237,238,239,240,241,242,244,243,245,246,247,231,281,248,249,250,282,251,252,253,254,255,256,257,258,259,260,261,262,263,265,264,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,72,70,73,74,226,71,68,69,12,13,15,14,2,16,17,18,19,20,21,22,23,3,24,4,25,29,26,27,28,30,31,32,5,33,34,35,36,6,40,37,38,39,41,7,42,47,48,43,44,45,46,8,52,49,50,51,53,9,54,55,56,59,57,58,60,61,10,1,62,11,66,64,63,67,65,84,166,167,172,173,135,133,138,134,155,136,137,174,175,176,179,177,178,79,80,78,81,82,83,139,140,141,142,143,180,181,182,183,184,192,185,186,187,188,189,190,191,225,168,169,171,170,121,122,124,125,120,126,123,127,128,129,130,131,132,193,144,146,145,162,163,160,147,159,154,164,156,157,161,158,165,150,151,152,148,149,153,113,114,109,112,115,116,117,119,110,111,118,98,97,99,104,100,101,102,103,194,199,195,196,197,198,108,96,105,106,107,90,91,93,94,88,86,89,85,87,95,200,201,202,203,204,205,206,207,208,209,210,211,212,224,213,214,215,216,217,218,219,220,221,222,223,77,75,228,227,76]},"version":"5.4.3"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../src/icons.tsx","../src/utils.ts","../src/controls.tsx","../../core/lib/events/EventDispatcherBase.d.ts","../../core/lib/events/AsyncEventDispatcher.d.ts","../../core/lib/events/EventDispatcher.d.ts","../../core/lib/events/FlagDispatcher.d.ts","../../core/lib/events/ValueDispatcher.d.ts","../../core/lib/events/index.d.ts","../../core/lib/app/Logger.d.ts","../../core/lib/types/Type.d.ts","../../core/lib/types/Origin.d.ts","../../core/lib/types/Vector.d.ts","../../core/lib/types/Matrix2D.d.ts","../../core/lib/types/Spacing.d.ts","../../core/lib/types/BBox.d.ts","../../core/lib/types/Canvas.d.ts","../../../node_modules/@types/chroma-js/index.d.ts","../../core/lib/types/Color.d.ts","../../core/lib/types/Matrix.d.ts","../../core/lib/types/index.d.ts","../../core/lib/tweening/interpolationFunctions.d.ts","../../core/lib/threading/Thread.d.ts","../../core/lib/threading/ThreadGenerator.d.ts","../../core/lib/threading/cancel.d.ts","../../core/lib/threading/join.d.ts","../../core/lib/threading/names.d.ts","../../core/lib/threading/spawn.d.ts","../../core/lib/threading/threads.d.ts","../../core/lib/threading/index.d.ts","../../core/lib/tweening/spring.d.ts","../../core/lib/tweening/timingFunctions.d.ts","../../core/lib/tweening/tween.d.ts","../../core/lib/tweening/index.d.ts","../../core/lib/signals/DependencyContext.d.ts","../../core/lib/signals/symbols.d.ts","../../core/lib/signals/types.d.ts","../../core/lib/signals/SignalContext.d.ts","../../core/lib/signals/CompoundSignalContext.d.ts","../../core/lib/signals/ComputedContext.d.ts","../../core/lib/signals/createComputed.d.ts","../../core/lib/signals/createComputedAsync.d.ts","../../core/lib/signals/createSignal.d.ts","../../core/lib/signals/utils.d.ts","../../core/lib/signals/index.d.ts","../../core/lib/plugin/Plugin.d.ts","../../core/lib/plugin/makePlugin.d.ts","../../core/lib/plugin/index.d.ts","../../core/lib/app/SharedWebGLContext.d.ts","../../core/lib/scenes/Shaders.d.ts","../../core/lib/scenes/Slides.d.ts","../../core/lib/scenes/Variables.d.ts","../../core/lib/scenes/Scene.d.ts","../../core/lib/scenes/LifecycleEvents.d.ts","../../core/lib/scenes/Threadable.d.ts","../../core/lib/scenes/GeneratorScene.d.ts","../../core/lib/scenes/Inspectable.d.ts","../../core/lib/scenes/Random.d.ts","../../core/lib/scenes/SceneState.d.ts","../../core/lib/scenes/index.d.ts","../../core/lib/app/Stage.d.ts","../../core/lib/app/TimeEstimator.d.ts","../../core/lib/app/Renderer.d.ts","../../core/lib/exporter/Exporter.d.ts","../../core/lib/exporter/FFmpegExporter.d.ts","../../core/lib/exporter/ImageExporter.d.ts","../../core/lib/exporter/WasmExporter.d.ts","../../core/lib/exporter/index.d.ts","../../core/lib/app/Project.d.ts","../../core/lib/app/makeProject.d.ts","../../core/lib/app/PlaybackManager.d.ts","../../core/lib/app/PlaybackStatus.d.ts","../../core/lib/app/Player.d.ts","../../core/lib/app/project-settings.d.ts","../../core/lib/app/index.d.ts","../../core/lib/decorators/decorate.d.ts","../../core/lib/decorators/lazy.d.ts","../../core/lib/decorators/threadable.d.ts","../../core/lib/decorators/index.d.ts","../../core/lib/flow/all.d.ts","../../core/lib/flow/any.d.ts","../../core/lib/flow/chain.d.ts","../../core/lib/flow/delay.d.ts","../../core/lib/flow/every.d.ts","../../core/lib/flow/loop.d.ts","../../core/lib/flow/loopFor.d.ts","../../core/lib/flow/noop.d.ts","../../core/lib/flow/run.d.ts","../../core/lib/flow/scheduling.d.ts","../../core/lib/flow/sequence.d.ts","../../core/lib/flow/index.d.ts","../../core/lib/media/loadImage.d.ts","../../core/lib/media/index.d.ts","../../core/lib/plugin/DefaultPlugin.d.ts","../../core/lib/transitions/fadeTransition.d.ts","../../core/lib/transitions/slideTransition.d.ts","../../core/lib/transitions/useTransition.d.ts","../../core/lib/transitions/zoomInTransition.d.ts","../../core/lib/transitions/zoomOutTransition.d.ts","../../core/lib/transitions/index.d.ts","../../core/lib/utils/beginSlide.d.ts","../../core/lib/utils/capitalize.d.ts","../../core/lib/utils/createRef.d.ts","../../core/lib/utils/createRefArray.d.ts","../../core/lib/utils/createRefMap.d.ts","../../core/lib/utils/debug.d.ts","../../core/lib/utils/deprecate.d.ts","../../core/lib/utils/DetailedError.d.ts","../../core/lib/utils/errorToLog.d.ts","../../core/lib/utils/ExperimentalError.d.ts","../../core/lib/utils/experimentalLog.d.ts","../../core/lib/utils/getContext.d.ts","../../core/lib/utils/math.d.ts","../../core/lib/utils/range.d.ts","../../core/lib/utils/Semaphore.d.ts","../../core/lib/utils/useContext.d.ts","../../core/lib/utils/usePlayback.d.ts","../../core/lib/utils/useScene.d.ts","../../core/lib/utils/useThread.d.ts","../../core/lib/utils/useTime.d.ts","../../core/lib/utils/index.d.ts","../../core/lib/index.d.ts","../src/internal.ts","../src/index.tsx","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[204],[245],[246,251,280],[247,252,258,259,266,277,288],[247,248,258,266],[249,289],[250,251,259,267],[251,277,285],[252,254,258,266],[245,253],[254,255],[258],[256,258],[245,258],[258,259,260,277,288],[258,259,260,273,277,280],[243,293],[254,258,261,266,277,288],[258,259,261,262,266,277,285,288],[261,263,277,285,288],[204,205,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,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295],[258,264],[265,288,293],[254,258,266,277],[267],[268],[245,269],[204,205,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294],[271],[272],[258,273,274],[273,275,289,291],[246,258,277,278,279,280],[246,277,279],[277,278],[280],[281],[204,277],[258,283,284],[283,284],[251,266,277,285],[286],[266,287],[246,261,272,288],[251,289],[277,290],[265,291],[292],[246,251,258,260,269,277,288,291,293],[277,294],[75,76,77],[78],[215,219,288],[215,277,288],[210],[212,215,285,288],[266,285],[296],[210,296],[212,215,266,288],[207,208,211,214,246,258,277,288],[215,222],[207,213],[215,236,237],[211,215,246,280,288,296],[246,296],[236,246,296],[209,210,296],[215],[209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,237,238,239,240,241,242],[215,230],[215,222,223],[213,215,223,224],[214],[207,210,215],[215,219,223,224],[219],[213,215,218,288],[207,212,215,222],[246,277],[210,215,236,246,293,296],[88],[88,139],[150],[88,89,100,148,150,151],[89,100,127,139,147],[88,140,141,148],[89],[100,139],[89,128,140,142,148,149,150,151,152,153],[89,148,201],[148],[155,156,157],[83],[83,84,85,86,87],[142,148],[142,143,148],[89,100,142,143,148],[143,144,145,146],[109],[159,160,161,162,163,164,165,166,167,168,169],[109,164],[88,100,109,113,124,127,139,147,154,158,170,172,173,179,200],[171],[125],[147,154],[125,126],[88,100,109,124,129,130,131,132,133,134,154],[92],[88,132],[88,100,124,127,129,130,131,133,154],[128,132],[88,109],[132],[129,130,131,132,133,134,135,136,137,138],[113,116,117],[114],[109,113,114,115,116],[124],[113,124],[114,115,116,117,118,119,120,121,122,123],[109,113,115],[116],[103,124],[102],[103],[102,103,104,105,106,107,108],[102,103],[174,175,176,177,178],[100,109],[101,110,111,112],[100],[90,92,93,94,113,124],[90,97,113,124],[90,92],[90,113,124],[90,91,93,113,124],[90,91,92,93,94,95,96,98,99],[154],[154,187],[182],[180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199],[139,201],[78,79,80,81],[79],[78,79,81,82,201,202],[79,201]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800","impliedFormat":1},{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"b65eb411d375fb07658d6e3fae74f5e6d851f8fff86c2a722aabe49f8782ee40","signature":"68dfe1dd77c1a00a0748499d9dafbc9e9a40974bae35ec1a97b08112b2c7572e"},{"version":"178acc1e4613d09be9f2af9fabeda23e2b9b03b376f621626f19e4e97c9c2837","signature":"19c37e35f0a55f082f6827ffb07f7ce8b8a9b990d74b42925e4b13a0a07744c9"},{"version":"fa70d3c3244324b8cad9a4af3485c7a47df0d57820a56af395bc49005bf13eaf","signature":"2eae38c8ee1fce200ac5fccedd6c4abc49c8ef5d52bfcea6f243a45c5ea96fcc"},"4f349e43a7884421ca5ea9214e02f22a351b8a4fdd8b31a040626efead932521","5f29a6dfce5e0fe5c74b27a4a6be35556fe29b867ff43ca79fe005ab5a484327","9e9e143b8838472cd64656d226d2e48ed7a6841ca633c31abdc126cfe74108cc","5b20354f951643b6f08a36c405cb75ff5a041311bb2afb82f9a05a5b6e60c9ff","c5cdc31c53fe27ba6a42d50c6e6990ce15f22b5fc3a5869b766d897cf2141fa9","a0256a66bae75a77a38a7b7975116f2d028a29290fb7a3756d3d00f785c5d397","2f1924232de0c31e37650242680c828c92bfe05c35fff8eae3da29741f7354e8","060408017b125a1746a5666a70b555a25901a1e2e1517a3801cf7959e937b38f","5877798bcc574de57a72126ec7d002e4fed7ab9fbcbe6b59164002d3df46c321","e5628e3cdc6dd5f66cb122fe832e96a9bb6810bad557fe25a528385df8b442ac","315ade201bd0630ab01be72faf94f70aac3e69c6d9c8f14850f50b052f2e8f0c","7c81e4b6324044d013c4fd1317f3f2057151399e2126bf93ca90151ae8751f41","e1dd0877838200cd4f807f57e283891a8355b8cdd1e25712b0fef1029dba11b8","b9c0ccd334098a2d264457f4a667c0642dc098e33cdace7ec357ee7d2ffcfb02",{"version":"73a4400d051fc0d781dd5310bc1b6833c95b0f0e7b6b998a29cbcda84deec90b","impliedFormat":1},"1146931f63f657fbd40c9ba92b5ef2b4442746ffb8653684e438582eb322412d","514099e9ff0c7705a386205fdcaa86e864176bebe268c0fddf9fab639868c2b8","2fb79d7dd6a76ff1e2c9c628476efac06e490f924a0580a8e00ec23e73d8af64","a337fb948fcb4e440b1e5affefbbded16185209b75cbaca1c15abdf57ef48e48","efd5b884595f7e6dd79cca601517133a122635047ae24493a683b5a08de4ca45","14d16a74c682cf6a38b2a297c3f4610c4abefc047ba6b36e61bc6bee4bc21a58","c704bfa4286ef2b14e7a8db40156c1f74008828e29b38c2e5694a8dada06cd56","22c94bc72d1cd3dfca28ab10655b7dbc08ddf2dbe8e4bdc8e0706df14ef83fb3","113eb1f34c34a9888d6b96e7304b237d857885d778a990075871e593c2fd78a1","9e633f7870c4ac292038337f19e093c7d3331d21ed6e7a5486e6d03c6faa7581","8bb73e0f1fc1f19e4c753fbdefdf8667b4c1cfedfb6d8754e19280072feb28e6","1ed2fc72d42a2b594c47fabfb5b133666e18695d2026092822cd23af0f7c9a20","abd3231e8de472d47699b289c652605950168334e88ab3671c34e9b317899b25","ac0072ca991f8373fbd420ae4ee2ce5d64464305840c620f19d11eb232f119cc","b1ac774f01f58656af3836eb3360b0ab0e3f75f77200c24cb616b3442729091c","530f499bf05cdd9a528b9aa3f1c063d5d534f39a1a80fedcdb4b5a35c95b3374","930d5dbcbad8ed9c39b849345fc375962282b41ddf6ffcfac9e9d043185432ba","4993f7fe71e85da0d76da4c10ffa475e23f5a2786cf08fa526d7a250d831de49","3d3b00fd6657ab691f640b2a3a483df186b144d671995ce31c10e892b35b0f9e","f00aa2b5087c1ea4132a269b333cb022e57277b13f3bf4119ab2020d787bb6f8","a3a956ecaec11f64c4f15503552ed7b1206221807195416df20bc9c821c3919f","e28061274902bdc8c9e652bdd2d40d9a3c2a5dd359afa49862d36675323bad20","79e7685394515a8a6a52dc84ec2f5d1da8394c8c61350f6991fad35877767c62","82570b0da6697ba5540a5c220cc8af336b7e0455dc5fb344bc2f86132170d8fa","1227599806413ff3fd872d8feaf511cc2fb26bf5407cdceb030acd96162926ec","4dfce2bf42a0b02b2c88828f5a0c6dc5865540f251c2d7b98d87029704c9fed1","3d534b774484af606def45970f7e625441e86d59db08445cd86cf635d539eab3","885eaea8a3747ac862a51dabff15e1b241d953ba3713882659598a439d99bb2c","1800f3c2d02797e29cfde6702a13f4f15931a0ce4887ac4c28ec45d014737eb4","c2652c0e0b299e553e96413547945afbf4d98c670c70d8d9c767bc97594aa266","46c60811e48ba403a340e3ccb21810b92f6fe4f3107ea0cb325a8c48680fd18a","9bcd9a22250ee7337ef7be4c343747a06d0c07d4995d45032fca19937403c850","089f28cb06ddfad5752b1a5681124c444b5735af4e5452032034b5706dcb4c53","5454ca5b16abe2af2e76b8ebeffc1f12a724386e929c39a68d021012ae879e2c","3b81707866b20ac92bfc948db105ad1f9b70095181908bf1e121a13ad6c84ec4","63a4a1770e263e4ce7cff9d77b63f2893fc372d88edafc5604acfedc00d4e6ba","c82119d5cdc5ff33964c8bf70521ac538d5f7630bf055d160585ea6fd659ee00","0756988e53b14ee6e3467e2e274c93b8ff66519f30a595673a10b12c8497321a","97fd428923d5e9eedc07db125ec22f60ccf65c3e077b4300c21df2d4939908ed","9e71cfb80016539c39240977837cc3743d3940c8cbf4f3f4930c60b8825cc04f","d5e628a360caae221167bedc6e5ce25dbab684f6f2a4004de92c1aeb3acfd630","b3a45d7855997fdc4af5ab43da9ea22199550ab0874f4ee74b6e07fa9419368a","4b49aa5b475b9bf98aed367c205575eb014db8bbd90fd271bcffa6c34bc40da1","d31735704ccfd0728e98278d256cc2ea5504705441012cbb90de54b5eb8d7e9e","5d87c75c6ce935d6709f808cabd6bd00298ab53b0d4c280c507919aff0067ed7","f8efa2fc0758a930e6576e55b1e2e34d3a18c695e46875eed27476e3ca66637a","f898f34788ec9461fd5812912201ee50889f7d4992c41e7843cfbf8b91c0820c","3a3f6fb1f8c1b7dd6b2281a7ba84796617ee83f71eeaf6983953292a5fbf8803","a4961ec76a82f3d8ca36e632d578c4f267eaf326c6311babd0ecb8caef419f02","1dd65e4300cccec8048555f67e9fb9fa060daeab97db67d72864a2d4cd320c62","6933931cbbe05961472c3c4cedd5ec0826af7288e2861e5ae66d931da0d6f8e1","d11923b1ed1762fb1e2ad83b30ffb9ca9ad58be6745fcdf4763fa36dab6fd483","9b2d2a8207d6b8479ebad21dbdd9899819540cf8f29c9aea0588484dff04c863","f9b74f19eb30ed9298d7ab17a545b1bb5269fde8c0f694700a1e9c429a4ed9c9","a24cb47bf46d515e33746fed86c7c829abcfa4c3800a8c9dea5ca93b99d3f822","5942846b4ca92a7cd6fd40790cadb1bf0eb83cb88a030651e88ca731ee708d53","54c5cbf8d600fdbb84c62fc95faef3be11d21e0cb3e0ac6c2b7f6ca0161ca854","74d3260b63171451a22870217315b7b340f8d38f4dc5095b181c7ce7c42b7d20","2dfcc5fbaeab1b4f121df808a7571448634af6bb3c8eef11602fc15e1d587ef2","d5f635b704170b5baa44ac2c583087fcb3a1bd3ff072e4028a9a338946867872","e963db78e31527ee8d57aa1552db0733bddf041ac6c7b1c90c2ae70188c7a420","5810a4f7023fcb2d9a0df634d9a13ed99e91983e194d4f372b3781d62bccdec3","0a18a8c9729b5d939bbec223bc0370e6ae3ec30d2ae380a00f34ff0068191e94","e550a0f42371644ce12b31bcb37f84fd7e94d7e6e7f63386dc526e42072494f0","3575dd5e92963c0b4513cc6c205f3145e8fad9f7359faec1a22f81634212b075","4eae54053e4e1f3c93829c4120ac3d8ba318b811ede1bb9aec10c0c015acba82","5e165817ee9e0267bd5fc51882322d1f65b0b90dd3468c4f3c689ad49ad37218","49a372302f7f7ec6d7fb3ed7150011f76b24f346054403aadf49e43877b5250e","21f7ed97c0fc36612da4ccd555f284d21a284b4e1a0b515539a8f42e5a889aa6","86bdb501559fc19b744f2a435b5318b7f983ce994439117d63993c86209572b4","7191c2fc9e6cecbbafda75cb92190ab6d8631acd22278907aa2637346afa372a","408b1cffb4abcdd965a20bc3ee69457a64cbee17ee140163d3ec90acef9c5df5","422fcf9399a9012f9e69956cab176765097f1d4eb37adc5b980d5aa6b87a63b7","08e650b6ecf49c924a597566eea6afdfd1cae7f16c1aeb21f5334be673a4f781","3dbf447ea2e4697cdaa8422de070470d5979704503c1a187ee98280e5f1f341a","c65b11f141a1dc269a3a7276693f1ca790786874878352caf0ee01c09fe15bdc","8f57633d6e9364e7fda1e00cb1da817d61a5a3ea9dce65f4ba275863988f5d57","17b16af19b9145350a2c0a78dc6b36ec8eec8a92dfc3c6fc8f95d51aba5f5424","9a9698e4b44b64ae68dd03fe48d3f938f27bbb75b348e0fe3802a76edfb15af9","ee93d65787c86fada0b0e7051d0b2bc9624ccc1c2701d9b50856283dcf9eb72f","1fad5a2de12eb94b7c064ca926faf0d7149d4ae7c1f4b569358071e61a8c1024","3a5fb2a9e9c0a830b0dfc1dba37e8a0e0a0b671d219ef6627cc6b1df1d9fbaf4","a5b185e5a86e8b13b0c77aa5c5723047afceb67176d02f3a1e193c6a34f6c1b9","2c638e2e5f385b8376362570930c860409f1ff5abd9db3ca61a5cb4101aaeb6a","16664af3ea4b68caf6c142b7e8edaf8831b8b2d05554d0144886311a4e0a84e0","e3cafb6e9c69fd6a2cc6b0f3599b921b4ed58c72efdbe40e8df2b836d76399fb","9e82432b4eac7171281b2b377c0378e7cd06e8223c11386cf09830a8fced47db","2869577a010cb998860b8568ca45a8c6c6e616826e99768c4c2c5e194d0f3f7e","cf0b0e034128e8b88986198ca8c0457ae3f68d88c397dd7d3818c138dd942bc5","2bbd7affc221dfb21f084d6086b975132c34c32ee23bc7e531d5d30583d022e7","1e6ae0ca26732323995ad3d9405d1d9b94f97bde3cd1287cec8007a4e3338720","d4875732fc94924437d578396035b705890f598c19c67a93d73e7a3b27af6e12","495148e0ccbeba3ab44f7448e4ac6974fd54cb9dcbcf2ff7b1a6d91e2088d574","0276183fa38af140097aeaeb74fdf9bcca9f8e603ca5b1b223b529b20974afab","3893fd5283b40c7ef77987e555123e4406afe3c2518f44b3f5032ec944099c22","c90dff077593c2211f2f54c90bf4916f79c01965adce59d3f23a448b3ea341b2","79e7818895be49dddb17df0bab720aa336803bbb93a8f9b5d83275c11ae5f988","15acd1b633dd108e85845cf9ba35bcdc638cd67d23538c322020e2753c17b26f","ff26fd85c6b95e3c949f8c8fd9cf35d183cea099c99aeb307fdbbb18c2528e18","5430c669b15b51ecbb4eda578a5f14443cff36a5d2513bd781921d8082db5049","0a11591ca3ea3cd124f764b7f39bbaa68dcb58f66f6dc534069bd073b0f8c082","3f96c54b500bd4ea34b805bb335d76e65be59f682ea32dcac99c5abf7d02b4fd","f821c43da42102306cf0519f6116357c6eb2533ae2177c6fb08a51a05a6a061e","c2227d5b4828961ae1f5e8e1470250ae8a2ef5d2bebb4fceab65d58d4b020fbb",{"version":"b41bdfe6d90aea1450607edcad0468d7f7dbb27d0bbfe66cfc0cc4a997a52fcd","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e415536fc161c129156c6a23d1f2eb3fc1220aefec61788490e575b98b25a43f","signature":"bb306d7a3d76cdd26ab19bb80a93737ed0ab1200c4d680a667d74774e8ed8588","affectsGlobalScope":true},{"version":"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"c75ac0682b74face8d051331544f633445f5d203dc773d579fa109a7cbee9f06","affectsGlobalScope":true,"impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"e8dbde089a4b9d5b2124764ebbcfe577ffcb3a1df5cfb512a504c708ddfc7262","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","impliedFormat":1},{"version":"53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6","impliedFormat":1},{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","impliedFormat":1},{"version":"5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","impliedFormat":1},{"version":"d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true,"impliedFormat":1},{"version":"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","impliedFormat":1},{"version":"304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","impliedFormat":1},{"version":"1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","impliedFormat":1},{"version":"98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","impliedFormat":1},{"version":"c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","impliedFormat":1},{"version":"a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","impliedFormat":1},{"version":"d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900","impliedFormat":1},{"version":"452e8a437aa57fe832dece2a5d3ea8dd0ab1de03ca778d09798c56ece0a29e80","affectsGlobalScope":true,"impliedFormat":1},{"version":"a20f1e119615bf7632729fd89b6c0b5ffdc2df3b512d6304146294528e3ebe19","affectsGlobalScope":true,"impliedFormat":1},{"version":"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","impliedFormat":1},{"version":"6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","impliedFormat":1},{"version":"56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"73aa178e8fb1449ef3666093d8dca25f96302a80ee45f8ff027df8e4792bf9fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927","impliedFormat":1},{"version":"fdedf82878e4c744bc2a1c1e802ae407d63474da51f14a54babe039018e53d8f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","impliedFormat":1},{"version":"e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","impliedFormat":1},{"version":"b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0","impliedFormat":1},{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21fcdcb618236f0feaca7e511e2da10c19970f86e09c934cef2d45b340ad92b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","impliedFormat":1},{"version":"4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"b33379077284c9e55d2410d814b71b15522c5f71f9e93e15a8c3c41d463b00f6","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","impliedFormat":1}],"root":[[80,82],202,203],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"esModuleInterop":false,"jsx":4,"jsxImportSource":"react","module":99,"noImplicitAny":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"target":99,"useDefineForClassFields":true},"referencedMap":[[204,1],[205,1],[245,2],[246,3],[247,4],[248,5],[249,6],[250,7],[251,8],[252,9],[253,10],[254,11],[255,11],[257,12],[256,13],[258,14],[259,15],[260,16],[244,17],[261,18],[262,19],[263,20],[296,21],[264,22],[265,23],[266,24],[267,25],[268,26],[269,27],[270,28],[271,29],[272,30],[273,31],[274,31],[275,32],[277,33],[279,34],[278,35],[280,36],[281,37],[282,38],[283,39],[284,40],[285,41],[286,42],[287,43],[288,44],[289,45],[290,46],[291,47],[292,48],[293,49],[294,50],[78,51],[79,52],[222,53],[232,54],[221,53],[242,55],[213,56],[212,57],[241,58],[235,59],[240,60],[215,61],[229,62],[214,63],[238,64],[210,65],[209,66],[239,67],[211,68],[216,69],[220,69],[243,70],[233,71],[224,72],[225,73],[227,74],[223,75],[226,76],[236,58],[218,77],[219,78],[228,79],[208,80],[231,71],[230,69],[237,81],[89,82],[150,83],[151,84],[152,85],[148,86],[142,87],[128,88],[140,89],[141,82],[154,90],[149,91],[153,92],[158,93],[84,94],[85,94],[86,94],[87,94],[88,95],[143,96],[144,97],[145,98],[146,97],[147,99],[159,100],[160,100],[161,100],[162,100],[163,100],[170,101],[164,100],[165,102],[166,100],[167,100],[168,100],[169,100],[201,103],[172,104],[173,105],[125,106],[127,107],[126,105],[135,108],[136,109],[133,110],[132,111],[129,112],[130,110],[134,113],[131,114],[139,115],[118,116],[119,117],[114,113],[117,118],[120,119],[121,119],[122,120],[124,121],[116,122],[123,123],[102,124],[103,125],[104,126],[109,127],[105,126],[107,126],[108,128],[174,100],[179,129],[175,130],[176,123],[177,130],[178,130],[113,131],[101,132],[110,100],[112,100],[95,133],[98,134],[93,135],[91,109],[94,136],[92,137],[100,138],[187,139],[189,140],[180,100],[183,141],[184,141],[188,139],[190,139],[200,142],[196,139],[197,143],[198,100],[82,144],[80,145],[203,146],[202,147],[81,145]],"version":"5.6.2"}
package/package.json CHANGED
@@ -1,31 +1,31 @@
1
1
  {
2
2
  "name": "@revideo/player-react",
3
- "version": "0.5.10",
3
+ "version": "0.5.11-alpha.1101+8fb1cafb",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [
7
7
  "dist"
8
8
  ],
9
9
  "scripts": {
10
- "build": "tsc && tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify"
10
+ "build": "tsc && postcss src/**/*.css --dir dist"
11
11
  },
12
12
  "keywords": [],
13
13
  "author": "revideo",
14
14
  "license": "MIT",
15
15
  "devDependencies": {
16
- "@types/react": "^18.3.1",
17
- "@types/react-dom": "^18.3.0",
18
- "tailwindcss": "^3.4.3"
19
- },
20
- "peerDependencies": {
21
- "react": ">=17",
22
- "react-dom": ">=17"
16
+ "@types/react": "^18",
17
+ "@types/react-dom": "^18",
18
+ "autoprefixer": "^10.4.20",
19
+ "cssnano": "^7.0.6",
20
+ "postcss": "^8.4.47",
21
+ "postcss-cli": "^11.0.0",
22
+ "tailwindcss": "^3.4.12"
23
23
  },
24
24
  "dependencies": {
25
- "@revideo/core": "0.5.10",
25
+ "@revideo/core": "^0.5.11-alpha.1101+8fb1cafb",
26
26
  "react": "^18",
27
27
  "react-dom": "^18",
28
28
  "uuid": "^10.0.0"
29
29
  },
30
- "gitHead": "56d48446d0f2dd2146bf594516b880b38a6e36a9"
30
+ "gitHead": "8fb1cafbd57314a83ad8a7adaf425f0804a039ff"
31
31
  }
package/dist/styles.css DELETED
@@ -1,2 +0,0 @@
1
- [data-player=true]{
2
- /*! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e5e5;box-sizing:border-box}:after,:before{--tw-content:""}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#acacac;opacity:1}input::placeholder,textarea::placeholder{color:#acacac;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }}.p-absolute{position:absolute}.p-relative{position:relative}.p-bottom-0{bottom:0}.p-left-0{left:0}.p-top-0{top:0}.p-flex{display:flex}.p-h-1{height:.25rem}.p-h-1\.5{height:.375rem}.p-h-6{height:1.5rem}.p-h-full{height:100%}.p-w-20{width:5rem}.p-w-6{width:1.5rem}.p-w-full{width:100%}.p-flex-1{flex:1 1 0%}.p-flex-grow{flex-grow:1}.p-cursor-default{cursor:default}.p-cursor-pointer{cursor:pointer}.p-flex-col{flex-direction:column}.p-items-center{align-items:center}.p-justify-center{justify-content:center}.p-space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.p-space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.p-overflow-hidden{overflow:hidden}.p-whitespace-nowrap{white-space:nowrap}.p-rounded-full{border-radius:9999px}.p-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 243 243/var(--tw-bg-opacity))}.p-bg-gray-300{--tw-bg-opacity:1;background-color:rgb(199 199 199/var(--tw-bg-opacity))}.p-bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.p-from-gray-500{--tw-gradient-from:grey var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,50%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.p-to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.p-p-1{padding:.25rem}.p-p-4{padding:1rem}.p-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.p-opacity-0{opacity:0}.p-opacity-100{opacity:1}.p-transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.p-duration-200{transition-duration:.2s}