@remotion/player 3.3.97 → 3.3.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/MediaVolumeSlider.js +0 -1
- package/dist/cjs/PlaybackrateControl.d.ts +5 -0
- package/dist/cjs/PlaybackrateControl.js +136 -0
- package/dist/cjs/Player.d.ts +1 -0
- package/dist/cjs/Player.js +13 -9
- package/dist/cjs/PlayerControls.d.ts +1 -0
- package/dist/cjs/PlayerControls.js +21 -3
- package/dist/cjs/PlayerUI.d.ts +1 -0
- package/dist/cjs/PlayerUI.js +13 -4
- package/dist/cjs/event-emitter.d.ts +5 -0
- package/dist/cjs/event-emitter.js +4 -0
- package/dist/cjs/icons.d.ts +3 -0
- package/dist/cjs/icons.js +5 -1
- package/dist/cjs/utils/use-component-visible.d.ts +6 -0
- package/dist/cjs/utils/use-component-visible.js +21 -0
- package/dist/esm/PlaybackrateControl.d.ts +5 -0
- package/dist/esm/Player.d.ts +1 -0
- package/dist/esm/PlayerControls.d.ts +1 -0
- package/dist/esm/PlayerUI.d.ts +1 -0
- package/dist/esm/event-emitter.d.ts +5 -0
- package/dist/esm/icons.d.ts +3 -0
- package/dist/esm/index.mjs +195 -17
- package/dist/esm/utils/use-component-visible.d.ts +6 -0
- package/dist/tsconfig-esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/esm/index.mjs
CHANGED
|
@@ -122,6 +122,7 @@ class PlayerEmitter {
|
|
|
122
122
|
frameupdate: [],
|
|
123
123
|
fullscreenchange: [],
|
|
124
124
|
volumechange: [],
|
|
125
|
+
mutechange: [],
|
|
125
126
|
};
|
|
126
127
|
}
|
|
127
128
|
addEventListener(name, callback) {
|
|
@@ -178,6 +179,9 @@ class PlayerEmitter {
|
|
|
178
179
|
dispatchFullscreenChange(event) {
|
|
179
180
|
this.dispatchEvent('fullscreenchange', event);
|
|
180
181
|
}
|
|
182
|
+
dispatchMuteChange(event) {
|
|
183
|
+
this.dispatchEvent('mutechange', event);
|
|
184
|
+
}
|
|
181
185
|
}
|
|
182
186
|
class ThumbnailEmitter {
|
|
183
187
|
constructor() {
|
|
@@ -703,6 +707,9 @@ const VolumeOffIcon = () => {
|
|
|
703
707
|
const VolumeOnIcon = () => {
|
|
704
708
|
return (jsx("svg", { width: ICON_SIZE, height: ICON_SIZE, viewBox: "0 0 24 24", children: jsx("path", { d: "M3 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L7 9H4c-.55 0-1 .45-1 1zm13.5 2A4.5 4.5 0 0014 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 4.45v.2c0 .38.25.71.6.85C17.18 6.53 19 9.06 19 12s-1.82 5.47-4.4 6.5c-.36.14-.6.47-.6.85v.2c0 .63.63 1.07 1.21.85C18.6 19.11 21 15.84 21 12s-2.4-7.11-5.79-8.4c-.58-.23-1.21.22-1.21.85z", fill: "#fff" }) }));
|
|
705
709
|
};
|
|
710
|
+
const SettingsIcon = ({ iconSize }) => {
|
|
711
|
+
return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", height: iconSize !== null && iconSize !== void 0 ? iconSize : ICON_SIZE, viewBox: "0 0 512 512", style: { fill: '#fff' }, children: jsx("path", { d: "M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" }) }));
|
|
712
|
+
};
|
|
706
713
|
|
|
707
714
|
const BAR_HEIGHT$1 = 5;
|
|
708
715
|
const KNOB_SIZE$1 = 12;
|
|
@@ -745,7 +752,6 @@ const MediaVolumeSlider = ({ displayVerticalVolumeSlider }) => {
|
|
|
745
752
|
display: 'inline-flex',
|
|
746
753
|
background: 'none',
|
|
747
754
|
border: 'none',
|
|
748
|
-
padding: 6,
|
|
749
755
|
justifyContent: 'center',
|
|
750
756
|
alignItems: 'center',
|
|
751
757
|
touchAction: 'none',
|
|
@@ -816,6 +822,148 @@ const MediaVolumeSlider = ({ displayVerticalVolumeSlider }) => {
|
|
|
816
822
|
} }), jsx("button", { "aria-label": isMutedOrZero ? 'Unmute sound' : 'Mute sound', title: isMutedOrZero ? 'Unmute sound' : 'Mute sound', onClick: onClick, onBlur: onBlur, onFocus: () => setFocused(true), style: volumeContainer, type: "button", children: isMutedOrZero ? jsx(VolumeOffIcon, {}) : jsx(VolumeOnIcon, {}) }), (focused || hover) && !mediaMuted ? (jsx("input", { ref: inputRef, "aria-label": "Change volume", className: randomClass, max: 1, min: 0, onBlur: () => setFocused(false), onChange: onVolumeChange, step: 0.01, type: "range", value: mediaVolume, style: inputStyle })) : null] }));
|
|
817
823
|
};
|
|
818
824
|
|
|
825
|
+
// hook to hide a popup/modal when clicked outside
|
|
826
|
+
function useComponentVisible(initialIsVisible) {
|
|
827
|
+
const [isComponentVisible, setIsComponentVisible] = useState(initialIsVisible);
|
|
828
|
+
const ref = useRef(null);
|
|
829
|
+
useEffect(() => {
|
|
830
|
+
const handleClickOutside = (event) => {
|
|
831
|
+
if (ref.current && !ref.current.contains(event.target)) {
|
|
832
|
+
setIsComponentVisible(false);
|
|
833
|
+
}
|
|
834
|
+
};
|
|
835
|
+
document.addEventListener('pointerup', handleClickOutside, true);
|
|
836
|
+
return () => {
|
|
837
|
+
document.removeEventListener('pointerup', handleClickOutside, true);
|
|
838
|
+
};
|
|
839
|
+
}, []);
|
|
840
|
+
return { ref, isComponentVisible, setIsComponentVisible };
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
const playbackPopup = {
|
|
844
|
+
position: 'absolute',
|
|
845
|
+
right: 0,
|
|
846
|
+
width: 125,
|
|
847
|
+
bottom: 35,
|
|
848
|
+
background: '#fff',
|
|
849
|
+
borderRadius: 4,
|
|
850
|
+
overflow: 'hidden',
|
|
851
|
+
color: 'black',
|
|
852
|
+
textAlign: 'left',
|
|
853
|
+
};
|
|
854
|
+
const rateDiv = {
|
|
855
|
+
height: 30,
|
|
856
|
+
paddingRight: 15,
|
|
857
|
+
paddingLeft: 12,
|
|
858
|
+
display: 'flex',
|
|
859
|
+
flexDirection: 'row',
|
|
860
|
+
alignItems: 'center',
|
|
861
|
+
};
|
|
862
|
+
const checkmarkContainer = {
|
|
863
|
+
width: 22,
|
|
864
|
+
display: 'flex',
|
|
865
|
+
alignItems: 'center',
|
|
866
|
+
};
|
|
867
|
+
const checkmarkStyle = {
|
|
868
|
+
width: 14,
|
|
869
|
+
height: 14,
|
|
870
|
+
color: 'black',
|
|
871
|
+
};
|
|
872
|
+
const Checkmark = () => (jsx("svg", { viewBox: "0 0 512 512", style: checkmarkStyle, children: jsx("path", { fill: "currentColor", d: "M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z" }) }));
|
|
873
|
+
const PlaybackPopup = ({ setIsComponentVisible, playbackRates }) => {
|
|
874
|
+
const { setPlaybackRate, playbackRate } = useContext(Internals.Timeline.TimelineContext);
|
|
875
|
+
const [keyboardSelectedRate, setKeyboardSelectedRate] = useState(playbackRate);
|
|
876
|
+
useEffect(() => {
|
|
877
|
+
const listener = (e) => {
|
|
878
|
+
e.preventDefault();
|
|
879
|
+
if (e.key === 'ArrowUp') {
|
|
880
|
+
const currentIndex = playbackRates.findIndex((rate) => rate === keyboardSelectedRate);
|
|
881
|
+
if (currentIndex === 0) {
|
|
882
|
+
return;
|
|
883
|
+
}
|
|
884
|
+
if (currentIndex === -1) {
|
|
885
|
+
setKeyboardSelectedRate(playbackRates[0]);
|
|
886
|
+
}
|
|
887
|
+
else {
|
|
888
|
+
setKeyboardSelectedRate(playbackRates[currentIndex - 1]);
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
else if (e.key === 'ArrowDown') {
|
|
892
|
+
const currentIndex = playbackRates.findIndex((rate) => rate === keyboardSelectedRate);
|
|
893
|
+
if (currentIndex === playbackRates.length - 1) {
|
|
894
|
+
return;
|
|
895
|
+
}
|
|
896
|
+
if (currentIndex === -1) {
|
|
897
|
+
setKeyboardSelectedRate(playbackRates[playbackRates.length - 1]);
|
|
898
|
+
}
|
|
899
|
+
else {
|
|
900
|
+
setKeyboardSelectedRate(playbackRates[currentIndex + 1]);
|
|
901
|
+
}
|
|
902
|
+
}
|
|
903
|
+
else if (e.key === 'Enter') {
|
|
904
|
+
setPlaybackRate(keyboardSelectedRate);
|
|
905
|
+
setIsComponentVisible(false);
|
|
906
|
+
}
|
|
907
|
+
};
|
|
908
|
+
window.addEventListener('keydown', listener);
|
|
909
|
+
return () => {
|
|
910
|
+
window.removeEventListener('keydown', listener);
|
|
911
|
+
};
|
|
912
|
+
}, [
|
|
913
|
+
playbackRates,
|
|
914
|
+
keyboardSelectedRate,
|
|
915
|
+
setPlaybackRate,
|
|
916
|
+
setIsComponentVisible,
|
|
917
|
+
]);
|
|
918
|
+
const onSelect = useCallback((rate) => {
|
|
919
|
+
setPlaybackRate(rate);
|
|
920
|
+
setIsComponentVisible(false);
|
|
921
|
+
}, [setIsComponentVisible, setPlaybackRate]);
|
|
922
|
+
return (jsx("div", { style: playbackPopup, children: playbackRates.map((rate) => {
|
|
923
|
+
return (jsx(PlaybackrateOption, { selectedRate: playbackRate, onSelect: onSelect, rate: rate, keyboardSelectedRate: keyboardSelectedRate }, rate));
|
|
924
|
+
}) }));
|
|
925
|
+
};
|
|
926
|
+
const PlaybackrateOption = ({ rate, onSelect, selectedRate, keyboardSelectedRate }) => {
|
|
927
|
+
const onClick = useCallback((e) => {
|
|
928
|
+
e.stopPropagation();
|
|
929
|
+
e.preventDefault();
|
|
930
|
+
onSelect(rate);
|
|
931
|
+
}, [onSelect, rate]);
|
|
932
|
+
const [hovered, setHovered] = useState(false);
|
|
933
|
+
const onMouseEnter = useCallback(() => {
|
|
934
|
+
setHovered(true);
|
|
935
|
+
}, []);
|
|
936
|
+
const onMouseLeave = useCallback(() => {
|
|
937
|
+
setHovered(false);
|
|
938
|
+
}, []);
|
|
939
|
+
const actualStyle = useMemo(() => {
|
|
940
|
+
return {
|
|
941
|
+
...rateDiv,
|
|
942
|
+
backgroundColor: hovered || keyboardSelectedRate === rate ? '#eee' : 'transparent',
|
|
943
|
+
};
|
|
944
|
+
}, [hovered, keyboardSelectedRate, rate]);
|
|
945
|
+
return (jsxs("div", { onMouseEnter: onMouseEnter, onMouseLeave: onMouseLeave, tabIndex: 0, style: actualStyle, onClick: onClick, children: [jsx("div", { style: checkmarkContainer, children: rate === selectedRate ? jsx(Checkmark, {}) : null }), rate.toFixed(1), "x"] }, rate));
|
|
946
|
+
};
|
|
947
|
+
const playbackButton = {
|
|
948
|
+
position: 'relative',
|
|
949
|
+
display: 'inline-flex',
|
|
950
|
+
alignItems: 'center',
|
|
951
|
+
padding: '6px 0 6px 0',
|
|
952
|
+
border: 'none',
|
|
953
|
+
background: 'none',
|
|
954
|
+
height: 36,
|
|
955
|
+
cursor: 'pointer',
|
|
956
|
+
};
|
|
957
|
+
const PlaybackrateControl = ({ playbackRates }) => {
|
|
958
|
+
const { ref, isComponentVisible, setIsComponentVisible } = useComponentVisible(false);
|
|
959
|
+
const onClick = useCallback((e) => {
|
|
960
|
+
e.stopPropagation();
|
|
961
|
+
e.preventDefault();
|
|
962
|
+
setIsComponentVisible(!isComponentVisible);
|
|
963
|
+
}, [isComponentVisible, setIsComponentVisible]);
|
|
964
|
+
return (jsx("div", { ref: ref, children: jsxs("button", { type: "button", "aria-label": "Change playback rate", style: playbackButton, onClick: onClick, children: [jsx(SettingsIcon, { iconSize: 22 }), isComponentVisible && (jsx(PlaybackPopup, { playbackRates: playbackRates, setIsComponentVisible: setIsComponentVisible }))] }) }));
|
|
965
|
+
};
|
|
966
|
+
|
|
819
967
|
const getFrameFromX = (clientX, durationInFrames, width) => {
|
|
820
968
|
var _a;
|
|
821
969
|
const pos = clientX;
|
|
@@ -1043,7 +1191,7 @@ const leftPartStyle = {
|
|
|
1043
1191
|
alignItems: 'center',
|
|
1044
1192
|
};
|
|
1045
1193
|
const xSpacer = {
|
|
1046
|
-
width:
|
|
1194
|
+
width: 12,
|
|
1047
1195
|
};
|
|
1048
1196
|
const ySpacer = {
|
|
1049
1197
|
height: 8,
|
|
@@ -1053,7 +1201,7 @@ const flex1 = {
|
|
|
1053
1201
|
};
|
|
1054
1202
|
const fullscreen = {};
|
|
1055
1203
|
const PlayPauseButton = ({ playing }) => playing ? jsx(PauseIcon, {}) : jsx(PlayIcon, {});
|
|
1056
|
-
const Controls = ({ durationInFrames, hovered, isFullscreen, fps, player, showVolumeControls, onFullscreenButtonClick, allowFullscreen, onExitFullscreenButtonClick, spaceKeyToPlayOrPause, onSeekEnd, onSeekStart, inFrame, outFrame, initiallyShowControls, playerWidth, renderPlayPauseButton, renderFullscreenButton, alwaysShowControls, }) => {
|
|
1204
|
+
const Controls = ({ durationInFrames, hovered, isFullscreen, fps, player, showVolumeControls, onFullscreenButtonClick, allowFullscreen, onExitFullscreenButtonClick, spaceKeyToPlayOrPause, onSeekEnd, onSeekStart, inFrame, outFrame, initiallyShowControls, playerWidth, renderPlayPauseButton, renderFullscreenButton, alwaysShowControls, showPlaybackRateControl, }) => {
|
|
1057
1205
|
const playButtonRef = useRef(null);
|
|
1058
1206
|
const frame = Internals.Timeline.useTimelinePosition();
|
|
1059
1207
|
const [supportsFullscreen, setSupportsFullscreen] = useState(false);
|
|
@@ -1123,7 +1271,24 @@ const Controls = ({ durationInFrames, hovered, isFullscreen, fps, player, showVo
|
|
|
1123
1271
|
textOverflow: 'ellipsis',
|
|
1124
1272
|
};
|
|
1125
1273
|
}, [maxTimeLabelWidth]);
|
|
1126
|
-
|
|
1274
|
+
const playbackRates = useMemo(() => {
|
|
1275
|
+
if (showPlaybackRateControl === true) {
|
|
1276
|
+
return [0.5, 0.8, 1, 1.2, 1.5, 1.8, 2, 2.5, 3];
|
|
1277
|
+
}
|
|
1278
|
+
if (Array.isArray(showPlaybackRateControl)) {
|
|
1279
|
+
for (const rate of showPlaybackRateControl) {
|
|
1280
|
+
if (typeof rate !== 'number') {
|
|
1281
|
+
throw new Error('Every item in showPlaybackRateControl must be a number');
|
|
1282
|
+
}
|
|
1283
|
+
if (rate <= 0) {
|
|
1284
|
+
throw new Error('Every item in showPlaybackRateControl must be positive');
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
return showPlaybackRateControl;
|
|
1288
|
+
}
|
|
1289
|
+
return null;
|
|
1290
|
+
}, [showPlaybackRateControl]);
|
|
1291
|
+
return (jsxs("div", { style: containerCss, children: [jsxs("div", { style: controlsRow, children: [jsxs("div", { style: leftPartStyle, children: [jsx("button", { ref: playButtonRef, type: "button", style: buttonStyle, onClick: player.playing ? player.pause : player.play, "aria-label": player.playing ? 'Pause video' : 'Play video', title: player.playing ? 'Pause video' : 'Play video', children: renderPlayPauseButton === null ? (jsx(PlayPauseButton, { playing: player.playing })) : (renderPlayPauseButton({ playing: player.playing })) }), showVolumeControls ? (jsxs(Fragment, { children: [jsx("div", { style: xSpacer }), jsx(MediaVolumeSlider, { displayVerticalVolumeSlider: displayVerticalVolumeSlider })] })) : null, jsx("div", { style: xSpacer }), jsxs("div", { style: timeLabel, children: [formatTime(frame / fps), " / ", formatTime(durationInFrames / fps)] }), jsx("div", { style: xSpacer })] }), jsx("div", { style: flex1 }), playbackRates && jsx(PlaybackrateControl, { playbackRates: playbackRates }), playbackRates && supportsFullscreen && allowFullscreen ? (jsx("div", { style: xSpacer })) : null, jsx("div", { style: fullscreen, children: supportsFullscreen && allowFullscreen ? (jsx("button", { type: "button", "aria-label": isFullscreen ? 'Exit fullscreen' : 'Enter Fullscreen', title: isFullscreen ? 'Exit fullscreen' : 'Enter Fullscreen', style: buttonStyle, onClick: isFullscreen
|
|
1127
1292
|
? onExitFullscreenButtonClick
|
|
1128
1293
|
: onFullscreenButtonClick, children: renderFullscreenButton === null ? (jsx(FullscreenIcon, { isFullscreen: isFullscreen })) : (renderFullscreenButton({ isFullscreen })) })) : null })] }), jsx("div", { style: ySpacer }), jsx(PlayerSeekBar, { onSeekEnd: onSeekEnd, onSeekStart: onSeekStart, durationInFrames: durationInFrames, inFrame: inFrame, outFrame: outFrame })] }));
|
|
1129
1294
|
};
|
|
@@ -1216,7 +1381,7 @@ if (reactVersion$1 === '0') {
|
|
|
1216
1381
|
throw new Error(`Version ${reactVersion$1} of "react" is not supported by Remotion`);
|
|
1217
1382
|
}
|
|
1218
1383
|
const doesReactVersionSupportSuspense$1 = parseInt(reactVersion$1, 10) >= 18;
|
|
1219
|
-
const PlayerUI = ({ controls, style, loop, autoPlay, allowFullscreen, inputProps, clickToPlay, showVolumeControls, doubleClickToFullscreen, spaceKeyToPlayOrPause, errorFallback, playbackRate, renderLoading, renderPoster, className, moveToBeginningWhenEnded, showPosterWhenUnplayed, showPosterWhenEnded, showPosterWhenPaused, inFrame, outFrame, initiallyShowControls, renderFullscreen: renderFullscreenButton, renderPlayPauseButton, alwaysShowControls, }, ref) => {
|
|
1384
|
+
const PlayerUI = ({ controls, style, loop, autoPlay, allowFullscreen, inputProps, clickToPlay, showVolumeControls, doubleClickToFullscreen, spaceKeyToPlayOrPause, errorFallback, playbackRate, renderLoading, renderPoster, className, moveToBeginningWhenEnded, showPosterWhenUnplayed, showPosterWhenEnded, showPosterWhenPaused, inFrame, outFrame, initiallyShowControls, renderFullscreen: renderFullscreenButton, renderPlayPauseButton, alwaysShowControls, showPlaybackRateControl, }, ref) => {
|
|
1220
1385
|
var _a, _b, _c, _d, _e;
|
|
1221
1386
|
const config = Internals.useUnsafeVideoConfig();
|
|
1222
1387
|
const video = Internals.useVideo();
|
|
@@ -1343,6 +1508,15 @@ const PlayerUI = ({ controls, style, loop, autoPlay, allowFullscreen, inputProps
|
|
|
1343
1508
|
}, [player.emitter, scale]);
|
|
1344
1509
|
const { setMediaVolume, setMediaMuted } = useContext(Internals.SetMediaVolumeContext);
|
|
1345
1510
|
const { mediaMuted, mediaVolume } = useContext(Internals.MediaVolumeContext);
|
|
1511
|
+
useEffect(() => {
|
|
1512
|
+
player.emitter.dispatchVolumeChange(mediaVolume);
|
|
1513
|
+
}, [player.emitter, mediaVolume]);
|
|
1514
|
+
const isMuted = mediaMuted || mediaVolume === 0;
|
|
1515
|
+
useEffect(() => {
|
|
1516
|
+
player.emitter.dispatchMuteChange({
|
|
1517
|
+
isMuted,
|
|
1518
|
+
});
|
|
1519
|
+
}, [player.emitter, isMuted]);
|
|
1346
1520
|
useImperativeHandle(ref, () => {
|
|
1347
1521
|
const methods = {
|
|
1348
1522
|
play: player.play,
|
|
@@ -1384,9 +1558,8 @@ const PlayerUI = ({ controls, style, loop, autoPlay, allowFullscreen, inputProps
|
|
|
1384
1558
|
throw new TypeError(`setVolume() got a number that is out of range. Must be between 0 and 1, got ${typeof vol}`);
|
|
1385
1559
|
}
|
|
1386
1560
|
setMediaVolume(vol);
|
|
1387
|
-
player.emitter.dispatchVolumeChange(vol);
|
|
1388
1561
|
},
|
|
1389
|
-
isMuted: () =>
|
|
1562
|
+
isMuted: () => isMuted,
|
|
1390
1563
|
mute: () => {
|
|
1391
1564
|
setMediaMuted(true);
|
|
1392
1565
|
},
|
|
@@ -1402,6 +1575,7 @@ const PlayerUI = ({ controls, style, loop, autoPlay, allowFullscreen, inputProps
|
|
|
1402
1575
|
isFullscreen,
|
|
1403
1576
|
loop,
|
|
1404
1577
|
mediaMuted,
|
|
1578
|
+
isMuted,
|
|
1405
1579
|
mediaVolume,
|
|
1406
1580
|
player,
|
|
1407
1581
|
requestFullscreen,
|
|
@@ -1483,7 +1657,7 @@ const PlayerUI = ({ controls, style, loop, autoPlay, allowFullscreen, inputProps
|
|
|
1483
1657
|
showPosterWhenEnded && player.isLastFrame && !player.isPlaying(),
|
|
1484
1658
|
showPosterWhenUnplayed && !player.hasPlayed && !player.isPlaying(),
|
|
1485
1659
|
].some(Boolean);
|
|
1486
|
-
const content = (jsxs(Fragment, { children: [jsx("div", { style: outer, onClick: clickToPlay ? handleClick : undefined, onDoubleClick: doubleClickToFullscreen ? handleDoubleClick : undefined, children: jsx("div", { style: containerStyle, className: PLAYER_CSS_CLASSNAME, children: VideoComponent ? (jsx(ErrorBoundary, { onError: onError, errorFallback: errorFallback, children: jsx(VideoComponent, { ...((_c = video === null || video === void 0 ? void 0 : video.defaultProps) !== null && _c !== void 0 ? _c : {}), ...((_d = inputProps) !== null && _d !== void 0 ? _d : {}) }) })) : null }) }), shouldShowPoster ? (jsx("div", { style: outer, onClick: clickToPlay ? handleClick : undefined, onDoubleClick: doubleClickToFullscreen ? handleDoubleClick : undefined, children: poster })) : null, controls ? (jsx(Controls, { fps: config.fps, durationInFrames: config.durationInFrames, hovered: hovered, player: player, onFullscreenButtonClick: onFullscreenButtonClick, isFullscreen: isFullscreen, allowFullscreen: allowFullscreen, showVolumeControls: showVolumeControls, onExitFullscreenButtonClick: onExitFullscreenButtonClick, spaceKeyToPlayOrPause: spaceKeyToPlayOrPause, onSeekEnd: onSeekEnd, onSeekStart: onSeekStart, inFrame: inFrame, outFrame: outFrame, initiallyShowControls: initiallyShowControls, playerWidth: (_e = canvasSize === null || canvasSize === void 0 ? void 0 : canvasSize.width) !== null && _e !== void 0 ? _e : 0, renderFullscreenButton: renderFullscreenButton, renderPlayPauseButton: renderPlayPauseButton, alwaysShowControls: alwaysShowControls })) : null] }));
|
|
1660
|
+
const content = (jsxs(Fragment, { children: [jsx("div", { style: outer, onClick: clickToPlay ? handleClick : undefined, onDoubleClick: doubleClickToFullscreen ? handleDoubleClick : undefined, children: jsx("div", { style: containerStyle, className: PLAYER_CSS_CLASSNAME, children: VideoComponent ? (jsx(ErrorBoundary, { onError: onError, errorFallback: errorFallback, children: jsx(VideoComponent, { ...((_c = video === null || video === void 0 ? void 0 : video.defaultProps) !== null && _c !== void 0 ? _c : {}), ...((_d = inputProps) !== null && _d !== void 0 ? _d : {}) }) })) : null }) }), shouldShowPoster ? (jsx("div", { style: outer, onClick: clickToPlay ? handleClick : undefined, onDoubleClick: doubleClickToFullscreen ? handleDoubleClick : undefined, children: poster })) : null, controls ? (jsx(Controls, { fps: config.fps, durationInFrames: config.durationInFrames, hovered: hovered, player: player, onFullscreenButtonClick: onFullscreenButtonClick, isFullscreen: isFullscreen, allowFullscreen: allowFullscreen, showVolumeControls: showVolumeControls, onExitFullscreenButtonClick: onExitFullscreenButtonClick, spaceKeyToPlayOrPause: spaceKeyToPlayOrPause, onSeekEnd: onSeekEnd, onSeekStart: onSeekStart, inFrame: inFrame, outFrame: outFrame, initiallyShowControls: initiallyShowControls, playerWidth: (_e = canvasSize === null || canvasSize === void 0 ? void 0 : canvasSize.width) !== null && _e !== void 0 ? _e : 0, renderFullscreenButton: renderFullscreenButton, renderPlayPauseButton: renderPlayPauseButton, alwaysShowControls: alwaysShowControls, showPlaybackRateControl: showPlaybackRateControl })) : null] }));
|
|
1487
1661
|
if (IS_NODE && !doesReactVersionSupportSuspense$1) {
|
|
1488
1662
|
return (jsx("div", { ref: container, style: outerStyle, className: className, children: content }));
|
|
1489
1663
|
}
|
|
@@ -1666,7 +1840,7 @@ const componentOrNullIfLazy = (props) => {
|
|
|
1666
1840
|
}
|
|
1667
1841
|
return null;
|
|
1668
1842
|
};
|
|
1669
|
-
const PlayerFn = ({ durationInFrames, compositionHeight, compositionWidth, fps, inputProps, style, controls = false, loop = false, autoPlay = false, showVolumeControls = true, allowFullscreen = true, clickToPlay, doubleClickToFullscreen = false, spaceKeyToPlayOrPause = true, moveToBeginningWhenEnded = true, numberOfSharedAudioTags = 5, errorFallback = () => '⚠️', playbackRate = 1, renderLoading, className, showPosterWhenUnplayed, showPosterWhenEnded, showPosterWhenPaused, initialFrame, renderPoster, inFrame, outFrame, initiallyShowControls, renderFullscreenButton, renderPlayPauseButton, alwaysShowControls = false, initiallyMuted = false, ...componentProps }, ref) => {
|
|
1843
|
+
const PlayerFn = ({ durationInFrames, compositionHeight, compositionWidth, fps, inputProps, style, controls = false, loop = false, autoPlay = false, showVolumeControls = true, allowFullscreen = true, clickToPlay, doubleClickToFullscreen = false, spaceKeyToPlayOrPause = true, moveToBeginningWhenEnded = true, numberOfSharedAudioTags = 5, errorFallback = () => '⚠️', playbackRate = 1, renderLoading, className, showPosterWhenUnplayed, showPosterWhenEnded, showPosterWhenPaused, initialFrame, renderPoster, inFrame, outFrame, initiallyShowControls, renderFullscreenButton, renderPlayPauseButton, alwaysShowControls = false, initiallyMuted = false, showPlaybackRateControl = false, ...componentProps }, ref) => {
|
|
1670
1844
|
if (typeof window !== 'undefined') {
|
|
1671
1845
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
1672
1846
|
useLayoutEffect(() => {
|
|
@@ -1694,6 +1868,7 @@ const PlayerFn = ({ durationInFrames, compositionHeight, compositionWidth, fps,
|
|
|
1694
1868
|
const rootRef = useRef(null);
|
|
1695
1869
|
const audioAndVideoTags = useRef([]);
|
|
1696
1870
|
const imperativePlaying = useRef(false);
|
|
1871
|
+
const [currentPlaybackRate, setCurrentPlaybackRate] = useState(playbackRate);
|
|
1697
1872
|
if (typeof compositionHeight !== 'number') {
|
|
1698
1873
|
throw new TypeError(`'compositionHeight' must be a number but got '${typeof compositionHeight}' instead`);
|
|
1699
1874
|
}
|
|
@@ -1748,10 +1923,13 @@ const PlayerFn = ({ durationInFrames, compositionHeight, compositionWidth, fps,
|
|
|
1748
1923
|
numberOfSharedAudioTags < 0) {
|
|
1749
1924
|
throw new TypeError(`'numberOfSharedAudioTags' must be an integer but got '${numberOfSharedAudioTags}' instead`);
|
|
1750
1925
|
}
|
|
1751
|
-
validatePlaybackRate(
|
|
1926
|
+
validatePlaybackRate(currentPlaybackRate);
|
|
1927
|
+
useEffect(() => {
|
|
1928
|
+
emitter.dispatchRateChange(currentPlaybackRate);
|
|
1929
|
+
}, [emitter, currentPlaybackRate]);
|
|
1752
1930
|
useEffect(() => {
|
|
1753
|
-
|
|
1754
|
-
}, [
|
|
1931
|
+
setCurrentPlaybackRate(playbackRate);
|
|
1932
|
+
}, [playbackRate]);
|
|
1755
1933
|
useImperativeHandle(ref, () => rootRef.current, []);
|
|
1756
1934
|
const timelineContextValue = useMemo(() => {
|
|
1757
1935
|
return {
|
|
@@ -1759,14 +1937,14 @@ const PlayerFn = ({ durationInFrames, compositionHeight, compositionWidth, fps,
|
|
|
1759
1937
|
playing,
|
|
1760
1938
|
rootId,
|
|
1761
1939
|
shouldRegisterSequences: false,
|
|
1762
|
-
playbackRate,
|
|
1940
|
+
playbackRate: currentPlaybackRate,
|
|
1763
1941
|
imperativePlaying,
|
|
1764
|
-
setPlaybackRate: () => {
|
|
1765
|
-
|
|
1942
|
+
setPlaybackRate: (rate) => {
|
|
1943
|
+
setCurrentPlaybackRate(rate);
|
|
1766
1944
|
},
|
|
1767
1945
|
audioAndVideoTags,
|
|
1768
1946
|
};
|
|
1769
|
-
}, [frame,
|
|
1947
|
+
}, [frame, currentPlaybackRate, playing, rootId]);
|
|
1770
1948
|
const setTimelineContextValue = useMemo(() => {
|
|
1771
1949
|
return {
|
|
1772
1950
|
setFrame,
|
|
@@ -1785,7 +1963,7 @@ const PlayerFn = ({ durationInFrames, compositionHeight, compositionWidth, fps,
|
|
|
1785
1963
|
}
|
|
1786
1964
|
return (jsx(Internals.IsPlayerContextProvider, { children: jsx(SharedPlayerContexts, { timelineContext: timelineContextValue, component: component, compositionHeight: compositionHeight, compositionWidth: compositionWidth, durationInFrames: durationInFrames, fps: fps, inputProps: inputProps, numberOfSharedAudioTags: numberOfSharedAudioTags, initiallyMuted: initiallyMuted, children: jsx(Internals.Timeline.SetTimelineContext.Provider, { value: setTimelineContextValue, children: jsx(PlayerEventEmitterContext.Provider, { value: emitter, children: jsx(PlayerUI$1, { ref: rootRef, renderLoading: renderLoading, autoPlay: Boolean(autoPlay), loop: Boolean(loop), controls: Boolean(controls), errorFallback: errorFallback, style: style, inputProps: passedInputProps, allowFullscreen: Boolean(allowFullscreen), moveToBeginningWhenEnded: Boolean(moveToBeginningWhenEnded), clickToPlay: typeof clickToPlay === 'boolean'
|
|
1787
1965
|
? clickToPlay
|
|
1788
|
-
: Boolean(controls), showVolumeControls: Boolean(showVolumeControls), doubleClickToFullscreen: Boolean(doubleClickToFullscreen), spaceKeyToPlayOrPause: Boolean(spaceKeyToPlayOrPause), playbackRate:
|
|
1966
|
+
: Boolean(controls), showVolumeControls: Boolean(showVolumeControls), doubleClickToFullscreen: Boolean(doubleClickToFullscreen), spaceKeyToPlayOrPause: Boolean(spaceKeyToPlayOrPause), playbackRate: currentPlaybackRate, className: className !== null && className !== void 0 ? className : undefined, showPosterWhenUnplayed: Boolean(showPosterWhenUnplayed), showPosterWhenEnded: Boolean(showPosterWhenEnded), showPosterWhenPaused: Boolean(showPosterWhenPaused), renderPoster: renderPoster, inFrame: inFrame !== null && inFrame !== void 0 ? inFrame : null, outFrame: outFrame !== null && outFrame !== void 0 ? outFrame : null, initiallyShowControls: initiallyShowControls !== null && initiallyShowControls !== void 0 ? initiallyShowControls : true, renderFullscreen: renderFullscreenButton !== null && renderFullscreenButton !== void 0 ? renderFullscreenButton : null, renderPlayPauseButton: renderPlayPauseButton !== null && renderPlayPauseButton !== void 0 ? renderPlayPauseButton : null, alwaysShowControls: alwaysShowControls, showPlaybackRateControl: showPlaybackRateControl }) }) }) }) }));
|
|
1789
1967
|
};
|
|
1790
1968
|
const forward$1 = forwardRef;
|
|
1791
1969
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export default function useComponentVisible(initialIsVisible: boolean): {
|
|
3
|
+
ref: import("react").RefObject<HTMLDivElement>;
|
|
4
|
+
isComponentVisible: boolean;
|
|
5
|
+
setIsComponentVisible: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
6
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.1/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/jsx-runtime.d.ts","../../core/dist/cjs/asset-types.d.ts","../../core/dist/cjs/folder.d.ts","../../core/dist/cjs/compositionmanager.d.ts","../../core/dist/cjs/get-static-files.d.ts","../../core/dist/cjs/nativelayers.d.ts","../../core/dist/cjs/absolutefill.d.ts","../../core/dist/cjs/volume-prop.d.ts","../../core/dist/cjs/audio/props.d.ts","../../core/dist/cjs/audio/audio.d.ts","../../core/dist/cjs/audio/index.d.ts","../../core/dist/cjs/cancel-render.d.ts","../../core/dist/cjs/composition.d.ts","../../../node_modules/.pnpm/buffer@5.6.0/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.9/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/schema-utils@3.1.1/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/lib/ajv.d.ts","../../../node_modules/.pnpm/schema-utils@3.1.1/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/.pnpm/schema-utils@3.1.1/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/.pnpm/tapable@2.2.1/node_modules/tapable/tapable.d.ts","../../../node_modules/.pnpm/webpack@5.76.1/node_modules/webpack/types.d.ts","../../core/dist/cjs/config.d.ts","../../core/dist/cjs/config/input-props.d.ts","../../core/dist/cjs/delay-render.d.ts","../../core/dist/cjs/easing.d.ts","../../core/dist/cjs/freeze.d.ts","../../core/dist/cjs/iframe.d.ts","../../core/dist/cjs/img.d.ts","../../core/dist/cjs/default-css.d.ts","../../core/dist/cjs/get-environment.d.ts","../../core/dist/cjs/timeline-position-state.d.ts","../../core/dist/cjs/truthy.d.ts","../../core/dist/cjs/volume-position-state.d.ts","../../core/dist/cjs/sequencecontext.d.ts","../../core/dist/cjs/nonce.d.ts","../../core/dist/cjs/wrap-remotion-context.d.ts","../../core/dist/cjs/video-config.d.ts","../../core/dist/cjs/internals.d.ts","../../core/dist/cjs/interpolate-colors.d.ts","../../core/dist/cjs/interpolate.d.ts","../../core/dist/cjs/sequence.d.ts","../../core/dist/cjs/loop/index.d.ts","../../core/dist/cjs/prefetch.d.ts","../../core/dist/cjs/random.d.ts","../../core/dist/cjs/register-root.d.ts","../../core/dist/cjs/series/index.d.ts","../../core/dist/cjs/spring/spring-utils.d.ts","../../core/dist/cjs/spring/measure-spring.d.ts","../../core/dist/cjs/spring/index.d.ts","../../core/dist/cjs/static-file.d.ts","../../core/dist/cjs/still.d.ts","../../core/dist/cjs/use-current-frame.d.ts","../../core/dist/cjs/use-video-config.d.ts","../../core/dist/cjs/version.d.ts","../../core/dist/cjs/video/props.d.ts","../../core/dist/cjs/video/offthreadvideo.d.ts","../../core/dist/cjs/video/video.d.ts","../../core/dist/cjs/video/index.d.ts","../../core/dist/cjs/index.d.ts","../src/icons.tsx","../src/use-hover-state.ts","../src/mediavolumeslider.tsx","../src/event-emitter.ts","../src/emitter-context.ts","../src/player-css-classname.ts","../src/player-methods.ts","../src/format-time.ts","../src/use-player.ts","../src/utils/use-element-size.ts","../src/playerseekbar.tsx","../src/use-video-controls-resize.ts","../src/playercontrols.tsx","../src/utils/calculate-player-size.ts","../src/utils/preview-size.ts","../src/calculate-scale.ts","../src/error-boundary.tsx","../src/calculate-next-frame.ts","../src/is-backgrounded.ts","../src/use-playback.ts","../src/utils/is-node.ts","../src/utils/cancellable-promise.ts","../src/utils/delay.ts","../src/utils/use-cancellable-promises.ts","../src/utils/use-click-prevention-on-double-click.ts","../src/playerui.tsx","../src/volume-persistance.ts","../src/sharedplayercontext.tsx","../src/utils/props-if-has-props.ts","../src/utils/validate-in-out-frame.ts","../src/utils/validate-initial-frame.ts","../src/utils/validate-playbackrate.ts","../src/player.tsx","../src/use-thumbnail.ts","../src/thumbnailui.tsx","../src/thumbnail.tsx","../src/index.ts","../../../node_modules/.pnpm/tinyspy@1.0.2/node_modules/tinyspy/dist/index.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/esbuild@0.14.49/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/rollup@2.76.0/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/vite@3.0.0/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/tinybench@2.3.1/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3_jsdom@20.0.1/node_modules/vitest/dist/global-732f9b14.d.ts","../../../node_modules/.pnpm/vitest@0.24.3_jsdom@20.0.1/node_modules/vitest/dist/index-40e0cb97.d.ts","../../../node_modules/.pnpm/@types+chai@4.3.4/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3_jsdom@20.0.1/node_modules/vitest/dist/index.d.ts","../src/test/index.test.ts","../../../node_modules/.pnpm/@types+aria-query@4.2.2/node_modules/@types/aria-query/index.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/matches.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/wait-for.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/query-helpers.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/queries.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../../node_modules/.pnpm/pretty-format@27.2.4/node_modules/pretty-format/build/types.d.ts","../../../node_modules/.pnpm/pretty-format@27.2.4/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/screen.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/get-node-text.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/events.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/role-helpers.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/config.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/suggestions.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/test-utils/index.d.ts","../../../node_modules/.pnpm/@testing-library+react@13.1.1_zpnidt7m3osuk7shl3s4oenomq/node_modules/@testing-library/react/types/index.d.ts","../src/test/test-utils.tsx","../src/test/validate-in-out-frames.test.ts","../src/test/validate-prop.test.tsx","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.0/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","117554f1f5046af1916d12ee4302f90855dea0440fb3d757c78fc6bd3c69d76e","472e6ef9d93f7259bd69e48235b29d65bef154ff88e1977028cb96736d2ee2be","31bbfbe037326b79bdeffd89ea235e18634a4c127a10b372621acf1b4c77943d","59cdc2e038bdd8737bafdc581293bb2b8828653e35bbf5d26145ca7f2a2f8fa5","8676190846039cb3cd9f24894b1248ff608e2a8eae976e706194cb9e86abd766","641db1293684775c1c0c954d93f34821804ad69f97eb60a35b2b719cf6debbe1","c94bc6b926d0a5f4d38715489291d2198ea1710ffdc74069f4a82240024e435f","a6ab353e5a7c57cfadf60f0468127a870ddf3def9e58609c3dc099cdaf8c2684","b69836e6b17fc822b7e6764bf429c1f37bf1e2f9bcf7432708ae957a2e06bd48","736eea59824b87cc7afe7157a53e720956f900ac4f5f01b54047ed927af8fec7","9ec6e0bc0c492b9107c49baf1e78769540ea2a3c593f8631a9437a582af57f39","3c8c7dfcea92e3b32501cd4a9e81e638be4a86069fbfb53442486fe02894898c","ef18cbf1d8374576e3db03ff33c2c7499845972eb0c4adf87392949709c5e160","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","e80915021736035577655602f7f2ce324993fda023f5ecba0788cefad0be3823",{"version":"bbf425ba74940b753f4491c8066d5b18ac0ea3dcc1091b18a298d0eaa436e027","affectsGlobalScope":true},"6921e7365ce247409e7785df10ec38f37a0e101307764866b572019cbf3ac99f","923ad6daeef6cd47a9d121f9a410f990619dd7e3250dd999ed163ed2d539709c","93dd4f7113bcc5ef507ddf75163ef1885317e4871e677a173166922f354603ff","7683d4e56b714769b707a1dc361a0b09dcece340f0a001a3c550d7756c57046d","ab5a2d8d47f269d1c94993d31fcbbc5a32dda80b263dc6f6fd8d30d7c4deec0b","578cd5f9e5735591afa7e2a2b9846a7ff678b314fd5ee3c8d5c9235d9e5a018e","bde4bb646eba9524dede275e59d032494af2e889b5e2c05bdb37af3961ec5434","37976a829fdd39e2b927e5f3a2ff39a307ed9364820b9a1d5cb1f361597bd6ba","ee83bd3792e0449a8fe92318d015775ac23c04350efc2190e46e922ebaa513be","a4e075b09839f3741a4be9fc1b8b006bafe9929009b905f2f96e57087761a580","9c361f6137478031e15cc76889c41812f1d574fb288c1c4eb9a6a44ac4ec1d35","61df201e7c60933851ec13e57d894a710f107a2e45b52e9db1d49407671e4efb","11fff246cdd97e84faef2a7ffb7e77d4dad65fc31bb8878a1b97f47df2e33077","12ea565b4c39de671020acbe794bc8177e928a5e7987636fe0ebe07bb87ed2e9","f4a5ff88403b713c6b9201057805369ad08338ae9a6e5f6dd595e808a76c1824","ddbd0ced7b7310b3686a864ff0aa3772066e0c116e75218ffa6c2a8f3559b357","afec1e7f59fcd84dcee0aa2f84009b08310b1b4679f75066dacb637c078a2552","6c6d0f4ad29b126c5705f588fd8ce45b688c1f3def20dbd78bf397c830517d08","1ed0795a3c4400820fbd4c402af4709c9072af41537cf41b17cd15ed915a390f","6e23930ae513b9b2abe2862e2dca3bfc1746c4df43f5543d6ca63ba537d73b2b","8c9e13867a5d6f68c9c84634ca5c81cf00d0a97d3108c088cda459f66aa189ca","09a2b384117c27deb313d43628110586c3eccc247572507b312482405e96aa34","27f3902bb2aa0d593f94e4d954253b009e4d025ad888090ca42bef6eeb6f7786","5fdd1589e18dff1225e612ca574fbf16a20a96076b8d0c923086c226bc3dcc19","c65e41ba6509368dac938de889898fb8fb24c52198de7194e2021ce850966e9f","cfd14e9d6ed98d28ea83a80e5bcac0b5a4b095b215b9447999392b2f9ce5ccac","95b40df9c1ba743e858b6571d74213c7b97c423b453d8c0016b506dd777442a4","1a0968366374f3700f0d30e22453dee83733f8987f5fc207e84e63f413ec85ee","596db561b3d3629271a42352bac745e9903f1a225041ca17215a8dc107811dfb","8761f74baf198ac04b6adb9e313df91b814046d31cec231c0fcede87417e24ff","bebe9f83f9f67515b46698c69b2120fe46a6763ba63445d6448e4e2273a5f9ec","76a80688a8f98d598c65ddd22f196a775cd1b961ef783c0ea6284258c639577c","5c6582630f2acb65ab31de7dde363185c8951ec16ac1499adc62b83c17ff6697","a964ea970369ac113b4d63520545056e4d2633e73a9520ac76666efdb8479b8d","5a16c4cbe7d2d309f990bfd63637cca7a4335f4f236ff037dcdd28ba1beaa8a3","8ee1752b81302b943ea4ad0a5c65c0de1b700f5f16b739b667edb2687111feb0",{"version":"6e48f206f572cc2cd2e29b391ed3f77dcd32a16804ece72d637e9e1f255706b5","affectsGlobalScope":true},"515179e9c903984af974edb87fa399c4a8b1d59d23b326de0c9c37bdff9ae7c8","394517af56a0ab084c549d10c0d1db80fefaae78f8fbe41131a7276f2e599cbb","8b6c00cdc93c7f178c4ea23d22ae7ba461934aeee3f0b8da7b07a07406501f17","64fe07f510e29c764785bc8bf0fc925ab977a76dce51040886262dc2b9980e11","1bb40c162dc442da396d9dff949c63444c4750e40818cb4ae2dbe94d13936550","da25d8711f9ca124c9e8dc0878dd74faa3e6f6f5ed7de2ba969de812571009ba","d7d65167b0cee18f0e7eeeba7b1ebcc2d23c01116c6206d1254cc5fa30733861","d1b451b28b75bfad052776a41d24d336272388ecf5de74a162d01bc6786ea4b0","b41bbcb1a20041dd8792f49c6c72339a35dbfe7847fcbaa9f0d298b0c72cb820","be1ead09b8985eb6ea2eeb9f51f376c0e20e611a042f2e4ffbc09ff6d34493c4","6a6d924a8b84afdb5bef851a0945b5c48d138f75d44ad11da134247c56916a29","0aec18366ac9c50e8230527ec2267e2b7ef2636c6595fdff6d0dee175d52ed0f",{"version":"5078c3765585b4f75ab48266024bca8ab347be0f7737d51fccf214f18274f93e","affectsGlobalScope":true},"1626bfdf8bbac62b0bf6933a731e61bb229b4fcf79c6fb193d7b28c7d1100bc8","297ed9fe0dfdafbdb91e70d39832de4f6a8c90e935b829b5d2aa755ae22e71a7","cfbe909d6eb5cd79204272ec31976ce6d655266390a769cca673f93758b5f232","f90f8ae2d1019b9012708f1b9a1fcadaa4a4c3ec0ba6c42ba7c2c0c4a5e26a74","09944352c4dd79082bff16d19f8fa0530c9176f889540acbeabb3062ea009e26","d23a7e408169cc1777cd4ca4fa92233a6aac535c45f84c972558ddd79f8c43fd","9d71a0a7092080467ad90759399eea3c6efd8ff321ba3ba1fec62e6198df8c41","335af72d65473d76598190a1af5c2491546b292456d9e893c362dbb0f233d44c","87b742dafcf6f99850076d5235586a08e3cc8e4c5c085019eeeed4337648804d","0be9773d1e0fce8390fd2d624e9c2b9c92a7fc7117a7164bfb7034a11e38b50b","62fd5cd699bdc3a36bb61d60cd287b65ea37668c1b6983b089e5fcf82a01ff98","dd4282f4541ad5c1579e9e6a047ddf6e233c049dcd005d1f3c75e36edd2bd305","f80465853d568487b9f8d487615a69fcfa54ce907ad276a374fd39d677bafada","185ab9e2991f3cbf997f2195edda3e5179a598af93703d3ecef0c1dca12a6f55","ab412eec859877b07c48fae8011cee9e3ef7a2666b107e38e04a965d9753b381","2c3370f1d4a87e71b9fd95702872001c660b543322fa9493133e11221bebbd95","7b0b3f828e0d58204c9705d8f64d8cff3bde73af99e6b6f816e73e95b48f41dd","ef4098e1a21b50234b445a2bbfe7771837de19ce0d1189b5af7d9f40c731dc55","fbbe2334e84b0919647b703bf77e8ebebc59b94ee2c09223e607596ccf62bf9d","0b2ccf5d66430db217bd2508767f2d0f91ffd1e724e2fcda3886f234f06e6fe5","ca26a00f85192ab40b5e9f9243323076b47122937bccc766bb02a8936fdcfee6","5551effcb3bb346118c3da6de302c3160cb07ba2ea6503434fc8f20d068fe750","a64c5ad67238232aa99e74a2460b658cf6abeeafebfb04dd149e0ab4ab704734","ae9a727f7eee7affda7cfdd57a6719137603aeadd3f551cfcd36b21484e5f6c1","a7157ee945ba3e7ccf605cf5f2e83e62f7694b92a3ddf8bc69c5182fe93aa98f","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"dc5f6951bbf5b544349cbdef895c08dee6929818abd27d7d53c38cf1209091b3","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","7674b65ac0a3b160232d84464b3486d727415581e5b99ff4aec324500adc98a4","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"e0b57467c219609094799676d14077c40e6529c82c6882ea4bd3c29d67d3f56e","7e94220ad32f5c5760516da077a0ba2283ac11f56cea7b269215441b3b11c794","0f9fafb9c5bac3049ea80e5184ebc2e7ca2f345599ad3b77124f11ec82ac60ca","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","dbef2851e33a4c2fd2f3164fec70e45df647eb0e87f250de784500a3037e2c37","31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","030335feee5eb2b6d574f33866649f63f73535e4d678ca0445901003c15f8732","fbdd4ba3bdd2b138debf86f8ea4ac13a16574e9925d62be28a97f4da282feaeb",{"version":"f2964a46290ba20b70f58b85d2eb2fc2dc2bfc56b0d5af28d922a7dcc1a6509a","affectsGlobalScope":true},"1c0a9170ebe774eefadaa5cce04e8aa544ecba747a6398af3ac0fb75a857b829",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},"9ad1e440685819b491e87350a8be5a07f5ec3f7023303db1c16ce771d3420804","443f0ac5fb8b7d2cd40b83a93c969f9b5044450c645c3be7f49c5248b45e343f","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f70bc756d933cc38dc603331a4b5c8dee89e1e1fb956cfb7a6e04ebb4c008091","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","fbc350d1cb7543cb75fdd5f3895ab9ac0322268e1bd6a43417565786044424f3","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","cb3aaf306b5ff2ec718359e2e2244263c0b364c35759b1467c16caa113ccb849","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","a3ce619711ff1bcdaaf4b5187d1e3f84e76064909a7c7ecb2e2f404f145b7b5c","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","d1c08287c9c6a9c60c53142c122e9c1909f5a159301b9b06b0eaf12ab547920b","3466ea9da1e0e656b0eee572d0a2de809bf797376fb67e04a87619f93a48a1f5","5da8823e10b38a6ef7f2fab1bf60a8b9fb7364258d6a676aee26d8709bb6dd85","47877b74655484a909bd70e50a2f30d153c06f30da10740f5130f3cc32069af2","b50c34984ff43a7e3d86249360e861fa627e308effeaf6e8919f0d7103a07144",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6"],"options":{"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":99,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":5},"fileIdsList":[[214],[211,212,213,214,215,218,219,220,221,222,223,224,225],[210],[217],[211,212,213],[211,212],[214,215,217],[212],[226,227,228],[235,236],[55,233,234,235],[236],[150,151,158,167],[142,150,158],[174],[146,151,159],[167],[148,150,158],[150],[150,152,167,173],[151],[158,167,173],[150,151,153,158,167,170,173],[153,167,170,173],[138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[173],[148,150,167],[140],[172],[165,174,176],[158],[164],[150,152,167,173,176],[39],[39,228],[35,36,37,38],[188],[188,200],[185,186,187,189,200],[191],[188,195,199,202],[190,202],[193,195,198,199,202],[193,195,196,198,199,202],[185,186,187,188,189,191,192,193,194,195,199,202],[184,185,186,187,188,189,191,192,193,194,195,196,198,199,200,201],[184,202],[195,196,197,199,202],[198,202],[188,194,199,202],[192,200],[216],[58],[55,56,57],[55,58],[184],[170,181,182,183,202],[151,178,203,204,205],[137,205],[137,151,178,203,204,205,206,207],[54,56,58,59,60,141,153,158,170],[39,47,48],[48,49],[39,47],[39,42],[61],[39,42,43,44,45,46,50,51,52,62,63,64,65,66,67,68,71,77,78,79,80,81,82,83,84,85,86,89,90,91,92,93,94,98],[39,43,52,69,70,71,72,73,74,76,77,99],[39,81],[39,43],[87,88],[87],[39,52],[77],[95,96,97],[39,95],[39,47,95],[39,43,45,71,74,75],[40],[36,40,99,109,113,114],[39,40,103],[39,40],[40,101,103,104,106,108,109,112,114,115,119,125,132,135],[39,40,99,100,101],[39,40,99,103,104,105,106,112,125,127,128,129,130,131],[39,40,99,100,102,107,108,110,111],[39,40,99,101,108,109],[39,40,99,101,105,106,108,109,112,115,116,119,120,124],[39,40,99,126],[40,108,208],[39,40,229],[40,129,208],[39,40,99,136,208,230],[39,40,99,103,104,106,125,127,128,134],[39,40,99,105,106,109,115,116,120,125,133],[39,40,99,108,117,118],[39,40,99,103,104],[39,40,103,104],[39,40,100,102],[36,40,109],[39,40,121],[39,40,121,122,123]],"referencedMap":[[215,1],[226,2],[211,3],[222,4],[214,5],[213,6],[218,7],[219,8],[229,9],[237,10],[236,11],[234,12],[142,13],[143,14],[144,15],[145,16],[146,17],[147,18],[149,19],[150,19],[151,20],[152,21],[153,22],[154,23],[155,24],[181,25],[156,19],[157,26],[158,27],[161,28],[162,29],[165,19],[166,30],[167,19],[170,31],[172,31],[173,32],[175,17],[178,33],[179,17],[227,34],[228,35],[39,36],[40,34],[186,37],[185,38],[188,39],[192,40],[189,38],[194,41],[191,42],[196,43],[197,44],[200,45],[202,46],[190,47],[198,48],[199,49],[195,50],[187,37],[193,51],[217,52],[59,53],[58,54],[56,55],[184,56],[203,57],[205,58],[206,59],[208,60],[61,61],[46,34],[49,62],[50,63],[48,64],[52,34],[43,65],[62,66],[42,34],[66,34],[67,34],[68,34],[99,67],[78,68],[82,69],[45,34],[75,34],[85,34],[81,70],[74,34],[86,69],[89,71],[88,72],[91,73],[71,34],[93,74],[98,75],[96,76],[95,64],[97,77],[73,34],[76,78],[117,79],[115,80],[104,81],[116,82],[103,79],[107,79],[100,82],[136,83],[118,82],[102,84],[105,79],[106,81],[132,85],[112,86],[110,87],[125,88],[127,89],[209,90],[230,91],[231,92],[232,93],[135,94],[134,95],[101,82],[119,96],[108,97],[133,98],[111,99],[113,100],[121,79],[122,79],[120,79],[114,79],[128,79],[123,101],[124,102],[109,82],[129,79],[130,79],[131,79],[126,79]],"exportedModulesMap":[[215,1],[226,2],[211,3],[222,4],[214,5],[213,6],[218,7],[219,8],[229,9],[237,10],[236,11],[234,12],[142,13],[143,14],[144,15],[145,16],[146,17],[147,18],[149,19],[150,19],[151,20],[152,21],[153,22],[154,23],[155,24],[181,25],[156,19],[157,26],[158,27],[161,28],[162,29],[165,19],[166,30],[167,19],[170,31],[172,31],[173,32],[175,17],[178,33],[179,17],[227,34],[228,35],[39,36],[40,34],[186,37],[185,38],[188,39],[192,40],[189,38],[194,41],[191,42],[196,43],[197,44],[200,45],[202,46],[190,47],[198,48],[199,49],[195,50],[187,37],[193,51],[217,52],[59,53],[58,54],[56,55],[184,56],[203,57],[205,58],[206,59],[208,60],[61,61],[46,34],[49,62],[50,63],[48,64],[52,34],[43,65],[62,66],[42,34],[66,34],[67,34],[68,34],[99,67],[78,68],[82,69],[45,34],[75,34],[85,34],[81,70],[74,34],[86,69],[89,71],[88,72],[91,73],[71,34],[93,74],[98,75],[96,76],[95,64],[97,77],[73,34],[76,78],[117,79],[115,80],[104,81],[116,82],[103,79],[107,79],[100,82],[136,83],[118,82],[102,84],[105,79],[106,81],[132,85],[112,86],[110,87],[125,88],[127,89],[209,90],[230,91],[231,92],[232,93],[135,94],[134,95],[101,82],[119,96],[108,97],[133,98],[111,99],[113,100],[121,79],[122,79],[120,79],[114,79],[128,79],[123,101],[124,102],[109,82],[129,79],[130,79],[131,79],[126,79]],"semanticDiagnosticsPerFile":[224,221,220,215,226,211,222,214,213,223,218,225,219,212,229,210,207,237,233,236,234,54,235,55,138,140,141,142,143,144,145,146,147,148,149,150,151,152,139,180,153,154,155,181,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,37,227,228,35,39,40,38,57,53,36,182,186,185,188,192,189,194,191,196,201,197,200,202,190,198,199,195,187,193,217,216,183,59,58,56,184,60,204,137,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,33,1,34,203,205,206,208,61,46,41,49,50,48,51,52,43,62,63,69,64,65,42,66,70,44,67,68,99,78,79,80,82,45,75,83,84,85,81,74,86,89,88,87,90,91,71,72,92,93,94,77,98,96,95,97,73,47,76,117,115,104,116,103,107,100,136,118,102,105,106,132,112,110,125,127,209,230,231,232,135,134,101,119,108,133,111,113,121,122,120,114,128,123,124,109,129,130,131,126]},"version":"4.7.2"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.1/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/jsx-runtime.d.ts","../../core/dist/cjs/asset-types.d.ts","../../core/dist/cjs/folder.d.ts","../../core/dist/cjs/compositionmanager.d.ts","../../core/dist/cjs/get-static-files.d.ts","../../core/dist/cjs/nativelayers.d.ts","../../core/dist/cjs/absolutefill.d.ts","../../core/dist/cjs/volume-prop.d.ts","../../core/dist/cjs/audio/props.d.ts","../../core/dist/cjs/audio/audio.d.ts","../../core/dist/cjs/audio/index.d.ts","../../core/dist/cjs/cancel-render.d.ts","../../core/dist/cjs/composition.d.ts","../../../node_modules/.pnpm/buffer@5.6.0/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.9/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/schema-utils@3.1.1/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/lib/ajv.d.ts","../../../node_modules/.pnpm/schema-utils@3.1.1/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/.pnpm/schema-utils@3.1.1/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/.pnpm/tapable@2.2.1/node_modules/tapable/tapable.d.ts","../../../node_modules/.pnpm/webpack@5.76.1/node_modules/webpack/types.d.ts","../../core/dist/cjs/config.d.ts","../../core/dist/cjs/config/input-props.d.ts","../../core/dist/cjs/delay-render.d.ts","../../core/dist/cjs/easing.d.ts","../../core/dist/cjs/freeze.d.ts","../../core/dist/cjs/iframe.d.ts","../../core/dist/cjs/img.d.ts","../../core/dist/cjs/default-css.d.ts","../../core/dist/cjs/get-environment.d.ts","../../core/dist/cjs/timeline-position-state.d.ts","../../core/dist/cjs/truthy.d.ts","../../core/dist/cjs/volume-position-state.d.ts","../../core/dist/cjs/sequencecontext.d.ts","../../core/dist/cjs/nonce.d.ts","../../core/dist/cjs/wrap-remotion-context.d.ts","../../core/dist/cjs/video-config.d.ts","../../core/dist/cjs/internals.d.ts","../../core/dist/cjs/interpolate-colors.d.ts","../../core/dist/cjs/interpolate.d.ts","../../core/dist/cjs/sequence.d.ts","../../core/dist/cjs/loop/index.d.ts","../../core/dist/cjs/prefetch.d.ts","../../core/dist/cjs/random.d.ts","../../core/dist/cjs/register-root.d.ts","../../core/dist/cjs/series/index.d.ts","../../core/dist/cjs/spring/spring-utils.d.ts","../../core/dist/cjs/spring/measure-spring.d.ts","../../core/dist/cjs/spring/index.d.ts","../../core/dist/cjs/static-file.d.ts","../../core/dist/cjs/still.d.ts","../../core/dist/cjs/use-current-frame.d.ts","../../core/dist/cjs/use-video-config.d.ts","../../core/dist/cjs/version.d.ts","../../core/dist/cjs/video/props.d.ts","../../core/dist/cjs/video/offthreadvideo.d.ts","../../core/dist/cjs/video/video.d.ts","../../core/dist/cjs/video/index.d.ts","../../core/dist/cjs/index.d.ts","../src/icons.tsx","../src/use-hover-state.ts","../src/mediavolumeslider.tsx","../src/utils/use-component-visible.ts","../src/playbackratecontrol.tsx","../src/event-emitter.ts","../src/emitter-context.ts","../src/player-css-classname.ts","../src/player-methods.ts","../src/format-time.ts","../src/use-player.ts","../src/utils/use-element-size.ts","../src/playerseekbar.tsx","../src/use-video-controls-resize.ts","../src/playercontrols.tsx","../src/utils/calculate-player-size.ts","../src/utils/preview-size.ts","../src/calculate-scale.ts","../src/error-boundary.tsx","../src/calculate-next-frame.ts","../src/is-backgrounded.ts","../src/use-playback.ts","../src/utils/is-node.ts","../src/utils/cancellable-promise.ts","../src/utils/delay.ts","../src/utils/use-cancellable-promises.ts","../src/utils/use-click-prevention-on-double-click.ts","../src/playerui.tsx","../src/volume-persistance.ts","../src/sharedplayercontext.tsx","../src/utils/props-if-has-props.ts","../src/utils/validate-in-out-frame.ts","../src/utils/validate-initial-frame.ts","../src/utils/validate-playbackrate.ts","../src/player.tsx","../src/use-thumbnail.ts","../src/thumbnailui.tsx","../src/thumbnail.tsx","../src/index.ts","../../../node_modules/.pnpm/tinyspy@1.0.2/node_modules/tinyspy/dist/index.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@14.17.20/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/esbuild@0.14.49/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/rollup@2.76.0/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/vite@3.0.0/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/tinybench@2.3.1/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3_jsdom@20.0.1/node_modules/vitest/dist/global-732f9b14.d.ts","../../../node_modules/.pnpm/vitest@0.24.3_jsdom@20.0.1/node_modules/vitest/dist/index-40e0cb97.d.ts","../../../node_modules/.pnpm/@types+chai@4.3.4/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/vitest@0.24.3_jsdom@20.0.1/node_modules/vitest/dist/index.d.ts","../src/test/index.test.ts","../../../node_modules/.pnpm/@types+aria-query@4.2.2/node_modules/@types/aria-query/index.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/matches.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/wait-for.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/query-helpers.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/queries.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../../node_modules/.pnpm/pretty-format@27.2.4/node_modules/pretty-format/build/types.d.ts","../../../node_modules/.pnpm/pretty-format@27.2.4/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/screen.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/get-node-text.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/events.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/role-helpers.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/config.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/suggestions.d.ts","../../../node_modules/.pnpm/@testing-library+dom@8.16.0/node_modules/@testing-library/dom/types/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/test-utils/index.d.ts","../../../node_modules/.pnpm/@testing-library+react@13.1.1_zpnidt7m3osuk7shl3s4oenomq/node_modules/@testing-library/react/types/index.d.ts","../src/test/test-utils.tsx","../src/test/validate-in-out-frames.test.ts","../src/test/validate-prop.test.tsx","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.0/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+eslint@7.28.0/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","117554f1f5046af1916d12ee4302f90855dea0440fb3d757c78fc6bd3c69d76e","472e6ef9d93f7259bd69e48235b29d65bef154ff88e1977028cb96736d2ee2be","31bbfbe037326b79bdeffd89ea235e18634a4c127a10b372621acf1b4c77943d","59cdc2e038bdd8737bafdc581293bb2b8828653e35bbf5d26145ca7f2a2f8fa5","8676190846039cb3cd9f24894b1248ff608e2a8eae976e706194cb9e86abd766","641db1293684775c1c0c954d93f34821804ad69f97eb60a35b2b719cf6debbe1","c94bc6b926d0a5f4d38715489291d2198ea1710ffdc74069f4a82240024e435f","a6ab353e5a7c57cfadf60f0468127a870ddf3def9e58609c3dc099cdaf8c2684","b69836e6b17fc822b7e6764bf429c1f37bf1e2f9bcf7432708ae957a2e06bd48","736eea59824b87cc7afe7157a53e720956f900ac4f5f01b54047ed927af8fec7","9ec6e0bc0c492b9107c49baf1e78769540ea2a3c593f8631a9437a582af57f39","3c8c7dfcea92e3b32501cd4a9e81e638be4a86069fbfb53442486fe02894898c","ef18cbf1d8374576e3db03ff33c2c7499845972eb0c4adf87392949709c5e160","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","e80915021736035577655602f7f2ce324993fda023f5ecba0788cefad0be3823",{"version":"bbf425ba74940b753f4491c8066d5b18ac0ea3dcc1091b18a298d0eaa436e027","affectsGlobalScope":true},"6921e7365ce247409e7785df10ec38f37a0e101307764866b572019cbf3ac99f","923ad6daeef6cd47a9d121f9a410f990619dd7e3250dd999ed163ed2d539709c","93dd4f7113bcc5ef507ddf75163ef1885317e4871e677a173166922f354603ff","7683d4e56b714769b707a1dc361a0b09dcece340f0a001a3c550d7756c57046d","ab5a2d8d47f269d1c94993d31fcbbc5a32dda80b263dc6f6fd8d30d7c4deec0b","578cd5f9e5735591afa7e2a2b9846a7ff678b314fd5ee3c8d5c9235d9e5a018e","bde4bb646eba9524dede275e59d032494af2e889b5e2c05bdb37af3961ec5434","37976a829fdd39e2b927e5f3a2ff39a307ed9364820b9a1d5cb1f361597bd6ba","ee83bd3792e0449a8fe92318d015775ac23c04350efc2190e46e922ebaa513be","a4e075b09839f3741a4be9fc1b8b006bafe9929009b905f2f96e57087761a580","9c361f6137478031e15cc76889c41812f1d574fb288c1c4eb9a6a44ac4ec1d35","61df201e7c60933851ec13e57d894a710f107a2e45b52e9db1d49407671e4efb","11fff246cdd97e84faef2a7ffb7e77d4dad65fc31bb8878a1b97f47df2e33077","12ea565b4c39de671020acbe794bc8177e928a5e7987636fe0ebe07bb87ed2e9","f4a5ff88403b713c6b9201057805369ad08338ae9a6e5f6dd595e808a76c1824","ddbd0ced7b7310b3686a864ff0aa3772066e0c116e75218ffa6c2a8f3559b357","afec1e7f59fcd84dcee0aa2f84009b08310b1b4679f75066dacb637c078a2552","6c6d0f4ad29b126c5705f588fd8ce45b688c1f3def20dbd78bf397c830517d08","1ed0795a3c4400820fbd4c402af4709c9072af41537cf41b17cd15ed915a390f","6e23930ae513b9b2abe2862e2dca3bfc1746c4df43f5543d6ca63ba537d73b2b","8c9e13867a5d6f68c9c84634ca5c81cf00d0a97d3108c088cda459f66aa189ca","09a2b384117c27deb313d43628110586c3eccc247572507b312482405e96aa34","27f3902bb2aa0d593f94e4d954253b009e4d025ad888090ca42bef6eeb6f7786","5fdd1589e18dff1225e612ca574fbf16a20a96076b8d0c923086c226bc3dcc19","c65e41ba6509368dac938de889898fb8fb24c52198de7194e2021ce850966e9f","cfd14e9d6ed98d28ea83a80e5bcac0b5a4b095b215b9447999392b2f9ce5ccac","95b40df9c1ba743e858b6571d74213c7b97c423b453d8c0016b506dd777442a4","1a0968366374f3700f0d30e22453dee83733f8987f5fc207e84e63f413ec85ee","596db561b3d3629271a42352bac745e9903f1a225041ca17215a8dc107811dfb","8761f74baf198ac04b6adb9e313df91b814046d31cec231c0fcede87417e24ff","bebe9f83f9f67515b46698c69b2120fe46a6763ba63445d6448e4e2273a5f9ec","a5970d7d2234193bb32bb60a9a8141cac5fd555ba0988df5e99a7ca5b219805d","5c6582630f2acb65ab31de7dde363185c8951ec16ac1499adc62b83c17ff6697","a964ea970369ac113b4d63520545056e4d2633e73a9520ac76666efdb8479b8d","5a16c4cbe7d2d309f990bfd63637cca7a4335f4f236ff037dcdd28ba1beaa8a3","8ee1752b81302b943ea4ad0a5c65c0de1b700f5f16b739b667edb2687111feb0",{"version":"6e48f206f572cc2cd2e29b391ed3f77dcd32a16804ece72d637e9e1f255706b5","affectsGlobalScope":true},"f826b373302ab690ffa619e5c349611e3be2e146fe6037741a51da3dfc2f1618","394517af56a0ab084c549d10c0d1db80fefaae78f8fbe41131a7276f2e599cbb","338e69c8f46b2cb420f9ad2f726ac6c1b9ff559ffbd35e3d337e77fde9009f35","88287d091cf19a257f283da844bc61d858c12d3b8b40014fa2dce313a7b114d7","56cf5c3386451c8e5f0d607b2757f9dff78580cc0b80077dcf7af25f91c017c9","aa244f53520004eb08d321d5a1223fefa1fbb6bcaa3cc056269c51d5d11f8925","1bb40c162dc442da396d9dff949c63444c4750e40818cb4ae2dbe94d13936550","da25d8711f9ca124c9e8dc0878dd74faa3e6f6f5ed7de2ba969de812571009ba","d7d65167b0cee18f0e7eeeba7b1ebcc2d23c01116c6206d1254cc5fa30733861","d1b451b28b75bfad052776a41d24d336272388ecf5de74a162d01bc6786ea4b0","b41bbcb1a20041dd8792f49c6c72339a35dbfe7847fcbaa9f0d298b0c72cb820","be1ead09b8985eb6ea2eeb9f51f376c0e20e611a042f2e4ffbc09ff6d34493c4","6a6d924a8b84afdb5bef851a0945b5c48d138f75d44ad11da134247c56916a29","0aec18366ac9c50e8230527ec2267e2b7ef2636c6595fdff6d0dee175d52ed0f",{"version":"8c5f290c389375d81b82e52f87c32d53126d910b6fa81f170f06e1a44edebcf6","affectsGlobalScope":true},"1626bfdf8bbac62b0bf6933a731e61bb229b4fcf79c6fb193d7b28c7d1100bc8","297ed9fe0dfdafbdb91e70d39832de4f6a8c90e935b829b5d2aa755ae22e71a7","cfbe909d6eb5cd79204272ec31976ce6d655266390a769cca673f93758b5f232","f90f8ae2d1019b9012708f1b9a1fcadaa4a4c3ec0ba6c42ba7c2c0c4a5e26a74","09944352c4dd79082bff16d19f8fa0530c9176f889540acbeabb3062ea009e26","d23a7e408169cc1777cd4ca4fa92233a6aac535c45f84c972558ddd79f8c43fd","9d71a0a7092080467ad90759399eea3c6efd8ff321ba3ba1fec62e6198df8c41","335af72d65473d76598190a1af5c2491546b292456d9e893c362dbb0f233d44c","87b742dafcf6f99850076d5235586a08e3cc8e4c5c085019eeeed4337648804d","0be9773d1e0fce8390fd2d624e9c2b9c92a7fc7117a7164bfb7034a11e38b50b","62fd5cd699bdc3a36bb61d60cd287b65ea37668c1b6983b089e5fcf82a01ff98","dd4282f4541ad5c1579e9e6a047ddf6e233c049dcd005d1f3c75e36edd2bd305","f15903eca9616e23eedb09da0b3e3dd052b64d61dddd8c1b9e19792cf05ebffb","185ab9e2991f3cbf997f2195edda3e5179a598af93703d3ecef0c1dca12a6f55","ab412eec859877b07c48fae8011cee9e3ef7a2666b107e38e04a965d9753b381","2c3370f1d4a87e71b9fd95702872001c660b543322fa9493133e11221bebbd95","7b0b3f828e0d58204c9705d8f64d8cff3bde73af99e6b6f816e73e95b48f41dd","ef4098e1a21b50234b445a2bbfe7771837de19ce0d1189b5af7d9f40c731dc55","fbbe2334e84b0919647b703bf77e8ebebc59b94ee2c09223e607596ccf62bf9d","a719126d26b5ec1c7f33a4f3343dfc711d7756eb165f2b5643b5e3b9f8ecd404","ca26a00f85192ab40b5e9f9243323076b47122937bccc766bb02a8936fdcfee6","5551effcb3bb346118c3da6de302c3160cb07ba2ea6503434fc8f20d068fe750","a64c5ad67238232aa99e74a2460b658cf6abeeafebfb04dd149e0ab4ab704734","ae9a727f7eee7affda7cfdd57a6719137603aeadd3f551cfcd36b21484e5f6c1","a7157ee945ba3e7ccf605cf5f2e83e62f7694b92a3ddf8bc69c5182fe93aa98f","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"dc5f6951bbf5b544349cbdef895c08dee6929818abd27d7d53c38cf1209091b3","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","7674b65ac0a3b160232d84464b3486d727415581e5b99ff4aec324500adc98a4","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"e0b57467c219609094799676d14077c40e6529c82c6882ea4bd3c29d67d3f56e","7e94220ad32f5c5760516da077a0ba2283ac11f56cea7b269215441b3b11c794","0f9fafb9c5bac3049ea80e5184ebc2e7ca2f345599ad3b77124f11ec82ac60ca","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","dbef2851e33a4c2fd2f3164fec70e45df647eb0e87f250de784500a3037e2c37","31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","030335feee5eb2b6d574f33866649f63f73535e4d678ca0445901003c15f8732","fbdd4ba3bdd2b138debf86f8ea4ac13a16574e9925d62be28a97f4da282feaeb",{"version":"f2964a46290ba20b70f58b85d2eb2fc2dc2bfc56b0d5af28d922a7dcc1a6509a","affectsGlobalScope":true},"1c0a9170ebe774eefadaa5cce04e8aa544ecba747a6398af3ac0fb75a857b829",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},"9ad1e440685819b491e87350a8be5a07f5ec3f7023303db1c16ce771d3420804","443f0ac5fb8b7d2cd40b83a93c969f9b5044450c645c3be7f49c5248b45e343f","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f70bc756d933cc38dc603331a4b5c8dee89e1e1fb956cfb7a6e04ebb4c008091","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","fbc350d1cb7543cb75fdd5f3895ab9ac0322268e1bd6a43417565786044424f3","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","cb3aaf306b5ff2ec718359e2e2244263c0b364c35759b1467c16caa113ccb849","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","a3ce619711ff1bcdaaf4b5187d1e3f84e76064909a7c7ecb2e2f404f145b7b5c","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","d1c08287c9c6a9c60c53142c122e9c1909f5a159301b9b06b0eaf12ab547920b","3466ea9da1e0e656b0eee572d0a2de809bf797376fb67e04a87619f93a48a1f5","5da8823e10b38a6ef7f2fab1bf60a8b9fb7364258d6a676aee26d8709bb6dd85","47877b74655484a909bd70e50a2f30d153c06f30da10740f5130f3cc32069af2","b50c34984ff43a7e3d86249360e861fa627e308effeaf6e8919f0d7103a07144",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6"],"options":{"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":99,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":5},"fileIdsList":[[216],[213,214,215,216,217,220,221,222,223,224,225,226,227],[212],[219],[213,214,215],[213,214],[216,217,219],[214],[228,229,230],[237,238],[55,235,236,237],[238],[152,153,160,169],[144,152,160],[176],[148,153,161],[169],[150,152,160],[152],[152,154,169,175],[153],[160,169,175],[152,153,155,160,169,172,175],[155,169,172,175],[140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[175],[150,152,169],[142],[174],[167,176,178],[160],[166],[152,154,169,175,178],[39],[39,230],[35,36,37,38],[190],[190,202],[187,188,189,191,202],[193],[190,197,201,204],[192,204],[195,197,200,201,204],[195,197,198,200,201,204],[187,188,189,190,191,193,194,195,196,197,201,204],[186,187,188,189,190,191,193,194,195,196,197,198,200,201,202,203],[186,204],[197,198,199,201,204],[200,204],[190,196,201,204],[194,202],[218],[58],[55,56,57],[55,58],[186],[172,183,184,185,204],[153,180,205,206,207],[139,207],[139,153,180,205,206,207,208,209],[54,56,58,59,60,143,155,160,172],[39,47,48],[48,49],[39,47],[39,42],[61],[39,42,43,44,45,46,50,51,52,62,63,64,65,66,67,68,71,77,78,79,80,81,82,83,84,85,86,89,90,91,92,93,94,98],[39,43,52,69,70,71,72,73,74,76,77,99],[39,81],[39,43],[87,88],[87],[39,52],[77],[95,96,97],[39,95],[39,47,95],[39,43,45,71,74,75],[40],[36,40,99,111,115,116],[39,40,105],[39,40],[40,101,105,106,108,110,111,114,116,117,121,127,134,137],[39,40,99,100,101],[39,40,99,100,103],[39,40,99,105,106,107,108,114,127,129,130,131,132,133],[39,40,99,100,102,104,109,110,112,113],[39,40,99,101,110,111],[39,40,99,101,107,108,110,111,114,117,118,121,122,126],[39,40,99,128],[40,110,210],[39,40,231],[40,131,210],[39,40,99,138,210,232],[39,40,99,105,106,108,127,129,130,136],[39,40,99,107,108,111,117,118,122,127,135],[39,40,99,110,119,120],[39,40,99,105,106],[39,40,105,106],[39,40,100,102],[36,40,111],[39,40,123],[39,40,123,124,125]],"referencedMap":[[217,1],[228,2],[213,3],[224,4],[216,5],[215,6],[220,7],[221,8],[231,9],[239,10],[238,11],[236,12],[144,13],[145,14],[146,15],[147,16],[148,17],[149,18],[151,19],[152,19],[153,20],[154,21],[155,22],[156,23],[157,24],[183,25],[158,19],[159,26],[160,27],[163,28],[164,29],[167,19],[168,30],[169,19],[172,31],[174,31],[175,32],[177,17],[180,33],[181,17],[229,34],[230,35],[39,36],[40,34],[188,37],[187,38],[190,39],[194,40],[191,38],[196,41],[193,42],[198,43],[199,44],[202,45],[204,46],[192,47],[200,48],[201,49],[197,50],[189,37],[195,51],[219,52],[59,53],[58,54],[56,55],[186,56],[205,57],[207,58],[208,59],[210,60],[61,61],[46,34],[49,62],[50,63],[48,64],[52,34],[43,65],[62,66],[42,34],[66,34],[67,34],[68,34],[99,67],[78,68],[82,69],[45,34],[75,34],[85,34],[81,70],[74,34],[86,69],[89,71],[88,72],[91,73],[71,34],[93,74],[98,75],[96,76],[95,64],[97,77],[73,34],[76,78],[119,79],[117,80],[106,81],[118,82],[105,79],[109,79],[100,82],[138,83],[120,82],[102,84],[104,85],[107,79],[108,81],[134,86],[114,87],[112,88],[127,89],[129,90],[211,91],[232,92],[233,93],[234,94],[137,95],[136,96],[101,82],[121,97],[110,98],[135,99],[113,100],[115,101],[123,79],[124,79],[122,79],[116,79],[130,79],[125,102],[126,103],[103,82],[111,82],[131,79],[132,79],[133,79],[128,79]],"exportedModulesMap":[[217,1],[228,2],[213,3],[224,4],[216,5],[215,6],[220,7],[221,8],[231,9],[239,10],[238,11],[236,12],[144,13],[145,14],[146,15],[147,16],[148,17],[149,18],[151,19],[152,19],[153,20],[154,21],[155,22],[156,23],[157,24],[183,25],[158,19],[159,26],[160,27],[163,28],[164,29],[167,19],[168,30],[169,19],[172,31],[174,31],[175,32],[177,17],[180,33],[181,17],[229,34],[230,35],[39,36],[40,34],[188,37],[187,38],[190,39],[194,40],[191,38],[196,41],[193,42],[198,43],[199,44],[202,45],[204,46],[192,47],[200,48],[201,49],[197,50],[189,37],[195,51],[219,52],[59,53],[58,54],[56,55],[186,56],[205,57],[207,58],[208,59],[210,60],[61,61],[46,34],[49,62],[50,63],[48,64],[52,34],[43,65],[62,66],[42,34],[66,34],[67,34],[68,34],[99,67],[78,68],[82,69],[45,34],[75,34],[85,34],[81,70],[74,34],[86,69],[89,71],[88,72],[91,73],[71,34],[93,74],[98,75],[96,76],[95,64],[97,77],[73,34],[76,78],[119,79],[117,80],[106,81],[118,82],[105,79],[109,79],[100,82],[138,83],[120,82],[102,84],[104,85],[107,79],[108,81],[134,86],[114,87],[112,88],[127,89],[129,90],[211,91],[232,92],[233,93],[234,94],[137,95],[136,96],[101,82],[121,97],[110,98],[135,99],[113,100],[115,101],[123,79],[124,79],[122,79],[116,79],[130,79],[125,102],[126,103],[103,82],[111,82],[131,79],[132,79],[133,79],[128,79]],"semanticDiagnosticsPerFile":[226,223,222,217,228,213,224,216,215,225,220,227,221,214,231,212,209,239,235,238,236,54,237,55,140,142,143,144,145,146,147,148,149,150,151,152,153,154,141,182,155,156,157,183,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,37,229,230,35,39,40,38,57,53,36,184,188,187,190,194,191,196,193,198,203,199,202,204,192,200,201,197,189,195,219,218,185,59,58,56,186,60,206,139,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,33,1,34,205,207,208,210,61,46,41,49,50,48,51,52,43,62,63,69,64,65,42,66,70,44,67,68,99,78,79,80,82,45,75,83,84,85,81,74,86,89,88,87,90,91,71,72,92,93,94,77,98,96,95,97,73,47,76,119,117,106,118,105,109,100,138,120,102,104,107,108,134,114,112,127,129,211,232,233,234,137,136,101,121,110,135,113,115,123,124,122,116,130,125,126,103,111,131,132,133,128]},"version":"4.7.2"}
|