diff --git a/app/(onboarding)/_layout.tsx b/app/(onboarding)/_layout.tsx index 617c829..0c3dedd 100644 --- a/app/(onboarding)/_layout.tsx +++ b/app/(onboarding)/_layout.tsx @@ -1,7 +1,8 @@ import { useState, useEffect, useRef } from 'react'; -import { StyleSheet, Dimensions, Platform, View, StatusBar as RNStatusBar, Pressable } from 'react-native'; +import { StyleSheet, Dimensions, Platform, View, StatusBar as RNStatusBar, Pressable, Text, Modal } from 'react-native'; import { createMaterialTopTabNavigator } from '@react-navigation/material-top-tabs'; import { StatusBar } from 'expo-status-bar'; +import { WebView } from 'react-native-webview'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { LQDButton } from '@/components'; @@ -10,6 +11,11 @@ import { LQDOnboardingIndicator } from '@/components/onboarding'; import Step1 from './step1'; import Step2 from './step2'; import Step3 from './step3'; +import Step4 from './step4'; + +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { CloseIcon } from '@/assets/icons'; +import { useSafeAreaInsets } from 'react-native-safe-area-context'; const Tab = createMaterialTopTabNavigator(); @@ -19,17 +25,23 @@ const getCurrentStep = (pathname: string) => { return 1; case '/step3': return 2; + case '/step4': + return 3; default: return 0; } }; +const url = 'https://metastablelabs.notion.site/Terms-of-Use-149716767cb4802094c6d36593120eea'; + export default function OnboardingTabLayout() { + const insets = useSafeAreaInsets(); const { router, pathname } = useSystemFunctions(); const [timer, setTimer] = useState(0); const [isPaused, setIsPaused] = useState(false); const [finished, setFinished] = useState(false); + const [showTC, setShowTC] = useState(false); const intervalRef = useRef(null); const currentStep = getCurrentStep(pathname); @@ -38,6 +50,10 @@ export default function OnboardingTabLayout() { setIsPaused((prev) => !prev); }; + const openTC = () => { + setShowTC((prev) => !prev); + }; + const navigateToNextScreen = () => { switch (pathname) { case '/step1': @@ -47,6 +63,9 @@ export default function OnboardingTabLayout() { router.push('/(onboarding)/step3'); break; case '/step3': + router.push('/(onboarding)/step4'); + break; + case '/step4': if (intervalRef.current) { clearInterval(intervalRef.current); } @@ -64,6 +83,9 @@ export default function OnboardingTabLayout() { case '/step3': router.push('/(onboarding)/step2'); break; + case '/step4': + router.push('/(onboarding)/step3'); + break; } }; @@ -89,7 +111,7 @@ export default function OnboardingTabLayout() { useEffect(() => { setTimer(0); - if (pathname !== '/step3' && finished) { + if (pathname !== '/step4' && finished) { setFinished(false); setIsPaused(false); } @@ -103,7 +125,7 @@ export default function OnboardingTabLayout() { timer={timer} isPaused={isPaused} currentStep={currentStep} - totalSteps={3} + totalSteps={4} togglePause={togglePause} finished={finished} /> @@ -139,6 +161,13 @@ export default function OnboardingTabLayout() { title: 'Step3', }} /> + { - if (currentStep < 2) { + if (currentStep < 3) { navigateToNextScreen(); } }} @@ -159,13 +188,41 @@ export default function OnboardingTabLayout() { /> - router.replace('/(signup)')} title="Let's go!" /> + router.replace('/(signup)')} title="Get started" /> + + + + By clicking continue, you agree to Liquid’s + Terms of Service + and + Privacy Policy + + + + + + + + + + + ); } const styles = StyleSheet.create({ + webview: { + flex: 1, + }, + indicator: { position: 'absolute', top: 0, @@ -175,6 +232,7 @@ const styles = StyleSheet.create({ zIndex: 1, justifyContent: 'space-between', }, + action: { position: 'absolute', bottom: 0, @@ -183,6 +241,7 @@ const styles = StyleSheet.create({ paddingBottom: Platform.OS === 'ios' ? 33 : 16, width: Dimensions.get('window').width, }, + prev: { flex: 1, position: 'absolute', @@ -190,6 +249,7 @@ const styles = StyleSheet.create({ left: 0, width: 65, }, + next: { flex: 1, position: 'absolute', @@ -197,4 +257,31 @@ const styles = StyleSheet.create({ right: 0, width: 65, }, + + tcText: { + color: '#64748B', + fontFamily: 'AeonikRegular', + fontWeight: '600', + fontSize: adjustFontSizeForIOS(11, 2), + lineHeight: 17, + }, + + boldTcText: { + color: '#64748B', + fontFamily: 'AeonikBold', + fontWeight: '700', + fontSize: adjustFontSizeForIOS(11, 2), + lineHeight: 17, + }, + + closeIcon: { + alignItems: 'flex-end', + paddingHorizontal: 10, + }, + + tcWrapper: { + textAlign: 'center', + marginTop: 13, + marginHorizontal: 30, + }, }); diff --git a/app/(onboarding)/step1.tsx b/app/(onboarding)/step1.tsx index 6eddfb8..2fbea52 100644 --- a/app/(onboarding)/step1.tsx +++ b/app/(onboarding)/step1.tsx @@ -12,10 +12,10 @@ const Step1 = () => { image={image} firstArc={arc} secondArc={arc1} - title="DeFi made easy" + title="Discover DeFi strategies easily" subtitle="Earn more with your money, securely" - containerStyle={{ backgroundColor: '#4691FE' }} - imageStyle={{ left: 6 }} + containerStyle={{ backgroundColor: '#FFF' }} + imageStyle={{ left: '24%' }} firstArcStyle={styles.firstArc} secondArcStyle={styles.secondArc} /> @@ -26,9 +26,9 @@ export default Step1; const styles = StyleSheet.create({ firstArc: { - height: 352, + height: 320, left: -57, - top: 82, + top: 250, }, secondArc: { diff --git a/app/(onboarding)/step2.tsx b/app/(onboarding)/step2.tsx index 41279e2..0b0d466 100644 --- a/app/(onboarding)/step2.tsx +++ b/app/(onboarding)/step2.tsx @@ -4,16 +4,16 @@ import { LQDOnboardingStep } from '@/components/onboarding'; const Step2 = () => { const image = require('../../assets/images/onboarding2.png'); - const arc = require('../../assets/images/onboardingStep2Arc.png'); - const arc1 = require('../../assets/images/onboardingStep2Arc1.png'); + const arc = require('../../assets/images/onboardingStep1Arc.png'); + const arc1 = require('../../assets/images/onboardingStep1Arc1.png'); return ( { - const image = require('../../assets/images/onboarding3.png'); - const arc = require('../../assets/images/onboardingStep3Arc.png'); - const arc1 = require('../../assets/images/onboardingStep3Arc1.png'); + const image = require('../../assets/images/onboarding2.png'); + // const arc = require('../../assets/images/onboardingStep3Arc.png'); + // const arc1 = require('../../assets/images/onboardingStep3Arc1.png'); + + const arc = require('../../assets/images/onboardingStep1Arc.png'); + const arc1 = require('../../assets/images/onboardingStep1Arc1.png'); return ( { + const image = require('../../assets/images/onboarding3.png'); + const arc = require('../../assets/images/onboardingStep1Arc.png'); + const arc1 = require('../../assets/images/onboardingStep1Arc1.png'); + + return ( + + ); +}; + +export default Step4; + +const styles = StyleSheet.create({ + firstArc: { + height: 320, + left: -57, + top: 250, + }, + + secondArc: { + height: 301, + right: -66, + bottom: 155, + }, +}); diff --git a/app/(portfolio)/_layout.tsx b/app/(portfolio)/_layout.tsx new file mode 100644 index 0000000..1adc284 --- /dev/null +++ b/app/(portfolio)/_layout.tsx @@ -0,0 +1,24 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const PortfolioStack = () => { + return ( + , + headerShown: true, + }} + > + , + headerShown: true, + headerTitle: 'Portfolio', + }} + /> + + ); +}; + +export default PortfolioStack; diff --git a/app/(portfolio)/index.tsx b/app/(portfolio)/index.tsx new file mode 100644 index 0000000..67cc97d --- /dev/null +++ b/app/(portfolio)/index.tsx @@ -0,0 +1,5 @@ +import { Portfolio } from '@/screens'; + +const PortfolioScreen = () => ; + +export default PortfolioScreen; diff --git a/app/(strategy)/_layout.tsx b/app/(strategy)/_layout.tsx new file mode 100644 index 0000000..5be549d --- /dev/null +++ b/app/(strategy)/_layout.tsx @@ -0,0 +1,41 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const StrategyStack = () => { + return ( + , + headerTitle: 'Create Strategy', + }} + > + , + headerTitle: 'New Action', + headerShown: true, + presentation: 'fullScreenModal', + animation: 'slide_from_bottom', + }} + /> + + , + headerTitle: 'Preview and publish', + headerShown: true, + }} + /> + + + ); +}; + +export default StrategyStack; diff --git a/app/(strategy)/create-strategy.tsx b/app/(strategy)/create-strategy.tsx new file mode 100644 index 0000000..1ad00eb --- /dev/null +++ b/app/(strategy)/create-strategy.tsx @@ -0,0 +1,5 @@ +import { CreateStrategy } from '@/screens'; + +const CreateStrategyScreen = () => ; + +export default CreateStrategyScreen; diff --git a/app/(strategy)/details/[id].tsx b/app/(strategy)/details/[id].tsx new file mode 100644 index 0000000..d1161a8 --- /dev/null +++ b/app/(strategy)/details/[id].tsx @@ -0,0 +1,10 @@ +import { StrategyDetail } from '@/screens'; +import { useLocalSearchParams } from 'expo-router'; + +const StrategyDetailScreen = () => { + const { id } = useLocalSearchParams(); + + return ; +}; + +export default StrategyDetailScreen; diff --git a/app/(strategy)/details/_layout.tsx b/app/(strategy)/details/_layout.tsx new file mode 100644 index 0000000..7217a3c --- /dev/null +++ b/app/(strategy)/details/_layout.tsx @@ -0,0 +1,19 @@ +import { Stack } from 'expo-router'; + +import { LQDStackHeader } from '@/components'; + +const StrategyDetailLayout = () => { + return ( + <> + , + headerTitle: 'Strategy', + headerShown: true, + }} + > + + ); +}; + +export default StrategyDetailLayout; diff --git a/app/(strategy)/new-action-strategy.tsx b/app/(strategy)/new-action-strategy.tsx new file mode 100644 index 0000000..d1a9bb9 --- /dev/null +++ b/app/(strategy)/new-action-strategy.tsx @@ -0,0 +1,5 @@ +import { NewActionStrategy } from '@/screens'; + +const NewActionScreen = () => ; + +export default NewActionScreen; diff --git a/app/(strategy)/preview-strategy.tsx b/app/(strategy)/preview-strategy.tsx new file mode 100644 index 0000000..40683a5 --- /dev/null +++ b/app/(strategy)/preview-strategy.tsx @@ -0,0 +1,5 @@ +import { PreviewStrategy } from '@/screens'; + +const PreviewStrategyScreen = () => ; + +export default PreviewStrategyScreen; diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index cda871f..393e40d 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -4,35 +4,59 @@ import { StatusBar } from 'expo-status-bar'; import { TabBarIcon } from '@/components/navigation/TabBarIcon'; import { Colors } from '@/constants/Colors'; -import { LQDNavigation } from '@/components'; +import { LQDActionCard, LQDBottomSheet, LQDFlatlist, LQDNavigation } from '@/components'; +import Header from '@/screens/home/header'; +import { useState } from 'react'; +import { sortList } from '@/screens/discover/dummy'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; export default function TabLayout() { const colorScheme = useColorScheme(); + const [show, setShow] = useState(false); + const [selectedAction, setSelectedAction] = useState(''); + const { router } = useSystemFunctions(); + + const navigate = () => { + router.push('/(portfolio)'); + }; + + const openModal = () => { + setShow((prev) => !prev); + }; return ( <> - } screenOptions={{ tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint, - headerShown: false, + headerShown: true, + header: () =>
, }} > , }} /> , + headerShown: false, + }} + /> + + , }} /> @@ -46,4 +70,6 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 48, backgroundColor: '#fff', }, + protocalContainerStyle: { gap: 20, paddingBottom: 50 }, + modalContainerStyle: { gap: 20, paddingBottom: 50 }, }); diff --git a/app/(tabs)/discover/_layout.tsx b/app/(tabs)/discover/_layout.tsx new file mode 100644 index 0000000..3f2e6fe --- /dev/null +++ b/app/(tabs)/discover/_layout.tsx @@ -0,0 +1,22 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const DiscoverStack = () => { + return ( + , + headerShown: true, + }} + > + + + ); +}; + +export default DiscoverStack; diff --git a/app/(tabs)/discover/index.tsx b/app/(tabs)/discover/index.tsx new file mode 100644 index 0000000..28df840 --- /dev/null +++ b/app/(tabs)/discover/index.tsx @@ -0,0 +1,5 @@ +import { Discover } from '@/screens'; + +const DiscoverScreen = () => ; + +export default DiscoverScreen; diff --git a/app/(tabs)/holdings/[poolId]/_layout.tsx b/app/(tabs)/holdings/[poolId]/_layout.tsx deleted file mode 100644 index 1f21bb1..0000000 --- a/app/(tabs)/holdings/[poolId]/_layout.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import { StyleSheet, View } from 'react-native'; -import { Stack } from 'expo-router'; - -import { LQDButton, LQDStackHeader } from '@/components'; -import { ILQDButton } from '@/components/button/types'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { useEffect } from 'react'; -import useAppActions from '@/store/app/actions'; - -const PoolDetailLayout = () => { - const { router } = useSystemFunctions(); - const { hideSearch } = useAppActions(); - - const actions: Array = [ - { - title: 'Add Liquidity', - onPress: () => router.push('/(liquidity-actions)/add'), - variant: 'tertiary', - }, - { - title: 'Remove Liquidity', - onPress: () => router.push('/(liquidity-actions)/remove'), - variant: 'tertiaryOutline', - }, - ]; - - useEffect(() => { - hideSearch(true); - - return () => hideSearch(false); - }, []); - - return ( - <> - , - headerShown: true, - }} - > - - - - - {actions.map((action) => ( - - ))} - - - ); -}; - -export default PoolDetailLayout; - -const styles = StyleSheet.create({ - actionsContainer: { - position: 'absolute', - bottom: 85, - paddingHorizontal: 16, - paddingTop: 32, - paddingBottom: 22, - flexDirection: 'row', - gap: 11, - backgroundColor: '#FFF', - }, - - action: { - flex: 1, - }, -}); diff --git a/app/(tabs)/holdings/[poolId]/index.tsx b/app/(tabs)/holdings/[poolId]/index.tsx deleted file mode 100644 index a72c84a..0000000 --- a/app/(tabs)/holdings/[poolId]/index.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { PoolDetail } from '@/screens'; - -const PoolDetailScreen = () => { - const { params } = useSystemFunctions(); - - const { poolId } = params; - - return ; -}; - -export default PoolDetailScreen; diff --git a/app/(tabs)/holdings/assets.tsx b/app/(tabs)/holdings/assets.tsx deleted file mode 100644 index 62dc847..0000000 --- a/app/(tabs)/holdings/assets.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { Assets } from '@/screens'; - -const AssetsScreen = () => ; - -export default AssetsScreen; diff --git a/app/(tabs)/holdings/index.tsx b/app/(tabs)/holdings/index.tsx deleted file mode 100644 index 226c1b8..0000000 --- a/app/(tabs)/holdings/index.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { Holdings } from '@/screens'; - -const HoldingsScreen = () => ; - -export default HoldingsScreen; diff --git a/app/(tabs)/holdings/pools.tsx b/app/(tabs)/holdings/pools.tsx deleted file mode 100644 index ae52b44..0000000 --- a/app/(tabs)/holdings/pools.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { Pools } from '@/screens'; - -const PoolsScreen = () => ; - -export default PoolsScreen; diff --git a/app/(tabs)/holdings/rewards.tsx b/app/(tabs)/holdings/rewards.tsx deleted file mode 100644 index 29e49d6..0000000 --- a/app/(tabs)/holdings/rewards.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { Rewards } from '@/screens'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; - -const RewardsScreen = () => { - const { params } = useSystemFunctions(); - - const { type } = params; - - return ; -}; - -export default RewardsScreen; diff --git a/app/(tabs)/home/[poolId]/_layout.tsx b/app/(tabs)/home/[poolId]/_layout.tsx index 602d3ce..5f96911 100644 --- a/app/(tabs)/home/[poolId]/_layout.tsx +++ b/app/(tabs)/home/[poolId]/_layout.tsx @@ -25,7 +25,7 @@ const PoolDetailLayout = () => { <> , + header: (props) => , headerShown: true, }} > diff --git a/app/(tabs)/holdings/_layout.tsx b/app/(tabs)/profile/_layout.tsx similarity index 65% rename from app/(tabs)/holdings/_layout.tsx rename to app/(tabs)/profile/_layout.tsx index f3740af..64dd7a8 100644 --- a/app/(tabs)/holdings/_layout.tsx +++ b/app/(tabs)/profile/_layout.tsx @@ -1,7 +1,7 @@ import { Stack } from 'expo-router'; import { LQDStackHeader } from '@/components'; -const HoldingsStack = () => { +const ProfileStack = () => { return ( { /> , - }} - /> - - { ); }; -export default HoldingsStack; +export default ProfileStack; diff --git a/app/(tabs)/profile/edit-profile.tsx b/app/(tabs)/profile/edit-profile.tsx new file mode 100644 index 0000000..7a3406b --- /dev/null +++ b/app/(tabs)/profile/edit-profile.tsx @@ -0,0 +1,5 @@ +import { EditProfile } from '@/screens'; + +const EditProfileScreen = () => ; + +export default EditProfileScreen; diff --git a/app/(tabs)/profile/index.tsx b/app/(tabs)/profile/index.tsx new file mode 100644 index 0000000..31cb301 --- /dev/null +++ b/app/(tabs)/profile/index.tsx @@ -0,0 +1,5 @@ +import { Profile } from '@/screens'; + +const ProfileScreen = () => ; + +export default ProfileScreen; diff --git a/app/_layout.tsx b/app/_layout.tsx index 3375076..9966779 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -9,7 +9,6 @@ import '@/init/api'; import { AllProviders } from '@/providers'; import { LQDStackHeader, LQToast } from '@/components'; -import { View } from 'react-native'; export default function RootLayout() { return ( @@ -49,18 +48,10 @@ function RootStack() { animation: 'slide_from_bottom', }} /> - , - headerTitle: 'Withdraw', - headerShown: true, - }} - /> , + header: (props) => , headerTitle: 'Settings', headerShown: true, }} @@ -69,7 +60,7 @@ function RootStack() { , + header: (props) => , headerTitle: 'Legal & Privacy', headerShown: true, }} @@ -78,12 +69,14 @@ function RootStack() { , + header: (props) => , headerTitle: 'Support', headerShown: true, }} /> + + {/* Common routes */} diff --git a/app/deposit/_layout.tsx b/app/deposit/_layout.tsx index a2efc28..7e553f6 100644 --- a/app/deposit/_layout.tsx +++ b/app/deposit/_layout.tsx @@ -5,13 +5,14 @@ const DepositStack = () => { return ( , + header: (props) => , headerTitle: 'Deposit', }} > + ); }; diff --git a/app/deposit/crypto-wallet.tsx b/app/deposit/crypto-wallet.tsx new file mode 100644 index 0000000..870c7f4 --- /dev/null +++ b/app/deposit/crypto-wallet.tsx @@ -0,0 +1,5 @@ +import { CryptoWalletDeposit } from '@/screens'; + +const CryptoWalletDepositScreen = () => ; + +export default CryptoWalletDepositScreen; diff --git a/app/withdraw/_layout.tsx b/app/withdraw/_layout.tsx new file mode 100644 index 0000000..869d6b9 --- /dev/null +++ b/app/withdraw/_layout.tsx @@ -0,0 +1,32 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const WithdrawStack = () => { + return ( + , + headerTitle: 'Withdraw', + }} + > + , + headerTitle: 'Withdraw', + headerShown: true, + }} + /> + , + headerTitle: 'Withdraw', + headerShown: true, + }} + /> + + ); +}; + +export default WithdrawStack; diff --git a/app/withdraw/recepient-address.tsx b/app/withdraw/recepient-address.tsx new file mode 100644 index 0000000..92acc56 --- /dev/null +++ b/app/withdraw/recepient-address.tsx @@ -0,0 +1,7 @@ +import { RecepientAddress } from '@/screens'; + +const RecepientAddressScreen = () => { + return ; +}; + +export default RecepientAddressScreen; diff --git a/app/withdraw.tsx b/app/withdraw/withdraw.tsx similarity index 100% rename from app/withdraw.tsx rename to app/withdraw/withdraw.tsx diff --git a/assets/icons/aerodrome-icon.tsx b/assets/icons/aerodrome-icon.tsx new file mode 100644 index 0000000..9cd4262 --- /dev/null +++ b/assets/icons/aerodrome-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const AerodromeIcon = ({ fill = '', height = 25, width = 25 }: IconProps) => ( + + + + + + + + + +); +export default AerodromeIcon; diff --git a/assets/icons/arrow-circle-down-icon.tsx b/assets/icons/arrow-circle-down-icon.tsx new file mode 100644 index 0000000..c8b7e07 --- /dev/null +++ b/assets/icons/arrow-circle-down-icon.tsx @@ -0,0 +1,23 @@ +import Svg, { Path } from 'react-native-svg'; + +const ArrowCircleDownIcon = ({ fill = '#475569', height = 12, width = 12 }: IconProps) => ( + + + + +); +export default ArrowCircleDownIcon; diff --git a/assets/icons/arrow-dropdown-icon.tsx b/assets/icons/arrow-dropdown-icon.tsx new file mode 100644 index 0000000..05f0a70 --- /dev/null +++ b/assets/icons/arrow-dropdown-icon.tsx @@ -0,0 +1,14 @@ +import Svg, { Path } from 'react-native-svg'; + +const ArrowDropdownDownIcon = ({ fill = '#94A3B8', height = 16, width = 16 }: IconProps) => ( + + + +); +export default ArrowDropdownDownIcon; diff --git a/assets/icons/arrow-up-circle.tsx b/assets/icons/arrow-up-circle.tsx new file mode 100644 index 0000000..c339884 --- /dev/null +++ b/assets/icons/arrow-up-circle.tsx @@ -0,0 +1,11 @@ +import Svg, { Path } from 'react-native-svg'; + +const ArrowUpCircleIcon = ({ fill = '#4691FE', height = 20, width = 20 }: IconProps) => ( + + + +); +export default ArrowUpCircleIcon; diff --git a/assets/icons/borrow-icon.tsx b/assets/icons/borrow-icon.tsx new file mode 100644 index 0000000..234a583 --- /dev/null +++ b/assets/icons/borrow-icon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; + +const BorrowIcon = ({ fill = '#AF1D38', height = 16, width = 16 }: IconProps) => ( + + + + + + + +); +export default BorrowIcon; diff --git a/assets/icons/caret-left-icon.tsx b/assets/icons/caret-left-icon.tsx index 40da8f1..138bb38 100644 --- a/assets/icons/caret-left-icon.tsx +++ b/assets/icons/caret-left-icon.tsx @@ -1,14 +1,14 @@ import Svg, { Path } from 'react-native-svg'; -const CaretLeftIcon = ({ fill = '#0F172A', height = 20, width = 20 }: IconProps) => ( - +const CaretLeftIcon = ({ fill = '#1E293B', height = 24, width = 24 }: IconProps) => ( + ); diff --git a/assets/icons/caution-icon.tsx b/assets/icons/caution-icon.tsx new file mode 100644 index 0000000..6b7d0f6 --- /dev/null +++ b/assets/icons/caution-icon.tsx @@ -0,0 +1,11 @@ +import Svg, { Path } from 'react-native-svg'; + +const CautionIcon = ({ fill = '#375DFB', height = 20, width = 20 }: IconProps) => ( + + + +); +export default CautionIcon; diff --git a/assets/icons/coin-base-icon.tsx b/assets/icons/coin-base-icon.tsx new file mode 100644 index 0000000..4a6eb47 --- /dev/null +++ b/assets/icons/coin-base-icon.tsx @@ -0,0 +1,23 @@ +import Svg, { G, Path, Rect, Defs, ClipPath } from 'react-native-svg'; + +const CoinbaseWalletIcon = ({ height = 30, width = 30, fill = '#1E293B' }: IconProps) => ( + + + + + + + + + + + + + +); +export default CoinbaseWalletIcon; diff --git a/assets/icons/comment-icon.tsx b/assets/icons/comment-icon.tsx new file mode 100644 index 0000000..bd926e0 --- /dev/null +++ b/assets/icons/comment-icon.tsx @@ -0,0 +1,23 @@ +import Svg, { Path } from 'react-native-svg'; + +const CommentIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + +); +export default CommentIcon; diff --git a/assets/icons/connector-icon.tsx b/assets/icons/connector-icon.tsx new file mode 100644 index 0000000..98b07a0 --- /dev/null +++ b/assets/icons/connector-icon.tsx @@ -0,0 +1,8 @@ +import Svg, { Rect } from 'react-native-svg'; + +const ConnectorIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + +); +export default ConnectorIcon; diff --git a/assets/icons/debit-card-icon.tsx b/assets/icons/debit-card-icon.tsx new file mode 100644 index 0000000..53dc033 --- /dev/null +++ b/assets/icons/debit-card-icon.tsx @@ -0,0 +1,25 @@ +import Svg, { G, Path, Rect } from 'react-native-svg'; + +const DebitCardIcon = ({ height = 30, width = 30, fill = '#0F172A' }: IconProps) => ( + + + + + + + +); +export default DebitCardIcon; diff --git a/assets/icons/deposit-icon.tsx b/assets/icons/deposit-icon.tsx new file mode 100644 index 0000000..1850bf2 --- /dev/null +++ b/assets/icons/deposit-icon.tsx @@ -0,0 +1,15 @@ +import Svg, { Path } from 'react-native-svg'; + +const DepositIcon = ({ fill = '#1A8860', height = 16, width = 16 }: IconProps) => ( + + + + + +); +export default DepositIcon; diff --git a/assets/icons/disconnect-wallet-icon.tsx b/assets/icons/disconnect-wallet-icon.tsx new file mode 100644 index 0000000..e4dcf41 --- /dev/null +++ b/assets/icons/disconnect-wallet-icon.tsx @@ -0,0 +1,54 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const DisconnectWalletIcon = ({ fill = '#AF1D38', height = 30, width = 30 }: IconProps) => ( + + + + + + + + + + +); +export default DisconnectWalletIcon; diff --git a/assets/icons/discover-tab-icon.tsx b/assets/icons/discover-tab-icon.tsx new file mode 100644 index 0000000..4647267 --- /dev/null +++ b/assets/icons/discover-tab-icon.tsx @@ -0,0 +1,35 @@ +import Svg, { Path } from 'react-native-svg'; + +const DiscordTabIcon = ({ fill = '#64748B', height = 24, width = 25 }: IconProps) => ( + + + + + + +); +export default DiscordTabIcon; diff --git a/assets/icons/discover-tvl-iocn.tsx b/assets/icons/discover-tvl-iocn.tsx new file mode 100644 index 0000000..55e7be7 --- /dev/null +++ b/assets/icons/discover-tvl-iocn.tsx @@ -0,0 +1,30 @@ +import Svg, { Path } from 'react-native-svg'; + +const DiscoverTVLIcon = ({ fill = '#0C0507', height = 24, width = 25 }: IconProps) => ( + + + + + + + +); +export default DiscoverTVLIcon; diff --git a/assets/icons/discover-usd-icon.tsx b/assets/icons/discover-usd-icon.tsx new file mode 100644 index 0000000..1f2645e --- /dev/null +++ b/assets/icons/discover-usd-icon.tsx @@ -0,0 +1,21 @@ +import Svg, { Path } from 'react-native-svg'; + +const DiscoverUSDIcon = ({ fill = '#2775CA', height = 25, width = 25 }: IconProps) => ( + + + + + +); +export default DiscoverUSDIcon; diff --git a/assets/icons/drag-handle-icon.tsx b/assets/icons/drag-handle-icon.tsx new file mode 100644 index 0000000..99ed83a --- /dev/null +++ b/assets/icons/drag-handle-icon.tsx @@ -0,0 +1,15 @@ +import Svg, { Path, Rect, Circle } from 'react-native-svg'; + +const DragHandleIcon = ({ fill = '#94A3B8', height = 24, width = 12 }: IconProps) => ( + + + + + + + + + + +); +export default DragHandleIcon; diff --git a/assets/icons/edit-profile-icon.tsx b/assets/icons/edit-profile-icon.tsx new file mode 100644 index 0000000..2a61bd9 --- /dev/null +++ b/assets/icons/edit-profile-icon.tsx @@ -0,0 +1,28 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const EditProfileIcon = ({ fill = '#020617', width = 17, height = 16 }: IconProps) => ( + + + + + + +); +export default EditProfileIcon; diff --git a/assets/icons/face-id-icon.tsx b/assets/icons/face-id-icon.tsx new file mode 100644 index 0000000..511e686 --- /dev/null +++ b/assets/icons/face-id-icon.tsx @@ -0,0 +1,49 @@ +import Svg, { Path } from 'react-native-svg'; + +const FaceIDIcon = ({ fill = '#fff', height = 32, width = 32 }: IconProps) => ( + + + + + + + + + + + +); +export default FaceIDIcon; diff --git a/assets/icons/farcaster-icon.tsx b/assets/icons/farcaster-icon.tsx new file mode 100644 index 0000000..d5e41d4 --- /dev/null +++ b/assets/icons/farcaster-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const FamcasterIcon = () => ( + + + + + + + + + +); +export default FamcasterIcon; diff --git a/assets/icons/fill-check-icon.tsx b/assets/icons/fill-check-icon.tsx new file mode 100644 index 0000000..b86bd9b --- /dev/null +++ b/assets/icons/fill-check-icon.tsx @@ -0,0 +1,10 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const FillCheckIcon = ({ fill = '#4691FE', height = 19, width = 18 }: IconProps) => ( + + + + + +); +export default FillCheckIcon; diff --git a/assets/icons/flash-icon.tsx b/assets/icons/flash-icon.tsx new file mode 100644 index 0000000..d69c023 --- /dev/null +++ b/assets/icons/flash-icon.tsx @@ -0,0 +1,15 @@ +import Svg, { Path } from 'react-native-svg'; + +const FlashIcon = ({ fill = '#0F172A', height = 20, width = 21, bg = 'none' }: IconProps) => ( + + + +); +export default FlashIcon; diff --git a/assets/icons/header-menu-icon.tsx b/assets/icons/header-menu-icon.tsx new file mode 100644 index 0000000..7ffd29f --- /dev/null +++ b/assets/icons/header-menu-icon.tsx @@ -0,0 +1,10 @@ +import Svg, { Path } from 'react-native-svg'; + +const HeaderMenuIcon = ({ fill = '#020617', height = 24, width = 25 }: IconProps) => ( + + + + + +); +export default HeaderMenuIcon; diff --git a/assets/icons/header-wallet-icon.tsx b/assets/icons/header-wallet-icon.tsx new file mode 100644 index 0000000..d1c0860 --- /dev/null +++ b/assets/icons/header-wallet-icon.tsx @@ -0,0 +1,29 @@ +import Svg, { Path } from 'react-native-svg'; + +const HeaderWalletIcon = ({ fill = '#020617', height = 24, width = 25 }: IconProps) => ( + + + + + + +); +export default HeaderWalletIcon; diff --git a/assets/icons/home-icon.tsx b/assets/icons/home-icon.tsx index 76e895a..3d72d22 100644 --- a/assets/icons/home-icon.tsx +++ b/assets/icons/home-icon.tsx @@ -1,14 +1,10 @@ import Svg, { Path } from 'react-native-svg'; -const HomeIcon = ({ fill = '#020617', height = 24, width = 25 }: IconProps) => ( - - +const HomeIcon = ({ fill = '#0C0507', height = 24, width = 25 }: IconProps) => ( + ); diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 32bfb03..27e8807 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -53,12 +53,92 @@ import DiscordIcon from './discord-icon'; import SearchEmptyStateIcon from './search-empty-state-icon'; import CloseToastIcon from './close-toast-icon'; import ToastVarintIcon from './toast-varient-icon'; +import HeaderMenuIcon from './header-menu-icon'; +import HeaderWalletIcon from './header-wallet-icon'; +import MoreIcon from './more-icon'; +import ReTweetIcon from './re-tweet-icon'; +import CommentIcon from './comment-icon'; +import FlashIcon from './flash-icon'; +import ShareIcon from './share-icon'; +import ConnectorIcon from './connector-icon'; +import BorrowIcon from './borrow-icon'; +import StakeIcon from './stake-icon'; +import DepositIcon from './deposit-icon'; +import SupplyIcon from './supply-icon'; +import PlusIcon from './plus-icon'; +import DiscordTabIcon from './discover-tab-icon'; +import EditProfileIcon from './edit-profile-icon'; +import UserOctagonIcon from './user-octagon-icon'; +import LinkIcon from './link-icon'; +import FamcasterIcon from './farcaster-icon'; +import FillCheckIcon from './fill-check-icon'; +import ArrowCircleDownIcon from './arrow-circle-down-icon'; +import DiscoverTVLIcon from './discover-tvl-iocn'; +import DiscoverUSDIcon from './discover-usd-icon'; +import LampIcon from './lamp-icon'; +import AerodromeIcon from './aerodrome-icon'; +import DragHandleIcon from './drag-handle-icon'; +import MoonWellIcon from './moonwell-icon'; +import MorphoIcon from './morpho-icon'; +import ArrowDropdownDownIcon from './arrow-dropdown-icon'; +import CuratorIcon from './sort-icon'; +import ArrowUpCircleIcon from './arrow-up-circle'; +import SmileEmojiIcon from './smile-emoji-icon'; +import LockedIcon from './locked-icon'; +import StatsDepositIcon from './stats-deposit-icon'; +import RiskIcon from './risk-icon'; +import CoinbaseWalletIcon from './coin-base-icon'; +import DebitCardIcon from './debit-card-icon'; +import SoonIcon from './soon-icon'; +import DisconnectWalletIcon from './disconnect-wallet-icon'; +import CautionIcon from './caution-icon'; +import FaceIDIcon from './face-id-icon'; export { + LampIcon, + FaceIDIcon, + CautionIcon, + SoonIcon, + DisconnectWalletIcon, + DebitCardIcon, + RiskIcon, + CoinbaseWalletIcon, + LockedIcon, + StatsDepositIcon, + ArrowUpCircleIcon, + SmileEmojiIcon, + CuratorIcon, + ArrowDropdownDownIcon, + MorphoIcon, SwatchIcon, + MoonWellIcon, + DragHandleIcon, + DiscoverTVLIcon, + DiscoverUSDIcon, + AerodromeIcon, + FillCheckIcon, + ArrowCircleDownIcon, + FamcasterIcon, + UserOctagonIcon, + LinkIcon, + EditProfileIcon, + ConnectorIcon, + PlusIcon, + DiscordTabIcon, + MoreIcon, + HeaderMenuIcon, + HeaderWalletIcon, SearchEmptyStateIcon, + BorrowIcon, + StakeIcon, + DepositIcon, + SupplyIcon, CloseToastIcon, + ShareIcon, ToastVarintIcon, + ReTweetIcon, + CommentIcon, + FlashIcon, ChartIcon, ShieldTickIcon, MoneysIcon, diff --git a/assets/icons/lamp-icon.tsx b/assets/icons/lamp-icon.tsx new file mode 100644 index 0000000..112197f --- /dev/null +++ b/assets/icons/lamp-icon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; + +const LampIcon = ({ fill = '#1E293B', height = 24, width = 24 }: IconProps) => ( + + + + + +); +export default LampIcon; diff --git a/assets/icons/link-icon.tsx b/assets/icons/link-icon.tsx new file mode 100644 index 0000000..c3bdd36 --- /dev/null +++ b/assets/icons/link-icon.tsx @@ -0,0 +1,11 @@ +import Svg, { Path } from 'react-native-svg'; + +const LinkIcon = ({ fill = '#0A0D14', height = 19, width = 18 }: IconProps) => ( + + + +); +export default LinkIcon; diff --git a/assets/icons/locked-icon.tsx b/assets/icons/locked-icon.tsx new file mode 100644 index 0000000..20e709c --- /dev/null +++ b/assets/icons/locked-icon.tsx @@ -0,0 +1,50 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const LockedIcon = ({ height = 30, width = 30, fill = '#1E293B' }: IconProps) => { + return ( + + + + + + + + + ); +}; + +export default LockedIcon; diff --git a/assets/icons/moonwell-icon.tsx b/assets/icons/moonwell-icon.tsx new file mode 100644 index 0000000..56e5301 --- /dev/null +++ b/assets/icons/moonwell-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const MoonWellIcon = ({ fill = '', height = 18, width = 24 }: IconProps) => ( + + + + + + + + + +); +export default MoonWellIcon; diff --git a/assets/icons/more-icon.tsx b/assets/icons/more-icon.tsx new file mode 100644 index 0000000..c35af4a --- /dev/null +++ b/assets/icons/more-icon.tsx @@ -0,0 +1,18 @@ +import Svg, { Path } from 'react-native-svg'; + +const MoreIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + + +); +export default MoreIcon; diff --git a/assets/icons/morpho-icon.tsx b/assets/icons/morpho-icon.tsx new file mode 100644 index 0000000..40c54c1 --- /dev/null +++ b/assets/icons/morpho-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const MorphoIcon = ({ fill = '', height = 24, width = 24 }: IconProps) => ( + + + + + + + + + +); +export default MorphoIcon; diff --git a/assets/icons/plus-icon.tsx b/assets/icons/plus-icon.tsx new file mode 100644 index 0000000..5ef3495 --- /dev/null +++ b/assets/icons/plus-icon.tsx @@ -0,0 +1,9 @@ +import Svg, { Path } from 'react-native-svg'; + +const PlusIcon = ({ fill = '#fff', height = 30, width = 30 }) => ( + + + + +); +export default PlusIcon; diff --git a/assets/icons/re-tweet-icon.tsx b/assets/icons/re-tweet-icon.tsx new file mode 100644 index 0000000..7948a27 --- /dev/null +++ b/assets/icons/re-tweet-icon.tsx @@ -0,0 +1,39 @@ +import Svg, { Path } from 'react-native-svg'; + +const ReTweetIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + + + +); +export default ReTweetIcon; diff --git a/assets/icons/risk-icon.tsx b/assets/icons/risk-icon.tsx new file mode 100644 index 0000000..f692a55 --- /dev/null +++ b/assets/icons/risk-icon.tsx @@ -0,0 +1,32 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const RiskIcon = ({ height = 30, width = 30, fill = '#1E293B' }: IconProps) => { + return ( + + + + + + + ); +}; + +export default RiskIcon; diff --git a/assets/icons/share-icon.tsx b/assets/icons/share-icon.tsx new file mode 100644 index 0000000..1775492 --- /dev/null +++ b/assets/icons/share-icon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; + +const ShareIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + + +); +export default ShareIcon; diff --git a/assets/icons/smile-emoji-icon.tsx b/assets/icons/smile-emoji-icon.tsx new file mode 100644 index 0000000..6db6ea0 --- /dev/null +++ b/assets/icons/smile-emoji-icon.tsx @@ -0,0 +1,38 @@ +import Svg, { Path } from 'react-native-svg'; + +const SmileEmojiIcon = ({ fill = '#0C0507', height = 20, width = 20 }) => ( + + + + + + +); +export default SmileEmojiIcon; diff --git a/assets/icons/soon-icon.tsx b/assets/icons/soon-icon.tsx new file mode 100644 index 0000000..e805057 --- /dev/null +++ b/assets/icons/soon-icon.tsx @@ -0,0 +1,17 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const SoonIcon = ({ fill = '#94A3B8', height = 24, width = 61 }: IconProps) => ( + + + + + +); + +export default SoonIcon; diff --git a/assets/icons/sort-icon.tsx b/assets/icons/sort-icon.tsx new file mode 100644 index 0000000..d45b094 --- /dev/null +++ b/assets/icons/sort-icon.tsx @@ -0,0 +1,30 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const CuratorIcon = ({ fill = '#FFF', height = 30, width = 30 }: IconProps) => ( + + + + + + +); + +export default CuratorIcon; diff --git a/assets/icons/stake-icon.tsx b/assets/icons/stake-icon.tsx new file mode 100644 index 0000000..84753a2 --- /dev/null +++ b/assets/icons/stake-icon.tsx @@ -0,0 +1,25 @@ +import Svg, { Path } from 'react-native-svg'; + +const StakeIcon = ({ fill = '#253EA7', height = 16, width = 16 }: IconProps) => ( + + + + + +); +export default StakeIcon; diff --git a/assets/icons/stats-deposit-icon.tsx b/assets/icons/stats-deposit-icon.tsx new file mode 100644 index 0000000..8263e20 --- /dev/null +++ b/assets/icons/stats-deposit-icon.tsx @@ -0,0 +1,43 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const StatsDepositIcon = ({ height = 30, width = 30, fill = '#1E293B' }: IconProps) => { + return ( + + + + + + + + ); +}; + +export default StatsDepositIcon; diff --git a/assets/icons/supply-icon.tsx b/assets/icons/supply-icon.tsx new file mode 100644 index 0000000..ba75a5f --- /dev/null +++ b/assets/icons/supply-icon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; + +const SupplyIcon = () => ( + + + + + + + +); +export default SupplyIcon; diff --git a/assets/icons/types.ts b/assets/icons/types.ts index c382f06..d80e19b 100644 --- a/assets/icons/types.ts +++ b/assets/icons/types.ts @@ -2,4 +2,5 @@ interface IconProps { width?: number; height?: number; fill?: string; + bg?: string; } diff --git a/assets/icons/user-octagon-icon.tsx b/assets/icons/user-octagon-icon.tsx new file mode 100644 index 0000000..70837cc --- /dev/null +++ b/assets/icons/user-octagon-icon.tsx @@ -0,0 +1,28 @@ +import Svg, { Path } from 'react-native-svg'; + +const UserOctagonIcon = () => ( + + + + + +); +export default UserOctagonIcon; diff --git a/assets/icons/x-ixon.tsx b/assets/icons/x-ixon.tsx index 299bdd3..6f29fe0 100644 --- a/assets/icons/x-ixon.tsx +++ b/assets/icons/x-ixon.tsx @@ -1,13 +1,13 @@ import Svg, { Path } from 'react-native-svg'; -const XIcon = () => ( - +const XIcon = ({ fill = '#1E293B', height = 30, width = 30 }: IconProps) => ( + diff --git a/assets/images/connector.png b/assets/images/connector.png new file mode 100644 index 0000000..a14d849 Binary files /dev/null and b/assets/images/connector.png differ diff --git a/assets/images/lottie-loader.png b/assets/images/lottie-loader.png new file mode 100644 index 0000000..ddd4485 Binary files /dev/null and b/assets/images/lottie-loader.png differ diff --git a/assets/images/onboarding1.png b/assets/images/onboarding1.png index af1dd1b..7c06a08 100644 Binary files a/assets/images/onboarding1.png and b/assets/images/onboarding1.png differ diff --git a/assets/images/onboarding2.png b/assets/images/onboarding2.png index 6e58dc8..c5ddf69 100644 Binary files a/assets/images/onboarding2.png and b/assets/images/onboarding2.png differ diff --git a/assets/images/onboarding3.png b/assets/images/onboarding3.png index 68866c3..41f8022 100644 Binary files a/assets/images/onboarding3.png and b/assets/images/onboarding3.png differ diff --git a/assets/images/onboardingStep1Arc.png b/assets/images/onboardingStep1Arc.png index 148e94f..29b0bd6 100644 Binary files a/assets/images/onboardingStep1Arc.png and b/assets/images/onboardingStep1Arc.png differ diff --git a/assets/images/onboardingStep1Arc1.png b/assets/images/onboardingStep1Arc1.png index a2c1b8f..fdca31d 100644 Binary files a/assets/images/onboardingStep1Arc1.png and b/assets/images/onboardingStep1Arc1.png differ diff --git a/assets/images/pause.png b/assets/images/pause.png index c2f4225..784345c 100644 Binary files a/assets/images/pause.png and b/assets/images/pause.png differ diff --git a/assets/images/pause1.png b/assets/images/pause1.png new file mode 100644 index 0000000..c2f4225 Binary files /dev/null and b/assets/images/pause1.png differ diff --git a/assets/images/play.png b/assets/images/play.png index ab9a7de..a094efd 100644 Binary files a/assets/images/play.png and b/assets/images/play.png differ diff --git a/assets/images/play1.png b/assets/images/play1.png new file mode 100644 index 0000000..ab9a7de Binary files /dev/null and b/assets/images/play1.png differ diff --git a/assets/images/slider-1.png b/assets/images/slider-1.png new file mode 100644 index 0000000..9c7c89a Binary files /dev/null and b/assets/images/slider-1.png differ diff --git a/assets/images/slider-2.png b/assets/images/slider-2.png new file mode 100644 index 0000000..3caf597 Binary files /dev/null and b/assets/images/slider-2.png differ diff --git a/assets/images/slider-dot-icon.png b/assets/images/slider-dot-icon.png new file mode 100644 index 0000000..6386452 Binary files /dev/null and b/assets/images/slider-dot-icon.png differ diff --git a/assets/images/slider-dot.png b/assets/images/slider-dot.png new file mode 100644 index 0000000..f76ebf7 Binary files /dev/null and b/assets/images/slider-dot.png differ diff --git a/assets/json/liquid loader animation.json b/assets/json/liquid loader animation.json new file mode 100644 index 0000000..e41029a --- /dev/null +++ b/assets/json/liquid loader animation.json @@ -0,0 +1,155 @@ +{ + "v": "4.8.0", + "meta": { "g": "LottieFiles AE 3.5.9", "a": "", "k": "", "d": "", "tc": "" }, + "fr": 29.9700012207031, + "ip": 0, + "op": 53.0000021587343, + "w": 520, + "h": 410, + "nm": "Comp 1", + "ddd": 0, + "assets": [ + { + "id": "image_0", + "w": 3914, + "h": 1748, + "u": "/images/", + "p": "data:image/png;base64,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", + "e": 0 + } + ], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 2, + "nm": "liquid icon whiteAsset 1@2x-8.png", + "cl": "png", + "td": 1, + "refId": "image_0", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [259, 205, 0], "ix": 2 }, + "a": { "a": 0, "k": [1957, 874, 0], "ix": 1 }, + "s": { "a": 0, "k": [9.664, 9.664, 100], "ix": 6 } + }, + "ao": 0, + "ip": 0, + "op": 240.0000097754, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 1, + "nm": "Medium Royal Blue Solid 1", + "tt": 1, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 0, "s": [260, 435, 0], "to": [0, 0, 0], "ti": [0, 0, 0] }, + { "t": 47.0000019143492, "s": [260, 255, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [260, 205, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 70.732, 100], "ix": 6 } + }, + "ao": 0, + "ef": [ + { + "ty": 5, + "nm": "Turbulent Displace", + "np": 16, + "mn": "ADBE Turbulent Displace", + "ix": 1, + "en": 1, + "ef": [ + { "ty": 7, "nm": "Displacement", "mn": "ADBE Turbulent Displace-0001", "ix": 1, "v": { "a": 0, "k": 1, "ix": 1 } }, + { "ty": 0, "nm": "Amount", "mn": "ADBE Turbulent Displace-0002", "ix": 2, "v": { "a": 0, "k": -16, "ix": 2 } }, + { "ty": 0, "nm": "Size", "mn": "ADBE Turbulent Displace-0003", "ix": 3, "v": { "a": 0, "k": 82, "ix": 3 } }, + { + "ty": 3, + "nm": "Offset (Turbulence)", + "mn": "ADBE Turbulent Displace-0004", + "ix": 4, + "v": { + "a": 1, + "k": [ + { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 0, "s": [260, 205], "to": [0, 0], "ti": [0, 0] }, + { "t": 43.0000017514259, "s": [731, 205] } + ], + "ix": 4 + } + }, + { "ty": 0, "nm": "Complexity", "mn": "ADBE Turbulent Displace-0005", "ix": 5, "v": { "a": 0, "k": 3.95, "ix": 5 } }, + { + "ty": 0, + "nm": "Evolution", + "mn": "ADBE Turbulent Displace-0006", + "ix": 6, + "v": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] }, + { "t": 47.0000019143492, "s": [282] } + ], + "ix": 6 + } + }, + { "ty": 6, "nm": "Evolution Options", "mn": "ADBE Turbulent Displace-0007", "ix": 7, "v": 0 }, + { "ty": 7, "nm": "Cycle Evolution", "mn": "ADBE Turbulent Displace-0008", "ix": 8, "v": { "a": 0, "k": 0, "ix": 8 } }, + { "ty": 0, "nm": "Cycle (in Revolutions)", "mn": "ADBE Turbulent Displace-0009", "ix": 9, "v": { "a": 0, "k": 1, "ix": 9 } }, + { "ty": 0, "nm": "Random Seed", "mn": "ADBE Turbulent Displace-0010", "ix": 10, "v": { "a": 0, "k": 0, "ix": 10 } }, + { "ty": 6, "nm": "Random Seed", "mn": "ADBE Turbulent Displace-0011", "ix": 11, "v": 0 }, + { "ty": 7, "nm": "Pinning", "mn": "ADBE Turbulent Displace-0012", "ix": 12, "v": { "a": 0, "k": 3, "ix": 12 } }, + { "ty": 7, "nm": "Resize Layer", "mn": "ADBE Turbulent Displace-0013", "ix": 13, "v": { "a": 0, "k": 0, "ix": 13 } }, + { + "ty": 7, + "nm": "Antialiasing for Best Quality", + "mn": "ADBE Turbulent Displace-0014", + "ix": 14, + "v": { "a": 0, "k": 1, "ix": 14 } + } + ] + } + ], + "sw": 520, + "sh": 410, + "sc": "#90aee4", + "ip": 0, + "op": 240.0000097754, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 2, + "nm": "liquid icon whiteAsset 1@2x-8.png", + "cl": "png", + "refId": "image_0", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [259, 205, 0], "ix": 2 }, + "a": { "a": 0, "k": [1957, 874, 0], "ix": 1 }, + "s": { "a": 0, "k": [9.664, 9.664, 100], "ix": 6 } + }, + "ao": 0, + "ip": 0, + "op": 240.0000097754, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/components/action-card/index.tsx b/components/action-card/index.tsx new file mode 100644 index 0000000..9510221 --- /dev/null +++ b/components/action-card/index.tsx @@ -0,0 +1,60 @@ +import React from 'react'; +import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; + +import { CoinbaseWalletIcon, DebitCardIcon, FillCheckIcon, SoonIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { IActionCard } from './types'; +import ICONS from '@/constants/icons'; + +const LQDActionCard = ({ selected, onSelect, actions, variant, comingSoon }: IActionCard) => { + const { title } = actions; + + const colorType = variant === 'disconnect' ? '#AF1D38' : comingSoon ? '#94A3B8' : '#1E293B'; + + const icons = { + ...ICONS, + debitCard: , + coinBase: , + }; + + return ( + + + {icons[variant]} + {title} + + {comingSoon && } + {!comingSoon && {selected && }} + + ); +}; + +export default LQDActionCard; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#F8FAFC', + flexDirection: 'row', + alignItems: 'center', + borderRadius: 20, + height: 52, + paddingHorizontal: 16, + justifyContent: 'space-between', + }, + innerWrapper: { + flexDirection: 'row', + alignItems: 'center', + gap: 20, + }, + volumeWrapper: { + alignItems: 'flex-end', + gap: 8, + }, + title: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 19.2, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, +}); diff --git a/components/action-card/types.ts b/components/action-card/types.ts new file mode 100644 index 0000000..d653b50 --- /dev/null +++ b/components/action-card/types.ts @@ -0,0 +1,9 @@ +export type ActionIconVariant = 'deposit' | 'stake' | 'borrow' | 'supply' | 'sort' | 'debitCard' | 'crypto' | 'coinBase' | 'disconnect'; +export interface IActionCard { + actions: any; + navigationVariant?: 'primary' | 'secondary'; + variant: ActionIconVariant; + comingSoon?: boolean; + selected?: boolean | null; + onSelect?: () => void; +} diff --git a/components/bottom-sheet/index.tsx b/components/bottom-sheet/index.tsx index 2ef7943..08d55ff 100644 --- a/components/bottom-sheet/index.tsx +++ b/components/bottom-sheet/index.tsx @@ -1,4 +1,5 @@ -import { View, Text, StyleSheet, TouchableOpacity, Dimensions, Modal, Pressable } from 'react-native'; +import { View, Text, StyleSheet, TouchableOpacity, Dimensions, Pressable, StyleProp, ViewStyle } from 'react-native'; +import Modal from 'react-native-modal'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { CloseIcon } from '@/assets/icons'; @@ -6,33 +7,42 @@ import { CloseIcon } from '@/assets/icons'; const { height } = Dimensions.get('window'); interface ILQDBottomSheet { - title: string; + title?: string; variant?: 'primary' | 'secondary'; show: boolean; onClose: () => void; children?: React.ReactNode; + sizeMode?: 'cover' | 'contain'; } -const LQDBottomSheet: React.FC = ({ title, variant = 'primary', show, onClose, children }) => { +const LQDBottomSheet = ({ title = '', variant = 'primary', show, onClose, children, sizeMode = 'cover' }: ILQDBottomSheet) => { const bottomSheetMaxHeights = { primary: height * 0.6, secondary: height * 0.83, }; + const isCoverMode = sizeMode === 'cover'; + return ( - + - {title} - + @@ -44,10 +54,11 @@ const LQDBottomSheet: React.FC = ({ title, variant = 'primary', }; const styles = StyleSheet.create({ + container: { padding: 0, margin: 20 }, overlay: { flex: 1, - backgroundColor: '#2125506B', justifyContent: 'flex-end', + width: '100%', }, bottomSheet: { @@ -55,8 +66,7 @@ const styles = StyleSheet.create({ bottom: 0, zIndex: 30, width: '100%', - paddingBottom: 62.45, - paddingTop: 27.55, + paddingTop: 17, paddingHorizontal: 16, backgroundColor: '#fff', borderTopLeftRadius: 20, @@ -66,13 +76,13 @@ const styles = StyleSheet.create({ header: { flexDirection: 'row', - justifyContent: 'space-between', + justifyContent: 'center', alignItems: 'center', }, title: { color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), + fontSize: adjustFontSizeForIOS(15, 3), lineHeight: 23.2, fontWeight: '500', fontFamily: 'AeonikMedium', diff --git a/components/button/index.tsx b/components/button/index.tsx index fdd1f9b..d33fd8e 100644 --- a/components/button/index.tsx +++ b/components/button/index.tsx @@ -54,7 +54,7 @@ const styles = StyleSheet.create({ paddingTop: 19, paddingBottom: 18, borderRadius: 50, - backgroundColor: '#FFF', + backgroundColor: '#F1F5F9', }, primaryText: { @@ -71,7 +71,6 @@ const styles = StyleSheet.create({ shadowOpacity: 1, shadowRadius: 0, elevation: 1, - borderWidth: 1, borderColor: '#EBEBEB', }, @@ -89,6 +88,22 @@ const styles = StyleSheet.create({ fontWeight: '600', }, + lightContainer: { + paddingVertical: 17, + borderRadius: 50, + backgroundColor: '#FFF', + borderWidth: 1, + borderColor: '#F1F5F9', + }, + + lightText: { + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 16, + color: '#1E293B', + fontFamily: 'QuantaGroteskProSemiBold', + fontWeight: '600', + }, + tertiaryContainer: { height: 40, paddingVertical: 5, diff --git a/components/button/types.ts b/components/button/types.ts index 206622c..3e2ea82 100644 --- a/components/button/types.ts +++ b/components/button/types.ts @@ -4,7 +4,7 @@ interface ILQDButton { title: string; onPress?: () => void; onLongPress?: () => void; - variant?: 'primary' | 'secondary' | 'tertiary' | 'tertiaryOutline'; + variant?: 'primary' | 'secondary' | 'tertiary' | 'tertiaryOutline' | 'light'; disabled?: boolean; loading?: boolean; style?: StyleProp; diff --git a/components/feed-card/feed-step.tsx b/components/feed-card/feed-step.tsx new file mode 100644 index 0000000..1b4c676 --- /dev/null +++ b/components/feed-card/feed-step.tsx @@ -0,0 +1,140 @@ +import React, { useState } from 'react'; +import { View, Text, StyleSheet } from 'react-native'; +import FastImage from 'react-native-fast-image'; +import Animated from 'react-native-reanimated'; +import { AerodromeIcon, BorrowIcon, CuratorIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import LQDPoolImages from '../pool-images'; +import LQDTokenImage from '../pool-images/token-image'; +import { protocolList } from '@/constants/addresses'; + +const connector = require('../../assets/images/connector.png'); +const icons = { + stake: , + deposit: , + borrow: , + supply: , + aerodrome: , + moonwell: , + morpho: , + swap: , +}; + +const FeedStep = ({ step, isLast }: { step: StrategyStep; isLast: boolean }) => { + const { actionType } = step; + + const deposite = actionType === 'deposit'; + + const protocol = protocolList.find((protocol) => protocol.address == step.protocolAddress); + const poolPair = 'DAI/USDC'; + const tokenName = step.assetOutTokens[0].symbol; + const tokenIconUrl = step.assetOutTokens[0].logoUrl; + + const depositVariant = () => ( + + {actionType} + into + + {poolPair} + + + + ); + + const otherVariant = () => ( + + {actionType} + + {tokenName} + + + + {actionType == 'borrow' || actionType == 'stake' ? 'on' : 'into'} + + {protocol?.title} + + {icons[protocol?.icon!]} + + ); + + return ( + + + {icons[actionType]} + {!isLast && } + + + {deposite && depositVariant()} + {!deposite && otherVariant()} + + ); +}; + +export default FeedStep; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + alignItems: 'flex-start', + gap: 2, + }, + + protocolIconWrapper: { + paddingTop: 9, + }, + + connectorWrap: { + alignItems: 'center', + width: 32, + }, + + iconContainer: { + width: 24, + height: 24, + justifyContent: 'center', + alignItems: 'center', + }, + + connector: { + width: 2, + height: 20, + flex: 1, + marginBottom: 5, + }, + + details: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + flexWrap: 'wrap', + gap: 4, + paddingTop: 2, + }, + + variantText: { + fontSize: adjustFontSizeForIOS(11, 3), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikRegular', + textTransform: 'capitalize', + }, + actionText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '600', + color: '#0F172A', + fontFamily: 'AeonikMedium', + }, + + tokenText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikBold', + }, + + tokenIcon: { + width: 16, + height: 16, + marginHorizontal: 4, + }, +}); diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx new file mode 100644 index 0000000..45da69c --- /dev/null +++ b/components/feed-card/index.tsx @@ -0,0 +1,261 @@ +import { Pressable, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; +import React, { useState } from 'react'; +import FastImage from 'react-native-fast-image'; + +import { CommentIcon, FlashIcon, MoreIcon, ReTweetIcon, ShareIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS, formatTimestamp, truncate } from '@/utils/helpers'; +import FeedStep from './feed-step'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { useLikeMutation } from '@/services/feeds/queries'; +import LQDImage from '../image'; + +const maxDescriptionLength = 40; + +const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { + const { router } = useSystemFunctions(); + + const { steps, curator, createdAt, name, description, metrics, userInteraction, id } = feed; + const { commentCount, repostCount, apy, likeCount } = metrics; + const { address: curatorAddress, avatarUrl, username } = curator; + const truncatedDescription = description.substring(0, maxDescriptionLength); + + const likeMutation = useLikeMutation(id); + + const [isExpanded, setIsExpanded] = useState(false); + + const handleToggle = () => { + setIsExpanded(!isExpanded); + }; + + const handleInvestPress = () => { + console.log('Invest'); + }; + + const handleRepostPress = () => { + console.log('Repost'); + }; + + const handleLikePress = () => { + likeMutation.mutate(); + }; + + const handleSharePress = () => { + console.log('Share'); + }; + + const handleMorePress = () => { + console.log('More'); + }; + + const handleNavigate = () => { + if (isDetailPage) return; + + router.push(`/details/${id}`); + }; + + return ( + + + + + + + + + + + {username} + + {formatTimestamp(createdAt)} + + + {truncate(curatorAddress)} + + + + + + + + + + + + {steps.map((step, index: number) => ( + + ))} + + + + {name} + + Est. APY + {apy}% + + {isExpanded ? description : `${truncatedDescription}...`} + + {isDetailPage && description.length > maxDescriptionLength && !isExpanded && ( + + See more... + + )} + + {isExpanded && ( + + See less... + + )} + + + + + + + Invest + + + + + {commentCount} + + + + + {repostCount} + + + + {userInteraction.hasLiked ? : } + + {likeCount} + + + + + + + + + + + ); +}; + +export default LQDFeedCard; + +const styles = StyleSheet.create({ + container: { + paddingHorizontal: 16, + paddingVertical: 25, + backgroundColor: '#fff', + borderBottomWidth: 1, + borderColor: '#F1F5F9', + gap: 20, + }, + image: { + width: 40, + height: 40, + borderRadius: 9999, + borderWidth: 1, + borderColor: '#F1F5F9', + }, + username: { + fontSize: adjustFontSizeForIOS(13, 3), + fontFamily: 'ClashDisplayBold', + fontWeight: '500', + color: '#1E293B', + }, + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, + estimate: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + actionText: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + percentage: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(14, 3), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + description: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(14, 2), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 19, + }, + seeMore: { + color: '#375DFB', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + borderColor: 'red', + }, + invest: { + color: '#fff', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikMedium', + fontWeight: '500', + lineHeight: 15.84, + borderColor: 'red', + }, + feedStep: { + borderColor: '#F1F5F9', + borderWidth: 1, + borderRadius: 10, + overflow: 'hidden', + paddingHorizontal: 12, + paddingVertical: 12, + marginTop: 20, + }, + + actionFlex: { flexDirection: 'row', alignItems: 'center', gap: 5 }, + investBtn: { backgroundColor: '#4691FE', paddingHorizontal: 15, borderRadius: 10, paddingVertical: 5 }, + bottomActionContainer: { flexDirection: 'row', gap: 20, alignItems: 'center' }, + bottomActionInnerContainer: { flex: 1, flexDirection: 'row', gap: 20 }, + rightContentFlex: { flexDirection: 'row', justifyContent: 'space-between' }, + usernameFlex: { + flexDirection: 'row', + gap: 9, + alignItems: 'center', + marginBottom: 5, + maxWidth: '70%', + }, +}); diff --git a/components/feed-card/preview-feed-step.tsx b/components/feed-card/preview-feed-step.tsx new file mode 100644 index 0000000..ac335cf --- /dev/null +++ b/components/feed-card/preview-feed-step.tsx @@ -0,0 +1,122 @@ +import React, { useState } from 'react'; +import { View, Text, StyleSheet } from 'react-native'; +import FastImage from 'react-native-fast-image'; +import Animated from 'react-native-reanimated'; +import { AerodromeIcon, BorrowIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import LQDPoolImages from '../pool-images'; +import LQDTokenImage from '../pool-images/token-image'; + +const connector = require('../../assets/images/connector.png'); +const icons = { + stake: , + deposit: , + borrow: , + supply: , + aerodrome: , + moonwell: , + morpho: , +}; + +const PreviewFeedStep = ({ variant, tokenIconURL, token, isLast, title = '', protocolIcon, protocolTitle }: IFeedStep) => { + const deposite = variant === 'deposit'; + + const depositVariant = () => ( + + {variant} + into + + {token} + + + + ); + + const otherVariant = () => ( + + {variant} + + {token} + + into + + {icons[protocolIcon]} + {protocolTitle} + + ); + + return ( + + + {icons[variant]} + {!isLast && } + + {deposite && depositVariant()} + {!deposite && otherVariant()} + + ); +}; + +export default PreviewFeedStep; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + alignItems: 'flex-start', + gap: 2, + }, + + connectorWrap: { + alignItems: 'center', + width: 32, + }, + + iconContainer: { + width: 24, + height: 24, + justifyContent: 'center', + alignItems: 'center', + }, + + connector: { + width: 2, + height: 20, + flex: 1, + marginBottom: 5, + }, + + details: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + flexWrap: 'wrap', + gap: 2, + }, + + variantText: { + fontSize: adjustFontSizeForIOS(11, 3), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikRegular', + textTransform: 'capitalize', + }, + actionText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '600', + color: '#0F172A', + fontFamily: 'AeonikMedium', + }, + + tokenText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikBold', + }, + + tokenIcon: { + width: 16, + height: 16, + marginHorizontal: 4, + }, +}); diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts new file mode 100644 index 0000000..f6f3cee --- /dev/null +++ b/components/feed-card/types.ts @@ -0,0 +1,16 @@ +interface FeedCard { + feed: Strategy; + onNavigate?: () => void; + handleCommentPress?: () => void; + isDetailPage?: boolean; +} + +interface IFeedStep { + title?: string; + variant: 'supply' | 'borrow' | 'deposit' | 'stake'; + token: string; + protocolTitle: string; + tokenIconURL: string; + protocolIcon: 'moonwell' | 'aerodrome' | 'morpho'; + isLast?: boolean; +} diff --git a/components/flatlist/footer-loader.tsx b/components/flatlist/footer-loader.tsx new file mode 100644 index 0000000..e934e90 --- /dev/null +++ b/components/flatlist/footer-loader.tsx @@ -0,0 +1,17 @@ +import { ActivityIndicator, StyleSheet, View } from 'react-native'; + +const DefaultFooterLoader = () => ( + + + +); + +export default DefaultFooterLoader; + +const styles = StyleSheet.create({ + loaderContainer: { + paddingVertical: 16, + justifyContent: 'center', + alignItems: 'center', + }, +}); diff --git a/components/flatlist/index.tsx b/components/flatlist/index.tsx new file mode 100644 index 0000000..8e31d92 --- /dev/null +++ b/components/flatlist/index.tsx @@ -0,0 +1,87 @@ +import React, { forwardRef } from 'react'; +import { FlatList, View, ActivityIndicator, StyleSheet, ListRenderItem, RefreshControl } from 'react-native'; +import { LQDFlatlistProps } from './types'; + +const LQDFlatlist = forwardRef( + ( + { + data = [], + renderItem, + keyExtractor = (item, index) => index.toString(), + ListHeaderComponent, + ListFooterComponent, + ListEmptyComponent, + refreshing = false, + onRefresh, + onEndReached, + onEndReachedThreshold = 0.1, + showsVerticalScrollIndicator = false, + showsHorizontalScrollIndicator = false, + contentContainerStyle, + horizontal = false, + style, + isFetchingNextPage = false, + }: LQDFlatlistProps, + ref: React.Ref> + ) => { + const DefaultFooterLoader = () => ( + + + + ); + + const Refresh = () => { + if (onRefresh) { + return ( + + ); + } + + return null; + }; + + return ( + } + keyExtractor={keyExtractor} + ListHeaderComponent={ListHeaderComponent} + ListFooterComponent={isFetchingNextPage ? : ListFooterComponent} + ListEmptyComponent={ListEmptyComponent} + refreshing={refreshing} + refreshControl={} + onRefresh={onRefresh} + onEndReached={onEndReached} + onEndReachedThreshold={onEndReachedThreshold} + showsVerticalScrollIndicator={showsVerticalScrollIndicator} + contentContainerStyle={[{ paddingBottom: 100 }, contentContainerStyle]} + style={[style]} + horizontal={horizontal} + showsHorizontalScrollIndicator={showsHorizontalScrollIndicator} + /> + ); + } +); + +export default LQDFlatlist; + +const styles = StyleSheet.create({ + emptyContainer: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + padding: 20, + }, + loaderContainer: { + paddingVertical: 16, + justifyContent: 'center', + alignItems: 'center', + }, +}); diff --git a/components/flatlist/types.ts b/components/flatlist/types.ts new file mode 100644 index 0000000..6f12594 --- /dev/null +++ b/components/flatlist/types.ts @@ -0,0 +1,7 @@ +import { FlatList, FlatListProps } from 'react-native'; + +export interface LQDFlatlistProps extends FlatListProps { + isFetchingNextPage?: boolean; + ListEmptyComponent?: React.ComponentType | React.ReactElement | null; + ListFooterComponent?: React.ComponentType | React.ReactElement | null; +} diff --git a/components/image/index.tsx b/components/image/index.tsx new file mode 100644 index 0000000..a0c5d6f --- /dev/null +++ b/components/image/index.tsx @@ -0,0 +1,72 @@ +import React, { useState } from 'react'; +import FastImage from 'react-native-fast-image'; +import { Pressable, StyleSheet, View } from 'react-native'; +import { LQDImageProps } from './types'; +import { EditProfileIcon } from '@/assets/icons'; + +const fallbackImage = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; + +const LQDImage = ({ + style, + resizeMode = FastImage.resizeMode.contain, + src, + height = 40, + width = 40, + borderRadius = Math.min(height, width) / 2, + edit, + action, + onError, + ...rest +}: LQDImageProps) => { + const [isError, setIsError] = useState(false); + + const handleError = () => { + setIsError(true); + if (onError) onError(); + }; + + if (isError) { + return ( + + ); + } + + return ( + + + {edit && ( + + + + )} + + ); +}; + +const styles = StyleSheet.create({ + container: { + position: 'relative', + }, + fallbackImage: { + width: 40, + height: 40, + }, + edit: { + position: 'absolute', + zIndex: 20, + bottom: 10, + right: -3, + }, +}); + +export default LQDImage; diff --git a/components/image/types.ts b/components/image/types.ts new file mode 100644 index 0000000..b8b559c --- /dev/null +++ b/components/image/types.ts @@ -0,0 +1,12 @@ +import { FastImageProps } from 'react-native-fast-image'; + +export interface LQDImageProps extends Omit { + fallbackImage?: string; + src?: string; + height?: number; + width?: number; + borderRadius?: number; + edit?: boolean; + onError?: () => void; + action?: () => void; +} diff --git a/components/index.ts b/components/index.ts index 25a75ff..b9d9429 100644 --- a/components/index.ts +++ b/components/index.ts @@ -20,13 +20,27 @@ import LQDTokenImage from './pool-images/token-image'; import LQShrimeLoader from './loader'; import LQToast from './toast'; import LQNoResult from './no-result'; +import LQDFeedCard from './feed-card'; +import LQDFlatlist from './flatlist'; +import LQDImage from './image'; +import LQDStrategyCard from './strategy-card'; +import LQDProtocolCard from './protocol-card'; +import LQDActionCard from './action-card'; +import LQDSlider from './slider'; export { LQDButton, + LQDSlider, + LQDActionCard, + LQDProtocolCard, + LQDStrategyCard, + LQDImage, LQShrimeLoader, + LQDFlatlist, LQDNavigation, LQDInput, LQDSearch, + LQDFeedCard, LQToast, LQNoResult, LQDScrollView, diff --git a/components/input/index.tsx b/components/input/index.tsx index 674c958..be076b4 100644 --- a/components/input/index.tsx +++ b/components/input/index.tsx @@ -1,17 +1,39 @@ import React from 'react'; import { Controller, FieldValues } from 'react-hook-form'; -import { TextInput, Text, View, StyleSheet } from 'react-native'; +import { TextInput, Text, View, StyleSheet, Pressable } from 'react-native'; -import { SearchIcon } from '@/assets/icons'; +import { CloseIcon, SearchIcon, WalletIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { ILQDInput } from './types'; -const LQDInput = ({ control, name, inputProps, label, placeholder, rules, variant = 'primary' }: ILQDInput) => { +const LQDInput = ({ + control, + name, + inputProps, + label, + placeholder, + rules, + variant = 'primary', + iconAction, + isTextarea = false, + numberOfLines = 4, + iconPosition = 'left', +}: ILQDInput) => { + const iconsMap = { + search: , + close: , + wallet: , + primary: null, + secondary: null, + }; + + const icon = iconsMap[variant] || null; + return ( {label && {label}} - - {variant === 'search' && } + + {iconPosition === 'left' && {icon}} ({ control, name, inputProps, label, pla rules={rules} render={({ field: { onChange, onBlur, value } }) => ( )} /> + + {iconPosition === 'right' && {icon}} ); @@ -43,7 +70,6 @@ const styles = StyleSheet.create({ flexDirection: 'row', justifyContent: 'center', alignItems: 'center', - gap: 8, borderRadius: 13, borderColor: '#EAEEF4', borderWidth: 1, @@ -54,16 +80,27 @@ const styles = StyleSheet.create({ elevation: 1, backgroundColor: '#fff', }, + textareaContainer: { + alignItems: 'flex-start', + paddingVertical: 8, + }, label: { marginBottom: 8, - fontSize: adjustFontSizeForIOS(16, 2), - fontWeight: 'bold', + fontSize: adjustFontSizeForIOS(13, 2), + fontWeight: '500', + fontFamily: 'AeonikMedium', }, input: { flex: 1, fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, color: '#94A3B8', - fontFamily: 'AeonikRegular', + fontWeight: 400, + fontFamily: 'Aeonik', + }, + textarea: { + textAlignVertical: 'top', + paddingTop: 8, + height: 80, }, }); diff --git a/components/input/types.ts b/components/input/types.ts index e6be4f5..130499b 100644 --- a/components/input/types.ts +++ b/components/input/types.ts @@ -6,9 +6,13 @@ interface ILQDInput { name: Path; rules?: Omit, 'setValueAs' | 'disabled' | 'valueAsNumber' | 'valueAsDate'>; label?: string; + isTextarea?: boolean; + numberOfLines?: number; placeholder?: string; - variant?: 'primary' | 'secondary' | 'search'; + variant?: 'primary' | 'secondary' | 'search' | 'close' | 'wallet'; + iconPosition?: 'left' | 'right'; inputProps?: TextInputProps; + iconAction?: () => void; } export type { ILQDInput }; diff --git a/components/navigation/TabBarIcon.tsx b/components/navigation/TabBarIcon.tsx index b7302c3..3c0b7b0 100644 --- a/components/navigation/TabBarIcon.tsx +++ b/components/navigation/TabBarIcon.tsx @@ -1,5 +1,3 @@ -// You can explore the built-in icon families and icons on the web at https://icons.expo.fyi/ - import Ionicons from '@expo/vector-icons/Ionicons'; import { type IconProps } from '@expo/vector-icons/build/createIconSet'; import { type ComponentProps } from 'react'; diff --git a/components/navigation/action.tsx b/components/navigation/action.tsx index 40901bf..57f4f5b 100644 --- a/components/navigation/action.tsx +++ b/components/navigation/action.tsx @@ -1,12 +1,16 @@ import { useEffect } from 'react'; -import { Pressable, StyleSheet } from 'react-native'; +import { Pressable, StyleSheet, Text } from 'react-native'; import Animated, { interpolateColor, useAnimatedStyle, useSharedValue, withTiming } from 'react-native-reanimated'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { HomeIcon, WalletIcon } from '@/assets/icons'; +import { DiscordTabIcon, HomeIcon } from '@/assets/icons'; +import FastImage from 'react-native-fast-image'; + +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; const icon: any = { home: (props: any) => , - holdings: (props: any) => , + discover: (props: any) => , + profile: (props: any) => , }; const LQDNavigationAction = ({ isFocused, label, onLongPress, onPress, routeName }: ILQDNavigationAction) => { @@ -29,9 +33,10 @@ const LQDNavigationAction = ({ isFocused, label, onLongPress, onPress, routeName fill: isFocused ? '#020617' : '#64748B', width: 24, height: 24, + focus: isFocused, })} - {label} + {label && {label}} ); }; @@ -44,10 +49,18 @@ const styles = StyleSheet.create({ justifyContent: 'center', alignItems: 'center', gap: 5, + paddingVertical: 8, }, text: { fontSize: adjustFontSizeForIOS(11, 2), lineHeight: 13.64, }, + + image: { + width: 24, + height: 24, + borderRadius: 100, + borderColor: '#000', + }, }); diff --git a/components/onboarding/indicator/index.tsx b/components/onboarding/indicator/index.tsx index c570945..cbee386 100644 --- a/components/onboarding/indicator/index.tsx +++ b/components/onboarding/indicator/index.tsx @@ -44,25 +44,17 @@ const LQDOnboardingIndicator = ({ currentStep, isPaused, timer, totalSteps, fini return ( - - - - Welcome to Liquid - - - - - - - - - {Array.from({ length: totalSteps }).map((_, index) => ( ))} + + + + + ); @@ -83,6 +75,7 @@ const styles = StyleSheet.create({ alignItems: 'center', gap: 10, width: '100%', + paddingTop: 15, }, logoContainer: { flexDirection: 'row', @@ -113,6 +106,8 @@ const styles = StyleSheet.create({ justifyContent: 'center', alignItems: 'center', borderRadius: 9999, + borderWidth: 1, + borderColor: '#71AAFE', }, actionIcon: { width: 18, @@ -122,11 +117,11 @@ const styles = StyleSheet.create({ flex: 1, height: 4, borderRadius: 9999, - backgroundColor: '#FFFFFF3D', + backgroundColor: '#D4E6FF', overflow: 'hidden', }, progress: { height: '100%', - backgroundColor: '#FFF', + backgroundColor: '#4691FE', }, }); diff --git a/components/onboarding/step/index.tsx b/components/onboarding/step/index.tsx index f51719d..1587f4e 100644 --- a/components/onboarding/step/index.tsx +++ b/components/onboarding/step/index.tsx @@ -16,15 +16,12 @@ const LQDOnboardingStep = ({ }: ILQDOnboardingStep) => { return ( - {title} - - {subtitle} - + {title} ); }; @@ -36,16 +33,20 @@ const styles = StyleSheet.create({ flex: 1, paddingTop: 136, gap: 22, + alignItems: 'center', }, title: { fontFamily: 'QuantaGroteskProBold', - fontSize: adjustFontSizeForIOS(48, 5), + fontSize: adjustFontSizeForIOS(36, 5), fontWeight: '700', - lineHeight: 53, + lineHeight: 40.32, letterSpacing: -0.96, - paddingHorizontal: 16, - color: '#FFF', + paddingHorizontal: 15, + color: '#0F172A', + position: 'absolute', + bottom: '22%', + textAlign: 'center', }, subtitle: { @@ -58,6 +59,10 @@ const styles = StyleSheet.create({ image: { position: 'absolute', - bottom: '25%', + top: '27%', + height: 317, + width: 210, + right: 0, + left: 0, }, }); diff --git a/components/pool-images/index.tsx b/components/pool-images/index.tsx index 9815bb7..ef026f9 100644 --- a/components/pool-images/index.tsx +++ b/components/pool-images/index.tsx @@ -49,12 +49,12 @@ const styles = StyleSheet.create({ borderRadius: 9999, borderWidth: 1, borderColor: '#EAEEF4', - marginRight: -6, + marginRight: -12, }, image: { - width: 24, - height: 24, + width: 16, + height: 16, borderRadius: 9999, }, }); diff --git a/components/pool-images/token-image.tsx b/components/pool-images/token-image.tsx index 489132d..c18b4a8 100644 --- a/components/pool-images/token-image.tsx +++ b/components/pool-images/token-image.tsx @@ -4,15 +4,15 @@ import { useState } from 'react'; const defaultIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; -const LQDTokenImage = ({ iconURL }: TokenImage) => { +const LQDTokenImage = ({ iconURL, size }: TokenImage) => { const [iconError, setIconError] = useState(false); const icon = iconError ? defaultIconUrl : iconURL || defaultIconUrl; return ( - + { export default LQDTokenImage; -const styles = StyleSheet.create({ - iconContainer: { - width: 24, - height: 24, - borderWidth: 1, - borderColor: '#EAEEF4', - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - }, +const styles = (size: number = 24) => + StyleSheet.create({ + iconContainer: { + width: size, + height: size, + borderWidth: 1, + borderColor: '#EAEEF4', + alignItems: 'center', + justifyContent: 'center', + borderRadius: 9999, + }, - icon: { - width: 24, - height: 24, - objectFit: 'contain', - borderRadius: 9999, - }, -}); + icon: { + width: size, + height: size, + objectFit: 'contain', + borderRadius: 9999, + }, + }); diff --git a/components/pool-images/types.ts b/components/pool-images/types.ts index e6787cf..278209c 100644 --- a/components/pool-images/types.ts +++ b/components/pool-images/types.ts @@ -5,4 +5,5 @@ type PoolImages = { type TokenImage = { iconURL?: string; + size?: number; }; diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 59b0ffa..02e9845 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -5,10 +5,10 @@ import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, formatSymbo import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setRecentSearchedPool, setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; -import LQDPoolImages from '../pool-images'; -import LQShrimeLoader from '../loader'; +import LQDImage from '../image'; +import { FillCheckIcon } from '@/assets/icons'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol }: PoolPairPaper) => { +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol, selected }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -22,42 +22,27 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol router.push(paths[navigationVariant]); }; - const vol = Number(Number(pool.totalVolumeUSD).toFixed(4)); - - const tokenAIconURL = pool.token0.logoUrl; - const tokenBIconURL = pool.token1.logoUrl; - const symbol = formatSymbol(pool.symbol, showFullSymbol); - const apr = formatAmount(pool.apr, 2); - const fees = Number(pool.poolFee) > 1000 ? formatNumberWithSuffix(pool.poolFee) : roundUp(Number(pool.poolFee)); - const volume = formatNumberWithSuffix(vol); - const tvl = pool.tvl; - const isStable = pool.isStable; + const tokenIconURL = pool.token0.logoUrl; + const title = pool.symbol; + const subTitle = '4,506 USDC'; return ( - + - {symbol} - - - {isStable ? 'Basic Stable' : 'Basic Volatile'} + {title} - - + {subTitle && ( + + {subTitle} - - {fees}% Fee - + )} - - APR: {apr.toLocaleString()}% - - VOL: ${volume} - + {selected && } ); }; diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index ccf6975..30f089b 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -4,4 +4,5 @@ export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; showFullSymbol?: boolean; + selected?: boolean | null; } diff --git a/components/protocol-card/index.tsx b/components/protocol-card/index.tsx new file mode 100644 index 0000000..fe2fe8a --- /dev/null +++ b/components/protocol-card/index.tsx @@ -0,0 +1,51 @@ +import React from 'react'; +import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; +import { FillCheckIcon } from '@/assets/icons'; +import ICONS from '@/constants/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { IProtocolCard } from './types'; + +const LQDProtocolCard = ({ selected, onSelect, variant, protocol }: IProtocolCard) => { + const { title } = protocol; + + return ( + + + {ICONS[variant]} + {title} + + {selected && } + + ); +}; + +export default LQDProtocolCard; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#F8FAFC', + flexDirection: 'row', + alignItems: 'center', + borderRadius: 20, + height: 52, + paddingHorizontal: 16, + justifyContent: 'space-between', + }, + innerWrapper: { + flexDirection: 'row', + alignItems: 'center', + gap: 20, + }, + volumeWrapper: { + alignItems: 'flex-end', + gap: 8, + }, + + title: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 19.2, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, +}); diff --git a/components/protocol-card/types.ts b/components/protocol-card/types.ts new file mode 100644 index 0000000..684c6d0 --- /dev/null +++ b/components/protocol-card/types.ts @@ -0,0 +1,9 @@ +export type IProtocolIconVariant = 'moonwell' | 'aerodrome' | 'morpho'; + +export interface IProtocolCard { + protocol: any; + navigationVariant?: 'primary' | 'secondary'; + variant: IProtocolIconVariant; + selected: boolean | null; + onSelect?: () => void; +} diff --git a/components/scrollview/index.tsx b/components/scrollview/index.tsx index 1f66eca..fd071ee 100644 --- a/components/scrollview/index.tsx +++ b/components/scrollview/index.tsx @@ -2,18 +2,17 @@ import React from 'react'; import { RefreshControl, ScrollView } from 'react-native'; import { ILQDScrollView } from './types'; -const LQDScrollView: React.FC = ({ children, onRefresh, refreshing, style, contentStyle }) => { +const LQDScrollView: React.FC = ({ children, onRefresh, refreshing = false, style, contentStyle }) => { + const Refresh = () => { + if (onRefresh) { + return ; + } + + return null; + }; + return ( - } style={[style, { flex: 1 }]} showsVerticalScrollIndicator={false} contentContainerStyle={[ @@ -22,6 +21,7 @@ const LQDScrollView: React.FC = ({ children, onRefresh, refreshi }, contentStyle, ]} + refreshControl={} > {children} diff --git a/components/scrollview/types.ts b/components/scrollview/types.ts index 0837370..41b4432 100644 --- a/components/scrollview/types.ts +++ b/components/scrollview/types.ts @@ -2,8 +2,8 @@ import { StyleProp, ViewStyle } from 'react-native'; interface ILQDScrollView { children?: React.ReactNode; - refreshing: boolean; - onRefresh: () => void; + refreshing?: boolean; + onRefresh?: () => void; style?: StyleProp; contentStyle?: StyleProp; } diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 61d806a..51e991e 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -1,8 +1,8 @@ import { useEffect, useState } from 'react'; -import { View, StyleSheet, ScrollView, FlatList, Text } from 'react-native'; +import { View, StyleSheet, ScrollView, FlatList, Text, Pressable } from 'react-native'; import SearchSection from './sections'; -import RecentCard from './recent-card'; +import RecentCard from './popular-asset-card'; import LQDSearch from '../search'; import LQDPoolPairPaper from '../pool-pair-paper'; import useSystemFunctions from '@/hooks/useSystemFunctions'; @@ -13,6 +13,7 @@ import LQShrimeLoader from '../loader'; import { createArrayWithIndexes } from '@/utils/helpers'; import { clearRecentSearchedPools } from '@/store/pools'; import LQNoResult from '../no-result'; +import Modal from 'react-native-modal'; const SearchUI = () => { const { router, poolsState, dispatch } = useSystemFunctions(); @@ -25,6 +26,7 @@ const SearchUI = () => { const recentSearch = poolsState.recentSearchedPools; const [showRecents, setShowRecents] = useState(true); + const [selectedAsset, setSelectedAsset] = useState(null); const emptysearch = createArrayWithIndexes(10); @@ -38,7 +40,7 @@ const SearchUI = () => { const sections: Array> = [ { - title: 'Recents', + title: 'Popular', children: ( {recentSearch.map((recent, index) => { @@ -49,11 +51,11 @@ const SearchUI = () => { onClear: () => dispatch(clearRecentSearchedPools()), }, { - title: 'Trending Pools', + title: 'All assets', children: ( {trendingPools.map((pool, index) => ( - + ))} ), @@ -67,7 +69,10 @@ const SearchUI = () => { } + renderItem={({ item }) => { + console.log(item.address); + return ; + }} keyExtractor={(_, index) => index.toString()} contentContainerStyle={{ gap: 24 }} onEndReached={() => getPaginatedSearchPools(searchText)} @@ -100,34 +105,43 @@ const SearchUI = () => { )); return ( - <> - - - {loading && } - - {searchedPools.length === 0 && searchText && !loading && ( - - )} - - {searchedPools.length === 0 && !searchText && !loading && ( - - {sectionsToShow.map((section, index) => ( - - ))} - - )} - - {searchedPools.length > 0 && !loading && ( - - {sectionsToShow.map((section, index) => ( - - ))} + + + + + - )} - + + {loading && } + + {searchedPools.length === 0 && searchText && !loading && ( + + )} + + {searchedPools.length === 0 && !searchText && !loading && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} + + {searchedPools.length > 0 && !loading && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} + + ); }; @@ -138,9 +152,28 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', flex: 1, paddingHorizontal: 16, - paddingTop: 34, paddingBottom: 68, - gap: 40, + }, + + overlay: { + flex: 1, + justifyContent: 'flex-end', + width: '100%', + }, + + bottomSheet: { + position: 'absolute', + bottom: 0, + zIndex: 30, + width: '100%', + paddingBottom: 10, + paddingTop: 17, + backgroundColor: '#fff', + borderTopLeftRadius: 20, + borderTopRightRadius: 20, + gap: 33, + maxHeight: '90%', + height: '90%', }, mapContainer: { @@ -148,7 +181,6 @@ const styles = StyleSheet.create({ alignItems: 'stretch', }, - // loader loaderContainer: { flex: 1, flexDirection: 'row', diff --git a/components/search-ui/recent-card.tsx b/components/search-ui/popular-asset-card.tsx similarity index 62% rename from components/search-ui/recent-card.tsx rename to components/search-ui/popular-asset-card.tsx index 309d144..5e03446 100644 --- a/components/search-ui/recent-card.tsx +++ b/components/search-ui/popular-asset-card.tsx @@ -1,35 +1,34 @@ -import { View, StyleSheet, Text, Image, TouchableOpacity } from 'react-native'; +import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import useAppActions from '@/store/app/actions'; -import { IRecentCard } from './types'; -import LQDPoolImages from '../pool-images'; +import { IPopularAssetCard } from './types'; +import LQDImage from '../image'; -const RecentCard = ({ pool, navigationVariant = 'primary' }: IRecentCard) => { +const PopularAssetCard = ({ pool, navigationVariant = 'primary' }: IPopularAssetCard) => { const { router, pathname } = useSystemFunctions(); - const { searchIsFocused } = useAppActions(); + const { searchIsFocused, showSearch } = useAppActions(); const onPress = () => { searchIsFocused(false); - router.push(`/(tabs)/home/${pool.address}`); + showSearch(true); }; - const tokenAIconURL = pool.token0.logoUrl; - const tokenBIconURL = pool.token1.logoUrl; - const symbol = pool.symbol.split('-')[1].replace('/', ' / '); + const tokenIconURL = pool.token0.logoUrl; + const title = 'USDC'; return ( - + - {symbol} + {title} ); }; -export default RecentCard; +export default PopularAssetCard; const styles = StyleSheet.create({ container: { @@ -38,13 +37,12 @@ const styles = StyleSheet.create({ alignItems: 'center', justifyContent: 'center', gap: 8 + 6, - paddingHorizontal: 8, - paddingVertical: 12, + paddingHorizontal: 14, + paddingVertical: 8, borderRadius: 10, borderWidth: 1, borderColor: '#EAEEF4', backgroundColor: '#fff', - marginBottom: 20, }, iconContainer: { diff --git a/components/search-ui/sections.tsx b/components/search-ui/sections.tsx index bb93418..bad7b33 100644 --- a/components/search-ui/sections.tsx +++ b/components/search-ui/sections.tsx @@ -12,15 +12,6 @@ const SearchSection = ({ children, title, onClear, query, setQuery }: ISearchSec {title} - {onClear && ( - - Clear - - - - - )} - {query && setQuery && ( {queries.map((item) => ( @@ -52,7 +43,7 @@ const styles = StyleSheet.create({ title: { color: '#0F172A', - fontSize: 20, + fontSize: 16, lineHeight: 23.2, fontWeight: '500', fontFamily: 'AeonikMedium', diff --git a/components/search-ui/types.ts b/components/search-ui/types.ts index 143ab1d..dec9c55 100644 --- a/components/search-ui/types.ts +++ b/components/search-ui/types.ts @@ -11,8 +11,8 @@ export interface ISearchSection { index: number; } -export interface IRecentCard { - pool: Pool; +export interface IPopularAssetCard { + pool: any; navigationVariant?: 'primary' | 'secondary'; } diff --git a/components/slider/index.tsx b/components/slider/index.tsx new file mode 100644 index 0000000..cd23a4f --- /dev/null +++ b/components/slider/index.tsx @@ -0,0 +1,144 @@ +import React, { useState, useRef } from 'react'; +import { StyleSheet, FlatList, Animated, Dimensions, View, Text, Image, StyleProp, ViewStyle } from 'react-native'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { ISlider, Slider } from './types'; +const { width } = Dimensions.get('window'); + +let PADDING_HORIZONTAL = 2 * 18; // Left and right padding +let SLIDE_WIDTH = width - PADDING_HORIZONTAL; // Carousel Width +let INDICATOR_SIDES = 6; // Length of each side of the indicator +let CAROUSEL_HEIGHT = 82; + +const LQDSlider = ({ items }: ISlider) => { + const slider1 = require('../../assets/images/slider-1.png'); + const slider2 = require('../../assets/images/slider-2.png'); + const scrollX = useRef(new Animated.Value(0)).current; + const [viewIndex, setViewIndex] = useState(0); + const flatListRef = useRef(null); + + const images: Record = { + strategy: slider1, + deposit: slider2, + }; + + const onViewChangeRef = useRef(({ viewableItems }: { viewableItems: any[] }) => { + setViewIndex(viewableItems[0]?.index); + }); + + const renderItem = ({ item }: { item: Slider }) => { + const { title, subTitle, variant } = item; + const bg = variant === 'deposit' ? '#EFFAF6' : '#EEEBFF'; + const borderColor = variant === 'deposit' ? '#CBF5E5' : '#CAC2FF'; + const textColor = variant === 'deposit' ? '#156146' : '#2B1664'; + const imageDimensions = variant === 'deposit' ? { width: 114, height: 53, bottom: 0 } : { width: 130, height: 75, bottom: null }; + + return ( + + + {title} + {subTitle} + + + + ); + }; + + return ( + + + + + {items.length > 0 && ( + + {items.map((_, index) => ( + + ))} + + )} + + ); +}; + +const styles = StyleSheet.create({ + carouselWrap: { + height: CAROUSEL_HEIGHT, + position: 'relative', + }, + eachDotsWrap: { + flexDirection: 'row', + alignSelf: 'center', + gap: INDICATOR_SIDES / 2, + backgroundColor: 'transparent', + marginTop: 10, + }, + eachIndicatorDots: { + width: INDICATOR_SIDES, + height: INDICATOR_SIDES, + borderRadius: INDICATOR_SIDES / 2, + }, + slideContainer: { + width: SLIDE_WIDTH, + justifyContent: 'center', + paddingHorizontal: 20, + position: 'relative', + borderWidth: 1, + borderRadius: 12, + zIndex: 5, + backgroundColor: 'white', + overflow: 'hidden', + }, + textContainer: { + width: '70%', + gap: 6, + }, + image: { + position: 'absolute', + right: -20, + height: 60, + width: 114, + zIndex: 0, + }, + title: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(16, 1), + lineHeight: 17.92, + fontWeight: '700', + fontFamily: 'QuantaGroteskProBold', + }, + subTitle: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(11, 1), + lineHeight: 13.64, + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + contentContainerStyle: { + overflow: 'hidden', + gap: 20, + paddingHorizontal: 17, + }, +}); + +export default LQDSlider; diff --git a/components/slider/types.ts b/components/slider/types.ts new file mode 100644 index 0000000..f390974 --- /dev/null +++ b/components/slider/types.ts @@ -0,0 +1,12 @@ +import { StyleProp, ViewStyle } from 'react-native'; + +export interface Slider { + title?: string; + subTitle?: string; + image?: string; + variant?: 'strategy' | 'deposit'; +} + +export interface ISlider { + items: Slider[]; +} diff --git a/components/stack-header/index.tsx b/components/stack-header/index.tsx index 2371091..16f5888 100644 --- a/components/stack-header/index.tsx +++ b/components/stack-header/index.tsx @@ -1,58 +1,64 @@ import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; - import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { CaretLeftIcon } from '@/assets/icons'; +import { CaretLeftIcon, CloseIcon, LampIcon } from '@/assets/icons'; import { ILQDStackHeader } from './types'; -const LQDStackHeader = ({ navigation, options, hasTitle, style }: ILQDStackHeader) => { +const LQDStackHeader = ({ navigation, options, hasTitle, leftIcon = 'back', rightIcon = '', style }: ILQDStackHeader) => { + const lIcon = { + close: , + back: , + }; + const rIcon = { + bulb: , + }; + return ( - - - - Back + + navigation.goBack()}> + {leftIcon && lIcon[leftIcon]} - {hasTitle && {`${options?.headerTitle!}`}} + {hasTitle && ( + + {`${options?.headerTitle}`} + + )} + + {rightIcon && rIcon[rightIcon]} ); }; + export default LQDStackHeader; const styles = StyleSheet.create({ container: { flexDirection: 'row', - backgroundColor: '#FFF', - paddingBottom: 4, + backgroundColor: '#fff', + paddingBottom: 10, paddingHorizontal: 16, - }, - - hasTitleContainer: { justifyContent: 'center', alignItems: 'center' }, - - back: { - flexDirection: 'row', alignItems: 'center', - gap: 2, + justifyContent: 'space-between', + position: 'relative', }, - hasTitleBack: { + titleContainer: { position: 'absolute', - left: 16, - bottom: 4, + left: 0, + right: 0, + bottom: 10, + justifyContent: 'center', + alignItems: 'center', }, - backText: { + title: { color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 17.64, + fontSize: adjustFontSizeForIOS(16, 1), + lineHeight: 19.84, fontWeight: '500', fontFamily: 'AeonikMedium', }, - - title: { - color: '#181E00', - fontSize: adjustFontSizeForIOS(20, 3), - lineHeight: 23.2, - fontWeight: '500', - fontFamily: 'AeonikMedium', + icon: { + zIndex: 2, }, }); diff --git a/components/stack-header/types.ts b/components/stack-header/types.ts index 92eb9e1..0b5d621 100644 --- a/components/stack-header/types.ts +++ b/components/stack-header/types.ts @@ -4,6 +4,8 @@ import { StyleProp, ViewStyle } from 'react-native'; interface ILQDStackHeader extends NativeStackHeaderProps { style?: StyleProp; hasTitle?: boolean; + leftIcon?: '' | 'close' | 'back'; + rightIcon?: '' | 'bulb'; } export type { ILQDStackHeader }; diff --git a/components/strategy-card/index.tsx b/components/strategy-card/index.tsx new file mode 100644 index 0000000..9619c97 --- /dev/null +++ b/components/strategy-card/index.tsx @@ -0,0 +1,128 @@ +import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; + +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useAppActions from '@/store/app/actions'; +import LQDImage from '../image'; +import { MoneysIcon } from '@/assets/icons'; + +const LQDStrategyCard = (strategy: Strategy) => { + const { router } = useSystemFunctions(); + const { searchIsFocused } = useAppActions(); + + const { id, metrics, steps } = strategy; + + const onPress = (strategyId: string) => { + searchIsFocused(false); + router.push(`/details/${strategyId}`); + }; + + const username = 'Meister'; + const tvl = metrics?.tvl; + const apy = metrics?.apy; + + return ( + onPress(strategy.id)} style={styles.container}> + + + + @{username} + + + + + + + {steps?.length} action{steps?.length > 1 ? 's' : ''}... + + + + + Est. APY + {apy}% + + + + TVL + {tvl} + + + ); +}; + +export default LQDStrategyCard; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + justifyContent: 'space-between', + alignSelf: 'stretch', + alignItems: 'center', + paddingHorizontal: 14, + paddingVertical: 12, + borderRadius: 10, + borderWidth: 1, + borderColor: '#EAEEF4', + backgroundColor: '#fff', + }, + + iconContainer: { + gap: 5, + }, + + profileContainer: { + width: '25%', + }, + + actionsContainer: { + width: '30%', + }, + + apyContainer: { + width: '22%', + }, + + tvlContainer: { + width: '19%', + }, + + icon: { + width: 24, + height: 24, + alignItems: 'center', + justifyContent: 'center', + borderRadius: 9999, + borderWidth: 1, + borderColor: '#EAEEF4', + marginRight: -6, + }, + + username: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontWeight: '500', + lineHeight: 16, + fontFamily: 'AeonikMedium', + }, + key: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontWeight: '400', + fontFamily: 'AeonikMedium', + }, + value: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(13, 2), + fontWeight: '500', + fontFamily: 'ClashDisplayMedium', + lineHeight: 15.6, + marginTop: 4, + }, + actions: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(13, 2), + fontWeight: '500', + lineHeight: 16.12, + fontFamily: 'ClashDisplayMedium', + }, +}); diff --git a/components/strategy-card/types.ts b/components/strategy-card/types.ts new file mode 100644 index 0000000..5c3a8b6 --- /dev/null +++ b/components/strategy-card/types.ts @@ -0,0 +1,4 @@ +export interface IStrategyCard { + strategy: any; + navigationVariant?: 'primary' | 'secondary'; +} diff --git a/constants/abis/AerodromeConnector.json b/constants/abis/AerodromeConnector.json index de1b3cc..9b2d4b2 100644 --- a/constants/abis/AerodromeConnector.json +++ b/constants/abis/AerodromeConnector.json @@ -1 +1,591 @@ -{"abi":[{"type":"constructor","inputs":[{"name":"name","type":"string","internalType":"string"},{"name":"version","type":"uint256","internalType":"uint256"},{"name":"plugin","type":"address","internalType":"address"}],"stateMutability":"nonpayable"},{"type":"receive","stateMutability":"payable"},{"type":"function","name":"_plugin","inputs":[],"outputs":[{"name":"","type":"address","internalType":"address"}],"stateMutability":"view"},{"type":"function","name":"aerodromeFactory","inputs":[],"outputs":[{"name":"","type":"address","internalType":"contract IPoolFactory"}],"stateMutability":"view"},{"type":"function","name":"aerodromeRouter","inputs":[],"outputs":[{"name":"","type":"address","internalType":"contract IRouter"}],"stateMutability":"view"},{"type":"function","name":"execute","inputs":[{"name":"data","type":"bytes","internalType":"bytes"}],"outputs":[{"name":"","type":"bytes","internalType":"bytes"}],"stateMutability":"payable"},{"type":"function","name":"execute","inputs":[{"name":"data","type":"bytes","internalType":"bytes"},{"name":"caller","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"bytes","internalType":"bytes"}],"stateMutability":"payable"},{"type":"function","name":"getName","inputs":[],"outputs":[{"name":"","type":"string","internalType":"string"}],"stateMutability":"view"},{"type":"function","name":"getVersion","inputs":[],"outputs":[{"name":"","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"function","name":"quoteDepositLiquidity","inputs":[{"name":"tokenA","type":"address","internalType":"address"},{"name":"tokenB","type":"address","internalType":"address"},{"name":"stable","type":"bool","internalType":"bool"},{"name":"amountA","type":"uint256","internalType":"uint256"},{"name":"amountB","type":"uint256","internalType":"uint256"},{"name":"balanceTokenRatio","type":"bool","internalType":"bool"}],"outputs":[{"name":"amountAOut","type":"uint256","internalType":"uint256"},{"name":"amountBOut","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"event","name":"AeroRewardsClaimed","inputs":[{"name":"guageAddress","type":"address","indexed":true,"internalType":"address"},{"name":"rewardToken","type":"address","indexed":true,"internalType":"address"}],"anonymous":false},{"type":"event","name":"FeesWithdrawn","inputs":[{"name":"poolAddress","type":"address","indexed":true,"internalType":"address"},{"name":"token0","type":"address","indexed":false,"internalType":"address"},{"name":"amount0","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"token1","type":"address","indexed":false,"internalType":"address"},{"name":"amount1","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"LPTokenStaked","inputs":[{"name":"guageAddress","type":"address","indexed":true,"internalType":"address"},{"name":"amount","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"LPTokenUnStaked","inputs":[{"name":"guageAddress","type":"address","indexed":true,"internalType":"address"},{"name":"amount","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"recepient","type":"address","indexed":true,"internalType":"address"}],"anonymous":false},{"type":"event","name":"LiquidityAdded","inputs":[{"name":"tokenA","type":"address","indexed":true,"internalType":"address"},{"name":"tokenB","type":"address","indexed":true,"internalType":"address"},{"name":"amountA","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"amountB","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"liquidity","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"LiquidityRemoved","inputs":[{"name":"tokenA","type":"address","indexed":true,"internalType":"address"},{"name":"tokenB","type":"address","indexed":true,"internalType":"address"},{"name":"amountA","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"amountB","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"liquidity","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"Swapped","inputs":[{"name":"tokenIn","type":"address","indexed":true,"internalType":"address"},{"name":"tokenOut","type":"address","indexed":true,"internalType":"address"},{"name":"amountIn","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"amountOut","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"error","name":"AerodromeUtils_ExceededMaxPriceImpact","inputs":[]},{"type":"error","name":"AerodromeUtils_ExceededMaxSlippage","inputs":[]},{"type":"error","name":"AerodromeUtils_ExceededMaxValueLoss","inputs":[]},{"type":"error","name":"DeadlineExpired","inputs":[]},{"type":"error","name":"ExecutionFailed","inputs":[{"name":"reason","type":"string","internalType":"string"}]},{"type":"error","name":"IncorrectETHAmount","inputs":[]},{"type":"error","name":"InsufficientLiquidity","inputs":[]},{"type":"error","name":"InvalidSelector","inputs":[]},{"type":"error","name":"InvalidVersionNumber","inputs":[]},{"type":"error","name":"PoolDoesNotExist","inputs":[]},{"type":"error","name":"SlippageExceeded","inputs":[]},{"type":"error","name":"UnauthorizedCaller","inputs":[]}],"bytecode":{"object":"0x610120604052346200018057620040c8803803806200001e81620001ac565b928339810190606081830312620001805780516001600160401b0392908381116200018057820181601f8201121562000180578051938411620001985760209362000072601f8201601f19168601620001ac565b92818452858284010111620001805784915f5b828110620001845750505f908301909101528183015160409290920151926001600160a01b0384168403620001805782156200016e57815191012060805260a05260c05273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e4360e05261010073420dd381b31aef6683db6b902084cb0ffece40da8152604051613ef59182620001d383396080518261060c015260a05182610672015260c0518281816106df0152610912015260e0518281816104ce01528181611476015281816115140152818161167e01528181611db0015261213a01525181818161053c01528181610aa40152611cca0152f35b60405163ad92452760e01b8152600490fd5b5f80fd5b818101840151858201850152830162000085565b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b03811183821017620001985760405256fe6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056","sourceMap":"585:11320:35:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;-1:-1:-1;;;585:11320:35;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;880:13:30;;876:48;;585:11320:35;;;;943:23:30;935:31;;976:19;;1005:17;;768:42:37;1278:43:35;;1331:50;862:42:37;1331:50:35;;585:11320;;;;;;;;935:31:30;585:11320:35;;;;;976:19:30;585:11320:35;;;;;1005:17:30;585:11320:35;;;;;;;;;;1278:43;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:48:30;585:11320:35;;-1:-1:-1;;;902:22:30;;;;;585:11320:35;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;;585:11320:35;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;:::o","linkReferences":{}},"deployedBytecode":{"object":"0x6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056","sourceMap":"585:11320:35:-:0;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;12908:63:36;;585:11320:35;;;;;;12908:63:36;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394:42:36;12908:63;;;;;;;585:11320:35;12908:63:36;585:11320:35;12908:63:36;585:11320:35;12908:63:36;;;585:11320:35;;;;;12999:21:36;;;;585:11320:35;12999:21:36;;585:11320:35;12999:21:36;;;;;;;585:11320:35;12999:21:36;;;585:11320:35;13092:26:36;585:11320:35;13133:13:36;585:11320:35;13128:822:36;13148:5;13152:1;13148:5;;;;13128:822;-1:-1:-1;;585:11320:35;;;;13999:89:36;;585:11320:35;;;;;;13999:89:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;585:11320:35;;;;;1300:42:36;;;585:11320:35;-1:-1:-1;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;13999:89;;1300:42;13999:89;;;;;;;585:11320:35;13999:89:36;585:11320:35;;;13999:89:36;;;13128:822;585:11320:35;;;;;;;;;;;13999:89:36;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;585:11320:35;;;;;;;;;13155:3:36;585:11320:35;;;;;;13174:304:36;;13155:3;585:11320:35;;13582:92:36;585:11320:35;13582:92:36;;585:11320:35;;;;;13582:92:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;;;;;;1300:42:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;;13582:92:36;1300:42;13582:92;1300:42;13582:92;;;;;;13780:31;13582:92;585:11320:35;;;;13582:92:36;;;13155:3;13689:31;;;13734;13689;;;:::i;:::-;13734;;:::i;:::-;13780;;:::i;:::-;585:11320:35;;;;;;13830:29:36;;13155:3;13826:40;;585:11320:35;;13133:13:36;;;13826:40;13861:5;;13830:29;585:11320:35;;;;13830:29:36;;13582:92;13734:31;13582:92;;13689:31;13582:92;;;;;585:11320:35;13582:92:36;585:11320:35;13582:92:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;-1:-1:-1;13582:92:36;;;;;;;;13174:304;13401:62;585:11320:35;;13281:72:36;585:11320:35;;;;;;;13281:72:36;:::i;:::-;13401:62;;;;:::i;:::-;13372:91;;13174:304;;12999:21;;;;;585:11320:35;12999:21:36;585:11320:35;12999:21:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;12908:63;;;;;;;;;;;;;;:::i;:::-;;;;585:11320:35;;;;;;;;;;;;;;;;;;;664:40;585:11320;;;;;;;;;;;;;;;;;;;710:46;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1252:5:30;1235:23;;;585:11320:35;1235:23:30;;;;;;:::i;585:11320:35:-;;;;;;;;;;;;;;1469:8:30;585:11320:35;;;;;;;;;;;;;;;;;;530:32:30;585:11320:35;;;;;;;;;;;;;;;;;;;1712:25;585:11320;;;;;;;;:::i;:::-;1726:10;1712:25;;:::i;585:11320::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;1820:1139::-;;-1:-1:-1;;1820:1139:35;2034:10;2048:7;585:11320;;2034:21;585:11320;;2034:43;;585:11320;2119:1;585:11320;;;;;;;;2137:49;;585:11320;;2258:44;-1:-1:-1;5124:19:35;-1:-1:-1;5145:26:35;585:11320;;5145:26;-1:-1:-1;5497:106:35;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;5618:15;:26;5614:56;;585:11320;;;5696:48;;5187:416;;;;585:11320;;;;2119:1;5696:48;;585:11320;;;;;;;;;;;;;;;;;;;;5696:48;:16;585:11320;5696:16;585:11320;5696:48;;;;;;;-1:-1:-1;5696:48:35;;;2133:786;585:11320;;;;5758:18;5754:49;;-1:-1:-1;585:11320:35;;;;10224:320;;2133:786;585:11320;;;;10553:320;;2133:786;5917:33;;;;;:::i;:::-;585:11320;;;;;5961:31;;585:11320;;;;6002:31;;-1:-1:-1;6081:13:35;;6096:5;6100:1;6096:5;;;;;6076:1344;4624:18:36;;;;;:::i;:::-;12368:5;;;;;;;12376;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;585:11320:35;4672:50:36;;;;:::i;:::-;4736:27;4732:79;;585:11320:35;;;5176:63:36;;5187:416:35;;;;585:11320;;;;2119:1;5176:63:36;;585:11320:35;;;;;;;;;;;;;;;;;;1394:42:36;5176:63;;;;;;;585:11320:35;5176:63:36;585:11320:35;5176:63:36;-1:-1:-1;5176:63:36;;;12368:21;585:11320:35;2119:1;585:11320;;5268:21:36;;;;585:11320:35;5268:21:36;;585:11320:35;5268:21:36;;;;;;;-1:-1:-1;5268:21:36;;;12368;-1:-1:-1;585:11320:35;;;;5354:90:36;;5187:416:35;;;;585:11320;;;;2119:1;5354:90:36;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;1300:42:36;;;585:11320:35;1300:42:36;;;585:11320:35;;;;;;1300:42:36;585:11320:35;1300:42:36;5354:90;;;;;;;-1:-1:-1;;;5354:90:36;;;12368:21;585:11320:35;;;;;5557:23:36;;:50;;;;12368:21;5553:124;;585:11320:35;5719:22:36;;:::i;:::-;585:11320:35;;;;;;;:::i;:::-;5187:416;;;585:11320;;;5187:416;;;585:11320;;5763:46:36;;585:11320:35;;;;5763:46:36;;585:11320:35;;;5763:46:36;;585:11320:35;5751:58:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;5853:63:36;585:11320:35;5853:63:36;;585:11320:35;;;;2119:1;5853:63:36;;585:11320:35;;;;;;-1:-1:-1;585:11320:35;;;;;;;;:::i;:::-;5853:63:36;;1300:42;5853:63;;;;;;;6185:22;5944:33;5961:16;-1:-1:-1;5853:63:36;585:11320:35;5853:63:36;;;;;12368:21;5961:16;;:::i;:::-;585:11320:35;;;;;5944:33:36;:::i;:::-;12495:17;585:11320:35;;;;;12495:5:36;;;;;12503;585:11320:35;;;;;12503:5:36;:::i;:::-;12495:17;;585:11320:35;;;;;;12495:5:36;;;;;585:11320:35;12503:5:36;585:11320:35;;;12503:5:36;:::i;:::-;12495:17;6185:22;:::i;:::-;585:11320:35;;6145:71:36;;;;;585:11320:35;6145:71:36;;2119:1:35;6145:71:36;;585:11320:35;;;;;;;;;;;:::i;:::-;6145:71:36;;1300:42;6145:71;;;;;;;6245:41;6145:71;-1:-1:-1;6145:71:36;;;12495:17;6245:22;6270:16;6245:22;;;;:::i;:::-;6270:16;;:::i;:::-;585:11320:35;6245:41:36;;:::i;:::-;6595:18;;;6591:183;;12495:17;7332:13;;;;7328:387;;12495:17;7728:13;;7724:387;;12495:17;585:11320:35;;;2323:39;;585:11320;;;;5187:416;;585:11320;5187:416;7737:76;585:11320;5187:416;;585:11320;7737:76;;;;;;;585:11320;;;;;;;;;;;;;;;;;;7737:76;;;;585:11320;;2323:39;;;585:11320;2323:39;;585:11320;;;;;;;;;;;;;;;;;;2323:39;;;;;;;;;:::i;:::-;2316:46;:::o;7724:387:36:-;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7761:14:36;7757:344;449:42:37;;;7842:31:36;;;;;585:11320:35;;;;;;7842:31:36;;;;585:11320:35;7842:31:36;;585:11320:35;;2119:1;7842:31:36;;585:11320:35;7842:31:36;;;;;;;;7757:344;7909:36;;7963:39;7909:36;;;2323:39:35;7909:36:36;2323:39:35;7909:36:36;;;;;;;;;:::i;:::-;;7963:39;:::i;:::-;7724:387;;;;7842:31;;;;;:::i;:::-;585:11320:35;;7842:31:36;;;585:11320:35;;;;7842:31:36;585:11320:35;;;;;;;;;7842:31:36;585:11320:35;;;7757:344:36;-1:-1:-1;585:11320:35;;;8041:45:36;;;;585:11320:35;;;;2119:1;8041:45:36;;585:11320:35;;;;;5187:416;;585:11320;;;;;;;;;;;;;;8041:45:36;;;;;;;;;2323:39:35;8041:45:36;2323:39:35;8041:45:36;;;;7757:344;;;;8041:45;;;585:11320:35;8041:45:36;585:11320:35;8041:45:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;585:11320:35;;;;;;;;;;7328:387:36;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7365:14:36;7361:344;449:42:37;;;7446:31:36;;;;;-1:-1:-1;585:11320:35;;;;;7446:31:36;;;;585:11320:35;7446:31:36;;585:11320:35;;2119:1;7446:31:36;;585:11320:35;7446:31:36;;;;;;;;7361:344;7513:36;7567:39;7513:36;;;;;;;;;;;:::i;7567:39::-;7328:387;;7446:31;;;;;;:::i;:::-;-1:-1:-1;7446:31:36;;;;7361:344;-1:-1:-1;585:11320:35;;;7645:45:36;;;;585:11320:35;;;2119:1;7645:45:36;;585:11320:35;;;;;;;;;;;7645:45:36;5187:416:35;-1:-1:-1;585:11320:35;5187:416;;585:11320;7645:45:36;;;;;;;;7361:344;;7328:387;;7645:45;;;585:11320:35;7645:45:36;585:11320:35;7645:45:36;;;;;;;:::i;:::-;;;;;6591:183;6649:18;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;6714;6648:37;;;;:::i;:::-;6703:14;6699:64;;6591:183;;;;6699:64;2119:1:35;585:11320;;6726:37:36;;;;1084:3;585:11320:35;-1:-1:-1;585:11320:35;;2119:1;585:11320;;-1:-1:-1;585:11320:35;6145:71:36;6245:22;6145:71;;;;;6270:16;6145:71;;;-1:-1:-1;6145:71:36;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;12495:17;;;;;6185:22;:::i;12495:17::-;;;;;5853:63;;;;;;;;;;;;;:::i;:::-;;;;5553:124;2119:1:35;585:11320;;5630:36:36;;;;5557:50;585:11320:35;;;;;5584:23:36;;5557:50;;5354:90;;;;;;;;585:11320:35;5354:90:36;585:11320:35;5354:90:36;;;;;;;:::i;:::-;;;;;;;;5268:21;;;;;585:11320:35;5268:21:36;585:11320:35;5268:21:36;;;;;;;:::i;:::-;;;;;5176:63;;;;;;;;;;;;;;:::i;:::-;;;;4732:79;2119:1:35;585:11320;;4772:39:36;;;;12368:21;12384:5;;;;:::i;:::-;12368:21;;6103:3:35;6122:349;;;;;;;6103:3;585:11320;;;6524:61;;;;6555:15;585:11320;;2119:1;6524:61;;585:11320;;;;;;;;;;;6524:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6524:61;;;;;;;;6103:3;-1:-1:-1;585:11320:35;;;6599:61;;;;6555:15;585:11320;;2119:1;6599:61;;585:11320;;;;;;;;;;;6599:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6599:61;;;;;;;;6103:3;585:11320;;;6749:304;;585:11320;6749:304;;;585:11320;5187:416;;585:11320;2119:1;6749:304;;;585:11320;;5187:416;;585:11320;;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;;;6749:304;;585:11320;;;6749:304;;585:11320;6749:304;;-1:-1:-1;585:11320:35;6555:15;585:11320;6749:304;;;;;;;;;7250:31;6749:304;-1:-1:-1;6749:304:35;;-1:-1:-1;;;;6749:304:35;;;;;6103:3;7159:31;7204;7068;;;;;;;:::i;:::-;;;7113;;;;;;:::i;:::-;;;7159;;;;:::i;:::-;7204;;;;;:::i;:::-;7250;;:::i;:::-;585:11320;;;;7300:29;;6103:3;7296:40;;585:11320;6103:3;;585:11320;6103:3;;6081:13;;;7296:40;7331:5;;7300:29;7311:18;;;7300:29;;6749:304;;;585:11320;6749:304;585:11320;6749:304;;;;7159:31;6749:304;;;7204:31;6749:304;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;6749:304:35;;;6599:61;;;585:11320;6599:61;585:11320;6599:61;;;;;;;:::i;:::-;;;;;6524;;;585:11320;6524:61;585:11320;6524:61;;;;;;;:::i;:::-;;;;;6122:349;6379:77;6229:82;;;;;;585:11320;5187:416;;585:11320;;5187:416;;585:11320;6229:82;:::i;:::-;6379:77;;;;;:::i;:::-;6330:126;;;;6122:349;;10553:320;449:42:37;585:11320:35;5187:416;;585:11320;10588:14;:31;;;10553:320;10584:279;;;585:11320;;;;10643:9;:20;10639:53;;449:42:37;10711:39:35;;;;585:11320;;;10711:39;;10643:9;;2119:1;10643:9;;449:42:37;10711:39:35;;;;;;;;10584:279;;;;10553:320;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;585:11320;;;10711:39;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;;;;;10789:59;5187:416;;585:11320;5187:416;;585:11320;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;585:11320;10789:59;585:11320;10789:59;;;;;;;:::i;:::-;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;585:11320:35;5187:416;;585:11320;10259:14;:31;;;10224:320;10255:279;;;585:11320;;;;10314:9;:20;10310:53;;449:42:37;10382:39:35;;;;585:11320;;;10382:39;;-1:-1:-1;10314:9:35;2119:1;10314:9;;449:42:37;10382:39:35;;;;;;;;10255:279;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;10255:279;585:11320;;;10460:59;;585:11320;;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;;;;5187:416;;585:11320;;;;;;;-1:-1:-1;;585:11320:35;10460:59;;;;;;;;10255:279;10224:320;;10460:59;;;585:11320;10460:59;585:11320;10460:59;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;5754:49;2119:1;585:11320;;5785:18;;;;5696:48;;;;;585:11320;5696:48;585:11320;5696:48;;;;;;;:::i;:::-;;;;;5614:56;2119:1;585:11320;;5653:17;;;;2133:786;2383:52;-1:-1:-1;585:11320:35;2383:52;;585:11320;;8583:91;585:11320;8583:91;585:11320;8583:91;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8689:15;;;:26;8685:56;;585:11320;;;8767:48;;585:11320;;;;2119:1;8767:48;;585:11320;;;;;;;;;;;;;;;;;;;;8767:48;:16;585:11320;8767:16;585:11320;8767:48;;;;;;585:11320;8767:48;-1:-1:-1;8767:48:35;;;2379:540;585:11320;;8829:18;;;8825:49;;585:11320;;;8885:59;;585:11320;;;;;2119:1;8885:59;;585:11320;8927:4;585:11320;;;;;;;;;;;;;;;;;;-1:-1:-1;8885:59:35;;;;;;;;8954:57;8885:59;;;2379:540;-1:-1:-1;585:11320:35;;;8954:57;;8983:15;585:11320;;2119:1;8954:57;;585:11320;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;;;;8954:57;;;;;;;;;585:11320;8954:57;585:11320;8954:57;585:11320;8954:57;-1:-1:-1;8954:57:35;;;2379:540;585:11320;;;9055:104;;;;;585:11320;9055:104;;;2119:1;9055:104;;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9055:104;;;;;;;-1:-1:-1;;;9055:104:35;;;2379:540;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;9175:61;;585:11320;;9175:61;585:11320;;2552:28;585:11320;2552:28;;585:11320;;;;;;2552:28;;;;;:::i;9055:104::-;585:11320;9055:104;;9175:61;9055:104;;;;;585:11320;9055:104;585:11320;9055:104;;;;;;;:::i;:::-;;;;;;;;;8954:57;;;585:11320;8954:57;585:11320;8954:57;;;;;;;:::i;:::-;;;;;8885:59;;;585:11320;8885:59;585:11320;8885:59;;;;;;;:::i;:::-;;;;;8767:48;;;;585:11320;8767:48;585:11320;8767:48;;;;;;;:::i;:::-;;;;2379:540;585:11320;;;;;;;2601:61;;;585:11320;;3506:75;;;585:11320;;;;;;;;;2119:1;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2119:1;585:11320;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;3596:15;;;:26;3592:56;;585:11320;3677:9;;;:::i;:::-;;585:11320;;10077:802;-1:-1:-1;10228:11:35;;10224:320;;585:11320;10553:320;;585:11320;-1:-1:-1;;585:11320:35;;;3779:59;;585:11320;3811:15;585:11320;2119:1;3779:59;;585:11320;;;;;;;;;;;3779:59;585:11320;;;-1:-1:-1;3779:59:35;;;;;;;;;585:11320;;;;;;;;;;;;;;;;3868:25;-1:-1:-1;3868:25:35;;;;;;;;585:11320;3868:25;;;;:::i;:::-;;:28;585:11320;;;;;;;3942:47;;;;;585:11320;3942:47;;;2119:1;3942:47;;585:11320;;;;;;;;;:::i;:::-;3942:47;;;;;;;;;;-1:-1:-1;3942:47:35;;;585:11320;;;;;;;;;;;;;4027:43;;;;;:::i;:::-;585:11320;4085:35;4081:91;;585:11320;;4192:89;;;;;;;2119:1;4192:89;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;4192:89;;;-1:-1:-1;4192:89:35;;;;;;;;;-1:-1:-1;4192:89:35;;;585:11320;;;;;;;;;;;;4296:27;;;;:::i;:::-;585:11320;4296:45;4292:101;;4435:10;;;:::i;:::-;585:11320;;;;;;;;;;;;4447:27;;4408:67;4447:27;;;;;;;;:::i;:::-;585:11320;;;;;;;;;;4408:67;585:11320;;;;;;;2773:19;;;;585:11320;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;2773:19;;;;;;;;;;;;;;:::i;585:11320::-;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4292:101;2119:1;585:11320;;4364:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4192:89;;;;;;;-1:-1:-1;4192:89:35;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;4081:91;2119:1;585:11320;;4143:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3942:47;;;;;;-1:-1:-1;3942:47:35;;;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3779:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10553:320;10588:31;;;;;10553:320;10584:279;;;10643:9;;;;10639:53;;449:42:37;10711:39:35;;;;;585:11320;2119:1;585:11320;;;10711:39;;;;585:11320;10711:39;;10643:9;10711:39;;;;;;;;;10584:279;;;;10553:320;;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;;;;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;;10259:14:35;;;:31;;;10224:320;10255:279;;;10314:9;;:20;10310:53;;10382:39;;;;;-1:-1:-1;2119:1:35;585:11320;;;10382:39;;;;585:11320;10382:39;;10314:9;10382:39;;;;;;;;;10255:279;;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10310:53;2119:1;585:11320;;10343:20;;;;10255:279;-1:-1:-1;585:11320:35;;;10460:59;;585:11320;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;10504:4;585:11320;;;-1:-1:-1;10460:59:35;;;;;;;;;;;;10255:279;;10224:320;;10460:59;;;;;;;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;3592:56;2119:1;585:11320;;3631:17;;;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2597:322;2825:23;;;;;-1:-1:-1;2813:35:35;;2809:110;;2119:1;585:11320;;2935:17;;;;2809:110;585:11320;;;;9621:40;;;;;585:11320;;;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;9690:35;585:11320;9690:35;;585:11320;9690:35;;;2119:1;9690:35;;;;;;;;;;585:11320;9690:35;-1:-1:-1;9690:35:35;;;2809:110;-1:-1:-1;585:11320:35;;;9736:59;;585:11320;;;2119:1;9736:59;;585:11320;9781:4;585:11320;;;;;;;;;;;;;9781:4;585:11320;;;-1:-1:-1;585:11320:35;9736:59;;;;;;;;2809:110;-1:-1:-1;585:11320:35;;;9805:45;;585:11320;;;2119:1;9805:45;;585:11320;;;;;;;;;;;;;;;;-1:-1:-1;;9805:45:35;;;;;;;;2809:110;9861:44;;;;;;585:11320;;9861:44;;;2119:1;9861:44;;585:11320;;;;;;;;;;-1:-1:-1;585:11320:35;;;-1:-1:-1;9861:44:35;;;;;;;;9973:26;9861:44;;9973:26;9861:44;;;;;2809:110;585:11320;9921:35;585:11320;;;;;;9921:35;585:11320;9973:26;;;;;585:11320;;;;;;;;;;;;;;;;;9861:44;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9805:45;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9736:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9690:35;;;;;;;;;;;;;;:::i;:::-;;;;2034:43;:10;;:43;;;585:11320;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::o;:::-;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;5739:1:36;585:11320:35;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;4296:198:36:-;4414:25;585:11320:35;4296:198:36;4414:25;585:11320:35;;4414:25:36;;;;585:11320:35;4414:25:36;;585:11320:35;4414:25:36;;;;;;4456:31;4414:25;;;;;;;4296:198;4456:31;;:::i;4414:25::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320:35;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;5739:1:36;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;585:11320:35;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;:::o;2018:1867:36:-;;;;;;;585:11320:35;;;2252:33:36;;;;;585:11320:35;2252:33:36;585:11320:35;;;;2252:33:36;;;;;;;2240:46;2252:33;2247:38;2252:33;;;;;2018:1867;2247:38;;:::i;:::-;2240:46;:::i;:::-;585:11320:35;;;2333:33:36;;;2252;585:11320:35;2252:33:36;585:11320:35;;;;2333:33:36;;;;;;;2321:46;2333:33;2328:38;2333:33;2252;2333;;;2328:38;;:::i;2321:46::-;585:11320:35;;;2491:42:36;585:11320:35;2491:42:36;;2252:33;2491:42;2252:33;2491:42;1300;2491;;;;;;;2429:105;2491:42;585:11320:35;2491:42:36;2252:33;2491:42;;;2018:1867;-1:-1:-1;585:11320:35;;;2429:105:36;;585:11320:35;;;;2252:33:36;2429:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2429:105:36;;;1300:42;2429:105;;;;;;;2252:33;;;2429:105;;;2018:1867;-1:-1:-1;585:11320:35;;;2560:63:36;;585:11320:35;;;;2252:33:36;2560:63;;585:11320:35;;;;;;;;;;;;;;;2252:33:36;585:11320:35;;;1394:42:36;2560:63;;;;;;;2252:33;2560:63;2651:52;2560:63;2252:33;2560:63;;;2018:1867;-1:-1:-1;585:11320:35;;;2651:52:36;;585:11320:35;;;;2252:33:36;2651:52;;585:11320:35;;;;;;;;;;;;;;;;;;2651:52:36;;;1394:42;2651:52;;;;;;;;;2252:33;2651:52;;;2018:1867;-1:-1:-1;2847:6:36;;;2252:33;2846:74;;2833:87;2931:20;2966:11;;2962:259;2966:11;;;3008:78;;;;;;;;:::i;:::-;2962:259;;3235:17;;3231:85;;3386:22;;;:::i;:::-;3457:28;;;;;;;3499;;;;;;;585:11320:35;;3561:42:36;585:11320:35;3561:42:36;;2252:33;3561:42;2252:33;3561:42;1300;3561;;;;;;;585:11320:35;2252:33:36;3561:42;;;585:11320:35;3561:42:36;2252:33;3561:42;;;;;3499:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;3430:183:36;;;585:11320:35;;;;3430:183:36;;585:11320:35;;3430:183:36;;;585:11320:35;3418:195:36;;;:::i;:::-;;;;;:::i;:::-;;3631:28;;;;;;;585:11320:35;;3624:76:36;;;;;585:11320:35;3624:76:36;;1300:42;2252:33;3624:76;;585:11320:35;;;;;;;3624:76:36;;;;;;;585:11320:35;3624:76:36;2252:33;3624:76;;;3631:28;585:11320:35;;;3732:107:36;;;;;585:11320:35;3732:107:36;;2252:33;3732:107;;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;3816:4:36;585:11320:35;;;;3823:15:36;585:11320:35;;;;3732:107:36;;;1300:42;3732:107;;;;;;;2252:33;3732:107;;;3850:28;;2018:1867;:::o;3732:107::-;;;;;;2252:33;3732:107;;;;;;:::i;:::-;3850:28;2018:1867;:::o;3624:76::-;;;2252:33;3624:76;2252:33;3624:76;;;;;;;:::i;:::-;;;;;3631:28;;;;;3561:42;;;;;;;;;;;;;;;;;:::i;:::-;;;;;3499:28;;;;3457;;;;;3231:85;585:11320:35;;;;;;;;;;;:::i;:::-;3290:1:36;585:11320:35;;;;2252:33:36;585:11320:35;;;3268:37:36;;:::o;2962:259::-;3132:78;;;;;:::i;:::-;2962:259;;;2846:74;2866:6;;;2876:4;2865:55;2846:74;;;2865:55;2883:17;;;;:::i;:::-;2903;;;;:::i;:::-;-1:-1:-1;2865:55:36;;2651:52;;;;;2252:33;2651:52;;2252:33;2651:52;;;;;;2252:33;2651:52;;;:::i;:::-;;;585:11320:35;;;;;;;2651:52:36;;;;;;;-1:-1:-1;2651:52:36;;2560:63;;;;;;;;;;;;;;:::i;:::-;;;;2429:105;;;;;;;;585:11320:35;2429:105:36;585:11320:35;2429:105:36;;;;;;;:::i;:::-;;;;;;;;2491:42;;;;2252:33;2491:42;2252:33;2491:42;;;;;;;:::i;:::-;;;;2333:33;;;;2252;2333;2252;2333;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;3891:399;;;;;;4080:204;;;4126:10;4166;4122:14;4162;4126:10;;;;:::i;:::-;585:11320:35;4122:14:36;;:::i;:::-;4166:10;;:::i;4080:204::-;4263:10;4219:14;4259;4223:10;;;;;;:::i;4219:14::-;4263:10;;:::i;4259:14::-;4080:204;3891:399::o;1084:3::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::o;:::-;;;;;;;;;;1207:42;;;;;;;;;;;;585:11320:35;;;;1207:42:36;585:11320:35;;;;;1207:42:36;585:11320:35;;:::i;:::-;1207:42:36;;;-1:-1:-1;1207:42:36;;;;:::o;:::-;585:11320:35;1207:42:36;:::o;:::-;;;;:::o;:::-;;585:11320:35;;1207:42:36;;;;;;;;;;;;585:11320:35;1207:42:36;585:11320:35;;;1207:42:36;;14165:1738;;;;;585:11320:35;;;14417:33:36;;;;;585:11320:35;14417:33:36;585:11320:35;;;;14417:33:36;;;;;;;14405:46;14417:33;14412:38;14417:33;;;;;14412:38;;:::i;14405:46::-;585:11320:35;;;14498:33:36;;;14417;585:11320:35;14417:33:36;585:11320:35;;;;14498:33:36;;;;;;;14486:46;14498:33;14493:38;14498:33;14417;14498;;;14493:38;;:::i;14486:46::-;585:11320:35;;;14656:42:36;585:11320:35;14656:42:36;;14417:33;14656:42;14417:33;14656:42;1300;14656;;;;;;;14594:105;14656:42;585:11320:35;14656:42:36;14417:33;14656:42;;;14165:1738;-1:-1:-1;585:11320:35;;;14594:105:36;;585:11320:35;;;;14417:33:36;14594:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14594:105:36;;;1300:42;14594:105;;;;;;;14417:33;;;14594:105;;;14165:1738;-1:-1:-1;585:11320:35;;;14725:63:36;;585:11320:35;;;;14417:33:36;14725:63;;585:11320:35;;;;;;;;;;;;;;;14417:33:36;585:11320:35;;;1394:42:36;14725:63;;;;;;;14417:33;14725:63;14816:52;14725:63;14417:33;14725:63;;;-1:-1:-1;585:11320:35;;;14816:52:36;;585:11320:35;;;;14417:33:36;14816:52;;585:11320:35;;;;;;;;;;;;;;;;;;14816:52:36;;;1394:42;14816:52;;;;;;;;;14417:33;14816:52;;;14165:1738;-1:-1:-1;15012:6:36;;;14417:33;15011:74;;14998:87;15096:20;15131:11;;15127:259;15131:11;;;15173:78;;;;;;;;:::i;:::-;15127:259;;15399:17;;15395:85;;15548:22;;;:::i;:::-;15619:28;;;;;;;15661;;;;;;;585:11320:35;;;15723:42:36;;14417:33;15723:42;14417:33;15723:42;1300;15723;;;;;;585:11320:35;15723:42:36;14417:33;15723:42;585:11320:35;15723:42:36;;;;;15661:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;14417:33:36;15592:183;;585:11320:35;;;;15592:183:36;;585:11320:35;;15592:183:36;;;585:11320:35;15580:195:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;15796:61:36;;;;;585:11320:35;15796:61:36;;14417:33;15796:61;;585:11320:35;;;;;;;;;;;:::i;:::-;15796:61:36;;1300:42;15796:61;;;;;;;14417:33;15796:61;;;15868:28;;14165:1738;:::o;15723:42::-;;;;;;;14417:33;15723:42;14417:33;15723:42;;;;;;;:::i;:::-;;;;;15661:28;;;;;;15619;;;;;15127:259;15297:78;;;;;:::i;:::-;15127:259;;;15011:74;15031:6;;;15041:4;15030:55;15011:74;;;15030:55;15048:17;;;;:::i;:::-;15068;;;;:::i;:::-;-1:-1:-1;15030:55:36;;14816:52;;;;;14417:33;14816:52;;14417:33;14816:52;;;;;;14417:33;14816:52;;;:::i;:::-;;;585:11320:35;;;;;;;14816:52:36;;;;;;;-1:-1:-1;14816:52:36;;14594:105;;;;;;;;585:11320:35;14594:105:36;585:11320:35;14594:105:36;;;;;;;:::i;:::-;;;;;;;;14656:42;;;;14417:33;14656:42;14417:33;14656:42;;;;;;;:::i;:::-;;;;8427:1417;;1041:4;8581:150;;;;;;;;;;;;;;;;;;;;8745:10;;8741:179;;8938:19;;;585:11320:35;;;8996:71:36;;;9233:12;;9248:1;585:11320:35;;;;;;;9497:12:36;9218:32;;;9260:70;;;9407:72;9248:1;9407:72;;-1:-1:-1;9407:72:36;;;9076:117;;;;;;9497:12;:::i;:::-;9076:117;;9340:58;9488:21;1084:3;9535:1;1084:3;;9535:1;1084:3;;;;;;9554:1;9534:21;;;9576:17;;;;:::i;:::-;585:11320:35;;;;;;;9565:28:36;;;:::i;:::-;9614:17;;;;:::i;:::-;585:11320:35;;;;;;;9603:28:36;;;:::i;:::-;9652:17;;;;:::i;:::-;585:11320:35;;;;;;;9641:28:36;;;:::i;:::-;9690:17;;;;:::i;:::-;585:11320:35;;;;;;;9679:28:36;;;:::i;:::-;9728:17;;;;:::i;:::-;585:11320:35;;;;;;;;9766:17:36;9717:28;;;;:::i;:::-;9766:17;;;:::i;:::-;585:11320:35;;;;;;;9803:11:36;9755:28;;;;:::i;:::-;9803:11;;:::i;8741:179::-;8779:15;;;;;;585:11320:35;;8809:74:36;8896:13;:::o;10340:1748::-;;10666:8;10340:1748;10643:8;10340:1748;10621:8;10340:1748;10688:8;10340:1748;;;;;;;;10621:8;:::i;:::-;10643;;:::i;:::-;10666;;:::i;:::-;10688;;:::i;:::-;999:4;;10758:5;;;;;;:::i;:::-;1084:3;10794:5;;10830;10794;;;;;:::i;:::-;1084:3;10830:5;;;:::i;:::-;1084:3;;10853:1229;;;10887:7;;;;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;10905:5;10886:25;10905:5;10886:32;10905:5;;:::i;:::-;10886:25;;:::i;:::-;:32;:::i;10853:1229::-;10950:2;10939:13;;;;;;;10935:1147;10950:2;;;11033:7;;;;:::i;:::-;11045:9;;1084:3;;;;;;;;;;;11062:1;1084:3;11062:1;1084:3;;;;;;11045:23;;;:::i;:::-;11071:9;;1084:3;;;;;;;;;;11236:7;11045:40;;11032:54;11045:40;11119:26;11045:40;;:::i;11032:54::-;11119:26;:::i;:::-;11236:7;;:::i;:::-;11228:4;;1084:3;;;;;;;;;;11328:5;11217:27;;;;:::i;:::-;11328:5;;:::i;:::-;11320:4;;1084:3;;;;;;;;;;;;;;;;;;;;;;;;11474:15;11421:31;;;;:::i;10935:1147::-;11627:7;;;;:::i;:::-;11639:6;;1084:3;;;;;;;;;;11639:16;;;;:::i;:::-;11658:6;;1084:3;;;;;;;;;;11819:7;11639:30;;11626:44;11639:30;11703:26;11639:30;;:::i;11819:7::-;1084:3;;11812;1084;;11812;1084;;;;;11910:5;11801:26;;;;:::i;11910:5::-;1084:3;;11903;1084;;11903;1084;;;;;;;;;;;;;;;;;;;12056:15;12003:31;;;;:::i;550:1391:39:-;645:6;;641:20;;835:14;875:1;900:35;894:41;;;890:116;;550:1391;1535:3;1023:25;1029:19;1881:5;1023:25;;;1019:99;;550:1391;1141:11;1135:17;;;1131:91;;550:1391;1245:7;1239:13;;;1235:86;;550:1391;1344:5;1338:11;;;1334:83;;550:1391;1440:4;1434:10;;;1430:82;;550:1391;1529:9;;1525:55;;550:1391;1602:5;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1636:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1670:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1704:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1738:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1772:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1806:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1881:5:39;;;:::i;:::-;1908:6;;;;;;:15;550:1391;:::o;1908:15::-;;;550:1391;:::o;1525:55::-;875:1;585:11320:35;1525:55:39;;1430:82;585:11320:35;;;1496:1:39;585:11320:35;1430:82:39;;;1334:83;1376:1;585:11320:35;;;;1334:83:39;;;1235:86;1279:2;585:11320:35;;1305:1:39;585:11320:35;1235:86:39;;;1131:91;1179:2;585:11320:35;;1205:2:39;585:11320:35;1131:91:39;;;1019:99;1075:2;585:11320:35;;1101:2:39;585:11320:35;1019:99:39;;;890:116;-1:-1:-1;;962:3:39;585:11320:35;;;;890:116:39;;641:20;653:8;650:1;653:8;:::o","linkReferences":{},"immutableReferences":{"37821":[{"start":1548,"length":32}],"37824":[{"start":1650,"length":32}],"37827":[{"start":1759,"length":32},{"start":2322,"length":32}],"38719":[{"start":1230,"length":32},{"start":5238,"length":32},{"start":5396,"length":32},{"start":5758,"length":32},{"start":7600,"length":32},{"start":8506,"length":32}],"38722":[{"start":1340,"length":32},{"start":2724,"length":32},{"start":7370,"length":32}]}},"methodIdentifiers":{"_plugin()":"0cfd9ad4","aerodromeFactory()":"c45acd23","aerodromeRouter()":"e18e3a68","execute(bytes)":"09c5eabe","execute(bytes,address)":"6accdc13","getName()":"17d7de7c","getVersion()":"0d8e6e2c","quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)":"e69224d4"},"rawMetadata":"{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"version\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"plugin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxPriceImpact\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxSlippage\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxValueLoss\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"DeadlineExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"ExecutionFailed\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"IncorrectETHAmount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InsufficientLiquidity\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSelector\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidVersionNumber\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"PoolDoesNotExist\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SlippageExceeded\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UnauthorizedCaller\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"rewardToken\",\"type\":\"address\"}],\"name\":\"AeroRewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"poolAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"FeesWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"LPTokenStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recepient\",\"type\":\"address\"}],\"name\":\"LPTokenUnStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenIn\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenOut\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"}],\"name\":\"Swapped\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"_plugin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeFactory\",\"outputs\":[{\"internalType\":\"contract IPoolFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeRouter\",\"outputs\":[{\"internalType\":\"contract IRouter\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getName\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getVersion\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"stable\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"balanceTokenRatio\",\"type\":\"bool\"}],\"name\":\"quoteDepositLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountAOut\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBOut\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"name\":\"Name of the connector\",\"version\":\"Version of the connector\"}},\"execute(bytes)\":{\"params\":{\"data\":\"The encoded parameters for the desired action\"},\"returns\":{\"_0\":\"bytes Encoded return data from the call\"}},\"getName()\":{\"returns\":{\"_0\":\"string The name of the connector\"}},\"getVersion()\":{\"returns\":{\"_0\":\"uint256 The version of the connector\"}},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"params\":{\"amountA\":\"The amount of token A being deposited\",\"amountB\":\"The amount of token B being deposited\",\"balanceTokenRatio\":\"Indicates whether to balance the token ratio with a swap\",\"stable\":\"Indicates whether the pair is a stable pair\",\"tokenA\":\"The address of token A\",\"tokenB\":\"The address of token B\"},\"returns\":{\"amountAOut\":\"The amount of token A expected to be deposited\",\"amountBOut\":\"The amount of token B expected to be deposited\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"_plugin()\":{\"notice\":\"Address of the connector plugin\"},\"constructor\":{\"notice\":\"Initializes the AerodromeConnector\"},\"execute(bytes)\":{\"notice\":\"Executes a liquidity action on Aerodrome\"},\"execute(bytes,address)\":{\"notice\":\"Allows specifying a caller (to be used by the plugin)\"},\"getName()\":{\"notice\":\"Gets the name of the connector\"},\"getVersion()\":{\"notice\":\"Gets the version of the connector\"},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"notice\":\"Quotes the expected amounts of token A and token B to deposit in a liquidity pool\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/connectors/base/aerodrome/main.sol\":\"AerodromeConnector\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/contracts/contracts/interfaces/IPool.sol\":{\"keccak256\":\"0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758\",\"dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c\"]},\"lib/contracts/contracts/interfaces/IRouter.sol\":{\"keccak256\":\"0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07\",\"dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj\"]},\"lib/contracts/contracts/interfaces/IWETH.sol\":{\"keccak256\":\"0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53\",\"dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv\"]},\"lib/contracts/contracts/interfaces/factories/IPoolFactory.sol\":{\"keccak256\":\"0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6\",\"dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11\",\"dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq\"]},\"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"src/BaseConnector.sol\":{\"keccak256\":\"0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d\",\"dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS\"]},\"src/connectors/base/aerodrome/events.sol\":{\"keccak256\":\"0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a\",\"dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK\"]},\"src/connectors/base/aerodrome/interface.sol\":{\"keccak256\":\"0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919\",\"dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen\"]},\"src/connectors/base/aerodrome/main.sol\":{\"keccak256\":\"0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c\",\"dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht\"]},\"src/connectors/base/aerodrome/utils.sol\":{\"keccak256\":\"0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335\",\"dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer\"]},\"src/connectors/base/common/constant.sol\":{\"keccak256\":\"0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a\",\"dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]},\"src/lib/Babylonian.sol\":{\"keccak256\":\"0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4\",\"license\":\"GPL-3.0-or-later\",\"urls\":[\"bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419\",\"dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ\"]}},\"version\":1}","metadata":{"compiler":{"version":"0.8.24+commit.e11b9ed9"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"version","type":"uint256"},{"internalType":"address","name":"plugin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"type":"error","name":"AerodromeUtils_ExceededMaxPriceImpact"},{"inputs":[],"type":"error","name":"AerodromeUtils_ExceededMaxSlippage"},{"inputs":[],"type":"error","name":"AerodromeUtils_ExceededMaxValueLoss"},{"inputs":[],"type":"error","name":"DeadlineExpired"},{"inputs":[{"internalType":"string","name":"reason","type":"string"}],"type":"error","name":"ExecutionFailed"},{"inputs":[],"type":"error","name":"IncorrectETHAmount"},{"inputs":[],"type":"error","name":"InsufficientLiquidity"},{"inputs":[],"type":"error","name":"InvalidSelector"},{"inputs":[],"type":"error","name":"InvalidVersionNumber"},{"inputs":[],"type":"error","name":"PoolDoesNotExist"},{"inputs":[],"type":"error","name":"SlippageExceeded"},{"inputs":[],"type":"error","name":"UnauthorizedCaller"},{"inputs":[{"internalType":"address","name":"guageAddress","type":"address","indexed":true},{"internalType":"address","name":"rewardToken","type":"address","indexed":true}],"type":"event","name":"AeroRewardsClaimed","anonymous":false},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address","indexed":true},{"internalType":"address","name":"token0","type":"address","indexed":false},{"internalType":"uint256","name":"amount0","type":"uint256","indexed":false},{"internalType":"address","name":"token1","type":"address","indexed":false},{"internalType":"uint256","name":"amount1","type":"uint256","indexed":false}],"type":"event","name":"FeesWithdrawn","anonymous":false},{"inputs":[{"internalType":"address","name":"guageAddress","type":"address","indexed":true},{"internalType":"uint256","name":"amount","type":"uint256","indexed":false}],"type":"event","name":"LPTokenStaked","anonymous":false},{"inputs":[{"internalType":"address","name":"guageAddress","type":"address","indexed":true},{"internalType":"uint256","name":"amount","type":"uint256","indexed":false},{"internalType":"address","name":"recepient","type":"address","indexed":true}],"type":"event","name":"LPTokenUnStaked","anonymous":false},{"inputs":[{"internalType":"address","name":"tokenA","type":"address","indexed":true},{"internalType":"address","name":"tokenB","type":"address","indexed":true},{"internalType":"uint256","name":"amountA","type":"uint256","indexed":false},{"internalType":"uint256","name":"amountB","type":"uint256","indexed":false},{"internalType":"uint256","name":"liquidity","type":"uint256","indexed":false}],"type":"event","name":"LiquidityAdded","anonymous":false},{"inputs":[{"internalType":"address","name":"tokenA","type":"address","indexed":true},{"internalType":"address","name":"tokenB","type":"address","indexed":true},{"internalType":"uint256","name":"amountA","type":"uint256","indexed":false},{"internalType":"uint256","name":"amountB","type":"uint256","indexed":false},{"internalType":"uint256","name":"liquidity","type":"uint256","indexed":false}],"type":"event","name":"LiquidityRemoved","anonymous":false},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address","indexed":true},{"internalType":"address","name":"tokenOut","type":"address","indexed":true},{"internalType":"uint256","name":"amountIn","type":"uint256","indexed":false},{"internalType":"uint256","name":"amountOut","type":"uint256","indexed":false}],"type":"event","name":"Swapped","anonymous":false},{"inputs":[],"stateMutability":"view","type":"function","name":"_plugin","outputs":[{"internalType":"address","name":"","type":"address"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"aerodromeFactory","outputs":[{"internalType":"contract IPoolFactory","name":"","type":"address"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"aerodromeRouter","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}]},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"function","name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}]},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"address","name":"caller","type":"address"}],"stateMutability":"payable","type":"function","name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"getVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}]},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"uint256","name":"amountA","type":"uint256"},{"internalType":"uint256","name":"amountB","type":"uint256"},{"internalType":"bool","name":"balanceTokenRatio","type":"bool"}],"stateMutability":"view","type":"function","name":"quoteDepositLiquidity","outputs":[{"internalType":"uint256","name":"amountAOut","type":"uint256"},{"internalType":"uint256","name":"amountBOut","type":"uint256"}]},{"inputs":[],"stateMutability":"payable","type":"receive"}],"devdoc":{"kind":"dev","methods":{"constructor":{"params":{"name":"Name of the connector","version":"Version of the connector"}},"execute(bytes)":{"params":{"data":"The encoded parameters for the desired action"},"returns":{"_0":"bytes Encoded return data from the call"}},"getName()":{"returns":{"_0":"string The name of the connector"}},"getVersion()":{"returns":{"_0":"uint256 The version of the connector"}},"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)":{"params":{"amountA":"The amount of token A being deposited","amountB":"The amount of token B being deposited","balanceTokenRatio":"Indicates whether to balance the token ratio with a swap","stable":"Indicates whether the pair is a stable pair","tokenA":"The address of token A","tokenB":"The address of token B"},"returns":{"amountAOut":"The amount of token A expected to be deposited","amountBOut":"The amount of token B expected to be deposited"}}},"version":1},"userdoc":{"kind":"user","methods":{"_plugin()":{"notice":"Address of the connector plugin"},"constructor":{"notice":"Initializes the AerodromeConnector"},"execute(bytes)":{"notice":"Executes a liquidity action on Aerodrome"},"execute(bytes,address)":{"notice":"Allows specifying a caller (to be used by the plugin)"},"getName()":{"notice":"Gets the name of the connector"},"getVersion()":{"notice":"Gets the version of the connector"},"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)":{"notice":"Quotes the expected amounts of token A and token B to deposit in a liquidity pool"}},"version":1}},"settings":{"remappings":["@aerodrome/contracts/=lib/contracts/","@coinbase/smart-wallet/=lib/smart-wallet/","@opengsn/=lib/contracts/lib/gsn/packages/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@uniswap/v3-core/=lib/contracts/lib/v3-core/","FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/","account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/","contracts/=lib/contracts/contracts/","ds-test/=lib/contracts/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","gsn/=lib/contracts/lib/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/","p256-verifier/=lib/smart-wallet/lib/p256-verifier/","safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/","smart-wallet/=lib/smart-wallet/","solady/=lib/smart-wallet/lib/solady/src/","utils/=lib/contracts/test/utils/","v3-core/=lib/contracts/lib/v3-core/","webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/"],"optimizer":{"enabled":true,"runs":1000000},"metadata":{"bytecodeHash":"none","appendCBOR":false},"compilationTarget":{"src/connectors/base/aerodrome/main.sol":"AerodromeConnector"},"evmVersion":"cancun","libraries":{},"viaIR":true},"sources":{"lib/contracts/contracts/interfaces/IPool.sol":{"keccak256":"0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f","urls":["bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758","dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c"],"license":"MIT"},"lib/contracts/contracts/interfaces/IRouter.sol":{"keccak256":"0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def","urls":["bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07","dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj"],"license":"MIT"},"lib/contracts/contracts/interfaces/IWETH.sol":{"keccak256":"0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec","urls":["bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53","dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv"],"license":"MIT"},"lib/contracts/contracts/interfaces/factories/IPoolFactory.sol":{"keccak256":"0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a","urls":["bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6","dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol":{"keccak256":"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7","urls":["bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db","dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"keccak256":"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330","urls":["bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf","dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol":{"keccak256":"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261","urls":["bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11","dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol":{"keccak256":"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8","urls":["bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621","dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL"],"license":"MIT"},"src/BaseConnector.sol":{"keccak256":"0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6","urls":["bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d","dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS"],"license":"MIT"},"src/connectors/base/aerodrome/events.sol":{"keccak256":"0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c","urls":["bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a","dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK"],"license":"MIT"},"src/connectors/base/aerodrome/interface.sol":{"keccak256":"0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971","urls":["bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919","dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen"],"license":"MIT"},"src/connectors/base/aerodrome/main.sol":{"keccak256":"0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c","urls":["bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c","dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht"],"license":"GNU"},"src/connectors/base/aerodrome/utils.sol":{"keccak256":"0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3","urls":["bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335","dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer"],"license":"GNU"},"src/connectors/base/common/constant.sol":{"keccak256":"0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132","urls":["bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a","dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ"],"license":"MIT"},"src/interface/IConnector.sol":{"keccak256":"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04","urls":["bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973","dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a"],"license":"MIT"},"src/lib/Babylonian.sol":{"keccak256":"0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4","urls":["bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419","dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ"],"license":"GPL-3.0-or-later"}},"version":1},"id":35} \ No newline at end of file +{ + "abi": [ + { + "type": "constructor", + "inputs": [ + { "name": "name", "type": "string", "internalType": "string" }, + { "name": "version", "type": "uint256", "internalType": "uint256" }, + { "name": "plugin", "type": "address", "internalType": "address" } + ], + "stateMutability": "nonpayable" + }, + { "type": "receive", "stateMutability": "payable" }, + { + "type": "function", + "name": "_plugin", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "address" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "aerodromeFactory", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "contract IPoolFactory" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "aerodromeRouter", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "contract IRouter" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "execute", + "inputs": [{ "name": "data", "type": "bytes", "internalType": "bytes" }], + "outputs": [{ "name": "", "type": "bytes", "internalType": "bytes" }], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "execute", + "inputs": [ + { "name": "data", "type": "bytes", "internalType": "bytes" }, + { "name": "caller", "type": "address", "internalType": "address" } + ], + "outputs": [{ "name": "", "type": "bytes", "internalType": "bytes" }], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "getName", + "inputs": [], + "outputs": [{ "name": "", "type": "string", "internalType": "string" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "getVersion", + "inputs": [], + "outputs": [{ "name": "", "type": "uint256", "internalType": "uint256" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "quoteDepositLiquidity", + "inputs": [ + { "name": "tokenA", "type": "address", "internalType": "address" }, + { "name": "tokenB", "type": "address", "internalType": "address" }, + { "name": "stable", "type": "bool", "internalType": "bool" }, + { "name": "amountA", "type": "uint256", "internalType": "uint256" }, + { "name": "amountB", "type": "uint256", "internalType": "uint256" }, + { "name": "balanceTokenRatio", "type": "bool", "internalType": "bool" } + ], + "outputs": [ + { "name": "amountAOut", "type": "uint256", "internalType": "uint256" }, + { "name": "amountBOut", "type": "uint256", "internalType": "uint256" } + ], + "stateMutability": "view" + }, + { + "type": "event", + "name": "AeroRewardsClaimed", + "inputs": [ + { "name": "guageAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "rewardToken", "type": "address", "indexed": true, "internalType": "address" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "FeesWithdrawn", + "inputs": [ + { "name": "poolAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "token0", "type": "address", "indexed": false, "internalType": "address" }, + { "name": "amount0", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "token1", "type": "address", "indexed": false, "internalType": "address" }, + { "name": "amount1", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LPTokenStaked", + "inputs": [ + { "name": "guageAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amount", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LPTokenUnStaked", + "inputs": [ + { "name": "guageAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amount", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "recepient", "type": "address", "indexed": true, "internalType": "address" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LiquidityAdded", + "inputs": [ + { "name": "tokenA", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "tokenB", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amountA", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "amountB", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "liquidity", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LiquidityRemoved", + "inputs": [ + { "name": "tokenA", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "tokenB", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amountA", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "amountB", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "liquidity", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "Swapped", + "inputs": [ + { "name": "tokenIn", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "tokenOut", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amountIn", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "amountOut", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { "type": "error", "name": "AerodromeUtils_ExceededMaxPriceImpact", "inputs": [] }, + { "type": "error", "name": "AerodromeUtils_ExceededMaxSlippage", "inputs": [] }, + { "type": "error", "name": "AerodromeUtils_ExceededMaxValueLoss", "inputs": [] }, + { "type": "error", "name": "DeadlineExpired", "inputs": [] }, + { "type": "error", "name": "ExecutionFailed", "inputs": [{ "name": "reason", "type": "string", "internalType": "string" }] }, + { "type": "error", "name": "IncorrectETHAmount", "inputs": [] }, + { "type": "error", "name": "InsufficientLiquidity", "inputs": [] }, + { "type": "error", "name": "InvalidSelector", "inputs": [] }, + { "type": "error", "name": "InvalidVersionNumber", "inputs": [] }, + { "type": "error", "name": "PoolDoesNotExist", "inputs": [] }, + { "type": "error", "name": "SlippageExceeded", "inputs": [] }, + { "type": "error", "name": "UnauthorizedCaller", "inputs": [] } + ], + "bytecode": { + "object": "0x610120604052346200018057620040c8803803806200001e81620001ac565b928339810190606081830312620001805780516001600160401b0392908381116200018057820181601f8201121562000180578051938411620001985760209362000072601f8201601f19168601620001ac565b92818452858284010111620001805784915f5b828110620001845750505f908301909101528183015160409290920151926001600160a01b0384168403620001805782156200016e57815191012060805260a05260c05273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e4360e05261010073420dd381b31aef6683db6b902084cb0ffece40da8152604051613ef59182620001d383396080518261060c015260a05182610672015260c0518281816106df0152610912015260e0518281816104ce01528181611476015281816115140152818161167e01528181611db0015261213a01525181818161053c01528181610aa40152611cca0152f35b60405163ad92452760e01b8152600490fd5b5f80fd5b818101840151858201850152830162000085565b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b03811183821017620001985760405256fe6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056", + "sourceMap": "585:11320:35:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;-1:-1:-1;;;585:11320:35;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;880:13:30;;876:48;;585:11320:35;;;;943:23:30;935:31;;976:19;;1005:17;;768:42:37;1278:43:35;;1331:50;862:42:37;1331:50:35;;585:11320;;;;;;;;935:31:30;585:11320:35;;;;;976:19:30;585:11320:35;;;;;1005:17:30;585:11320:35;;;;;;;;;;1278:43;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:48:30;585:11320:35;;-1:-1:-1;;;902:22:30;;;;;585:11320:35;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;;585:11320:35;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;:::o", + "linkReferences": {} + }, + "deployedBytecode": { + "object": "0x6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056", + "sourceMap": "585:11320:35:-:0;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;12908:63:36;;585:11320:35;;;;;;12908:63:36;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394:42:36;12908:63;;;;;;;585:11320:35;12908:63:36;585:11320:35;12908:63:36;585:11320:35;12908:63:36;;;585:11320:35;;;;;12999:21:36;;;;585:11320:35;12999:21:36;;585:11320:35;12999:21:36;;;;;;;585:11320:35;12999:21:36;;;585:11320:35;13092:26:36;585:11320:35;13133:13:36;585:11320:35;13128:822:36;13148:5;13152:1;13148:5;;;;13128:822;-1:-1:-1;;585:11320:35;;;;13999:89:36;;585:11320:35;;;;;;13999:89:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;585:11320:35;;;;;1300:42:36;;;585:11320:35;-1:-1:-1;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;13999:89;;1300:42;13999:89;;;;;;;585:11320:35;13999:89:36;585:11320:35;;;13999:89:36;;;13128:822;585:11320:35;;;;;;;;;;;13999:89:36;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;585:11320:35;;;;;;;;;13155:3:36;585:11320:35;;;;;;13174:304:36;;13155:3;585:11320:35;;13582:92:36;585:11320:35;13582:92:36;;585:11320:35;;;;;13582:92:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;;;;;;1300:42:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;;13582:92:36;1300:42;13582:92;1300:42;13582:92;;;;;;13780:31;13582:92;585:11320:35;;;;13582:92:36;;;13155:3;13689:31;;;13734;13689;;;:::i;:::-;13734;;:::i;:::-;13780;;:::i;:::-;585:11320:35;;;;;;13830:29:36;;13155:3;13826:40;;585:11320:35;;13133:13:36;;;13826:40;13861:5;;13830:29;585:11320:35;;;;13830:29:36;;13582:92;13734:31;13582:92;;13689:31;13582:92;;;;;585:11320:35;13582:92:36;585:11320:35;13582:92:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;-1:-1:-1;13582:92:36;;;;;;;;13174:304;13401:62;585:11320:35;;13281:72:36;585:11320:35;;;;;;;13281:72:36;:::i;:::-;13401:62;;;;:::i;:::-;13372:91;;13174:304;;12999:21;;;;;585:11320:35;12999:21:36;585:11320:35;12999:21:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;12908:63;;;;;;;;;;;;;;:::i;:::-;;;;585:11320:35;;;;;;;;;;;;;;;;;;;664:40;585:11320;;;;;;;;;;;;;;;;;;;710:46;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1252:5:30;1235:23;;;585:11320:35;1235:23:30;;;;;;:::i;585:11320:35:-;;;;;;;;;;;;;;1469:8:30;585:11320:35;;;;;;;;;;;;;;;;;;530:32:30;585:11320:35;;;;;;;;;;;;;;;;;;;1712:25;585:11320;;;;;;;;:::i;:::-;1726:10;1712:25;;:::i;585:11320::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;1820:1139::-;;-1:-1:-1;;1820:1139:35;2034:10;2048:7;585:11320;;2034:21;585:11320;;2034:43;;585:11320;2119:1;585:11320;;;;;;;;2137:49;;585:11320;;2258:44;-1:-1:-1;5124:19:35;-1:-1:-1;5145:26:35;585:11320;;5145:26;-1:-1:-1;5497:106:35;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;5618:15;:26;5614:56;;585:11320;;;5696:48;;5187:416;;;;585:11320;;;;2119:1;5696:48;;585:11320;;;;;;;;;;;;;;;;;;;;5696:48;:16;585:11320;5696:16;585:11320;5696:48;;;;;;;-1:-1:-1;5696:48:35;;;2133:786;585:11320;;;;5758:18;5754:49;;-1:-1:-1;585:11320:35;;;;10224:320;;2133:786;585:11320;;;;10553:320;;2133:786;5917:33;;;;;:::i;:::-;585:11320;;;;;5961:31;;585:11320;;;;6002:31;;-1:-1:-1;6081:13:35;;6096:5;6100:1;6096:5;;;;;6076:1344;4624:18:36;;;;;:::i;:::-;12368:5;;;;;;;12376;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;585:11320:35;4672:50:36;;;;:::i;:::-;4736:27;4732:79;;585:11320:35;;;5176:63:36;;5187:416:35;;;;585:11320;;;;2119:1;5176:63:36;;585:11320:35;;;;;;;;;;;;;;;;;;1394:42:36;5176:63;;;;;;;585:11320:35;5176:63:36;585:11320:35;5176:63:36;-1:-1:-1;5176:63:36;;;12368:21;585:11320:35;2119:1;585:11320;;5268:21:36;;;;585:11320:35;5268:21:36;;585:11320:35;5268:21:36;;;;;;;-1:-1:-1;5268:21:36;;;12368;-1:-1:-1;585:11320:35;;;;5354:90:36;;5187:416:35;;;;585:11320;;;;2119:1;5354:90:36;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;1300:42:36;;;585:11320:35;1300:42:36;;;585:11320:35;;;;;;1300:42:36;585:11320:35;1300:42:36;5354:90;;;;;;;-1:-1:-1;;;5354:90:36;;;12368:21;585:11320:35;;;;;5557:23:36;;:50;;;;12368:21;5553:124;;585:11320:35;5719:22:36;;:::i;:::-;585:11320:35;;;;;;;:::i;:::-;5187:416;;;585:11320;;;5187:416;;;585:11320;;5763:46:36;;585:11320:35;;;;5763:46:36;;585:11320:35;;;5763:46:36;;585:11320:35;5751:58:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;5853:63:36;585:11320:35;5853:63:36;;585:11320:35;;;;2119:1;5853:63:36;;585:11320:35;;;;;;-1:-1:-1;585:11320:35;;;;;;;;:::i;:::-;5853:63:36;;1300:42;5853:63;;;;;;;6185:22;5944:33;5961:16;-1:-1:-1;5853:63:36;585:11320:35;5853:63:36;;;;;12368:21;5961:16;;:::i;:::-;585:11320:35;;;;;5944:33:36;:::i;:::-;12495:17;585:11320:35;;;;;12495:5:36;;;;;12503;585:11320:35;;;;;12503:5:36;:::i;:::-;12495:17;;585:11320:35;;;;;;12495:5:36;;;;;585:11320:35;12503:5:36;585:11320:35;;;12503:5:36;:::i;:::-;12495:17;6185:22;:::i;:::-;585:11320:35;;6145:71:36;;;;;585:11320:35;6145:71:36;;2119:1:35;6145:71:36;;585:11320:35;;;;;;;;;;;:::i;:::-;6145:71:36;;1300:42;6145:71;;;;;;;6245:41;6145:71;-1:-1:-1;6145:71:36;;;12495:17;6245:22;6270:16;6245:22;;;;:::i;:::-;6270:16;;:::i;:::-;585:11320:35;6245:41:36;;:::i;:::-;6595:18;;;6591:183;;12495:17;7332:13;;;;7328:387;;12495:17;7728:13;;7724:387;;12495:17;585:11320:35;;;2323:39;;585:11320;;;;5187:416;;585:11320;5187:416;7737:76;585:11320;5187:416;;585:11320;7737:76;;;;;;;585:11320;;;;;;;;;;;;;;;;;;7737:76;;;;585:11320;;2323:39;;;585:11320;2323:39;;585:11320;;;;;;;;;;;;;;;;;;2323:39;;;;;;;;;:::i;:::-;2316:46;:::o;7724:387:36:-;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7761:14:36;7757:344;449:42:37;;;7842:31:36;;;;;585:11320:35;;;;;;7842:31:36;;;;585:11320:35;7842:31:36;;585:11320:35;;2119:1;7842:31:36;;585:11320:35;7842:31:36;;;;;;;;7757:344;7909:36;;7963:39;7909:36;;;2323:39:35;7909:36:36;2323:39:35;7909:36:36;;;;;;;;;:::i;:::-;;7963:39;:::i;:::-;7724:387;;;;7842:31;;;;;:::i;:::-;585:11320:35;;7842:31:36;;;585:11320:35;;;;7842:31:36;585:11320:35;;;;;;;;;7842:31:36;585:11320:35;;;7757:344:36;-1:-1:-1;585:11320:35;;;8041:45:36;;;;585:11320:35;;;;2119:1;8041:45:36;;585:11320:35;;;;;5187:416;;585:11320;;;;;;;;;;;;;;8041:45:36;;;;;;;;;2323:39:35;8041:45:36;2323:39:35;8041:45:36;;;;7757:344;;;;8041:45;;;585:11320:35;8041:45:36;585:11320:35;8041:45:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;585:11320:35;;;;;;;;;;7328:387:36;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7365:14:36;7361:344;449:42:37;;;7446:31:36;;;;;-1:-1:-1;585:11320:35;;;;;7446:31:36;;;;585:11320:35;7446:31:36;;585:11320:35;;2119:1;7446:31:36;;585:11320:35;7446:31:36;;;;;;;;7361:344;7513:36;7567:39;7513:36;;;;;;;;;;;:::i;7567:39::-;7328:387;;7446:31;;;;;;:::i;:::-;-1:-1:-1;7446:31:36;;;;7361:344;-1:-1:-1;585:11320:35;;;7645:45:36;;;;585:11320:35;;;2119:1;7645:45:36;;585:11320:35;;;;;;;;;;;7645:45:36;5187:416:35;-1:-1:-1;585:11320:35;5187:416;;585:11320;7645:45:36;;;;;;;;7361:344;;7328:387;;7645:45;;;585:11320:35;7645:45:36;585:11320:35;7645:45:36;;;;;;;:::i;:::-;;;;;6591:183;6649:18;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;6714;6648:37;;;;:::i;:::-;6703:14;6699:64;;6591:183;;;;6699:64;2119:1:35;585:11320;;6726:37:36;;;;1084:3;585:11320:35;-1:-1:-1;585:11320:35;;2119:1;585:11320;;-1:-1:-1;585:11320:35;6145:71:36;6245:22;6145:71;;;;;6270:16;6145:71;;;-1:-1:-1;6145:71:36;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;12495:17;;;;;6185:22;:::i;12495:17::-;;;;;5853:63;;;;;;;;;;;;;:::i;:::-;;;;5553:124;2119:1:35;585:11320;;5630:36:36;;;;5557:50;585:11320:35;;;;;5584:23:36;;5557:50;;5354:90;;;;;;;;585:11320:35;5354:90:36;585:11320:35;5354:90:36;;;;;;;:::i;:::-;;;;;;;;5268:21;;;;;585:11320:35;5268:21:36;585:11320:35;5268:21:36;;;;;;;:::i;:::-;;;;;5176:63;;;;;;;;;;;;;;:::i;:::-;;;;4732:79;2119:1:35;585:11320;;4772:39:36;;;;12368:21;12384:5;;;;:::i;:::-;12368:21;;6103:3:35;6122:349;;;;;;;6103:3;585:11320;;;6524:61;;;;6555:15;585:11320;;2119:1;6524:61;;585:11320;;;;;;;;;;;6524:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6524:61;;;;;;;;6103:3;-1:-1:-1;585:11320:35;;;6599:61;;;;6555:15;585:11320;;2119:1;6599:61;;585:11320;;;;;;;;;;;6599:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6599:61;;;;;;;;6103:3;585:11320;;;6749:304;;585:11320;6749:304;;;585:11320;5187:416;;585:11320;2119:1;6749:304;;;585:11320;;5187:416;;585:11320;;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;;;6749:304;;585:11320;;;6749:304;;585:11320;6749:304;;-1:-1:-1;585:11320:35;6555:15;585:11320;6749:304;;;;;;;;;7250:31;6749:304;-1:-1:-1;6749:304:35;;-1:-1:-1;;;;6749:304:35;;;;;6103:3;7159:31;7204;7068;;;;;;;:::i;:::-;;;7113;;;;;;:::i;:::-;;;7159;;;;:::i;:::-;7204;;;;;:::i;:::-;7250;;:::i;:::-;585:11320;;;;7300:29;;6103:3;7296:40;;585:11320;6103:3;;585:11320;6103:3;;6081:13;;;7296:40;7331:5;;7300:29;7311:18;;;7300:29;;6749:304;;;585:11320;6749:304;585:11320;6749:304;;;;7159:31;6749:304;;;7204:31;6749:304;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;6749:304:35;;;6599:61;;;585:11320;6599:61;585:11320;6599:61;;;;;;;:::i;:::-;;;;;6524;;;585:11320;6524:61;585:11320;6524:61;;;;;;;:::i;:::-;;;;;6122:349;6379:77;6229:82;;;;;;585:11320;5187:416;;585:11320;;5187:416;;585:11320;6229:82;:::i;:::-;6379:77;;;;;:::i;:::-;6330:126;;;;6122:349;;10553:320;449:42:37;585:11320:35;5187:416;;585:11320;10588:14;:31;;;10553:320;10584:279;;;585:11320;;;;10643:9;:20;10639:53;;449:42:37;10711:39:35;;;;585:11320;;;10711:39;;10643:9;;2119:1;10643:9;;449:42:37;10711:39:35;;;;;;;;10584:279;;;;10553:320;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;585:11320;;;10711:39;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;;;;;10789:59;5187:416;;585:11320;5187:416;;585:11320;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;585:11320;10789:59;585:11320;10789:59;;;;;;;:::i;:::-;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;585:11320:35;5187:416;;585:11320;10259:14;:31;;;10224:320;10255:279;;;585:11320;;;;10314:9;:20;10310:53;;449:42:37;10382:39:35;;;;585:11320;;;10382:39;;-1:-1:-1;10314:9:35;2119:1;10314:9;;449:42:37;10382:39:35;;;;;;;;10255:279;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;10255:279;585:11320;;;10460:59;;585:11320;;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;;;;5187:416;;585:11320;;;;;;;-1:-1:-1;;585:11320:35;10460:59;;;;;;;;10255:279;10224:320;;10460:59;;;585:11320;10460:59;585:11320;10460:59;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;5754:49;2119:1;585:11320;;5785:18;;;;5696:48;;;;;585:11320;5696:48;585:11320;5696:48;;;;;;;:::i;:::-;;;;;5614:56;2119:1;585:11320;;5653:17;;;;2133:786;2383:52;-1:-1:-1;585:11320:35;2383:52;;585:11320;;8583:91;585:11320;8583:91;585:11320;8583:91;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8689:15;;;:26;8685:56;;585:11320;;;8767:48;;585:11320;;;;2119:1;8767:48;;585:11320;;;;;;;;;;;;;;;;;;;;8767:48;:16;585:11320;8767:16;585:11320;8767:48;;;;;;585:11320;8767:48;-1:-1:-1;8767:48:35;;;2379:540;585:11320;;8829:18;;;8825:49;;585:11320;;;8885:59;;585:11320;;;;;2119:1;8885:59;;585:11320;8927:4;585:11320;;;;;;;;;;;;;;;;;;-1:-1:-1;8885:59:35;;;;;;;;8954:57;8885:59;;;2379:540;-1:-1:-1;585:11320:35;;;8954:57;;8983:15;585:11320;;2119:1;8954:57;;585:11320;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;;;;8954:57;;;;;;;;;585:11320;8954:57;585:11320;8954:57;585:11320;8954:57;-1:-1:-1;8954:57:35;;;2379:540;585:11320;;;9055:104;;;;;585:11320;9055:104;;;2119:1;9055:104;;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9055:104;;;;;;;-1:-1:-1;;;9055:104:35;;;2379:540;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;9175:61;;585:11320;;9175:61;585:11320;;2552:28;585:11320;2552:28;;585:11320;;;;;;2552:28;;;;;:::i;9055:104::-;585:11320;9055:104;;9175:61;9055:104;;;;;585:11320;9055:104;585:11320;9055:104;;;;;;;:::i;:::-;;;;;;;;;8954:57;;;585:11320;8954:57;585:11320;8954:57;;;;;;;:::i;:::-;;;;;8885:59;;;585:11320;8885:59;585:11320;8885:59;;;;;;;:::i;:::-;;;;;8767:48;;;;585:11320;8767:48;585:11320;8767:48;;;;;;;:::i;:::-;;;;2379:540;585:11320;;;;;;;2601:61;;;585:11320;;3506:75;;;585:11320;;;;;;;;;2119:1;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2119:1;585:11320;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;3596:15;;;:26;3592:56;;585:11320;3677:9;;;:::i;:::-;;585:11320;;10077:802;-1:-1:-1;10228:11:35;;10224:320;;585:11320;10553:320;;585:11320;-1:-1:-1;;585:11320:35;;;3779:59;;585:11320;3811:15;585:11320;2119:1;3779:59;;585:11320;;;;;;;;;;;3779:59;585:11320;;;-1:-1:-1;3779:59:35;;;;;;;;;585:11320;;;;;;;;;;;;;;;;3868:25;-1:-1:-1;3868:25:35;;;;;;;;585:11320;3868:25;;;;:::i;:::-;;:28;585:11320;;;;;;;3942:47;;;;;585:11320;3942:47;;;2119:1;3942:47;;585:11320;;;;;;;;;:::i;:::-;3942:47;;;;;;;;;;-1:-1:-1;3942:47:35;;;585:11320;;;;;;;;;;;;;4027:43;;;;;:::i;:::-;585:11320;4085:35;4081:91;;585:11320;;4192:89;;;;;;;2119:1;4192:89;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;4192:89;;;-1:-1:-1;4192:89:35;;;;;;;;;-1:-1:-1;4192:89:35;;;585:11320;;;;;;;;;;;;4296:27;;;;:::i;:::-;585:11320;4296:45;4292:101;;4435:10;;;:::i;:::-;585:11320;;;;;;;;;;;;4447:27;;4408:67;4447:27;;;;;;;;:::i;:::-;585:11320;;;;;;;;;;4408:67;585:11320;;;;;;;2773:19;;;;585:11320;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;2773:19;;;;;;;;;;;;;;:::i;585:11320::-;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4292:101;2119:1;585:11320;;4364:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4192:89;;;;;;;-1:-1:-1;4192:89:35;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;4081:91;2119:1;585:11320;;4143:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3942:47;;;;;;-1:-1:-1;3942:47:35;;;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3779:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10553:320;10588:31;;;;;10553:320;10584:279;;;10643:9;;;;10639:53;;449:42:37;10711:39:35;;;;;585:11320;2119:1;585:11320;;;10711:39;;;;585:11320;10711:39;;10643:9;10711:39;;;;;;;;;10584:279;;;;10553:320;;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;;;;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;;10259:14:35;;;:31;;;10224:320;10255:279;;;10314:9;;:20;10310:53;;10382:39;;;;;-1:-1:-1;2119:1:35;585:11320;;;10382:39;;;;585:11320;10382:39;;10314:9;10382:39;;;;;;;;;10255:279;;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10310:53;2119:1;585:11320;;10343:20;;;;10255:279;-1:-1:-1;585:11320:35;;;10460:59;;585:11320;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;10504:4;585:11320;;;-1:-1:-1;10460:59:35;;;;;;;;;;;;10255:279;;10224:320;;10460:59;;;;;;;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;3592:56;2119:1;585:11320;;3631:17;;;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2597:322;2825:23;;;;;-1:-1:-1;2813:35:35;;2809:110;;2119:1;585:11320;;2935:17;;;;2809:110;585:11320;;;;9621:40;;;;;585:11320;;;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;9690:35;585:11320;9690:35;;585:11320;9690:35;;;2119:1;9690:35;;;;;;;;;;585:11320;9690:35;-1:-1:-1;9690:35:35;;;2809:110;-1:-1:-1;585:11320:35;;;9736:59;;585:11320;;;2119:1;9736:59;;585:11320;9781:4;585:11320;;;;;;;;;;;;;9781:4;585:11320;;;-1:-1:-1;585:11320:35;9736:59;;;;;;;;2809:110;-1:-1:-1;585:11320:35;;;9805:45;;585:11320;;;2119:1;9805:45;;585:11320;;;;;;;;;;;;;;;;-1:-1:-1;;9805:45:35;;;;;;;;2809:110;9861:44;;;;;;585:11320;;9861:44;;;2119:1;9861:44;;585:11320;;;;;;;;;;-1:-1:-1;585:11320:35;;;-1:-1:-1;9861:44:35;;;;;;;;9973:26;9861:44;;9973:26;9861:44;;;;;2809:110;585:11320;9921:35;585:11320;;;;;;9921:35;585:11320;9973:26;;;;;585:11320;;;;;;;;;;;;;;;;;9861:44;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9805:45;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9736:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9690:35;;;;;;;;;;;;;;:::i;:::-;;;;2034:43;:10;;:43;;;585:11320;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::o;:::-;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;5739:1:36;585:11320:35;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;4296:198:36:-;4414:25;585:11320:35;4296:198:36;4414:25;585:11320:35;;4414:25:36;;;;585:11320:35;4414:25:36;;585:11320:35;4414:25:36;;;;;;4456:31;4414:25;;;;;;;4296:198;4456:31;;:::i;4414:25::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320:35;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;5739:1:36;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;585:11320:35;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;:::o;2018:1867:36:-;;;;;;;585:11320:35;;;2252:33:36;;;;;585:11320:35;2252:33:36;585:11320:35;;;;2252:33:36;;;;;;;2240:46;2252:33;2247:38;2252:33;;;;;2018:1867;2247:38;;:::i;:::-;2240:46;:::i;:::-;585:11320:35;;;2333:33:36;;;2252;585:11320:35;2252:33:36;585:11320:35;;;;2333:33:36;;;;;;;2321:46;2333:33;2328:38;2333:33;2252;2333;;;2328:38;;:::i;2321:46::-;585:11320:35;;;2491:42:36;585:11320:35;2491:42:36;;2252:33;2491:42;2252:33;2491:42;1300;2491;;;;;;;2429:105;2491:42;585:11320:35;2491:42:36;2252:33;2491:42;;;2018:1867;-1:-1:-1;585:11320:35;;;2429:105:36;;585:11320:35;;;;2252:33:36;2429:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2429:105:36;;;1300:42;2429:105;;;;;;;2252:33;;;2429:105;;;2018:1867;-1:-1:-1;585:11320:35;;;2560:63:36;;585:11320:35;;;;2252:33:36;2560:63;;585:11320:35;;;;;;;;;;;;;;;2252:33:36;585:11320:35;;;1394:42:36;2560:63;;;;;;;2252:33;2560:63;2651:52;2560:63;2252:33;2560:63;;;2018:1867;-1:-1:-1;585:11320:35;;;2651:52:36;;585:11320:35;;;;2252:33:36;2651:52;;585:11320:35;;;;;;;;;;;;;;;;;;2651:52:36;;;1394:42;2651:52;;;;;;;;;2252:33;2651:52;;;2018:1867;-1:-1:-1;2847:6:36;;;2252:33;2846:74;;2833:87;2931:20;2966:11;;2962:259;2966:11;;;3008:78;;;;;;;;:::i;:::-;2962:259;;3235:17;;3231:85;;3386:22;;;:::i;:::-;3457:28;;;;;;;3499;;;;;;;585:11320:35;;3561:42:36;585:11320:35;3561:42:36;;2252:33;3561:42;2252:33;3561:42;1300;3561;;;;;;;585:11320:35;2252:33:36;3561:42;;;585:11320:35;3561:42:36;2252:33;3561:42;;;;;3499:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;3430:183:36;;;585:11320:35;;;;3430:183:36;;585:11320:35;;3430:183:36;;;585:11320:35;3418:195:36;;;:::i;:::-;;;;;:::i;:::-;;3631:28;;;;;;;585:11320:35;;3624:76:36;;;;;585:11320:35;3624:76:36;;1300:42;2252:33;3624:76;;585:11320:35;;;;;;;3624:76:36;;;;;;;585:11320:35;3624:76:36;2252:33;3624:76;;;3631:28;585:11320:35;;;3732:107:36;;;;;585:11320:35;3732:107:36;;2252:33;3732:107;;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;3816:4:36;585:11320:35;;;;3823:15:36;585:11320:35;;;;3732:107:36;;;1300:42;3732:107;;;;;;;2252:33;3732:107;;;3850:28;;2018:1867;:::o;3732:107::-;;;;;;2252:33;3732:107;;;;;;:::i;:::-;3850:28;2018:1867;:::o;3624:76::-;;;2252:33;3624:76;2252:33;3624:76;;;;;;;:::i;:::-;;;;;3631:28;;;;;3561:42;;;;;;;;;;;;;;;;;:::i;:::-;;;;;3499:28;;;;3457;;;;;3231:85;585:11320:35;;;;;;;;;;;:::i;:::-;3290:1:36;585:11320:35;;;;2252:33:36;585:11320:35;;;3268:37:36;;:::o;2962:259::-;3132:78;;;;;:::i;:::-;2962:259;;;2846:74;2866:6;;;2876:4;2865:55;2846:74;;;2865:55;2883:17;;;;:::i;:::-;2903;;;;:::i;:::-;-1:-1:-1;2865:55:36;;2651:52;;;;;2252:33;2651:52;;2252:33;2651:52;;;;;;2252:33;2651:52;;;:::i;:::-;;;585:11320:35;;;;;;;2651:52:36;;;;;;;-1:-1:-1;2651:52:36;;2560:63;;;;;;;;;;;;;;:::i;:::-;;;;2429:105;;;;;;;;585:11320:35;2429:105:36;585:11320:35;2429:105:36;;;;;;;:::i;:::-;;;;;;;;2491:42;;;;2252:33;2491:42;2252:33;2491:42;;;;;;;:::i;:::-;;;;2333:33;;;;2252;2333;2252;2333;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;3891:399;;;;;;4080:204;;;4126:10;4166;4122:14;4162;4126:10;;;;:::i;:::-;585:11320:35;4122:14:36;;:::i;:::-;4166:10;;:::i;4080:204::-;4263:10;4219:14;4259;4223:10;;;;;;:::i;4219:14::-;4263:10;;:::i;4259:14::-;4080:204;3891:399::o;1084:3::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::o;:::-;;;;;;;;;;1207:42;;;;;;;;;;;;585:11320:35;;;;1207:42:36;585:11320:35;;;;;1207:42:36;585:11320:35;;:::i;:::-;1207:42:36;;;-1:-1:-1;1207:42:36;;;;:::o;:::-;585:11320:35;1207:42:36;:::o;:::-;;;;:::o;:::-;;585:11320:35;;1207:42:36;;;;;;;;;;;;585:11320:35;1207:42:36;585:11320:35;;;1207:42:36;;14165:1738;;;;;585:11320:35;;;14417:33:36;;;;;585:11320:35;14417:33:36;585:11320:35;;;;14417:33:36;;;;;;;14405:46;14417:33;14412:38;14417:33;;;;;14412:38;;:::i;14405:46::-;585:11320:35;;;14498:33:36;;;14417;585:11320:35;14417:33:36;585:11320:35;;;;14498:33:36;;;;;;;14486:46;14498:33;14493:38;14498:33;14417;14498;;;14493:38;;:::i;14486:46::-;585:11320:35;;;14656:42:36;585:11320:35;14656:42:36;;14417:33;14656:42;14417:33;14656:42;1300;14656;;;;;;;14594:105;14656:42;585:11320:35;14656:42:36;14417:33;14656:42;;;14165:1738;-1:-1:-1;585:11320:35;;;14594:105:36;;585:11320:35;;;;14417:33:36;14594:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14594:105:36;;;1300:42;14594:105;;;;;;;14417:33;;;14594:105;;;14165:1738;-1:-1:-1;585:11320:35;;;14725:63:36;;585:11320:35;;;;14417:33:36;14725:63;;585:11320:35;;;;;;;;;;;;;;;14417:33:36;585:11320:35;;;1394:42:36;14725:63;;;;;;;14417:33;14725:63;14816:52;14725:63;14417:33;14725:63;;;-1:-1:-1;585:11320:35;;;14816:52:36;;585:11320:35;;;;14417:33:36;14816:52;;585:11320:35;;;;;;;;;;;;;;;;;;14816:52:36;;;1394:42;14816:52;;;;;;;;;14417:33;14816:52;;;14165:1738;-1:-1:-1;15012:6:36;;;14417:33;15011:74;;14998:87;15096:20;15131:11;;15127:259;15131:11;;;15173:78;;;;;;;;:::i;:::-;15127:259;;15399:17;;15395:85;;15548:22;;;:::i;:::-;15619:28;;;;;;;15661;;;;;;;585:11320:35;;;15723:42:36;;14417:33;15723:42;14417:33;15723:42;1300;15723;;;;;;585:11320:35;15723:42:36;14417:33;15723:42;585:11320:35;15723:42:36;;;;;15661:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;14417:33:36;15592:183;;585:11320:35;;;;15592:183:36;;585:11320:35;;15592:183:36;;;585:11320:35;15580:195:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;15796:61:36;;;;;585:11320:35;15796:61:36;;14417:33;15796:61;;585:11320:35;;;;;;;;;;;:::i;:::-;15796:61:36;;1300:42;15796:61;;;;;;;14417:33;15796:61;;;15868:28;;14165:1738;:::o;15723:42::-;;;;;;;14417:33;15723:42;14417:33;15723:42;;;;;;;:::i;:::-;;;;;15661:28;;;;;;15619;;;;;15127:259;15297:78;;;;;:::i;:::-;15127:259;;;15011:74;15031:6;;;15041:4;15030:55;15011:74;;;15030:55;15048:17;;;;:::i;:::-;15068;;;;:::i;:::-;-1:-1:-1;15030:55:36;;14816:52;;;;;14417:33;14816:52;;14417:33;14816:52;;;;;;14417:33;14816:52;;;:::i;:::-;;;585:11320:35;;;;;;;14816:52:36;;;;;;;-1:-1:-1;14816:52:36;;14594:105;;;;;;;;585:11320:35;14594:105:36;585:11320:35;14594:105:36;;;;;;;:::i;:::-;;;;;;;;14656:42;;;;14417:33;14656:42;14417:33;14656:42;;;;;;;:::i;:::-;;;;8427:1417;;1041:4;8581:150;;;;;;;;;;;;;;;;;;;;8745:10;;8741:179;;8938:19;;;585:11320:35;;;8996:71:36;;;9233:12;;9248:1;585:11320:35;;;;;;;9497:12:36;9218:32;;;9260:70;;;9407:72;9248:1;9407:72;;-1:-1:-1;9407:72:36;;;9076:117;;;;;;9497:12;:::i;:::-;9076:117;;9340:58;9488:21;1084:3;9535:1;1084:3;;9535:1;1084:3;;;;;;9554:1;9534:21;;;9576:17;;;;:::i;:::-;585:11320:35;;;;;;;9565:28:36;;;:::i;:::-;9614:17;;;;:::i;:::-;585:11320:35;;;;;;;9603:28:36;;;:::i;:::-;9652:17;;;;:::i;:::-;585:11320:35;;;;;;;9641:28:36;;;:::i;:::-;9690:17;;;;:::i;:::-;585:11320:35;;;;;;;9679:28:36;;;:::i;:::-;9728:17;;;;:::i;:::-;585:11320:35;;;;;;;;9766:17:36;9717:28;;;;:::i;:::-;9766:17;;;:::i;:::-;585:11320:35;;;;;;;9803:11:36;9755:28;;;;:::i;:::-;9803:11;;:::i;8741:179::-;8779:15;;;;;;585:11320:35;;8809:74:36;8896:13;:::o;10340:1748::-;;10666:8;10340:1748;10643:8;10340:1748;10621:8;10340:1748;10688:8;10340:1748;;;;;;;;10621:8;:::i;:::-;10643;;:::i;:::-;10666;;:::i;:::-;10688;;:::i;:::-;999:4;;10758:5;;;;;;:::i;:::-;1084:3;10794:5;;10830;10794;;;;;:::i;:::-;1084:3;10830:5;;;:::i;:::-;1084:3;;10853:1229;;;10887:7;;;;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;10905:5;10886:25;10905:5;10886:32;10905:5;;:::i;:::-;10886:25;;:::i;:::-;:32;:::i;10853:1229::-;10950:2;10939:13;;;;;;;10935:1147;10950:2;;;11033:7;;;;:::i;:::-;11045:9;;1084:3;;;;;;;;;;;11062:1;1084:3;11062:1;1084:3;;;;;;11045:23;;;:::i;:::-;11071:9;;1084:3;;;;;;;;;;11236:7;11045:40;;11032:54;11045:40;11119:26;11045:40;;:::i;11032:54::-;11119:26;:::i;:::-;11236:7;;:::i;:::-;11228:4;;1084:3;;;;;;;;;;11328:5;11217:27;;;;:::i;:::-;11328:5;;:::i;:::-;11320:4;;1084:3;;;;;;;;;;;;;;;;;;;;;;;;11474:15;11421:31;;;;:::i;10935:1147::-;11627:7;;;;:::i;:::-;11639:6;;1084:3;;;;;;;;;;11639:16;;;;:::i;:::-;11658:6;;1084:3;;;;;;;;;;11819:7;11639:30;;11626:44;11639:30;11703:26;11639:30;;:::i;11819:7::-;1084:3;;11812;1084;;11812;1084;;;;;11910:5;11801:26;;;;:::i;11910:5::-;1084:3;;11903;1084;;11903;1084;;;;;;;;;;;;;;;;;;;12056:15;12003:31;;;;:::i;550:1391:39:-;645:6;;641:20;;835:14;875:1;900:35;894:41;;;890:116;;550:1391;1535:3;1023:25;1029:19;1881:5;1023:25;;;1019:99;;550:1391;1141:11;1135:17;;;1131:91;;550:1391;1245:7;1239:13;;;1235:86;;550:1391;1344:5;1338:11;;;1334:83;;550:1391;1440:4;1434:10;;;1430:82;;550:1391;1529:9;;1525:55;;550:1391;1602:5;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1636:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1670:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1704:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1738:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1772:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1806:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1881:5:39;;;:::i;:::-;1908:6;;;;;;:15;550:1391;:::o;1908:15::-;;;550:1391;:::o;1525:55::-;875:1;585:11320:35;1525:55:39;;1430:82;585:11320:35;;;1496:1:39;585:11320:35;1430:82:39;;;1334:83;1376:1;585:11320:35;;;;1334:83:39;;;1235:86;1279:2;585:11320:35;;1305:1:39;585:11320:35;1235:86:39;;;1131:91;1179:2;585:11320:35;;1205:2:39;585:11320:35;1131:91:39;;;1019:99;1075:2;585:11320:35;;1101:2:39;585:11320:35;1019:99:39;;;890:116;-1:-1:-1;;962:3:39;585:11320:35;;;;890:116:39;;641:20;653:8;650:1;653:8;:::o", + "linkReferences": {}, + "immutableReferences": { + "37821": [{ "start": 1548, "length": 32 }], + "37824": [{ "start": 1650, "length": 32 }], + "37827": [ + { "start": 1759, "length": 32 }, + { "start": 2322, "length": 32 } + ], + "38719": [ + { "start": 1230, "length": 32 }, + { "start": 5238, "length": 32 }, + { "start": 5396, "length": 32 }, + { "start": 5758, "length": 32 }, + { "start": 7600, "length": 32 }, + { "start": 8506, "length": 32 } + ], + "38722": [ + { "start": 1340, "length": 32 }, + { "start": 2724, "length": 32 }, + { "start": 7370, "length": 32 } + ] + } + }, + "methodIdentifiers": { + "_plugin()": "0cfd9ad4", + "aerodromeFactory()": "c45acd23", + "aerodromeRouter()": "e18e3a68", + "execute(bytes)": "09c5eabe", + "execute(bytes,address)": "6accdc13", + "getName()": "17d7de7c", + "getVersion()": "0d8e6e2c", + "quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)": "e69224d4" + }, + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"version\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"plugin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxPriceImpact\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxSlippage\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxValueLoss\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"DeadlineExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"ExecutionFailed\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"IncorrectETHAmount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InsufficientLiquidity\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSelector\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidVersionNumber\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"PoolDoesNotExist\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SlippageExceeded\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UnauthorizedCaller\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"rewardToken\",\"type\":\"address\"}],\"name\":\"AeroRewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"poolAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"FeesWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"LPTokenStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recepient\",\"type\":\"address\"}],\"name\":\"LPTokenUnStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenIn\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenOut\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"}],\"name\":\"Swapped\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"_plugin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeFactory\",\"outputs\":[{\"internalType\":\"contract IPoolFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeRouter\",\"outputs\":[{\"internalType\":\"contract IRouter\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getName\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getVersion\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"stable\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"balanceTokenRatio\",\"type\":\"bool\"}],\"name\":\"quoteDepositLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountAOut\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBOut\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"name\":\"Name of the connector\",\"version\":\"Version of the connector\"}},\"execute(bytes)\":{\"params\":{\"data\":\"The encoded parameters for the desired action\"},\"returns\":{\"_0\":\"bytes Encoded return data from the call\"}},\"getName()\":{\"returns\":{\"_0\":\"string The name of the connector\"}},\"getVersion()\":{\"returns\":{\"_0\":\"uint256 The version of the connector\"}},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"params\":{\"amountA\":\"The amount of token A being deposited\",\"amountB\":\"The amount of token B being deposited\",\"balanceTokenRatio\":\"Indicates whether to balance the token ratio with a swap\",\"stable\":\"Indicates whether the pair is a stable pair\",\"tokenA\":\"The address of token A\",\"tokenB\":\"The address of token B\"},\"returns\":{\"amountAOut\":\"The amount of token A expected to be deposited\",\"amountBOut\":\"The amount of token B expected to be deposited\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"_plugin()\":{\"notice\":\"Address of the connector plugin\"},\"constructor\":{\"notice\":\"Initializes the AerodromeConnector\"},\"execute(bytes)\":{\"notice\":\"Executes a liquidity action on Aerodrome\"},\"execute(bytes,address)\":{\"notice\":\"Allows specifying a caller (to be used by the plugin)\"},\"getName()\":{\"notice\":\"Gets the name of the connector\"},\"getVersion()\":{\"notice\":\"Gets the version of the connector\"},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"notice\":\"Quotes the expected amounts of token A and token B to deposit in a liquidity pool\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/connectors/base/aerodrome/main.sol\":\"AerodromeConnector\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/contracts/contracts/interfaces/IPool.sol\":{\"keccak256\":\"0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758\",\"dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c\"]},\"lib/contracts/contracts/interfaces/IRouter.sol\":{\"keccak256\":\"0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07\",\"dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj\"]},\"lib/contracts/contracts/interfaces/IWETH.sol\":{\"keccak256\":\"0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53\",\"dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv\"]},\"lib/contracts/contracts/interfaces/factories/IPoolFactory.sol\":{\"keccak256\":\"0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6\",\"dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11\",\"dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq\"]},\"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"src/BaseConnector.sol\":{\"keccak256\":\"0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d\",\"dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS\"]},\"src/connectors/base/aerodrome/events.sol\":{\"keccak256\":\"0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a\",\"dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK\"]},\"src/connectors/base/aerodrome/interface.sol\":{\"keccak256\":\"0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919\",\"dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen\"]},\"src/connectors/base/aerodrome/main.sol\":{\"keccak256\":\"0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c\",\"dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht\"]},\"src/connectors/base/aerodrome/utils.sol\":{\"keccak256\":\"0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335\",\"dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer\"]},\"src/connectors/base/common/constant.sol\":{\"keccak256\":\"0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a\",\"dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]},\"src/lib/Babylonian.sol\":{\"keccak256\":\"0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4\",\"license\":\"GPL-3.0-or-later\",\"urls\":[\"bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419\",\"dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ\"]}},\"version\":1}", + "metadata": { + "compiler": { "version": "0.8.24+commit.e11b9ed9" }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [ + { "internalType": "string", "name": "name", "type": "string" }, + { "internalType": "uint256", "name": "version", "type": "uint256" }, + { "internalType": "address", "name": "plugin", "type": "address" } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { "inputs": [], "type": "error", "name": "AerodromeUtils_ExceededMaxPriceImpact" }, + { "inputs": [], "type": "error", "name": "AerodromeUtils_ExceededMaxSlippage" }, + { "inputs": [], "type": "error", "name": "AerodromeUtils_ExceededMaxValueLoss" }, + { "inputs": [], "type": "error", "name": "DeadlineExpired" }, + { "inputs": [{ "internalType": "string", "name": "reason", "type": "string" }], "type": "error", "name": "ExecutionFailed" }, + { "inputs": [], "type": "error", "name": "IncorrectETHAmount" }, + { "inputs": [], "type": "error", "name": "InsufficientLiquidity" }, + { "inputs": [], "type": "error", "name": "InvalidSelector" }, + { "inputs": [], "type": "error", "name": "InvalidVersionNumber" }, + { "inputs": [], "type": "error", "name": "PoolDoesNotExist" }, + { "inputs": [], "type": "error", "name": "SlippageExceeded" }, + { "inputs": [], "type": "error", "name": "UnauthorizedCaller" }, + { + "inputs": [ + { "internalType": "address", "name": "guageAddress", "type": "address", "indexed": true }, + { "internalType": "address", "name": "rewardToken", "type": "address", "indexed": true } + ], + "type": "event", + "name": "AeroRewardsClaimed", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "poolAddress", "type": "address", "indexed": true }, + { "internalType": "address", "name": "token0", "type": "address", "indexed": false }, + { "internalType": "uint256", "name": "amount0", "type": "uint256", "indexed": false }, + { "internalType": "address", "name": "token1", "type": "address", "indexed": false }, + { "internalType": "uint256", "name": "amount1", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "FeesWithdrawn", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "guageAddress", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amount", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "LPTokenStaked", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "guageAddress", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amount", "type": "uint256", "indexed": false }, + { "internalType": "address", "name": "recepient", "type": "address", "indexed": true } + ], + "type": "event", + "name": "LPTokenUnStaked", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenA", "type": "address", "indexed": true }, + { "internalType": "address", "name": "tokenB", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amountA", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "amountB", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "liquidity", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "LiquidityAdded", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenA", "type": "address", "indexed": true }, + { "internalType": "address", "name": "tokenB", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amountA", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "amountB", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "liquidity", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "LiquidityRemoved", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenIn", "type": "address", "indexed": true }, + { "internalType": "address", "name": "tokenOut", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amountIn", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "amountOut", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "Swapped", + "anonymous": false + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "_plugin", + "outputs": [{ "internalType": "address", "name": "", "type": "address" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "aerodromeFactory", + "outputs": [{ "internalType": "contract IPoolFactory", "name": "", "type": "address" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "aerodromeRouter", + "outputs": [{ "internalType": "contract IRouter", "name": "", "type": "address" }] + }, + { + "inputs": [{ "internalType": "bytes", "name": "data", "type": "bytes" }], + "stateMutability": "payable", + "type": "function", + "name": "execute", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }] + }, + { + "inputs": [ + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { "internalType": "address", "name": "caller", "type": "address" } + ], + "stateMutability": "payable", + "type": "function", + "name": "execute", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "getName", + "outputs": [{ "internalType": "string", "name": "", "type": "string" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "getVersion", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }] + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenA", "type": "address" }, + { "internalType": "address", "name": "tokenB", "type": "address" }, + { "internalType": "bool", "name": "stable", "type": "bool" }, + { "internalType": "uint256", "name": "amountA", "type": "uint256" }, + { "internalType": "uint256", "name": "amountB", "type": "uint256" }, + { "internalType": "bool", "name": "balanceTokenRatio", "type": "bool" } + ], + "stateMutability": "view", + "type": "function", + "name": "quoteDepositLiquidity", + "outputs": [ + { "internalType": "uint256", "name": "amountAOut", "type": "uint256" }, + { "internalType": "uint256", "name": "amountBOut", "type": "uint256" } + ] + }, + { "inputs": [], "stateMutability": "payable", "type": "receive" } + ], + "devdoc": { + "kind": "dev", + "methods": { + "constructor": { "params": { "name": "Name of the connector", "version": "Version of the connector" } }, + "execute(bytes)": { + "params": { "data": "The encoded parameters for the desired action" }, + "returns": { "_0": "bytes Encoded return data from the call" } + }, + "getName()": { "returns": { "_0": "string The name of the connector" } }, + "getVersion()": { "returns": { "_0": "uint256 The version of the connector" } }, + "quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)": { + "params": { + "amountA": "The amount of token A being deposited", + "amountB": "The amount of token B being deposited", + "balanceTokenRatio": "Indicates whether to balance the token ratio with a swap", + "stable": "Indicates whether the pair is a stable pair", + "tokenA": "The address of token A", + "tokenB": "The address of token B" + }, + "returns": { + "amountAOut": "The amount of token A expected to be deposited", + "amountBOut": "The amount of token B expected to be deposited" + } + } + }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": { + "_plugin()": { "notice": "Address of the connector plugin" }, + "constructor": { "notice": "Initializes the AerodromeConnector" }, + "execute(bytes)": { "notice": "Executes a liquidity action on Aerodrome" }, + "execute(bytes,address)": { "notice": "Allows specifying a caller (to be used by the plugin)" }, + "getName()": { "notice": "Gets the name of the connector" }, + "getVersion()": { "notice": "Gets the version of the connector" }, + "quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)": { + "notice": "Quotes the expected amounts of token A and token B to deposit in a liquidity pool" + } + }, + "version": 1 + } + }, + "settings": { + "remappings": [ + "@aerodrome/contracts/=lib/contracts/", + "@coinbase/smart-wallet/=lib/smart-wallet/", + "@opengsn/=lib/contracts/lib/gsn/packages/", + "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", + "@uniswap/v3-core/=lib/contracts/lib/v3-core/", + "FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/", + "account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/", + "contracts/=lib/contracts/contracts/", + "ds-test/=lib/contracts/lib/ds-test/src/", + "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", + "forge-std/=lib/forge-std/src/", + "gsn/=lib/contracts/lib/", + "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "p256-verifier/=lib/smart-wallet/lib/p256-verifier/", + "safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/", + "smart-wallet/=lib/smart-wallet/", + "solady/=lib/smart-wallet/lib/solady/src/", + "utils/=lib/contracts/test/utils/", + "v3-core/=lib/contracts/lib/v3-core/", + "webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/" + ], + "optimizer": { "enabled": true, "runs": 1000000 }, + "metadata": { "bytecodeHash": "none", "appendCBOR": false }, + "compilationTarget": { "src/connectors/base/aerodrome/main.sol": "AerodromeConnector" }, + "evmVersion": "cancun", + "libraries": {}, + "viaIR": true + }, + "sources": { + "lib/contracts/contracts/interfaces/IPool.sol": { + "keccak256": "0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f", + "urls": [ + "bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758", + "dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c" + ], + "license": "MIT" + }, + "lib/contracts/contracts/interfaces/IRouter.sol": { + "keccak256": "0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def", + "urls": [ + "bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07", + "dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj" + ], + "license": "MIT" + }, + "lib/contracts/contracts/interfaces/IWETH.sol": { + "keccak256": "0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec", + "urls": [ + "bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53", + "dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv" + ], + "license": "MIT" + }, + "lib/contracts/contracts/interfaces/factories/IPoolFactory.sol": { + "keccak256": "0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a", + "urls": [ + "bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6", + "dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol": { + "keccak256": "0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7", + "urls": [ + "bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db", + "dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol": { + "keccak256": "0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330", + "urls": [ + "bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf", + "dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol": { + "keccak256": "0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261", + "urls": [ + "bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11", + "dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol": { + "keccak256": "0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8", + "urls": [ + "bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621", + "dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL" + ], + "license": "MIT" + }, + "src/BaseConnector.sol": { + "keccak256": "0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6", + "urls": [ + "bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d", + "dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS" + ], + "license": "MIT" + }, + "src/connectors/base/aerodrome/events.sol": { + "keccak256": "0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c", + "urls": [ + "bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a", + "dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK" + ], + "license": "MIT" + }, + "src/connectors/base/aerodrome/interface.sol": { + "keccak256": "0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971", + "urls": [ + "bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919", + "dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen" + ], + "license": "MIT" + }, + "src/connectors/base/aerodrome/main.sol": { + "keccak256": "0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c", + "urls": [ + "bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c", + "dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht" + ], + "license": "GNU" + }, + "src/connectors/base/aerodrome/utils.sol": { + "keccak256": "0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3", + "urls": [ + "bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335", + "dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer" + ], + "license": "GNU" + }, + "src/connectors/base/common/constant.sol": { + "keccak256": "0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132", + "urls": [ + "bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a", + "dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ" + ], + "license": "MIT" + }, + "src/interface/IConnector.sol": { + "keccak256": "0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04", + "urls": [ + "bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973", + "dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a" + ], + "license": "MIT" + }, + "src/lib/Babylonian.sol": { + "keccak256": "0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4", + "urls": [ + "bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419", + "dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ" + ], + "license": "GPL-3.0-or-later" + } + }, + "version": 1 + }, + "id": 35 +} diff --git a/constants/abis/ConnectorPlugin.json b/constants/abis/ConnectorPlugin.json index 341d45d..ee72633 100644 --- a/constants/abis/ConnectorPlugin.json +++ b/constants/abis/ConnectorPlugin.json @@ -1 +1,208 @@ -{"abi":[{"type":"constructor","inputs":[{"name":"_registry","type":"address","internalType":"address"}],"stateMutability":"nonpayable"},{"type":"receive","stateMutability":"payable"},{"type":"function","name":"execute","inputs":[{"name":"_connector","type":"address","internalType":"address"},{"name":"_data","type":"bytes","internalType":"bytes"}],"outputs":[{"name":"","type":"bytes","internalType":"bytes"}],"stateMutability":"payable"},{"type":"function","name":"registry","inputs":[],"outputs":[{"name":"","type":"address","internalType":"contract ConnectorRegistry"}],"stateMutability":"view"},{"type":"event","name":"ConnectorExecuted","inputs":[{"name":"connector","type":"address","indexed":true,"internalType":"address"},{"name":"caller","type":"address","indexed":true,"internalType":"address"},{"name":"data","type":"bytes","indexed":false,"internalType":"bytes"},{"name":"result","type":"bytes","indexed":false,"internalType":"bytes"}],"anonymous":false},{"type":"error","name":"ConnectorExecutionFailed","inputs":[{"name":"connector","type":"address","internalType":"address"},{"name":"data","type":"bytes","internalType":"bytes"}]},{"type":"error","name":"ConnectorNotApproved","inputs":[{"name":"connector","type":"address","internalType":"address"}]}],"bytecode":{"object":"0x60a03461007257601f6105a238819003918201601f19168301916001600160401b038311848410176100765780849260209460405283398101031261007257516001600160a01b0381169081900361007257608052604051610517908161008b8239608051818181608e01526101710152f35b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056","sourceMap":"404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;1312:39;;404:1730;;;;;;;;1312:39;404:1730;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;-1:-1:-1;404:1730:31;;;;;-1:-1:-1;404:1730:31","linkReferences":{}},"deployedBytecode":{"object":"0x6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056","sourceMap":"404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497:43;404:1730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513:40;;404:1730;1513:40;;;;;;404:1730;;;;1513:8;;;;404:1730;1513:40;;;;;;;404:1730;1513:40;;;404:1730;1512:41;;1508:111;;404:1730;;;;;1745:68;;;;;;;;;;;404:1730;1745:68;404:1730;;;;;;;;:::i;:::-;1802:10;404:1730;;;;1745:68;;;;;;;;:::i;:::-;1862:48;1885:9;;1862:48;;;;404:1730;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;1924:8;1920:89;;404:1730;;;2024:56;404:1730;;;;;;;;;;;;:::i;:::-;;;;;;;;;1802:10;404:1730;1802:10;404:1730;;;:::i;:::-;2024:56;;;404:1730;;2098:27;;;;;;;;404:1730;;;;;2098:27;;;404:1730;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;1920:89;404:1730;;;;;;;;1955:43;;;;;;;;404:1730;;;;;;;;;:::i;:::-;1955:43;;;404:1730;;;;;1508:111;404:1730;;;;;1576:32;;;;;;404:1730;1576:32;1513:40;;;;;;;;;;;;;;;;:::i;:::-;;;404:1730;;;;;;;;;;;;1513:40;;;;;;;;;404:1730;;;;;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;:::o","linkReferences":{},"immutableReferences":{"37925":[{"start":142,"length":32},{"start":369,"length":32}]}},"methodIdentifiers":{"execute(address,bytes)":"1cff79cd","registry()":"7b103999"},"rawMetadata":"{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_registry\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecutionFailed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"}],\"name\":\"ConnectorNotApproved\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecuted\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract ConnectorRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This plugin checks the ConnectorRegistry before forwarding calls to connectors.\",\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"params\":{\"caller\":\"The address of the original caller (smart wallet)\",\"connector\":\"The address of the executed connector\",\"data\":\"The calldata passed to the connector\",\"result\":\"The result returned by the connector\"}}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"_registry\":\"The address of the ConnectorRegistry contract\"}}},\"title\":\"ConnectorPlugin\",\"version\":1},\"userdoc\":{\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"notice\":\"Emitted when a connector is successfully executed\"}},\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Constructs the ConnectorPlugin with a reference to the ConnectorRegistry\"},\"registry()\":{\"notice\":\"The address of the ConnectorRegistry contract\"}},\"notice\":\"This contract serves as an intermediary between the smart wallet and connectors, ensuring that only approved connectors are executed.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/ConnectorPlugin.sol\":\"ConnectorPlugin\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"src/ConnectorPlugin.sol\":{\"keccak256\":\"0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503\",\"dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo\"]},\"src/ConnectorRegistry.sol\":{\"keccak256\":\"0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b\",\"dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]}},\"version\":1}","metadata":{"compiler":{"version":"0.8.24+commit.e11b9ed9"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"address","name":"_registry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"connector","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"type":"error","name":"ConnectorExecutionFailed"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"type":"error","name":"ConnectorNotApproved"},{"inputs":[{"internalType":"address","name":"connector","type":"address","indexed":true},{"internalType":"address","name":"caller","type":"address","indexed":true},{"internalType":"bytes","name":"data","type":"bytes","indexed":false},{"internalType":"bytes","name":"result","type":"bytes","indexed":false}],"type":"event","name":"ConnectorExecuted","anonymous":false},{"inputs":[{"internalType":"address","name":"_connector","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"function","name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"registry","outputs":[{"internalType":"contract ConnectorRegistry","name":"","type":"address"}]},{"inputs":[],"stateMutability":"payable","type":"receive"}],"devdoc":{"kind":"dev","methods":{"constructor":{"params":{"_registry":"The address of the ConnectorRegistry contract"}}},"version":1},"userdoc":{"kind":"user","methods":{"constructor":{"notice":"Constructs the ConnectorPlugin with a reference to the ConnectorRegistry"},"registry()":{"notice":"The address of the ConnectorRegistry contract"}},"version":1}},"settings":{"remappings":["@aerodrome/contracts/=lib/contracts/","@coinbase/smart-wallet/=lib/smart-wallet/","@opengsn/=lib/contracts/lib/gsn/packages/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@uniswap/v3-core/=lib/contracts/lib/v3-core/","FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/","account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/","contracts/=lib/contracts/contracts/","ds-test/=lib/contracts/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","gsn/=lib/contracts/lib/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/","p256-verifier/=lib/smart-wallet/lib/p256-verifier/","safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/","smart-wallet/=lib/smart-wallet/","solady/=lib/smart-wallet/lib/solady/src/","utils/=lib/contracts/test/utils/","v3-core/=lib/contracts/lib/v3-core/","webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/"],"optimizer":{"enabled":true,"runs":1000000},"metadata":{"bytecodeHash":"none","appendCBOR":false},"compilationTarget":{"src/ConnectorPlugin.sol":"ConnectorPlugin"},"evmVersion":"cancun","libraries":{},"viaIR":true},"sources":{"lib/openzeppelin-contracts/contracts/access/Ownable.sol":{"keccak256":"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb","urls":["bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6","dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/Context.sol":{"keccak256":"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2","urls":["bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12","dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"],"license":"MIT"},"src/ConnectorPlugin.sol":{"keccak256":"0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a","urls":["bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503","dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo"],"license":"MIT"},"src/ConnectorRegistry.sol":{"keccak256":"0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527","urls":["bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b","dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj"],"license":"MIT"},"src/interface/IConnector.sol":{"keccak256":"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04","urls":["bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973","dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a"],"license":"MIT"}},"version":1},"id":31} \ No newline at end of file +{ + "abi": [ + { + "type": "constructor", + "inputs": [{ "name": "_registry", "type": "address", "internalType": "address" }], + "stateMutability": "nonpayable" + }, + { "type": "receive", "stateMutability": "payable" }, + { + "type": "function", + "name": "execute", + "inputs": [ + { "name": "_connector", "type": "address", "internalType": "address" }, + { "name": "_data", "type": "bytes", "internalType": "bytes" } + ], + "outputs": [{ "name": "", "type": "bytes", "internalType": "bytes" }], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "registry", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "contract ConnectorRegistry" }], + "stateMutability": "view" + }, + { + "type": "event", + "name": "ConnectorExecuted", + "inputs": [ + { "name": "connector", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "caller", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "data", "type": "bytes", "indexed": false, "internalType": "bytes" }, + { "name": "result", "type": "bytes", "indexed": false, "internalType": "bytes" } + ], + "anonymous": false + }, + { + "type": "error", + "name": "ConnectorExecutionFailed", + "inputs": [ + { "name": "connector", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ] + }, + { "type": "error", "name": "ConnectorNotApproved", "inputs": [{ "name": "connector", "type": "address", "internalType": "address" }] } + ], + "bytecode": { + "object": "0x60a03461007257601f6105a238819003918201601f19168301916001600160401b038311848410176100765780849260209460405283398101031261007257516001600160a01b0381169081900361007257608052604051610517908161008b8239608051818181608e01526101710152f35b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056", + "sourceMap": "404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;1312:39;;404:1730;;;;;;;;1312:39;404:1730;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;-1:-1:-1;404:1730:31;;;;;-1:-1:-1;404:1730:31", + "linkReferences": {} + }, + "deployedBytecode": { + "object": "0x6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056", + "sourceMap": "404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497:43;404:1730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513:40;;404:1730;1513:40;;;;;;404:1730;;;;1513:8;;;;404:1730;1513:40;;;;;;;404:1730;1513:40;;;404:1730;1512:41;;1508:111;;404:1730;;;;;1745:68;;;;;;;;;;;404:1730;1745:68;404:1730;;;;;;;;:::i;:::-;1802:10;404:1730;;;;1745:68;;;;;;;;:::i;:::-;1862:48;1885:9;;1862:48;;;;404:1730;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;1924:8;1920:89;;404:1730;;;2024:56;404:1730;;;;;;;;;;;;:::i;:::-;;;;;;;;;1802:10;404:1730;1802:10;404:1730;;;:::i;:::-;2024:56;;;404:1730;;2098:27;;;;;;;;404:1730;;;;;2098:27;;;404:1730;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;1920:89;404:1730;;;;;;;;1955:43;;;;;;;;404:1730;;;;;;;;;:::i;:::-;1955:43;;;404:1730;;;;;1508:111;404:1730;;;;;1576:32;;;;;;404:1730;1576:32;1513:40;;;;;;;;;;;;;;;;:::i;:::-;;;404:1730;;;;;;;;;;;;1513:40;;;;;;;;;404:1730;;;;;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;:::o", + "linkReferences": {}, + "immutableReferences": { + "37925": [ + { "start": 142, "length": 32 }, + { "start": 369, "length": 32 } + ] + } + }, + "methodIdentifiers": { "execute(address,bytes)": "1cff79cd", "registry()": "7b103999" }, + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_registry\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecutionFailed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"}],\"name\":\"ConnectorNotApproved\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecuted\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract ConnectorRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This plugin checks the ConnectorRegistry before forwarding calls to connectors.\",\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"params\":{\"caller\":\"The address of the original caller (smart wallet)\",\"connector\":\"The address of the executed connector\",\"data\":\"The calldata passed to the connector\",\"result\":\"The result returned by the connector\"}}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"_registry\":\"The address of the ConnectorRegistry contract\"}}},\"title\":\"ConnectorPlugin\",\"version\":1},\"userdoc\":{\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"notice\":\"Emitted when a connector is successfully executed\"}},\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Constructs the ConnectorPlugin with a reference to the ConnectorRegistry\"},\"registry()\":{\"notice\":\"The address of the ConnectorRegistry contract\"}},\"notice\":\"This contract serves as an intermediary between the smart wallet and connectors, ensuring that only approved connectors are executed.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/ConnectorPlugin.sol\":\"ConnectorPlugin\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"src/ConnectorPlugin.sol\":{\"keccak256\":\"0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503\",\"dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo\"]},\"src/ConnectorRegistry.sol\":{\"keccak256\":\"0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b\",\"dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]}},\"version\":1}", + "metadata": { + "compiler": { "version": "0.8.24+commit.e11b9ed9" }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [{ "internalType": "address", "name": "_registry", "type": "address" }], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [ + { "internalType": "address", "name": "connector", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "type": "error", + "name": "ConnectorExecutionFailed" + }, + { + "inputs": [{ "internalType": "address", "name": "connector", "type": "address" }], + "type": "error", + "name": "ConnectorNotApproved" + }, + { + "inputs": [ + { "internalType": "address", "name": "connector", "type": "address", "indexed": true }, + { "internalType": "address", "name": "caller", "type": "address", "indexed": true }, + { "internalType": "bytes", "name": "data", "type": "bytes", "indexed": false }, + { "internalType": "bytes", "name": "result", "type": "bytes", "indexed": false } + ], + "type": "event", + "name": "ConnectorExecuted", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "_connector", "type": "address" }, + { "internalType": "bytes", "name": "_data", "type": "bytes" } + ], + "stateMutability": "payable", + "type": "function", + "name": "execute", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "registry", + "outputs": [{ "internalType": "contract ConnectorRegistry", "name": "", "type": "address" }] + }, + { "inputs": [], "stateMutability": "payable", "type": "receive" } + ], + "devdoc": { + "kind": "dev", + "methods": { "constructor": { "params": { "_registry": "The address of the ConnectorRegistry contract" } } }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": { + "constructor": { "notice": "Constructs the ConnectorPlugin with a reference to the ConnectorRegistry" }, + "registry()": { "notice": "The address of the ConnectorRegistry contract" } + }, + "version": 1 + } + }, + "settings": { + "remappings": [ + "@aerodrome/contracts/=lib/contracts/", + "@coinbase/smart-wallet/=lib/smart-wallet/", + "@opengsn/=lib/contracts/lib/gsn/packages/", + "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", + "@uniswap/v3-core/=lib/contracts/lib/v3-core/", + "FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/", + "account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/", + "contracts/=lib/contracts/contracts/", + "ds-test/=lib/contracts/lib/ds-test/src/", + "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", + "forge-std/=lib/forge-std/src/", + "gsn/=lib/contracts/lib/", + "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "p256-verifier/=lib/smart-wallet/lib/p256-verifier/", + "safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/", + "smart-wallet/=lib/smart-wallet/", + "solady/=lib/smart-wallet/lib/solady/src/", + "utils/=lib/contracts/test/utils/", + "v3-core/=lib/contracts/lib/v3-core/", + "webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/" + ], + "optimizer": { "enabled": true, "runs": 1000000 }, + "metadata": { "bytecodeHash": "none", "appendCBOR": false }, + "compilationTarget": { "src/ConnectorPlugin.sol": "ConnectorPlugin" }, + "evmVersion": "cancun", + "libraries": {}, + "viaIR": true + }, + "sources": { + "lib/openzeppelin-contracts/contracts/access/Ownable.sol": { + "keccak256": "0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb", + "urls": [ + "bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6", + "dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/utils/Context.sol": { + "keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2", + "urls": [ + "bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12", + "dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF" + ], + "license": "MIT" + }, + "src/ConnectorPlugin.sol": { + "keccak256": "0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a", + "urls": [ + "bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503", + "dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo" + ], + "license": "MIT" + }, + "src/ConnectorRegistry.sol": { + "keccak256": "0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527", + "urls": [ + "bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b", + "dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj" + ], + "license": "MIT" + }, + "src/interface/IConnector.sol": { + "keccak256": "0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04", + "urls": [ + "bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973", + "dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a" + ], + "license": "MIT" + } + }, + "version": 1 + }, + "id": 31 +} diff --git a/constants/abis/EntryPoint.json b/constants/abis/EntryPoint.json index 545338c..7b03db7 100644 --- a/constants/abis/EntryPoint.json +++ b/constants/abis/EntryPoint.json @@ -1,805 +1,805 @@ [ - { - "type": "constructor", - "inputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "fallback", - "stateMutability": "payable" - }, - { - "type": "receive", - "stateMutability": "payable" - }, - { - "type": "function", - "name": "REPLAYABLE_NONCE_KEY", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "addOwnerAddress", - "inputs": [ - { - "name": "owner", - "type": "address", - "internalType": "address" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "addOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "canSkipChainIdValidation", - "inputs": [ - { - "name": "functionSelector", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "pure" - }, - { - "type": "function", - "name": "domainSeparator", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "eip712Domain", - "inputs": [], - "outputs": [ - { - "name": "fields", - "type": "bytes1", - "internalType": "bytes1" - }, - { - "name": "name", - "type": "string", - "internalType": "string" - }, - { - "name": "version", - "type": "string", - "internalType": "string" - }, - { - "name": "chainId", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verifyingContract", - "type": "address", - "internalType": "address" - }, - { - "name": "salt", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "extensions", - "type": "uint256[]", - "internalType": "uint256[]" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "entryPoint", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "execute", - "inputs": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeBatch", - "inputs": [ - { - "name": "calls", - "type": "tuple[]", - "internalType": "struct CoinbaseSmartWallet.Call[]", - "components": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeWithoutChainIdValidation", - "inputs": [ - { - "name": "calls", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "getUserOpHashWithoutChainId", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "implementation", - "inputs": [], - "outputs": [ - { - "name": "$", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "initialize", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "isOwnerAddress", - "inputs": [ - { - "name": "account", - "type": "address", - "internalType": "address" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerBytes", - "inputs": [ - { - "name": "account", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isValidSignature", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "result", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "nextOwnerIndex", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes", - "internalType": "bytes" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "proxiableUUID", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "removeLastOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removeOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removedOwnersCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "replaySafeHash", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "upgradeToAndCall", - "inputs": [ - { - "name": "newImplementation", - "type": "address", - "internalType": "address" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "validateUserOp", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "name": "userOpHash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "missingAccountFunds", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "validationData", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "nonpayable" - }, - { - "type": "event", - "name": "AddOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "RemoveOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "Upgraded", - "inputs": [ - { - "name": "implementation", - "type": "address", - "indexed": true, - "internalType": "address" - } - ], - "anonymous": false - }, - { - "type": "error", - "name": "AlreadyOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "Initialized", - "inputs": [] - }, - { - "type": "error", - "name": "InvalidEthereumAddressOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "InvalidNonceKey", - "inputs": [ - { - "name": "key", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "InvalidOwnerBytesLength", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } + { + "type": "constructor", + "inputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "fallback", + "stateMutability": "payable" + }, + { + "type": "receive", + "stateMutability": "payable" + }, + { + "type": "function", + "name": "REPLAYABLE_NONCE_KEY", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "addOwnerAddress", + "inputs": [ + { + "name": "owner", + "type": "address", + "internalType": "address" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "addOwnerPublicKey", + "inputs": [ + { + "name": "x", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "y", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "canSkipChainIdValidation", + "inputs": [ + { + "name": "functionSelector", + "type": "bytes4", + "internalType": "bytes4" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "pure" + }, + { + "type": "function", + "name": "domainSeparator", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "eip712Domain", + "inputs": [], + "outputs": [ + { + "name": "fields", + "type": "bytes1", + "internalType": "bytes1" + }, + { + "name": "name", + "type": "string", + "internalType": "string" + }, + { + "name": "version", + "type": "string", + "internalType": "string" + }, + { + "name": "chainId", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "verifyingContract", + "type": "address", + "internalType": "address" + }, + { + "name": "salt", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "extensions", + "type": "uint256[]", + "internalType": "uint256[]" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "entryPoint", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address", + "internalType": "address" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "execute", + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "executeBatch", + "inputs": [ + { + "name": "calls", + "type": "tuple[]", + "internalType": "struct CoinbaseSmartWallet.Call[]", + "components": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } ] - }, - { - "type": "error", - "name": "LastOwner", - "inputs": [] - }, - { - "type": "error", - "name": "NoOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "executeWithoutChainIdValidation", + "inputs": [ + { + "name": "calls", + "type": "bytes[]", + "internalType": "bytes[]" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "getUserOpHashWithoutChainId", + "inputs": [ + { + "name": "userOp", + "type": "tuple", + "internalType": "struct UserOperation", + "components": [ + { + "name": "sender", + "type": "address", + "internalType": "address" + }, + { + "name": "nonce", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "initCode", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "verificationGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "preVerificationGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxPriorityFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "paymasterAndData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "signature", + "type": "bytes", + "internalType": "bytes" + } ] - }, - { - "type": "error", - "name": "NotLastOwner", - "inputs": [ - { - "name": "ownersRemaining", - "type": "uint256", - "internalType": "uint256" - } + } + ], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "implementation", + "inputs": [], + "outputs": [ + { + "name": "$", + "type": "address", + "internalType": "address" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "owners", + "type": "bytes[]", + "internalType": "bytes[]" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "isOwnerAddress", + "inputs": [ + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "isOwnerBytes", + "inputs": [ + { + "name": "account", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "isOwnerPublicKey", + "inputs": [ + { + "name": "x", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "y", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "isValidSignature", + "inputs": [ + { + "name": "hash", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "signature", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [ + { + "name": "result", + "type": "bytes4", + "internalType": "bytes4" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "nextOwnerIndex", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "ownerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bytes", + "internalType": "bytes" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "ownerCount", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "proxiableUUID", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "removeLastOwner", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "removeOwnerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "removedOwnersCount", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "replaySafeHash", + "inputs": [ + { + "name": "hash", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "upgradeToAndCall", + "inputs": [ + { + "name": "newImplementation", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "validateUserOp", + "inputs": [ + { + "name": "userOp", + "type": "tuple", + "internalType": "struct UserOperation", + "components": [ + { + "name": "sender", + "type": "address", + "internalType": "address" + }, + { + "name": "nonce", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "initCode", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "verificationGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "preVerificationGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxPriorityFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "paymasterAndData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "signature", + "type": "bytes", + "internalType": "bytes" + } ] - }, - { - "type": "error", - "name": "SelectorNotAllowed", - "inputs": [ - { - "name": "selector", - "type": "bytes4", - "internalType": "bytes4" - } - ] - }, - { - "type": "error", - "name": "Unauthorized", - "inputs": [] - }, - { - "type": "error", - "name": "UnauthorizedCallContext", - "inputs": [] - }, - { - "type": "error", - "name": "UpgradeFailed", - "inputs": [] - }, - { - "type": "error", - "name": "WrongOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "expectedOwner", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "actualOwner", - "type": "bytes", - "internalType": "bytes" - } - ] - } -] \ No newline at end of file + }, + { + "name": "userOpHash", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "missingAccountFunds", + "type": "uint256", + "internalType": "uint256" + } + ], + "outputs": [ + { + "name": "validationData", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "nonpayable" + }, + { + "type": "event", + "name": "AddOwner", + "inputs": [ + { + "name": "index", + "type": "uint256", + "indexed": true, + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "indexed": false, + "internalType": "bytes" + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "RemoveOwner", + "inputs": [ + { + "name": "index", + "type": "uint256", + "indexed": true, + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "indexed": false, + "internalType": "bytes" + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "Upgraded", + "inputs": [ + { + "name": "implementation", + "type": "address", + "indexed": true, + "internalType": "address" + } + ], + "anonymous": false + }, + { + "type": "error", + "name": "AlreadyOwner", + "inputs": [ + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ] + }, + { + "type": "error", + "name": "Initialized", + "inputs": [] + }, + { + "type": "error", + "name": "InvalidEthereumAddressOwner", + "inputs": [ + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ] + }, + { + "type": "error", + "name": "InvalidNonceKey", + "inputs": [ + { + "name": "key", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "error", + "name": "InvalidOwnerBytesLength", + "inputs": [ + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ] + }, + { + "type": "error", + "name": "LastOwner", + "inputs": [] + }, + { + "type": "error", + "name": "NoOwnerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "error", + "name": "NotLastOwner", + "inputs": [ + { + "name": "ownersRemaining", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "error", + "name": "SelectorNotAllowed", + "inputs": [ + { + "name": "selector", + "type": "bytes4", + "internalType": "bytes4" + } + ] + }, + { + "type": "error", + "name": "Unauthorized", + "inputs": [] + }, + { + "type": "error", + "name": "UnauthorizedCallContext", + "inputs": [] + }, + { + "type": "error", + "name": "UpgradeFailed", + "inputs": [] + }, + { + "type": "error", + "name": "WrongOwnerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "expectedOwner", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "actualOwner", + "type": "bytes", + "internalType": "bytes" + } + ] + } +] diff --git a/constants/abis/LiquidStrategy.ts b/constants/abis/LiquidStrategy.ts new file mode 100644 index 0000000..c5f2945 --- /dev/null +++ b/constants/abis/LiquidStrategy.ts @@ -0,0 +1,310 @@ +export const LiquidStrategy = { + abi: [ + { inputs: [{ internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }], name: 'StrategyAlreadyExists', type: 'error' }, + { inputs: [{ internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }], name: 'StrategyNotFound', type: 'error' }, + { inputs: [{ internalType: 'address', name: 'caller', type: 'address' }], name: 'Unauthorized', type: 'error' }, + { + anonymous: false, + inputs: [ + { indexed: true, internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { indexed: true, internalType: 'address', name: 'curator', type: 'address' }, + { indexed: true, internalType: 'string', name: 'name', type: 'string' }, + { indexed: false, internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + indexed: false, + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { indexed: false, internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { indexed: false, internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { indexed: false, internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + name: 'CreateStrategy', + type: 'event', + }, + { + inputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + name: 'allStrategyIds', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'string', name: '_name', type: 'string' }, + { internalType: 'string', name: '_strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: '_steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: '_minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: '_maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: '_performanceFee', type: 'uint256' }, + ], + name: 'createStrategy', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', + }, + { + inputs: [], + name: 'getAllStrategies', + outputs: [ + { + components: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.Strategy[]', + name: '', + type: 'tuple[]', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }], + name: 'getStrategy', + outputs: [ + { + components: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.Strategy', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: '_curator', type: 'address' }], + name: 'getStrategy', + outputs: [ + { + components: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.Strategy[]', + name: '', + type: 'tuple[]', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }], + name: 'getStrategyStats', + outputs: [ + { + components: [ + { internalType: 'uint256', name: 'totalDeposits', type: 'uint256' }, + { internalType: 'uint256', name: 'totalUsers', type: 'uint256' }, + { internalType: 'uint256', name: 'totalFeeGenerated', type: 'uint256' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.StrategyStats', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'getTotalStrategies', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }, + { internalType: 'address', name: '_user', type: 'address' }, + { internalType: 'address', name: '_asset', type: 'address' }, + ], + name: 'getUserAssetBalance', + outputs: [ + { + components: [ + { internalType: 'address', name: 'asset', type: 'address' }, + { internalType: 'uint256', name: 'amount', type: 'uint256' }, + { internalType: 'uint256', name: 'usdValue', type: 'uint256' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.AssetBalance', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }, + { internalType: 'address', name: '_user', type: 'address' }, + { internalType: 'address', name: '_protocol', type: 'address' }, + { internalType: 'address', name: '_lpToken', type: 'address' }, + ], + name: 'getUserShareBalance', + outputs: [ + { + components: [ + { internalType: 'address', name: 'protocol', type: 'address' }, + { internalType: 'address', name: 'lpToken', type: 'address' }, + { internalType: 'uint256', name: 'lpAmount', type: 'uint256' }, + { internalType: 'address[]', name: 'underlyingTokens', type: 'address[]' }, + { internalType: 'uint256[]', name: 'underlyingAmounts', type: 'uint256[]' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.ShareBalance', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: '_user', type: 'address' }], + name: 'getUserStrategies', + outputs: [{ internalType: 'bytes32[]', name: '', type: 'bytes32[]' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + name: 'strategies', + outputs: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + name: 'strategyStats', + outputs: [ + { internalType: 'uint256', name: 'totalDeposits', type: 'uint256' }, + { internalType: 'uint256', name: 'totalUsers', type: 'uint256' }, + { internalType: 'uint256', name: 'totalFeeGenerated', type: 'uint256' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: '', type: 'bytes32' }, + { internalType: 'address', name: '', type: 'address' }, + ], + name: 'userStats', + outputs: [ + { internalType: 'uint256', name: 'initialDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'totalDepositedUSD', type: 'uint256' }, + { internalType: 'uint256', name: 'totalWithdrawnUSD', type: 'uint256' }, + { internalType: 'uint256', name: 'totalReward', type: 'uint256' }, + { internalType: 'uint256', name: 'feesPaid', type: 'uint256' }, + { internalType: 'uint256', name: 'joinTimestamp', type: 'uint256' }, + { internalType: 'uint256', name: 'lastActionTimestamp', type: 'uint256' }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'address', name: '', type: 'address' }, + { internalType: 'uint256', name: '', type: 'uint256' }, + ], + name: 'userStrategies', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + ], +} as const; diff --git a/constants/abis/SmartWallet.ts b/constants/abis/SmartWallet.ts index ea744f9..dc2e943 100644 --- a/constants/abis/SmartWallet.ts +++ b/constants/abis/SmartWallet.ts @@ -1,71 +1,320 @@ export const smartWalletABI = [ + { inputs: [], stateMutability: 'nonpayable', type: 'constructor' }, + { inputs: [{ internalType: 'bytes', name: 'owner', type: 'bytes' }], name: 'AlreadyOwner', type: 'error' }, + { inputs: [], name: 'Initialized', type: 'error' }, + { inputs: [{ internalType: 'bytes', name: 'owner', type: 'bytes' }], name: 'InvalidEthereumAddressOwner', type: 'error' }, + { inputs: [{ internalType: 'uint256', name: 'key', type: 'uint256' }], name: 'InvalidNonceKey', type: 'error' }, + { inputs: [{ internalType: 'bytes', name: 'owner', type: 'bytes' }], name: 'InvalidOwnerBytesLength', type: 'error' }, + { inputs: [], name: 'LastOwner', type: 'error' }, + { inputs: [{ internalType: 'uint256', name: 'index', type: 'uint256' }], name: 'NoOwnerAtIndex', type: 'error' }, + { inputs: [{ internalType: 'uint256', name: 'ownersRemaining', type: 'uint256' }], name: 'NotLastOwner', type: 'error' }, + { inputs: [{ internalType: 'bytes4', name: 'selector', type: 'bytes4' }], name: 'SelectorNotAllowed', type: 'error' }, + { inputs: [], name: 'Unauthorized', type: 'error' }, + { inputs: [], name: 'UnauthorizedCallContext', type: 'error' }, + { inputs: [], name: 'UpgradeFailed', type: 'error' }, + { + inputs: [ + { internalType: 'uint256', name: 'index', type: 'uint256' }, + { internalType: 'bytes', name: 'expectedOwner', type: 'bytes' }, + { internalType: 'bytes', name: 'actualOwner', type: 'bytes' }, + ], + name: 'WrongOwnerAtIndex', + type: 'error', + }, + { + anonymous: false, + inputs: [ + { indexed: true, internalType: 'uint256', name: 'index', type: 'uint256' }, + { indexed: false, internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'AddOwner', + type: 'event', + }, + { + anonymous: false, + inputs: [ + { indexed: true, internalType: 'uint256', name: 'index', type: 'uint256' }, + { indexed: false, internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'RemoveOwner', + type: 'event', + }, + { + anonymous: false, + inputs: [{ indexed: true, internalType: 'address', name: 'implementation', type: 'address' }], + name: 'Upgraded', + type: 'event', + }, + { stateMutability: 'payable', type: 'fallback' }, { - type: 'constructor', inputs: [], + name: 'REPLAYABLE_NONCE_KEY', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: 'owner', type: 'address' }], + name: 'addOwnerAddress', + outputs: [], stateMutability: 'nonpayable', + type: 'function', }, { - type: 'fallback', - stateMutability: 'payable', + inputs: [ + { internalType: 'bytes32', name: 'x', type: 'bytes32' }, + { internalType: 'bytes32', name: 'y', type: 'bytes32' }, + ], + name: 'addOwnerPublicKey', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', }, { - type: 'receive', - stateMutability: 'payable', + inputs: [{ internalType: 'bytes4', name: 'functionSelector', type: 'bytes4' }], + name: 'canSkipChainIdValidation', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'pure', + type: 'function', }, { + inputs: [], + name: 'domainSeparator', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', type: 'function', - name: 'REPLAYABLE_NONCE_KEY', + }, + { inputs: [], + name: 'eip712Domain', outputs: [ - { - name: '', - type: 'uint256', - internalType: 'uint256', - }, + { internalType: 'bytes1', name: 'fields', type: 'bytes1' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'version', type: 'string' }, + { internalType: 'uint256', name: 'chainId', type: 'uint256' }, + { internalType: 'address', name: 'verifyingContract', type: 'address' }, + { internalType: 'bytes32', name: 'salt', type: 'bytes32' }, + { internalType: 'uint256[]', name: 'extensions', type: 'uint256[]' }, ], stateMutability: 'view', + type: 'function', }, { + inputs: [], + name: 'entryPoint', + outputs: [{ internalType: 'address', name: '', type: 'address' }], + stateMutability: 'view', type: 'function', - name: 'executeBatch', + }, + { + inputs: [ + { internalType: 'address', name: 'target', type: 'address' }, + { internalType: 'uint256', name: 'value', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + name: 'execute', + outputs: [], + stateMutability: 'payable', + type: 'function', + }, + { inputs: [ { - name: 'calls', - type: 'tuple[]', - internalType: 'struct CoinbaseSmartWallet.Call[]', components: [ - { - name: 'target', - type: 'address', - internalType: 'address', - }, - { - name: 'value', - type: 'uint256', - internalType: 'uint256', - }, - { - name: 'data', - type: 'bytes', - internalType: 'bytes', - }, + { internalType: 'address', name: 'target', type: 'address' }, + { internalType: 'uint256', name: 'value', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, ], + internalType: 'struct CoinbaseSmartWallet.Call[]', + name: 'calls', + type: 'tuple[]', }, ], + name: 'executeBatch', outputs: [], stateMutability: 'payable', + type: 'function', }, { + inputs: [{ internalType: 'bytes[]', name: 'calls', type: 'bytes[]' }], + name: 'executeWithoutChainIdValidation', + outputs: [], + stateMutability: 'payable', type: 'function', - name: 'initialize', + }, + { inputs: [ { - name: 'owners', - type: 'bytes[]', - internalType: 'bytes[]', + components: [ + { internalType: 'address', name: 'sender', type: 'address' }, + { internalType: 'uint256', name: 'nonce', type: 'uint256' }, + { internalType: 'bytes', name: 'initCode', type: 'bytes' }, + { internalType: 'bytes', name: 'callData', type: 'bytes' }, + { internalType: 'uint256', name: 'callGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'verificationGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'preVerificationGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxFeePerGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxPriorityFeePerGas', type: 'uint256' }, + { internalType: 'bytes', name: 'paymasterAndData', type: 'bytes' }, + { internalType: 'bytes', name: 'signature', type: 'bytes' }, + ], + internalType: 'struct UserOperation', + name: 'userOp', + type: 'tuple', }, ], + name: 'getUserOpHashWithoutChainId', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'implementation', + outputs: [{ internalType: 'address', name: '$', type: 'address' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes[]', name: 'owners', type: 'bytes[]' }], + name: 'initialize', + outputs: [], + stateMutability: 'payable', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: 'account', type: 'address' }], + name: 'isOwnerAddress', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes', name: 'account', type: 'bytes' }], + name: 'isOwnerBytes', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: 'x', type: 'bytes32' }, + { internalType: 'bytes32', name: 'y', type: 'bytes32' }, + ], + name: 'isOwnerPublicKey', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: 'hash', type: 'bytes32' }, + { internalType: 'bytes', name: 'signature', type: 'bytes' }, + ], + name: 'isValidSignature', + outputs: [{ internalType: 'bytes4', name: 'result', type: 'bytes4' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'nextOwnerIndex', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'uint256', name: 'index', type: 'uint256' }], + name: 'ownerAtIndex', + outputs: [{ internalType: 'bytes', name: '', type: 'bytes' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'ownerCount', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'proxiableUUID', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'uint256', name: 'index', type: 'uint256' }, + { internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'removeLastOwner', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', + }, + { + inputs: [ + { internalType: 'uint256', name: 'index', type: 'uint256' }, + { internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'removeOwnerAtIndex', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', + }, + { + inputs: [], + name: 'removedOwnersCount', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: 'hash', type: 'bytes32' }], + name: 'replaySafeHash', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'address', name: 'newImplementation', type: 'address' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + name: 'upgradeToAndCall', outputs: [], stateMutability: 'payable', + type: 'function', + }, + { + inputs: [ + { + components: [ + { internalType: 'address', name: 'sender', type: 'address' }, + { internalType: 'uint256', name: 'nonce', type: 'uint256' }, + { internalType: 'bytes', name: 'initCode', type: 'bytes' }, + { internalType: 'bytes', name: 'callData', type: 'bytes' }, + { internalType: 'uint256', name: 'callGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'verificationGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'preVerificationGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxFeePerGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxPriorityFeePerGas', type: 'uint256' }, + { internalType: 'bytes', name: 'paymasterAndData', type: 'bytes' }, + { internalType: 'bytes', name: 'signature', type: 'bytes' }, + ], + internalType: 'struct UserOperation', + name: 'userOp', + type: 'tuple', + }, + { internalType: 'bytes32', name: 'userOpHash', type: 'bytes32' }, + { internalType: 'uint256', name: 'missingAccountFunds', type: 'uint256' }, + ], + name: 'validateUserOp', + outputs: [{ internalType: 'uint256', name: 'validationData', type: 'uint256' }], + stateMutability: 'nonpayable', + type: 'function', }, + { stateMutability: 'payable', type: 'receive' }, ] as const; diff --git a/constants/abis/index.ts b/constants/abis/index.ts index bb0deef..7597c7a 100644 --- a/constants/abis/index.ts +++ b/constants/abis/index.ts @@ -6,6 +6,7 @@ import * as AerodromeConnectorABI from './AerodromeConnector.json'; import * as ConnectorPluginABI from './ConnectorPlugin.json'; import * as AerodromePoolABI from './AerodromePoolABI.json'; import * as LPSugarABI from './LPSugar'; +import * as LiquidStrategy from './LiquidStrategy'; export { LPSugarABI, @@ -16,4 +17,5 @@ export { EntryPointABI, AerodromeConnectorABI, ConnectorPluginABI, + LiquidStrategy, }; diff --git a/constants/addresses.ts b/constants/addresses.ts index 6cb6020..abb1e2a 100644 --- a/constants/addresses.ts +++ b/constants/addresses.ts @@ -14,6 +14,7 @@ export const TEST_USER: Address = '0x78815067c3926cc33F7790d87460BEC779F42d4D' a // Liquid connectors export const AERODROME_CONNECTOR: Address = '0x10e1aC384A4Fb3e0Bc4724D097B0d7F4e99143E6' as Address; export const CONNECTOR_PLUGIN: Address = '0x96281563A06a8D3319C9822B58d8808FaC7EA14D' as Address; +export const STRATEGY_CONTRACT_ADDRESS = '0x4368d53677c09995989a22DE5b31EfceAeD735ae' as Address; export const CONNECTORS_BASE: Address[] = [ USDC_ADDRESS, // USDC @@ -31,4 +32,32 @@ export const CONNECTORS_BASE: Address[] = [ '0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA', // USDbC ]; +export const protocolList: ProtocolItem[] = [ + { + id: '1', + icon: 'moonwell', + title: 'Moonwell', + address: '0x123456789abcdef123456789abcdef1234567890', + }, + { + id: '2', + icon: 'aerodrome', + title: 'Aerodrome', + address: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcd', + }, + { + id: '3', + icon: 'morpho', + title: 'Morpho', + address: '0x789abcdef123456789abcdef123456789abcdef12', + }, + // this is dummy + { + id: '4', + icon: 'moonwell', + title: 'Moonwell', + address: '0x3234567890123456789012345678901234567890', + }, +]; + export const OFFCHAIN_ORACLE_ADDRESS: Address = '0xf224a25453D76A41c4427DD1C05369BC9f498444' as Address; diff --git a/constants/icons.tsx b/constants/icons.tsx new file mode 100644 index 0000000..08e9792 --- /dev/null +++ b/constants/icons.tsx @@ -0,0 +1,30 @@ +import { + AerodromeIcon, + BorrowIcon, + CoinbaseWalletIcon, + CuratorIcon, + DebitCardIcon, + DepositIcon, + MoonWellIcon, + MorphoIcon, + StakeIcon, + SupplyIcon, + DisconnectWalletIcon, +} from '@/assets/icons'; + +const ICONS = { + aerodrome: , + moonwell: , + morpho: , + stake: , + deposit: , + borrow: , + supply: , + sort: , + debitCard: , + crypto: , + coinBase: , + disconnect: , +}; + +export default ICONS; diff --git a/hooks/liquidity.md b/hooks/liquidity.md index d8cf45f..94b6d6b 100644 --- a/hooks/liquidity.md +++ b/hooks/liquidity.md @@ -1,9 +1,11 @@ # Aerodrome Liquidity Hooks Documentation ## Overview + The `useLiquidity` hook provides methods for interacting with Aerodrome liquidity pools, including adding/removing liquidity, swapping tokens, and staking LP tokens. ## Installation & Setup + ```typescript import { useLiquidity } from '@/hooks/useLiquidity'; import { usePublicClient } from 'wagmi'; @@ -11,7 +13,7 @@ import { usePublicClient } from 'wagmi'; function YourComponent() { const publicClient = usePublicClient(); const { addLiquidity, removeLiquidity, swap, stake } = useLiquidity( - publicClient, + publicClient, account // your wallet address ); } @@ -20,6 +22,7 @@ function YourComponent() { ## Core Methods ### 1. Adding Liquidity + Add liquidity to an Aerodrome pool with optional pre-swap functionality. ```typescript @@ -28,11 +31,11 @@ const addLiquidityExample = async () => { await addLiquidity({ tokenA: { address: '0x...', // token A address - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', // token B address - decimals: 18 + decimals: 18, }, stable: true, // true for stable pools, false for volatile amountAIn: '1.0', // amount of token A to add @@ -47,40 +50,41 @@ const addLiquidityWithSwapExample = async () => { // Regular liquidity parameters tokenA: { address: '0x...', - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', - decimals: 18 + decimals: 18, }, stable: true, amountAIn: '1.0', amountBIn: '1.0', to: account, - + // Pre-swap configuration preSwap: { enabled: true, params: { tokenA: { address: '0x...', // token to swap from - decimals: 6 + decimals: 6, }, tokenB: { address: '0x...', // token to swap to - decimals: 18 + decimals: 18, }, amountIn: '1000', // amount to swap minReturnAmount: '0.95', // minimum expected return stable: true, - to: account - } - } + to: account, + }, + }, }); }; ``` ### 2. Removing Liquidity + Remove liquidity from an Aerodrome pool. ```typescript @@ -88,22 +92,23 @@ const removeLiquidityExample = async () => { await removeLiquidity({ tokenA: { address: '0x...', - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', - decimals: 18 + decimals: 18, }, stable: true, liquidity: '1.0', // amount of LP tokens to remove amountAMin: '0.95', // minimum amount of token A to receive amountBMin: '0.95', // minimum amount of token B to receive - to: account + to: account, }); }; ``` ### 3. Swapping Tokens + Execute a token swap on Aerodrome. ```typescript @@ -111,21 +116,22 @@ const swapExample = async () => { await swap({ tokenA: { address: '0x...', - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', - decimals: 18 + decimals: 18, }, stable: true, amountIn: '1.0', minReturnAmount: '0.95', - to: account + to: account, }); }; ``` ### 4. Staking LP Tokens + Stake LP tokens in an Aerodrome gauge. ```typescript @@ -133,14 +139,15 @@ const stakeExample = async () => { await stake({ gauge: { address: '0x...', // gauge address - decimals: 18 + decimals: 18, }, - amount: '1.0' // amount of LP tokens to stake + amount: '1.0', // amount of LP tokens to stake }); }; ``` ## Transaction Configuration + All methods accept an optional transaction configuration object: ```typescript @@ -155,6 +162,7 @@ await addLiquidity(params, txConfig); ## Type Definitions ### Token Interface + ```typescript interface Token { address: Address; @@ -163,6 +171,7 @@ interface Token { ``` ### Add Liquidity Parameters + ```typescript interface AddLiquidityParams { tokenA: Token; @@ -189,6 +198,7 @@ interface AddLiquidityWithSwapParams extends AddLiquidityParams { ``` ### Remove Liquidity Parameters + ```typescript interface RemoveLiquidityParams { tokenA: Token; @@ -202,6 +212,7 @@ interface RemoveLiquidityParams { ``` ### Swap Parameters + ```typescript interface SwapExactTokensParams { tokenA: Token; @@ -214,6 +225,7 @@ interface SwapExactTokensParams { ``` ### Stake Parameters + ```typescript interface StakeParams { gauge: { @@ -225,6 +237,7 @@ interface StakeParams { ``` ## Error Handling + ```typescript try { await addLiquidity(params); @@ -236,8 +249,9 @@ try { ``` ## Notes + - All amount inputs are in human-readable format (e.g., "1.0" for 1 token) - Decimals are handled automatically based on token configuration - Transactions are automatically batched for efficiency - Approvals are handled automatically -- Default deadline is set to 1 hour from execution \ No newline at end of file +- Default deadline is set to 1 hour from execution diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts index 62e0ff6..0fbe775 100644 --- a/hooks/useCalls.ts +++ b/hooks/useCalls.ts @@ -1,13 +1,27 @@ import { Address, encodeFunctionData, Hex } from 'viem'; -import { buildUserOp, getPaymasterData, getUserOpHash } from '@/utils/wallet'; +import { + buildUserOp, + getOwnerIndex, + getPaymasterData, + getUserOpHash, + PASSKEY_OWNER_DUMMY_SIGNATURE, + sendUserOperation, + sponsorUserOperation, +} from '@/utils/wallet'; import { Call } from '@/utils/types'; -import { entryPoint06Address } from 'viem/account-abstraction'; +import { entryPoint06Abi, entryPoint06Address, getUserOperationHash, UserOperation } from 'viem/account-abstraction'; import { useClients } from '@/init/useViem'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { SmartWalletABI } from '@/constants/abis'; import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { useCallback } from 'react'; import { getPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; +import { buildWebAuthnSignature } from '@/utils/signature'; +import { bufferToHex, parseAndNormalizeSig } from '@/utils/base64'; +import { splitSignature } from '@/utils/helpers'; +import { pimilcoRPCURL } from '@/constants/env'; +import { getRequiredPrefund } from 'permissionless'; +import { bundlerClient, publicClient } from '@/init/client'; export function useMakeCalls() { const { signTransaction } = useSmartAccountActions(); @@ -24,28 +38,23 @@ export function useMakeCalls() { paymasterAndData: '0x', // Initialize with empty paymaster data }); - // Set verification gas limit - op.verificationGasLimit = 800000n; - - // Get paymaster data - const paymasterResult = await getPaymasterData({ - paymasterClient: paymaster, - callData: op.callData, - sender: op.sender, - nonce: op.nonce, - initCode: op.initCode, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, - callGasLimit: op.callGasLimit, - verificationGasLimit: op.verificationGasLimit, - preVerificationGas: op.preVerificationGas, - }); + // const sponsoredData = await sponsorUserOperation({ + // callData: op.callData, + // sender: op.sender, + // nonce: op.nonce, + // initCode: op.initCode, + // maxFeePerGas: BigInt(op.maxFeePerGas), + // maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), + // callGasLimit: op.callGasLimit, + // verificationGasLimit: op.verificationGasLimit, + // preVerificationGas: op.preVerificationGas, + // signature: PASSKEY_OWNER_DUMMY_SIGNATURE, + // }); // Update operation with paymaster data - op.paymasterAndData = paymasterResult.paymasterAndData; - - // Get the operation hash + //op.paymasterAndData = sponsoredData.paymasterAndData; const hash = getUserOpHash({ + chainId: BigInt(8453), userOperation: { sender: op.sender, nonce: op.nonce, @@ -54,40 +63,58 @@ export function useMakeCalls() { callGasLimit: op.callGasLimit, verificationGasLimit: op.verificationGasLimit, preVerificationGas: op.preVerificationGas, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, - paymasterAndData: op.paymasterAndData, - signature: '0x', + maxFeePerGas: BigInt(op.maxFeePerGas), + maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), + paymasterAndData: '0x', + signature: PASSKEY_OWNER_DUMMY_SIGNATURE, }, - chainId: 8543n, }); const signature = await signTransaction(hash); + const { r, s } = parseAndNormalizeSig(signature.signature); + + const webAuthnSignatureFormat = buildWebAuthnSignature({ + ownerIndex: BigInt(0), + authenticatorData: signature.webauthn.authenticatorData, + clientDataJSON: signature.webauthn.clientDataJSON, + r, + s, + }); // Create new operation object with signature const signedOp = { - ...op, - signature: signature!, - }; - - // Send the user operation - const opHash = await smartAccountClient?.sendUserOperation({ - account: smartAccountClient.account, - callData: op.callData, - initCode: op.initCode, + sender: op.sender, nonce: op.nonce, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, + initCode: op.initCode, + callData: op.callData, callGasLimit: op.callGasLimit, verificationGasLimit: op.verificationGasLimit, preVerificationGas: op.preVerificationGas, + maxFeePerGas: BigInt(op.maxFeePerGas), + maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), paymasterAndData: op.paymasterAndData, - signature: signedOp.signature, + signature: webAuthnSignatureFormat, + }; + + const requiredPrefund = getRequiredPrefund({ userOperation: signedOp, entryPointVersion: '0.6' }); + + const senderBalance = await publicClient.getBalance({ + address: signedOp.sender, }); + if (senderBalance < requiredPrefund) { + throw new Error(`Sender address does not have enough native tokens`); + } + + // Send the user operation + const opHash = await sendUserOperation(signedOp); + + const receipt = await smartAccountClient?.waitForUserOperationReceipt({ hash: opHash, timeout: 1000000 }); + console.log(receipt, 'receipt'); return { opHash, userOpHash: hash, + receipt, }; }, [signTransaction] diff --git a/hooks/useCustomTabview.tsx b/hooks/useCustomTabview.tsx new file mode 100644 index 0000000..0416b39 --- /dev/null +++ b/hooks/useCustomTabview.tsx @@ -0,0 +1,191 @@ +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import React, { useState, useCallback, useRef, useMemo } from 'react'; +import { StyleSheet, useWindowDimensions, View, Animated, Pressable, Text } from 'react-native'; +import { TabView, TabBar, SceneRendererProps, NavigationState } from 'react-native-tab-view'; + +type Route = { + key: string; + title: string; +}; + +type CustomTabViewProps = { + routes: Route[]; + renderScene: (props: SceneRendererProps & { route: Route }) => React.ReactNode; + maxContentWidth?: number; +}; + +const useCustomTabView = () => { + const layout = useWindowDimensions(); + const [index, setIndex] = useState(0); + + const renderTabBar = ({ + maxContentWidth = 1140, + ...props + }: SceneRendererProps & { + navigationState: NavigationState; + maxContentWidth?: number; + }) => { + const indicatorFadeAnim = useRef(new Animated.Value(0)).current; + const measuredTabWidths = useRef>({}); + const [tabsWidth, setTabsWidth] = useState>({}); + + const handleTabLayout = useCallback( + (route: Route, navigationState: NavigationState, layoutWidth: number) => { + const routeIndex = navigationState.routes.indexOf(route); + measuredTabWidths.current[routeIndex] = layoutWidth; + + if (navigationState.routes.every((_, i) => typeof measuredTabWidths.current[i] === 'number')) { + setTabsWidth({ ...measuredTabWidths.current }); + } + + if (routeIndex === navigationState.routes.length - 1) { + Animated.timing(indicatorFadeAnim, { + toValue: 1, + duration: 150, + useNativeDriver: true, + }).start(); + } + }, + [indicatorFadeAnim] + ); + + const calculateTranslateX = useCallback( + (position: Animated.AnimatedInterpolation, routes: Route[]) => { + const inputRange = routes.map((_, i) => i); + const outputRange = routes.map((_, i) => { + const prevWidths = Object.values(tabsWidth) + .slice(0, i) + .reduce((a, b) => a + b, 0); + return prevWidths + (tabsWidth[i] || 0) / 2 - maxContentWidth / 2; + }); + + return position.interpolate({ + inputRange, + outputRange, + extrapolate: 'clamp', + }); + }, + [tabsWidth, maxContentWidth] + ); + + const calculateWidth = useCallback( + (position: Animated.AnimatedInterpolation, routes: Route[]) => { + const inputRange = routes.map((_, i) => i); + const outputRange = routes.map((_, i) => tabsWidth[i] || 0); + + return position.interpolate({ + inputRange, + outputRange, + extrapolate: 'clamp', + }); + }, + [tabsWidth] + ); + + return ( + { + if (Object.keys(tabsWidth).length !== navigationState.routes.length) return null; + + return ( + + ); + }} + renderTabBarItem={({ route, onPress, onLongPress, onLayout, navigationState }) => { + const isActive = navigationState.index === navigationState.routes.indexOf(route); + return ( + handleTabLayout(route, navigationState, e.nativeEvent.layout.width)} + > + + {route.title} + + + ); + }} + /> + ); + }; + + const CustomTabView: React.FC = ({ renderScene, routes, maxContentWidth }) => ( + + renderTabBar({ ...props, maxContentWidth })} + initialLayout={{ width: layout.width }} + /> + + ); + + return { CustomTabView }; +}; + +const styles = StyleSheet.create({ + tabBar: { + position: 'relative', + backgroundColor: 'white', + borderBottomWidth: 1, + borderColor: 'lightgray', + elevation: 0, + shadowOpacity: 0, + marginBottom: 16, + }, + indicator: { + position: 'absolute', + height: 2, + backgroundColor: 'blue', + bottom: 0, + }, + tabItem: { + paddingBottom: 12, + paddingTop: 16, + borderBottomWidth: 2, + borderBottomColor: 'transparent', + marginHorizontal: 23, + padding: 0, + }, + activeTabItem: { + borderBottomColor: '#4691FE', // Active tab border color + }, + indicatorContainer: { + zIndex: 1, + }, + tabStyle: { + width: 'auto', + }, +}); + +export default useCustomTabView; diff --git a/hooks/useLiquid.ts b/hooks/useLiquid.ts index 8f452c9..a7536a2 100644 --- a/hooks/useLiquid.ts +++ b/hooks/useLiquid.ts @@ -1,7 +1,15 @@ import { useCallback } from 'react'; import { Address, parseUnits, erc20Abi, Hex, PublicClient } from 'viem'; -import { encodePluginExecute, encodeAddLiquidity, encodeRemoveLiquidity, encodeSwap, encodeStake, encodeApprove } from '@/utils/encoders'; -import { AERODROME_CONNECTOR, AERODROME_FACTORY_ADDRESS, CONNECTOR_PLUGIN } from '@/constants/addresses'; +import { + encodePluginExecute, + encodeAddLiquidity, + encodeRemoveLiquidity, + encodeSwap, + encodeStake, + encodeApprove, + encodeCreateStrategy, +} from '@/utils/encoders'; +import { AERODROME_CONNECTOR, AERODROME_FACTORY_ADDRESS, CONNECTOR_PLUGIN, STRATEGY_CONTRACT_ADDRESS } from '@/constants/addresses'; import { AddLiquidityParams, AddLiquidityWithSwapParams, @@ -16,19 +24,6 @@ import { AerodromeConnectorABI } from '@/constants/abis'; import useSystemFunctions from './useSystemFunctions'; import { useMakeCalls } from './useCalls'; -async function handleTransaction(client: PublicClient, { hash, waitForReceipt = true }: TransactionConfig) { - if (!waitForReceipt) return { hash }; - - const receipt = await client.waitForTransactionReceipt({ - hash, - }); - - return { - hash, - receipt, - }; -} - export function useLiquidity(publicClient: PublicClient) { const { smartAccountState } = useSystemFunctions(); const { makeCalls, buildUserOperationCalldata } = useMakeCalls(); @@ -161,16 +156,13 @@ export function useLiquidity(publicClient: PublicClient) { caller: account, }); - calls.push(createPluginCall(addLiquidityData, currentIndex)); + //calls.push(createPluginCall(addLiquidityData, currentIndex)); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls, account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -191,14 +183,11 @@ export function useLiquidity(publicClient: PublicClient) { const call = createPluginCall(connectorData, 0); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -225,14 +214,11 @@ export function useLiquidity(publicClient: PublicClient) { const call = createPluginCall(connectorData, 0); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -247,14 +233,11 @@ export function useLiquidity(publicClient: PublicClient) { const call = createPluginCall(connectorData, 0); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -302,10 +285,34 @@ export function useLiquidity(publicClient: PublicClient) { } }; + const createStrategy = useCallback( + async (params: StrategyBody, txConfig?: Partial) => { + try { + const createStrategyData = encodeCreateStrategy(params); + const createStrategyCall = { + index: 0, + target: STRATEGY_CONTRACT_ADDRESS, + data: createStrategyData, + value: 0n, + }; + + const { opHash, receipt } = await makeCalls({ + calls: [createStrategyCall], + account, + }); + return { opHash, receipt }; + } catch (error) { + throw error; + } + }, + [publicClient, createPluginCall, account] + ); + return { addLiquidity, removeLiquidity, swap, stake, + createStrategy, }; } diff --git a/init/axios.ts b/init/axios.ts new file mode 100644 index 0000000..027da44 --- /dev/null +++ b/init/axios.ts @@ -0,0 +1,94 @@ +import axios from 'axios'; +import { apiUrl } from '@/constants/env'; + +const axiosInstance = axios.create({ + baseURL: apiUrl, +}); + +axiosInstance.interceptors.response.use( + (response) => { + return response; + }, + (error) => { + if (error?.response?.status === 401 || error?.response?.status === 403) { + // user not authenticated + } + return Promise.reject(error); + } +); + +const setTokenHeader = async (token: string) => { + axiosInstance.defaults.headers.common.Authorization = `Bearer ${token}`; +}; + +const removeTokenHeader = () => { + delete axiosInstance.defaults.headers.common.Authorization; +}; + +// ====================== +// STRATEGY API INSTANCE +// ====================== + +const strategyAxiosInstance = axios.create({ + baseURL: `${apiUrl}/strategy/strategies/`, +}); + +strategyAxiosInstance.interceptors.response.use( + (response) => { + return response; + }, + (error) => { + if (error?.response?.status === 401 || error?.response?.status === 403) { + // user not authenticated + } + return Promise.reject(error); + } +); + +const setStrategyTokenHeader = async (token: string) => { + strategyAxiosInstance.defaults.headers.common.Authorization = `Bearer ${token}`; +}; + +const removeStrategyTokenHeader = () => { + delete strategyAxiosInstance.defaults.headers.common.Authorization; +}; + +// ====================== +// AUTH API INSTANCE +// ====================== + +const authAxiosInstance = axios.create({ + baseURL: `${apiUrl}/auth/auth/`, +}); + +authAxiosInstance.interceptors.response.use( + (response) => { + return response; + }, + (error) => { + if (error?.response?.status === 401 || error?.response?.status === 403) { + // user not authenticated + } + return Promise.reject(error); + } +); + +const setAuthTokenHeader = async (token: string) => { + authAxiosInstance.defaults.headers.common.Authorization = `Bearer ${token}`; +}; + +const removeAuthTokenHeader = () => { + delete authAxiosInstance.defaults.headers.common.Authorization; +}; + +export { + axiosInstance, + setTokenHeader, + removeTokenHeader, + strategyAxiosInstance, + setStrategyTokenHeader, + removeStrategyTokenHeader, + authAxiosInstance, + setAuthTokenHeader, + removeAuthTokenHeader, +}; diff --git a/init/reactotron.ts b/init/reactotron.ts index 28b9e9f..fff46e5 100644 --- a/init/reactotron.ts +++ b/init/reactotron.ts @@ -1,7 +1,7 @@ -import Reactotron from "reactotron-react-native"; +import Reactotron from 'reactotron-react-native'; Reactotron.configure({ - name: "Liquid", + name: 'Liquid', }) .useReactNative() .connect(); diff --git a/init/useViem.ts b/init/useViem.ts index f8f449c..2d58184 100644 --- a/init/useViem.ts +++ b/init/useViem.ts @@ -1,12 +1,12 @@ import { useMemo } from 'react'; import { Address, createPublicClient, http } from 'viem'; -import { createBundlerClient, createPaymasterClient, entryPoint06Address, paymasterActions } from 'viem/account-abstraction'; +import { createPaymasterClient, entryPoint06Address, paymasterActions } from 'viem/account-abstraction'; import { createSmartAccountClient } from 'permissionless'; import { base } from 'viem/chains'; import { rpcUrl, pimilcoRPCURL, bundlerUrl } from '@/constants/env'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { useAuth } from '@/providers'; +// import { createPimlicoClient } from 'permissionless/clients/pimlico'; export function useClients() { const { smartAccountState } = useSystemFunctions(); @@ -27,6 +27,15 @@ export function useClients() { transport: http(pimilcoRPCURL), }).extend(paymasterActions); + // const pimlicoClient = createPimlicoClient({ + // chain: base, + // entryPoint: { + // address: entryPoint06Address, + // version: '0.6', + // }, + // transport: http(pimilcoRPCURL), + // }); + const smartAccountClient = useMemo(() => { if (!account) return null; return createSmartAccountClient({ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..4ae0fe1 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,19399 @@ +{ + "name": "liquid-interface", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "liquid-interface", + "version": "1.0.0", + "dependencies": { + "@ethersproject/shims": "^5.7.0", + "@expo/vector-icons": "^14.0.2", + "@hexagon/base64": "^2.0.3", + "@hookform/resolvers": "^3.9.0", + "@privy-io/expo": "^0.29.3", + "@privy-io/expo-native-extensions": "^0.0.3", + "@react-native-async-storage/async-storage": "1.23.1", + "@react-native-clipboard/clipboard": "^1.14.2", + "@react-native-community/slider": "4.5.2", + "@react-native-masked-view/masked-view": "^0.3.1", + "@react-navigation/native": "^6.0.2", + "@reduxjs/toolkit": "^2.2.7", + "expo": "~51.0.38", + "expo-apple-authentication": "^6.4.2", + "expo-application": "^5.9.1", + "expo-build-properties": "~0.12.5", + "expo-constants": "^16.0.2", + "expo-crypto": "^13.0.2", + "expo-dev-client": "~4.0.26", + "expo-font": "~12.0.9", + "expo-haptics": "~13.0.1", + "expo-linking": "^6.3.1", + "expo-router": "~3.5.23", + "expo-secure-store": "^13.0.2", + "expo-splash-screen": "~0.27.5", + "expo-status-bar": "~1.12.1", + "expo-system-ui": "~3.0.7", + "expo-web-browser": "^13.0.3", + "fast-text-encoding": "^1.0.6", + "lodash": "^4.17.21", + "moment": "^2.30.1", + "permissionless": "^0.2.17", + "react": "18.2.0", + "react-dom": "18.2.0", + "react-hook-form": "^7.53.0", + "react-native": "0.74.5", + "react-native-draggable-flatlist": "^4.0.1", + "react-native-fast-image": "^8.6.3", + "react-native-gesture-handler": "~2.16.1", + "react-native-get-random-values": "^1.11.0", + "react-native-image-colors": "^2.4.0", + "react-native-linear-gradient": "^2.8.3", + "react-native-modal": "^13.0.1", + "react-native-otp-entry": "^1.7.3", + "react-native-pager-view": "6.3.0", + "react-native-passkeys": "^0.3.0", + "react-native-qrcode-svg": "^6.3.2", + "react-native-reanimated": "~3.10.1", + "react-native-safe-area-context": "4.10.5", + "react-native-screens": "3.31.1", + "react-native-svg": "15.2.0", + "react-native-tab-view": "^3.5.2", + "react-native-web": "~0.19.10", + "react-native-webview": "^13.12.3", + "react-redux": "^9.1.2", + "redux-persist": "^6.0.0", + "victory-native": "^37.0.3-next.0", + "viem": "^2.21.29", + "yup": "^1.4.0" + }, + "devDependencies": { + "@babel/core": "^7.20.0", + "@react-navigation/material-top-tabs": "^6.6.14", + "@types/jest": "^29.5.12", + "@types/lodash": "^4.17.7", + "@types/react": "~18.2.45", + "@types/react-test-renderer": "^18.0.7", + "jest": "^29.2.1", + "jest-expo": "~51.0.3", + "prettier": "^3.3.3", + "react-test-renderer": "18.2.0", + "reactotron-react-native": "^5.1.9", + "typescript": "~5.3.3" + } + }, + "node_modules/@0no-co/graphql.web": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@0no-co/graphql.web/-/graphql.web-1.0.8.tgz", + "integrity": "sha512-8BG6woLtDMvXB9Ajb/uE+Zr/U7y4qJ3upXi0JQHZmsKUJa7HjF/gFvmL2f3/mSmfZoQGRr9VoY97LCX2uaFMzA==", + "license": "MIT", + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" + }, + "peerDependenciesMeta": { + "graphql": { + "optional": true + } + } + }, + "node_modules/@adraffy/ens-normalize": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz", + "integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==", + "license": "MIT" + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.25.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.8.tgz", + "integrity": "sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.25.7", + "@babel/generator": "^7.25.7", + "@babel/helper-compilation-targets": "^7.25.7", + "@babel/helper-module-transforms": "^7.25.7", + "@babel/helpers": "^7.25.7", + "@babel/parser": "^7.25.8", + "@babel/template": "^7.25.7", + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.8", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz", + "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.7", + "@babel/types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz", + "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.3" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.7.tgz", + "integrity": "sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/plugin-syntax-decorators": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-default-from": { + "version": "7.25.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.25.8.tgz", + "integrity": "sha512-5SLPHA/Gk7lNdaymtSVS9jH77Cs7yuHTR3dYj+9q+M7R7tNLXhNuvnmOfafRIzpWL+dtMibuu1I4ofrc768Gkw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.7.tgz", + "integrity": "sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-default-from": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.25.7.tgz", + "integrity": "sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.25.7.tgz", + "integrity": "sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.7.tgz", + "integrity": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz", + "integrity": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", + "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.7.tgz", + "integrity": "sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/plugin-syntax-flow": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.7.tgz", + "integrity": "sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.7.tgz", + "integrity": "sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.7", + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/plugin-syntax-jsx": "^7.25.7", + "@babel/types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.7.tgz", + "integrity": "sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.7.tgz", + "integrity": "sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.7.tgz", + "integrity": "sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.7.tgz", + "integrity": "sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.7.tgz", + "integrity": "sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.7.tgz", + "integrity": "sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.7", + "@babel/helper-create-class-features-plugin": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", + "@babel/plugin-syntax-typescript": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.25.9", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.25.9", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.25.9", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.25.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.25.9", + "@babel/plugin-transform-typeof-symbol": "^7.25.9", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.38.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "peer": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-flow": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.25.7.tgz", + "integrity": "sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-transform-flow-strip-types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.25.7.tgz", + "integrity": "sha512-GjV0/mUEEXpi1U5ZgDprMRRgajGMRW3G5FjMr5KLKD8nT2fTG8+h/klV3+6Dm5739QE+K5+2e91qFKAYI3pmRg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-transform-react-display-name": "^7.25.7", + "@babel/plugin-transform-react-jsx": "^7.25.7", + "@babel/plugin-transform-react-jsx-development": "^7.25.7", + "@babel/plugin-transform-react-pure-annotations": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.25.7.tgz", + "integrity": "sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-syntax-jsx": "^7.25.7", + "@babel/plugin-transform-modules-commonjs": "^7.25.7", + "@babel/plugin-transform-typescript": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.25.7.tgz", + "integrity": "sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q==", + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.6", + "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz", + "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/@babel/template": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", + "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.3", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@egjs/hammerjs": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz", + "integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==", + "license": "MIT", + "dependencies": { + "@types/hammerjs": "^2.0.36" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@ethersproject/abi": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz", + "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-provider": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz", + "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-signer": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz", + "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/address": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz", + "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/rlp": "^5.7.0" + } + }, + "node_modules/@ethersproject/base64": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz", + "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0" + } + }, + "node_modules/@ethersproject/basex": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz", + "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/bignumber": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz", + "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + } + }, + "node_modules/@ethersproject/bytes": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz", + "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/constants": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz", + "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0" + } + }, + "node_modules/@ethersproject/contracts": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz", + "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "^5.7.0", + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0" + } + }, + "node_modules/@ethersproject/hash": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz", + "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/hdnode": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz", + "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/json-wallets": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz", + "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "node_modules/@ethersproject/keccak256": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz", + "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "js-sha3": "0.8.0" + } + }, + "node_modules/@ethersproject/logger": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz", + "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/networks": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz", + "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/pbkdf2": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz", + "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/sha2": "^5.7.0" + } + }, + "node_modules/@ethersproject/properties": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz", + "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/providers": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz", + "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0", + "bech32": "1.1.4", + "ws": "7.4.6" + } + }, + "node_modules/@ethersproject/providers/node_modules/ws": { + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", + "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@ethersproject/random": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz", + "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/rlp": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz", + "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/sha2": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz", + "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/shims": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/shims/-/shims-5.7.0.tgz", + "integrity": "sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/signing-key": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz", + "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "bn.js": "^5.2.1", + "elliptic": "6.5.4", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/solidity": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz", + "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/strings": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz", + "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/transactions": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz", + "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0" + } + }, + "node_modules/@ethersproject/units": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz", + "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/wallet": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz", + "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/json-wallets": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/web": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz", + "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/base64": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/wordlists": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz", + "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@expo/bunyan": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.1.tgz", + "integrity": "sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==", + "engines": [ + "node >=0.10.0" + ], + "license": "MIT", + "dependencies": { + "uuid": "^8.0.0" + } + }, + "node_modules/@expo/cli": { + "version": "0.18.30", + "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.18.30.tgz", + "integrity": "sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@expo/code-signing-certificates": "0.0.5", + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/devcert": "^1.0.0", + "@expo/env": "~0.3.0", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@expo/metro-config": "0.18.11", + "@expo/osascript": "^2.0.31", + "@expo/package-manager": "^1.5.0", + "@expo/plist": "^0.1.0", + "@expo/prebuild-config": "7.0.9", + "@expo/rudder-sdk-node": "1.1.1", + "@expo/spawn-async": "^1.7.2", + "@expo/xcpretty": "^4.3.0", + "@react-native/dev-middleware": "0.74.85", + "@urql/core": "2.3.6", + "@urql/exchange-retry": "0.3.0", + "accepts": "^1.3.8", + "arg": "5.0.2", + "better-opn": "~3.0.2", + "bplist-creator": "0.0.7", + "bplist-parser": "^0.3.1", + "cacache": "^18.0.2", + "chalk": "^4.0.0", + "ci-info": "^3.3.0", + "connect": "^3.7.0", + "debug": "^4.3.4", + "env-editor": "^0.4.1", + "fast-glob": "^3.3.2", + "find-yarn-workspace-root": "~2.0.0", + "form-data": "^3.0.1", + "freeport-async": "2.0.0", + "fs-extra": "~8.1.0", + "getenv": "^1.0.0", + "glob": "^7.1.7", + "graphql": "15.8.0", + "graphql-tag": "^2.10.1", + "https-proxy-agent": "^5.0.1", + "internal-ip": "4.3.0", + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1", + "js-yaml": "^3.13.1", + "json-schema-deref-sync": "^0.13.0", + "lodash.debounce": "^4.0.8", + "md5hex": "^1.0.0", + "minimatch": "^3.0.4", + "node-fetch": "^2.6.7", + "node-forge": "^1.3.1", + "npm-package-arg": "^7.0.0", + "open": "^8.3.0", + "ora": "3.4.0", + "picomatch": "^3.0.1", + "pretty-bytes": "5.6.0", + "progress": "2.0.3", + "prompts": "^2.3.2", + "qrcode-terminal": "0.11.0", + "require-from-string": "^2.0.2", + "requireg": "^0.2.2", + "resolve": "^1.22.2", + "resolve-from": "^5.0.0", + "resolve.exports": "^2.0.2", + "semver": "^7.6.0", + "send": "^0.18.0", + "slugify": "^1.3.4", + "source-map-support": "~0.5.21", + "stacktrace-parser": "^0.1.10", + "structured-headers": "^0.4.1", + "tar": "^6.0.5", + "temp-dir": "^2.0.0", + "tempy": "^0.7.1", + "terminal-link": "^2.1.1", + "text-table": "^0.2.0", + "url-join": "4.0.0", + "wrap-ansi": "^7.0.0", + "ws": "^8.12.1" + }, + "bin": { + "expo-internal": "build/bin/cli" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.9.tgz", + "integrity": "sha512-9i6Cg7jInpnGEHN0jxnW0P+0BexnePiBzmbUvzSbRXpdXihYUX2AKMu73jgzxn5P1hXOSkzNS7umaY+BZ+aBag==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.3", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@react-native/normalize-colors": "0.74.85", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + }, + "peerDependencies": { + "expo-modules-autolinking": ">=0.8.1" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/cli/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/cli/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@expo/cli/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@expo/cli/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@expo/cli/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@expo/cli/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/cli/node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@expo/cli/node_modules/ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/cli/node_modules/ora/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/picomatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", + "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@expo/cli/node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "license": "MIT", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/cli/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@expo/cli/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@expo/code-signing-certificates": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz", + "integrity": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==", + "license": "MIT", + "dependencies": { + "node-forge": "^1.2.1", + "nullthrows": "^1.1.1" + } + }, + "node_modules/@expo/config": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@expo/config/-/config-9.0.4.tgz", + "integrity": "sha512-g5ns5u1JSKudHYhjo1zaSfkJ/iZIcWmUmIQptMJZ6ag1C0ShL2sj8qdfU8MmAMuKLOgcIfSaiWlQnm4X3VJVkg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.3", + "@expo/json-file": "^8.3.0", + "getenv": "^1.0.0", + "glob": "7.1.6", + "require-from-string": "^2.0.2", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "slugify": "^1.3.4", + "sucrase": "3.34.0" + } + }, + "node_modules/@expo/config-plugins": { + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-8.0.10.tgz", + "integrity": "sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg==", + "license": "MIT", + "dependencies": { + "@expo/config-types": "^51.0.3", + "@expo/json-file": "~8.3.0", + "@expo/plist": "^0.1.0", + "@expo/sdk-runtime-versions": "^1.0.0", + "chalk": "^4.1.2", + "debug": "^4.3.1", + "find-up": "~5.0.0", + "getenv": "^1.0.0", + "glob": "7.1.6", + "resolve-from": "^5.0.0", + "semver": "^7.5.4", + "slash": "^3.0.0", + "slugify": "^1.6.6", + "xcode": "^3.0.1", + "xml2js": "0.6.0" + } + }, + "node_modules/@expo/config-plugins/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/config-types": { + "version": "51.0.3", + "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-51.0.3.tgz", + "integrity": "sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA==", + "license": "MIT" + }, + "node_modules/@expo/config/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/config/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.4.tgz", + "integrity": "sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==", + "license": "MIT", + "dependencies": { + "application-config-path": "^0.1.0", + "command-exists": "^1.2.4", + "debug": "^3.1.0", + "eol": "^0.9.1", + "get-port": "^3.2.0", + "glob": "^10.4.2", + "lodash": "^4.17.21", + "mkdirp": "^0.5.1", + "password-prompt": "^1.0.4", + "sudo-prompt": "^8.2.0", + "tmp": "^0.0.33", + "tslib": "^2.4.0" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/sudo-prompt": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", + "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==", + "license": "MIT" + }, + "node_modules/@expo/env": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@expo/env/-/env-0.3.0.tgz", + "integrity": "sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "debug": "^4.3.4", + "dotenv": "~16.4.5", + "dotenv-expand": "~11.0.6", + "getenv": "^1.0.0" + } + }, + "node_modules/@expo/image-utils": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.5.1.tgz", + "integrity": "sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.0.0", + "fs-extra": "9.0.0", + "getenv": "^1.0.0", + "jimp-compact": "0.16.1", + "node-fetch": "^2.6.0", + "parse-png": "^2.1.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "tempy": "0.3.0" + } + }, + "node_modules/@expo/image-utils/node_modules/crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/fs-extra": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.0.tgz", + "integrity": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/image-utils/node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "license": "MIT", + "dependencies": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/image-utils/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/image-utils/node_modules/unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/universalify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", + "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/json-file": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-8.3.3.tgz", + "integrity": "sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "json5": "^2.2.2", + "write-file-atomic": "^2.3.0" + } + }, + "node_modules/@expo/json-file/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/metro-config": { + "version": "0.18.11", + "resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.18.11.tgz", + "integrity": "sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.5", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "@expo/config": "~9.0.0-beta.0", + "@expo/env": "~0.3.0", + "@expo/json-file": "~8.3.0", + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.1.0", + "debug": "^4.3.2", + "find-yarn-workspace-root": "~2.0.0", + "fs-extra": "^9.1.0", + "getenv": "^1.0.0", + "glob": "^7.2.3", + "jsc-safe-url": "^0.2.4", + "lightningcss": "~1.19.0", + "postcss": "~8.4.32", + "resolve-from": "^5.0.0" + } + }, + "node_modules/@expo/metro-runtime": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@expo/metro-runtime/-/metro-runtime-3.2.3.tgz", + "integrity": "sha512-v5ji+fAGi7B9YavrxvekuF8gXEV/5fz0+PhaED5AaFDnbGB4IJIbpaiqK9nqZV1axjGZNQSw6Q8TsnFetCR3bQ==", + "license": "MIT", + "peerDependencies": { + "react-native": "*" + } + }, + "node_modules/@expo/osascript": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.1.3.tgz", + "integrity": "sha512-aOEkhPzDsaAfolSswObGiYW0Pf0ROfR9J2NBRLQACdQ6uJlyAMiPF45DVEVknAU9juKh0y8ZyvC9LXqLEJYohA==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "exec-async": "^2.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/package-manager": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.5.2.tgz", + "integrity": "sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==", + "license": "MIT", + "dependencies": { + "@expo/json-file": "^8.3.0", + "@expo/spawn-async": "^1.7.2", + "ansi-regex": "^5.0.0", + "chalk": "^4.0.0", + "find-up": "^5.0.0", + "find-yarn-workspace-root": "~2.0.0", + "js-yaml": "^3.13.1", + "micromatch": "^4.0.2", + "npm-package-arg": "^7.0.0", + "ora": "^3.4.0", + "split": "^1.0.1", + "sudo-prompt": "9.1.1" + } + }, + "node_modules/@expo/package-manager/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@expo/package-manager/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@expo/package-manager/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@expo/package-manager/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/package-manager/node_modules/ora/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "license": "MIT", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/package-manager/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/package-manager/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/plist": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.1.3.tgz", + "integrity": "sha512-GW/7hVlAylYg1tUrEASclw1MMk9FP4ZwyFAY/SUTJIhPDQHtfOlXREyWV3hhrHdX/K+pS73GNgdfT6E/e+kBbg==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "~0.7.7", + "base64-js": "^1.2.3", + "xmlbuilder": "^14.0.0" + } + }, + "node_modules/@expo/plist/node_modules/xmlbuilder": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-14.0.0.tgz", + "integrity": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@expo/prebuild-config": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.8.tgz", + "integrity": "sha512-wH9NVg6HiwF5y9x0TxiMEeBF+ITPGDXy5/i6OUheSrKpPgb0lF1Mwzl/f2fLPXBEpl+ZXOQ8LlLW32b7K9lrNg==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.0-unreleased", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@react-native/normalize-colors": "0.74.85", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + }, + "peerDependencies": { + "expo-modules-autolinking": ">=0.8.1" + } + }, + "node_modules/@expo/rudder-sdk-node": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz", + "integrity": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==", + "license": "MIT", + "dependencies": { + "@expo/bunyan": "^4.0.0", + "@segment/loosely-validate-event": "^2.0.0", + "fetch-retry": "^4.1.1", + "md5": "^2.2.1", + "node-fetch": "^2.6.1", + "remove-trailing-slash": "^0.1.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/rudder-sdk-node/node_modules/fetch-retry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz", + "integrity": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==", + "license": "MIT" + }, + "node_modules/@expo/sdk-runtime-versions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz", + "integrity": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==", + "license": "MIT" + }, + "node_modules/@expo/server": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@expo/server/-/server-0.4.4.tgz", + "integrity": "sha512-q9ADBzMN5rZ/fgQ2mz5YIJuZ8gelQlhG2CQqToD+UvBLZvbaHCNxTTSs2KI1LzJvAaW5CWgWMatGvGF6iUQ0LA==", + "license": "MIT", + "dependencies": { + "@remix-run/node": "^2.7.2", + "abort-controller": "^3.0.0", + "debug": "^4.3.4", + "source-map-support": "~0.5.21" + } + }, + "node_modules/@expo/spawn-async": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.2.tgz", + "integrity": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/vector-icons": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@expo/vector-icons/-/vector-icons-14.0.4.tgz", + "integrity": "sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.1" + } + }, + "node_modules/@expo/xcpretty": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.3.1.tgz", + "integrity": "sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/code-frame": "7.10.4", + "chalk": "^4.1.0", + "find-up": "^5.0.0", + "js-yaml": "^4.1.0" + }, + "bin": { + "excpretty": "build/cli.js" + } + }, + "node_modules/@expo/xcpretty/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/xcpretty/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/@expo/xcpretty/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@graphql-typed-document-node/core": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", + "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", + "license": "MIT", + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@hexagon/base64": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@hexagon/base64/-/base64-2.0.3.tgz", + "integrity": "sha512-ZtQDPh0m9MXHK241Cutx4low/WwqtPr0fPeUsXTAEX5Nocrdk6oB9TvyUF9SePrZYkeTL4gFrd+ceMHVb/zC8A==", + "license": "MIT" + }, + "node_modules/@hookform/resolvers": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.9.0.tgz", + "integrity": "sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg==", + "license": "MIT", + "peerDependencies": { + "react-hook-form": "^7.0.0" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/ttlcache": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/create-cache-key-function": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jimp/bmp": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.16.13.tgz", + "integrity": "sha512-9edAxu7N2FX7vzkdl5Jo1BbACfycUtBQX+XBMcHA2bk62P8R0otgkHg798frgAk/WxQIzwxqOH6wMiCwrlAzdQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "bmp-js": "^0.1.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/core": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.16.13.tgz", + "integrity": "sha512-qXpA1tzTnlkTku9yqtuRtS/wVntvE6f3m3GNxdTdtmc+O+Wcg9Xo2ABPMh7Nc0AHbMKzwvwgB2JnjZmlmJEObg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "any-base": "^1.1.0", + "buffer": "^5.2.0", + "exif-parser": "^0.1.12", + "file-type": "^16.5.4", + "load-bmfont": "^1.3.1", + "mkdirp": "^0.5.1", + "phin": "^2.9.1", + "pixelmatch": "^4.0.2", + "tinycolor2": "^1.4.1" + } + }, + "node_modules/@jimp/custom": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.16.13.tgz", + "integrity": "sha512-LTATglVUPGkPf15zX1wTMlZ0+AU7cGEGF6ekVF1crA8eHUWsGjrYTB+Ht4E3HTrCok8weQG+K01rJndCp/l4XA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/core": "^0.16.13" + } + }, + "node_modules/@jimp/gif": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.16.13.tgz", + "integrity": "sha512-yFAMZGv3o+YcjXilMWWwS/bv1iSqykFahFMSO169uVMtfQVfa90kt4/kDwrXNR6Q9i6VHpFiGZMlF2UnHClBvg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "gifwrap": "^0.9.2", + "omggif": "^1.0.9" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/jpeg": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.16.13.tgz", + "integrity": "sha512-BJHlDxzTlCqP2ThqP8J0eDrbBfod7npWCbJAcfkKqdQuFk0zBPaZ6KKaQKyKxmWJ87Z6ohANZoMKEbtvrwz1AA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "jpeg-js": "^0.4.2" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-resize": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.16.13.tgz", + "integrity": "sha512-qoqtN8LDknm3fJm9nuPygJv30O3vGhSBD2TxrsCnhtOsxKAqVPJtFVdGd/qVuZ8nqQANQmTlfqTiK9mVWQ7MiQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/png": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.16.13.tgz", + "integrity": "sha512-8cGqINvbWJf1G0Her9zbq9I80roEX0A+U45xFby3tDWfzn+Zz8XKDF1Nv9VUwVx0N3zpcG1RPs9hfheG4Cq2kg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "pngjs": "^3.3.3" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/tiff": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.16.13.tgz", + "integrity": "sha512-oJY8d9u95SwW00VPHuCNxPap6Q1+E/xM5QThb9Hu+P6EGuu6lIeLaNBMmFZyblwFbwrH+WBOZlvIzDhi4Dm/6Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "utif": "^2.0.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/types": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.16.13.tgz", + "integrity": "sha512-mC0yVNUobFDjoYLg4hoUwzMKgNlxynzwt3cDXzumGvRJ7Kb8qQGOWJQjQFo5OxmGExqzPphkirdbBF88RVLBCg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/bmp": "^0.16.13", + "@jimp/gif": "^0.16.13", + "@jimp/jpeg": "^0.16.13", + "@jimp/png": "^0.16.13", + "@jimp/tiff": "^0.16.13", + "timm": "^1.6.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/utils": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.16.13.tgz", + "integrity": "sha512-VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@noble/curves": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.6.0.tgz", + "integrity": "sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.5.0" + }, + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.5.0.tgz", + "integrity": "sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", + "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", + "license": "ISC", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@privy-io/api-base": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@privy-io/api-base/-/api-base-1.4.0.tgz", + "integrity": "sha512-8Pm/8bx6WvNt8uLtYOOj9acYL+JjUJxeChlBEvSywmre1l5o8naK6J4SeAb5v8b8p4178VNI4AYhd+rFh4HCsA==", + "dependencies": { + "zod": "^3.21.4" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + } + }, + "node_modules/@privy-io/expo": { + "version": "0.29.3", + "resolved": "https://registry.npmjs.org/@privy-io/expo/-/expo-0.29.3.tgz", + "integrity": "sha512-qwxCnYqw+v5w74db82t1V/J+E6ccFMR0hKHuZVluOa6bxpki0bSc4EgaWDRnjeWxJbSGafK20UxaiWJCvq4Mng==", + "license": "Apache-2.0", + "dependencies": { + "@privy-io/js-sdk-core": "0.30.3", + "react-fast-compare": "^3.2.2", + "zustand": "^4.4.1" + }, + "peerDependencies": { + "@expo-google-fonts/inter": "*", + "@privy-io/expo-native-extensions": "0.0.3", + "expo-apple-authentication": "*", + "expo-application": "*", + "expo-constants": "*", + "expo-crypto": "*", + "expo-font": "*", + "expo-linking": "*", + "expo-secure-store": "*", + "expo-web-browser": "*", + "react": "*", + "react-native": "*", + "react-native-passkeys": "^0.3.0", + "react-native-safe-area-context": "*", + "react-native-svg": "*", + "react-native-webview": "*" + }, + "peerDependenciesMeta": { + "@expo-google-fonts/inter": { + "optional": true + }, + "expo-font": { + "optional": true + } + } + }, + "node_modules/@privy-io/expo-native-extensions": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@privy-io/expo-native-extensions/-/expo-native-extensions-0.0.3.tgz", + "integrity": "sha512-T6WgIISeSxj5Yf4kpo/YhyjTG4XASW0ky0vjHRZeqPSCrFjQm4ziIn5RMPFAHUaS8inKPM6FjSZgrcdA4a2adw==", + "license": "Apache-2.0", + "peerDependencies": { + "expo": "*", + "react": "*", + "react-native": "*" + } + }, + "node_modules/@privy-io/js-sdk-core": { + "version": "0.30.3", + "resolved": "https://registry.npmjs.org/@privy-io/js-sdk-core/-/js-sdk-core-0.30.3.tgz", + "integrity": "sha512-g/h3YABDiQ9rG555gax7vYwBVrWos9Uh8DNzGBxwjECYRGGkuNuVY8Nc9gq3TBeQySUAKRFfWgSDCHtq7uDXRQ==", + "license": "Apache-2.0", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/contracts": "^5.7.0", + "@ethersproject/providers": "^5.7.2", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/units": "^5.7.0", + "@privy-io/api-base": "^1.4.0", + "@privy-io/public-api": "2.11.6", + "eventemitter3": "^5.0.1", + "fetch-retry": "^5.0.6", + "jose": "^4.15.5", + "js-cookie": "^3.0.5", + "libphonenumber-js": "^1.10.44", + "set-cookie-parser": "^2.6.0", + "uuid": ">=8 <10" + } + }, + "node_modules/@privy-io/js-sdk-core/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@privy-io/public-api": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@privy-io/public-api/-/public-api-2.11.6.tgz", + "integrity": "sha512-0xv9XpStuMPnZ8lJUXwybuzu3o1EW2iKtezIurM3X34d84wcYprdjEpcya8jZIzqozYrht2+3T2bnryvO3HrXA==", + "license": "Apache-2.0", + "dependencies": { + "@privy-io/api-base": "1.4.0", + "bs58": "^5.0.0", + "ethers": "^5.7.2", + "libphonenumber-js": "^1.10.31", + "zod": "^3.22.4" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + } + }, + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz", + "integrity": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-slot": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz", + "integrity": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.0" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@react-native-async-storage/async-storage": { + "version": "1.23.1", + "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.23.1.tgz", + "integrity": "sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==", + "license": "MIT", + "dependencies": { + "merge-options": "^3.0.4" + }, + "peerDependencies": { + "react-native": "^0.0.0-0 || >=0.60 <1.0" + } + }, + "node_modules/@react-native-clipboard/clipboard": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/@react-native-clipboard/clipboard/-/clipboard-1.14.2.tgz", + "integrity": "sha512-Mb58f3neB6sM9oOtKYVGLvN8KVByea67OA9ekJ0c9FwdH24INu8RJoA7/fq+PRk+7oxbeamAcEoQPRv0uwbbMw==", + "license": "MIT", + "workspaces": [ + "example" + ], + "peerDependencies": { + "react": ">= 16.9.0", + "react-native": ">= 0.61.5", + "react-native-macos": ">= 0.61.0", + "react-native-windows": ">= 0.61.0" + }, + "peerDependenciesMeta": { + "react-native-macos": { + "optional": true + }, + "react-native-windows": { + "optional": true + } + } + }, + "node_modules/@react-native-community/cli": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-13.6.9.tgz", + "integrity": "sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-clean": "13.6.9", + "@react-native-community/cli-config": "13.6.9", + "@react-native-community/cli-debugger-ui": "13.6.9", + "@react-native-community/cli-doctor": "13.6.9", + "@react-native-community/cli-hermes": "13.6.9", + "@react-native-community/cli-server-api": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "@react-native-community/cli-types": "13.6.9", + "chalk": "^4.1.2", + "commander": "^9.4.1", + "deepmerge": "^4.3.0", + "execa": "^5.0.0", + "find-up": "^4.1.0", + "fs-extra": "^8.1.0", + "graceful-fs": "^4.1.3", + "prompts": "^2.4.2", + "semver": "^7.5.2" + }, + "bin": { + "rnc-cli": "build/bin.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native-community/cli-clean": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-13.6.9.tgz", + "integrity": "sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2" + } + }, + "node_modules/@react-native-community/cli-config": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-13.6.9.tgz", + "integrity": "sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "cosmiconfig": "^5.1.0", + "deepmerge": "^4.3.0", + "fast-glob": "^3.3.2", + "joi": "^17.2.1" + } + }, + "node_modules/@react-native-community/cli-debugger-ui": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.9.tgz", + "integrity": "sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==", + "license": "MIT", + "dependencies": { + "serve-static": "^1.13.1" + } + }, + "node_modules/@react-native-community/cli-doctor": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-13.6.9.tgz", + "integrity": "sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-config": "13.6.9", + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-platform-apple": "13.6.9", + "@react-native-community/cli-platform-ios": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "command-exists": "^1.2.8", + "deepmerge": "^4.3.0", + "envinfo": "^7.10.0", + "execa": "^5.0.0", + "hermes-profile-transformer": "^0.0.6", + "node-stream-zip": "^1.9.1", + "ora": "^5.4.1", + "semver": "^7.5.2", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1", + "yaml": "^2.2.1" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-hermes": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-13.6.9.tgz", + "integrity": "sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "hermes-profile-transformer": "^0.0.6" + } + }, + "node_modules/@react-native-community/cli-platform-android": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.9.tgz", + "integrity": "sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2", + "fast-xml-parser": "^4.2.4", + "logkitty": "^0.7.1" + } + }, + "node_modules/@react-native-community/cli-platform-apple": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.9.tgz", + "integrity": "sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2", + "fast-xml-parser": "^4.0.12", + "ora": "^5.4.1" + } + }, + "node_modules/@react-native-community/cli-platform-ios": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.9.tgz", + "integrity": "sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-platform-apple": "13.6.9" + } + }, + "node_modules/@react-native-community/cli-server-api": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-13.6.9.tgz", + "integrity": "sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-debugger-ui": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "compression": "^1.7.1", + "connect": "^3.6.5", + "errorhandler": "^1.5.1", + "nocache": "^3.0.1", + "pretty-format": "^26.6.2", + "serve-static": "^1.13.1", + "ws": "^6.2.2" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-tools": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-13.6.9.tgz", + "integrity": "sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==", + "license": "MIT", + "dependencies": { + "appdirsjs": "^1.2.4", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "find-up": "^5.0.0", + "mime": "^2.4.1", + "node-fetch": "^2.6.0", + "open": "^6.2.0", + "ora": "^5.4.1", + "semver": "^7.5.2", + "shell-quote": "^1.7.3", + "sudo-prompt": "^9.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/open": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", + "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "license": "MIT", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/sudo-prompt": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-types": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-13.6.9.tgz", + "integrity": "sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==", + "license": "MIT", + "dependencies": { + "joi": "^17.2.1" + } + }, + "node_modules/@react-native-community/cli/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "license": "MIT", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@react-native-community/cli/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@react-native-community/cli/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@react-native-community/slider": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/@react-native-community/slider/-/slider-4.5.2.tgz", + "integrity": "sha512-DbFyCyI7rwl0FkBkp0lzEVp+5mNfS5qU/nM2sK2aSguWhj0Odkt1aKHP2iW/ljruOhgS/O4dEixXlne4OdZJDQ==", + "license": "MIT" + }, + "node_modules/@react-native-masked-view/masked-view": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@react-native-masked-view/masked-view/-/masked-view-0.3.1.tgz", + "integrity": "sha512-uVm8U6nwFIlUd1iDIB5cS+lDadApKR+l8k4k84d9hn+GN4lzAIJhUZ9syYX7c022MxNgAlbxoFLt0pqKoyaAGg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16", + "react-native": ">=0.57" + } + }, + "node_modules/@react-native/assets-registry": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.74.87.tgz", + "integrity": "sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-plugin-codegen": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.87.tgz", + "integrity": "sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw==", + "license": "MIT", + "dependencies": { + "@react-native/codegen": "0.74.87" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-preset": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.74.87.tgz", + "integrity": "sha512-hyKpfqzN2nxZmYYJ0tQIHG99FQO0OWXp/gVggAfEUgiT+yNKas1C60LuofUsK7cd+2o9jrpqgqW4WzEDZoBlTg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/plugin-proposal-async-generator-functions": "^7.0.0", + "@babel/plugin-proposal-class-properties": "^7.18.0", + "@babel/plugin-proposal-export-default-from": "^7.0.0", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0", + "@babel/plugin-proposal-numeric-separator": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-default-from": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.18.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", + "@babel/plugin-syntax-optional-chaining": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.20.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.20.0", + "@babel/plugin-transform-flow-strip-types": "^7.20.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-react-jsx-self": "^7.0.0", + "@babel/plugin-transform-react-jsx-source": "^7.0.0", + "@babel/plugin-transform-runtime": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-sticky-regex": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.5.0", + "@babel/plugin-transform-unicode-regex": "^7.0.0", + "@babel/template": "^7.0.0", + "@react-native/babel-plugin-codegen": "0.74.87", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/codegen": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.74.87.tgz", + "integrity": "sha512-GMSYDiD+86zLKgMMgz9z0k6FxmRn+z6cimYZKkucW4soGbxWsbjUAZoZ56sJwt2FJ3XVRgXCrnOCgXoH/Bkhcg==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.0", + "glob": "^7.1.1", + "hermes-parser": "0.19.1", + "invariant": "^2.2.4", + "jscodeshift": "^0.14.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/@react-native/community-cli-plugin": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.87.tgz", + "integrity": "sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-server-api": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "@react-native/dev-middleware": "0.74.87", + "@react-native/metro-babel-transformer": "0.74.87", + "chalk": "^4.0.0", + "execa": "^5.1.1", + "metro": "^0.80.3", + "metro-config": "^0.80.3", + "metro-core": "^0.80.3", + "node-fetch": "^2.2.0", + "querystring": "^0.2.1", + "readline": "^1.3.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/@react-native/debugger-frontend": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.87.tgz", + "integrity": "sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/@react-native/dev-middleware": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.87.tgz", + "integrity": "sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA==", + "license": "MIT", + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.74.87", + "@rnx-kit/chromium-edge-launcher": "^1.0.0", + "chrome-launcher": "^0.15.2", + "connect": "^3.6.5", + "debug": "^2.2.0", + "node-fetch": "^2.2.0", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "selfsigned": "^2.4.1", + "serve-static": "^1.13.1", + "temp-dir": "^2.0.0", + "ws": "^6.2.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/debugger-frontend": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.85.tgz", + "integrity": "sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.85.tgz", + "integrity": "sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==", + "license": "MIT", + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.74.85", + "@rnx-kit/chromium-edge-launcher": "^1.0.0", + "chrome-launcher": "^0.15.2", + "connect": "^3.6.5", + "debug": "^2.2.0", + "node-fetch": "^2.2.0", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "selfsigned": "^2.4.1", + "serve-static": "^1.13.1", + "temp-dir": "^2.0.0", + "ws": "^6.2.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/gradle-plugin": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.74.87.tgz", + "integrity": "sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/js-polyfills": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.74.87.tgz", + "integrity": "sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/metro-babel-transformer": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.87.tgz", + "integrity": "sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@react-native/babel-preset": "0.74.87", + "hermes-parser": "0.19.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/normalize-colors": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz", + "integrity": "sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==", + "license": "MIT" + }, + "node_modules/@react-native/virtualized-lists": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.74.87.tgz", + "integrity": "sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "*", + "react-native": "*" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@react-navigation/bottom-tabs": { + "version": "6.5.20", + "resolved": "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.20.tgz", + "integrity": "sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==", + "license": "MIT", + "dependencies": { + "@react-navigation/elements": "^1.3.30", + "color": "^4.2.3", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0", + "react-native-screens": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/core": { + "version": "6.4.17", + "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-6.4.17.tgz", + "integrity": "sha512-Nd76EpomzChWAosGqWOYE3ItayhDzIEzzZsT7PfGcRFDgW5miHV2t4MZcq9YIK4tzxZjVVpYbIynOOQQd1e0Cg==", + "license": "MIT", + "dependencies": { + "@react-navigation/routers": "^6.1.9", + "escape-string-regexp": "^4.0.0", + "nanoid": "^3.1.23", + "query-string": "^7.1.3", + "react-is": "^16.13.0", + "use-latest-callback": "^0.2.1" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@react-navigation/core/node_modules/use-latest-callback": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.1.tgz", + "integrity": "sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-navigation/elements": { + "version": "1.3.31", + "resolved": "https://registry.npmjs.org/@react-navigation/elements/-/elements-1.3.31.tgz", + "integrity": "sha512-bUzP4Awlljx5RKEExw8WYtif8EuQni2glDaieYROKTnaxsu9kEIA515sXQgUDZU4Ob12VoL7+z70uO3qrlfXcQ==", + "license": "MIT", + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/material-top-tabs": { + "version": "6.6.14", + "resolved": "https://registry.npmjs.org/@react-navigation/material-top-tabs/-/material-top-tabs-6.6.14.tgz", + "integrity": "sha512-kfNQt3BInQusEc8A+PDWaKmRQNaCrSqngcOQwUe1uNizJdZJEFdfaInivtBFW2LcQqtzgIHK/am2TgK0Pos6og==", + "dev": true, + "license": "MIT", + "dependencies": { + "color": "^4.2.3", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-pager-view": ">= 4.0.0", + "react-native-tab-view": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/native": { + "version": "6.1.18", + "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.18.tgz", + "integrity": "sha512-mIT9MiL/vMm4eirLcmw2h6h/Nm5FICtnYSdohq4vTLA2FF/6PNhByM7s8ffqoVfE5L0uAa6Xda1B7oddolUiGg==", + "license": "MIT", + "dependencies": { + "@react-navigation/core": "^6.4.17", + "escape-string-regexp": "^4.0.0", + "fast-deep-equal": "^3.1.3", + "nanoid": "^3.1.23" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/@react-navigation/native-stack": { + "version": "6.9.26", + "resolved": "https://registry.npmjs.org/@react-navigation/native-stack/-/native-stack-6.9.26.tgz", + "integrity": "sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==", + "license": "MIT", + "dependencies": { + "@react-navigation/elements": "^1.3.30", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0", + "react-native-screens": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/routers": { + "version": "6.1.9", + "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-6.1.9.tgz", + "integrity": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==", + "license": "MIT", + "dependencies": { + "nanoid": "^3.1.23" + } + }, + "node_modules/@reduxjs/toolkit": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.8.tgz", + "integrity": "sha512-eK/ieXftPRQfaBSmzsamXEyDwkntMTY0e9SG5ETsEOv5JIPKhu3mj992t6B8FJjlnSrZBAAqdT8oMkPe4j+P9g==", + "license": "MIT", + "dependencies": { + "immer": "^10.0.3", + "redux": "^5.0.1", + "redux-thunk": "^3.1.0", + "reselect": "^5.1.0" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || ^18", + "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-redux": { + "optional": true + } + } + }, + "node_modules/@remix-run/node": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@remix-run/node/-/node-2.13.1.tgz", + "integrity": "sha512-2ly7bENj2n2FNBdEN60ZEbNCs5dAOex/QJoo6EZ8RNFfUQxVKAZkMwfQ4ETV2SLWDgkRLj3Jo5n/dx7O2ZGhGw==", + "license": "MIT", + "dependencies": { + "@remix-run/server-runtime": "2.13.1", + "@remix-run/web-fetch": "^4.4.2", + "@web3-storage/multipart-parser": "^1.0.0", + "cookie-signature": "^1.1.0", + "source-map-support": "^0.5.21", + "stream-slice": "^0.1.2", + "undici": "^6.11.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "typescript": "^5.1.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@remix-run/router": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.20.0.tgz", + "integrity": "sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@remix-run/server-runtime": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-2.13.1.tgz", + "integrity": "sha512-2DfBPRcHKVzE4bCNsNkKB50BhCCKF73x+jiS836OyxSIAL+x0tguV2AEjmGXefEXc5AGGzoxkus0AUUEYa29Vg==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.20.0", + "@types/cookie": "^0.6.0", + "@web3-storage/multipart-parser": "^1.0.0", + "cookie": "^0.6.0", + "set-cookie-parser": "^2.4.8", + "source-map": "^0.7.3", + "turbo-stream": "2.4.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "typescript": "^5.1.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@remix-run/server-runtime/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@remix-run/web-blob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-blob/-/web-blob-3.1.0.tgz", + "integrity": "sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==", + "license": "MIT", + "dependencies": { + "@remix-run/web-stream": "^1.1.0", + "web-encoding": "1.1.5" + } + }, + "node_modules/@remix-run/web-fetch": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@remix-run/web-fetch/-/web-fetch-4.4.2.tgz", + "integrity": "sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==", + "license": "MIT", + "dependencies": { + "@remix-run/web-blob": "^3.1.0", + "@remix-run/web-file": "^3.1.0", + "@remix-run/web-form-data": "^3.1.0", + "@remix-run/web-stream": "^1.1.0", + "@web3-storage/multipart-parser": "^1.0.0", + "abort-controller": "^3.0.0", + "data-uri-to-buffer": "^3.0.1", + "mrmime": "^1.0.0" + }, + "engines": { + "node": "^10.17 || >=12.3" + } + }, + "node_modules/@remix-run/web-file": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-file/-/web-file-3.1.0.tgz", + "integrity": "sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==", + "license": "MIT", + "dependencies": { + "@remix-run/web-blob": "^3.1.0" + } + }, + "node_modules/@remix-run/web-form-data": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-form-data/-/web-form-data-3.1.0.tgz", + "integrity": "sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==", + "license": "MIT", + "dependencies": { + "web-encoding": "1.1.5" + } + }, + "node_modules/@remix-run/web-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-stream/-/web-stream-1.1.0.tgz", + "integrity": "sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==", + "license": "MIT", + "dependencies": { + "web-streams-polyfill": "^3.1.1" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", + "integrity": "sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "^18.0.0", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0", + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=14.15" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/@types/node": { + "version": "18.19.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.55.tgz", + "integrity": "sha512-zzw5Vw52205Zr/nmErSEkN5FLqXPuKX/k5d1D7RKHATGqU7y6YfX9QxZraUzUrFGqH6XzOzG196BC35ltJC4Cw==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/@scure/base": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", + "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.5.0.tgz", + "integrity": "sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw==", + "license": "MIT", + "dependencies": { + "@noble/curves": "~1.6.0", + "@noble/hashes": "~1.5.0", + "@scure/base": "~1.1.7" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip39": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.4.0.tgz", + "integrity": "sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.5.0", + "@scure/base": "~1.1.8" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@segment/loosely-validate-event": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz", + "integrity": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==", + "dependencies": { + "component-type": "^1.2.1", + "join-component": "^1.1.0" + } + }, + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "license": "BSD-3-Clause" + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "license": "MIT" + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", + "license": "MIT" + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/hammerjs": { + "version": "2.0.46", + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.46.tgz", + "integrity": "sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.13", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.13.tgz", + "integrity": "sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "license": "MIT" + }, + "node_modules/@types/lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.7.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz", + "integrity": "sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.13", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", + "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.2.79", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.79.tgz", + "integrity": "sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-test-renderer": { + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-18.3.0.tgz", + "integrity": "sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-test-renderer/node_modules/@types/react": { + "version": "18.3.11", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.11.tgz", + "integrity": "sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/use-sync-external-store": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", + "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==", + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@urql/core": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/@urql/core/-/core-2.3.6.tgz", + "integrity": "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==", + "license": "MIT", + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.0", + "wonka": "^4.0.14" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@urql/exchange-retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz", + "integrity": "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==", + "license": "MIT", + "dependencies": { + "@urql/core": ">=2.3.1", + "wonka": "^4.0.14" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } + }, + "node_modules/@urql/exchange-retry/node_modules/@urql/core": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@urql/core/-/core-5.0.6.tgz", + "integrity": "sha512-38rgSDqVNihFDauw1Pm9V7XLWIKuK8V9CKgrUF7/xEKinze8ENKP1ZeBhkG+dxWzJan7CHK+SLl46kAdvZwIlA==", + "license": "MIT", + "dependencies": { + "@0no-co/graphql.web": "^1.0.5", + "wonka": "^6.3.2" + } + }, + "node_modules/@urql/exchange-retry/node_modules/@urql/core/node_modules/wonka": { + "version": "6.3.4", + "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.4.tgz", + "integrity": "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==", + "license": "MIT" + }, + "node_modules/@web3-storage/multipart-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz", + "integrity": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@xmldom/xmldom": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz", + "integrity": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@zxing/text-encoding": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@zxing/text-encoding/-/text-encoding-0.9.0.tgz", + "integrity": "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==", + "license": "(Unlicense OR Apache-2.0)", + "optional": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/abitype": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/abitype/-/abitype-1.0.6.tgz", + "integrity": "sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/wevm" + }, + "peerDependencies": { + "typescript": ">=5.0.4", + "zod": "^3 >=3.22.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aes-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", + "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==", + "license": "MIT" + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/anser": { + "version": "1.4.10", + "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", + "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==", + "license": "MIT" + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-fragments": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz", + "integrity": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==", + "license": "MIT", + "dependencies": { + "colorette": "^1.0.7", + "slice-ansi": "^2.0.0", + "strip-ansi": "^5.0.0" + } + }, + "node_modules/ansi-fragments/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-fragments/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-base": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", + "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==", + "license": "MIT" + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/appdirsjs": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz", + "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==", + "license": "MIT" + }, + "node_modules/application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", + "license": "MIT" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/ast-types": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-react-compiler": { + "version": "0.0.0-experimental-592953e-20240517", + "resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-592953e-20240517.tgz", + "integrity": "sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA==", + "license": "MIT", + "dependencies": { + "@babel/generator": "7.2.0", + "@babel/types": "^7.19.0", + "chalk": "4", + "invariant": "^2.2.4", + "pretty-format": "^24", + "zod": "^3.22.4", + "zod-validation-error": "^2.1.0" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@babel/generator": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.2.0.tgz", + "integrity": "sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.2.0", + "jsesc": "^2.5.1", + "lodash": "^4.17.10", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/babel-plugin-react-compiler/node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-plugin-react-native-web": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz", + "integrity": "sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w==", + "license": "MIT" + }, + "node_modules/babel-plugin-transform-flow-enums": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-expo": { + "version": "11.0.15", + "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-11.0.15.tgz", + "integrity": "sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw==", + "license": "MIT", + "dependencies": { + "@babel/plugin-proposal-decorators": "^7.12.9", + "@babel/plugin-transform-export-namespace-from": "^7.22.11", + "@babel/plugin-transform-object-rest-spread": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.22.15", + "@babel/preset-react": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@react-native/babel-preset": "0.74.87", + "babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517", + "babel-plugin-react-native-web": "~0.19.10", + "react-refresh": "^0.14.2" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base-x": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz", + "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/bech32": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", + "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==", + "license": "MIT" + }, + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", + "license": "MIT", + "dependencies": { + "open": "^8.0.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/better-opn/node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "license": "Unlicense", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bmp-js": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", + "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==", + "license": "MIT" + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "license": "MIT" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/bplist-creator": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz", + "integrity": "sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==", + "license": "MIT", + "dependencies": { + "stream-buffers": "~2.2.0" + } + }, + "node_modules/bplist-parser": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "license": "MIT" + }, + "node_modules/browserslist": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", + "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001663", + "electron-to-chromium": "^1.5.28", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs58": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz", + "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==", + "license": "MIT", + "dependencies": { + "base-x": "^4.0.0" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "license": "MIT", + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "license": "MIT" + }, + "node_modules/buffer-equal": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", + "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "license": "MIT" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz", + "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==", + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "license": "MIT", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001668", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz", + "integrity": "sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/centra": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz", + "integrity": "sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", + "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/command-exists": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "license": "MIT" + }, + "node_modules/component-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/component-type/-/component-type-1.2.2.tgz", + "integrity": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compressible/node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz", + "integrity": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==", + "license": "MIT", + "engines": { + "node": ">=6.6.0" + } + }, + "node_modules/core-js-compat": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cosmiconfig/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-in-js-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", + "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", + "license": "MIT", + "dependencies": { + "hyphenate-style-name": "^1.0.3" + } + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-voronoi": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz", + "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==", + "license": "BSD-3-Clause" + }, + "node_modules/dag-map": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz", + "integrity": "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==", + "license": "MIT" + }, + "node_modules/data-uri-to-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", + "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dayjs": { + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dedent": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "license": "MIT", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delaunator": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-4.0.1.tgz", + "integrity": "sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag==", + "license": "ISC" + }, + "node_modules/delaunay-find": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/delaunay-find/-/delaunay-find-0.0.6.tgz", + "integrity": "sha512-1+almjfrnR7ZamBk0q3Nhg6lqSe6Le4vL0WJDSMx4IDbQwTpUTXPjxC00lqLBT8MYsJpPCbI16sIkw9cPsbi7Q==", + "license": "ISC", + "dependencies": { + "delaunator": "^4.0.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/denodeify": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz", + "integrity": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==", + "license": "MIT" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dijkstrajs": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", + "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==", + "license": "MIT" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-expand": { + "version": "11.0.6", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.6.tgz", + "integrity": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==", + "license": "BSD-2-Clause", + "dependencies": { + "dotenv": "^16.4.4" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.37", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.37.tgz", + "integrity": "sha512-u7000ZB/X0K78TaQqXZ5ktoR7J79B9US7IkE4zyvcILYwOGY2Tx9GRPYstn7HmuPcMxZ+BDGqIsyLpZQi9ufPw==", + "license": "ISC" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT" + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-editor": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz", + "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/envinfo": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", + "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eol": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", + "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==", + "license": "MIT" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-ex/node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ethers": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz", + "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/base64": "5.7.0", + "@ethersproject/basex": "5.7.0", + "@ethersproject/bignumber": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/constants": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/networks": "5.7.1", + "@ethersproject/pbkdf2": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/rlp": "5.7.0", + "@ethersproject/sha2": "5.7.0", + "@ethersproject/signing-key": "5.7.0", + "@ethersproject/solidity": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/units": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/web": "5.7.1", + "@ethersproject/wordlists": "5.7.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" + }, + "node_modules/exec-async": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz", + "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==", + "license": "MIT" + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exif-parser": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", + "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expo": { + "version": "51.0.38", + "resolved": "https://registry.npmjs.org/expo/-/expo-51.0.38.tgz", + "integrity": "sha512-/B9npFkOPmv6WMIhdjQXEY0Z9k/67UZIVkodW8JxGIXwKUZAGHL+z1R5hTtWimpIrvVhyHUFU3f8uhfEKYhHNQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@expo/cli": "0.18.30", + "@expo/config": "9.0.4", + "@expo/config-plugins": "8.0.10", + "@expo/metro-config": "0.18.11", + "@expo/vector-icons": "^14.0.3", + "babel-preset-expo": "~11.0.15", + "expo-asset": "~10.0.10", + "expo-file-system": "~17.0.1", + "expo-font": "~12.0.10", + "expo-keep-awake": "~13.0.2", + "expo-modules-autolinking": "1.11.3", + "expo-modules-core": "1.12.26", + "fbemitter": "^3.0.0", + "whatwg-url-without-unicode": "8.0.0-3" + }, + "bin": { + "expo": "bin/cli" + } + }, + "node_modules/expo-apple-authentication": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/expo-apple-authentication/-/expo-apple-authentication-6.4.2.tgz", + "integrity": "sha512-X4u1n3Ql1hOpztXHbKNq4I1l4+Ff82gC6RmEeW43Eht7VE6E8PrQBpYKw+JJv8osrCJt7R5O1PZwed6WLN5oig==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-application": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/expo-application/-/expo-application-5.9.1.tgz", + "integrity": "sha512-uAfLBNZNahnDZLRU41ZFmNSKtetHUT9Ua557/q189ua0AWV7pQjoVAx49E4953feuvqc9swtU3ScZ/hN1XO/FQ==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-asset": { + "version": "10.0.10", + "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-10.0.10.tgz", + "integrity": "sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==", + "license": "MIT", + "dependencies": { + "expo-constants": "~16.0.0", + "invariant": "^2.2.4", + "md5-file": "^3.2.3" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-build-properties": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/expo-build-properties/-/expo-build-properties-0.12.5.tgz", + "integrity": "sha512-donC1le0PYfLKCPKRMGQoixuWuwDWCngzXSoQXUPsgHTDHQUKr8aw+lcWkTwZcItgNovcnk784I0dyfYDcxybA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.11.0", + "semver": "^7.6.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-constants": { + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-16.0.2.tgz", + "integrity": "sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0", + "@expo/env": "~0.3.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-crypto": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/expo-crypto/-/expo-crypto-13.0.2.tgz", + "integrity": "sha512-7f/IMPYJZkBM21LNEMXGrNo/0uXSVfZTwufUdpNKedJR0fm5fH4DCSN79ZddlV26nF90PuXjK2inIbI6lb0qRA==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-client": { + "version": "4.0.28", + "resolved": "https://registry.npmjs.org/expo-dev-client/-/expo-dev-client-4.0.28.tgz", + "integrity": "sha512-wz5G4vY3Gbk5GuQTyijdqY4Hwr/NDt5OUTErbOu1vd4XRIAsI+8IkK5hsBUhGmqrdkYnP5NxxOxC/soFzX/9+w==", + "license": "MIT", + "dependencies": { + "expo-dev-launcher": "4.0.28", + "expo-dev-menu": "5.0.22", + "expo-dev-menu-interface": "1.8.3", + "expo-manifests": "~0.14.0", + "expo-updates-interface": "~0.16.2" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-launcher": { + "version": "4.0.28", + "resolved": "https://registry.npmjs.org/expo-dev-launcher/-/expo-dev-launcher-4.0.28.tgz", + "integrity": "sha512-goE7jcaGVA2zu4gV3/hQ9RXqGhUZZAu339VYNLbwPdaNCzFaG6A8MZHg18gytCUnZ5QkRJsYi4q/8YcwUCASlQ==", + "license": "MIT", + "dependencies": { + "ajv": "8.11.0", + "expo-dev-menu": "5.0.22", + "expo-manifests": "~0.14.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-launcher/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/expo-dev-menu": { + "version": "5.0.22", + "resolved": "https://registry.npmjs.org/expo-dev-menu/-/expo-dev-menu-5.0.22.tgz", + "integrity": "sha512-VzpdQReAtjbI1qIuwOf0sUzf91HsfGThojgJD9Ez0eca12qY5tTGYzHa1EM9V+zIcNuNZ7+A8bHJJdmZ4zvU6g==", + "license": "MIT", + "dependencies": { + "expo-dev-menu-interface": "1.8.3", + "semver": "^7.5.4" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-menu-interface": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.3.tgz", + "integrity": "sha512-QM0LRozeFT5Ek0N7XpV93M+HMdEKRLEOXn0aW5M3uoUlnqC1+PLtF3HMy3k3hMKTTE/kJ1y1Z7akH07T0lunCQ==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-file-system": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-17.0.1.tgz", + "integrity": "sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-font": { + "version": "12.0.10", + "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-12.0.10.tgz", + "integrity": "sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ==", + "license": "MIT", + "dependencies": { + "fontfaceobserver": "^2.1.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-haptics": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/expo-haptics/-/expo-haptics-13.0.1.tgz", + "integrity": "sha512-qG0EOLDE4bROVT3DtUSyV9g3iB3YFu9j3711X7SNNEnBDXc+2/p3wGDPTnJvPW0ao6HG3/McAOrBQA5hVSdWng==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-json-utils": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/expo-json-utils/-/expo-json-utils-0.13.1.tgz", + "integrity": "sha512-mlfaSArGVb+oJmUcR22jEONlgPp0wj4iNIHfQ2je9Q8WTOqMc0Ws9tUciz3JdJnhffdHqo/k8fpvf0IRmN5HPA==", + "license": "MIT" + }, + "node_modules/expo-keep-awake": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz", + "integrity": "sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-linking": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/expo-linking/-/expo-linking-6.3.1.tgz", + "integrity": "sha512-xuZCntSBGWCD/95iZ+mTUGTwHdy8Sx+immCqbUBxdvZ2TN61P02kKg7SaLS8A4a/hLrSCwrg5tMMwu5wfKr35g==", + "license": "MIT", + "dependencies": { + "expo-constants": "~16.0.0", + "invariant": "^2.2.4" + } + }, + "node_modules/expo-manifests": { + "version": "0.14.3", + "resolved": "https://registry.npmjs.org/expo-manifests/-/expo-manifests-0.14.3.tgz", + "integrity": "sha512-L3b5/qocBPiQjbW0cpOHfnqdKZbTJS7sA3mgeDJT+mWga/xYsdpma1EfNmsuvrOzjLGjStr1k1fceM9Bl49aqQ==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0", + "expo-json-utils": "~0.13.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-modules-autolinking": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.11.3.tgz", + "integrity": "sha512-oYh8EZEvYF5TYppxEKUTTJmbr8j7eRRnrIxzZtMvxLTXoujThVPMFS/cbnSnf2bFm1lq50TdDNABhmEi7z0ngQ==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "commander": "^7.2.0", + "fast-glob": "^3.2.5", + "find-up": "^5.0.0", + "fs-extra": "^9.1.0", + "require-from-string": "^2.0.2", + "resolve-from": "^5.0.0" + }, + "bin": { + "expo-modules-autolinking": "bin/expo-modules-autolinking.js" + } + }, + "node_modules/expo-modules-core": { + "version": "1.12.26", + "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.12.26.tgz", + "integrity": "sha512-y8yDWjOi+rQRdO+HY+LnUlz8qzHerUaw/LUjKPU/mX8PRXP4UUPEEp5fjAwBU44xjNmYSHWZDwet4IBBE+yQUA==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4" + } + }, + "node_modules/expo-router": { + "version": "3.5.23", + "resolved": "https://registry.npmjs.org/expo-router/-/expo-router-3.5.23.tgz", + "integrity": "sha512-Re2kYcxov67hWrcjuu0+3ovsLxYn79PuX6hgtYN20MgigY5ttX79KOIBEVGTO3F3y9dxSrGHyy5Z14BcO+usGQ==", + "license": "MIT", + "dependencies": { + "@expo/metro-runtime": "3.2.3", + "@expo/server": "^0.4.0", + "@radix-ui/react-slot": "1.0.1", + "@react-navigation/bottom-tabs": "~6.5.7", + "@react-navigation/native": "~6.1.6", + "@react-navigation/native-stack": "~6.9.12", + "expo-splash-screen": "0.27.5", + "react-native-helmet-async": "2.0.4", + "schema-utils": "^4.0.1" + }, + "peerDependencies": { + "@react-navigation/drawer": "^6.5.8", + "expo": "*", + "expo-constants": "*", + "expo-linking": "*", + "expo-status-bar": "*", + "react-native-reanimated": "*", + "react-native-safe-area-context": "*", + "react-native-screens": "*" + }, + "peerDependenciesMeta": { + "@react-navigation/drawer": { + "optional": true + }, + "@testing-library/jest-native": { + "optional": true + }, + "react-native-reanimated": { + "optional": true + } + } + }, + "node_modules/expo-router/node_modules/@expo/prebuild-config": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.6.tgz", + "integrity": "sha512-Hts+iGBaG6OQ+N8IEMMgwQElzJeSTb7iUJ26xADEHkaexsucAK+V52dM8M4ceicvbZR9q8M+ebJEGj0MCNA3dQ==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.0-beta.0", + "@expo/config-types": "^51.0.0-unreleased", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@react-native/normalize-colors": "0.74.84", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + }, + "peerDependencies": { + "expo-modules-autolinking": ">=0.8.1" + } + }, + "node_modules/expo-router/node_modules/@react-native/normalize-colors": { + "version": "0.74.84", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.84.tgz", + "integrity": "sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A==", + "license": "MIT" + }, + "node_modules/expo-router/node_modules/expo-splash-screen": { + "version": "0.27.5", + "resolved": "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.5.tgz", + "integrity": "sha512-9rdZuLkFCfgJBxrheUsOEOIW6Rp+9NVlpSE0hgXQwbTCLTncf00IHSE8/L2NbFyeDLNjof1yZBppaV7tXHRUzA==", + "license": "MIT", + "dependencies": { + "@expo/prebuild-config": "7.0.6" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-secure-store": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/expo-secure-store/-/expo-secure-store-13.0.2.tgz", + "integrity": "sha512-3QYgoneo8p8yeeBPBiAfokNNc2xq6+n8+Ob4fAlErEcf4H7Y72LH+K/dx0nQyWau2ZKZUXBxyyfuHFyVKrEVLg==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-splash-screen": { + "version": "0.27.6", + "resolved": "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.6.tgz", + "integrity": "sha512-joUwZQS48k3VMnucQ0Y8Dle1t1FyIvluQA4kjuPx2x7l2dRrfctbo34ahTnC0p1o2go5oN2iEnSTOElY4wRQHw==", + "license": "MIT", + "dependencies": { + "@expo/prebuild-config": "7.0.8" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-status-bar": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-1.12.1.tgz", + "integrity": "sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA==", + "license": "MIT" + }, + "node_modules/expo-system-ui": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/expo-system-ui/-/expo-system-ui-3.0.7.tgz", + "integrity": "sha512-KAs72F5JKhdIfPR9ZNVlRubTPK9uUuevPy5oYEp12xNEzSQcjZKvypH5NpwJuNWkXzrp3n3vZ+3pXsudA7J3KA==", + "license": "MIT", + "dependencies": { + "@react-native/normalize-colors": "0.74.85", + "debug": "^4.3.2" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-updates-interface": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/expo-updates-interface/-/expo-updates-interface-0.16.2.tgz", + "integrity": "sha512-929XBU70q5ELxkKADj1xL0UIm3HvhYhNAOZv5DSk7rrKvLo7QDdPyl+JVnwZm9LrkNbH4wuE2rLoKu1KMgZ+9A==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-web-browser": { + "version": "13.0.3", + "resolved": "https://registry.npmjs.org/expo-web-browser/-/expo-web-browser-13.0.3.tgz", + "integrity": "sha512-HXb7y82ApVJtqk8tManyudtTrCtx8xcUnVzmJECeHCB0SsWSQ+penVLZxJkcyATWoJOsFMnfVSVdrTcpKKGszQ==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "license": "Apache-2.0" + }, + "node_modules/fast-base64-decode": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz", + "integrity": "sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-loops": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-loops/-/fast-loops-1.1.4.tgz", + "integrity": "sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg==", + "license": "MIT" + }, + "node_modules/fast-text-encoding": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz", + "integrity": "sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==", + "license": "Apache-2.0" + }, + "node_modules/fast-uri": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.2.tgz", + "integrity": "sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==", + "license": "MIT" + }, + "node_modules/fast-xml-parser": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz", + "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "license": "BSD-3-Clause", + "dependencies": { + "fbjs": "^3.0.0" + } + }, + "node_modules/fbjs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "license": "MIT", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^1.0.35" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", + "license": "MIT" + }, + "node_modules/fbjs/node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/fetch-retry": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", + "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==", + "license": "MIT" + }, + "node_modules/file-type": { + "version": "16.5.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", + "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", + "license": "MIT", + "dependencies": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.2.4", + "token-types": "^4.1.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/finalhandler/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "license": "Apache-2.0", + "dependencies": { + "micromatch": "^4.0.2" + } + }, + "node_modules/flow-enums-runtime": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==", + "license": "MIT" + }, + "node_modules/flow-parser": { + "version": "0.248.1", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.248.1.tgz", + "integrity": "sha512-fkCfVPelbTzSVp+jVwSvEyc+I4WG8MNhRG/EWSZZTlgHAMEdhXJaFEbfErXxMktboMhVGchvEFhWxkzNGM1m2A==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/fontfaceobserver": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz", + "integrity": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==", + "license": "BSD-2-Clause" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz", + "integrity": "sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/freeport-async": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz", + "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/getenv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz", + "integrity": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/gifwrap": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz", + "integrity": "sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==", + "license": "MIT", + "dependencies": { + "image-q": "^4.0.0", + "omggif": "^1.0.10" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "license": "MIT", + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphql": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", + "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", + "license": "MIT", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hermes-estree": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.19.1.tgz", + "integrity": "sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==", + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.19.1.tgz", + "integrity": "sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.19.1" + } + }, + "node_modules/hermes-profile-transformer": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz", + "integrity": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==", + "license": "MIT", + "dependencies": { + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/hermes-profile-transformer/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hosted-git-info": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", + "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/hyphenate-style-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz", + "integrity": "sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==", + "license": "BSD-3-Clause" + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-q": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", + "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", + "license": "MIT", + "dependencies": { + "@types/node": "16.9.1" + } + }, + "node_modules/image-q/node_modules/@types/node": { + "version": "16.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", + "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==", + "license": "MIT" + }, + "node_modules/image-size": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz", + "integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==", + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=16.x" + } + }, + "node_modules/immer": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-10.1.1.tgz", + "integrity": "sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/inline-style-prefixer": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz", + "integrity": "sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==", + "license": "MIT", + "dependencies": { + "css-in-js-utils": "^3.1.0", + "fast-loops": "^1.1.3" + } + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "license": "MIT", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==", + "license": "MIT" + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-invalid-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", + "integrity": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==", + "license": "MIT", + "dependencies": { + "is-glob": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-valid-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", + "integrity": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==", + "license": "MIT", + "dependencies": { + "is-invalid-path": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isows": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/isows/-/isows-1.0.6.tgz", + "integrity": "sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "peerDependencies": { + "ws": "*" + } + }, + "node_modules/isows/node_modules/ws": { + "version": "8.18.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-expo": { + "version": "51.0.4", + "resolved": "https://registry.npmjs.org/jest-expo/-/jest-expo-51.0.4.tgz", + "integrity": "sha512-WmlR4rUur1TNF/F14brKCmPdX3TWf7Bno/6A1PuxnflN79LEIXpXuPKMlMWwCCChTohGB5FRniknRibblWu1ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/json-file": "^8.3.0", + "@jest/create-cache-key-function": "^29.2.1", + "babel-jest": "^29.2.1", + "find-up": "^5.0.0", + "jest-environment-jsdom": "^29.2.1", + "jest-watch-select-projects": "^2.0.0", + "jest-watch-typeahead": "2.2.1", + "json5": "^2.2.3", + "lodash": "^4.17.19", + "react-test-renderer": "18.2.0", + "stacktrace-js": "^2.0.2" + }, + "bin": { + "jest": "bin/jest.js" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-select-projects": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jest-watch-select-projects/-/jest-watch-select-projects-2.0.0.tgz", + "integrity": "sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.0", + "chalk": "^3.0.0", + "prompts": "^2.2.1" + } + }, + "node_modules/jest-watch-select-projects/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz", + "integrity": "sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^6.0.0", + "chalk": "^4.0.0", + "jest-regex-util": "^29.0.0", + "jest-watcher": "^29.0.0", + "slash": "^5.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0 || ^29.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz", + "integrity": "sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jimp-compact": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz", + "integrity": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==", + "license": "MIT" + }, + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/join-component": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz", + "integrity": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==", + "license": "MIT" + }, + "node_modules/jose": { + "version": "4.15.9", + "resolved": "https://registry.npmjs.org/jose/-/jose-4.15.9.tgz", + "integrity": "sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "node_modules/jpeg-js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", + "license": "BSD-3-Clause" + }, + "node_modules/js-cookie": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", + "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsc-android": { + "version": "250231.0.0", + "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", + "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==", + "license": "BSD-2-Clause" + }, + "node_modules/jsc-safe-url": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", + "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==", + "license": "0BSD" + }, + "node_modules/jscodeshift": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", + "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.13.16", + "@babel/parser": "^7.13.16", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.12", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/preset-flow": "^7.13.13", + "@babel/preset-typescript": "^7.13.0", + "@babel/register": "^7.13.16", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.21.0", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-deref-sync": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz", + "integrity": "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==", + "license": "MIT", + "dependencies": { + "clone": "^2.1.2", + "dag-map": "~1.0.0", + "is-valid-path": "^0.1.1", + "lodash": "^4.17.13", + "md5": "~2.2.0", + "memory-cache": "~0.2.0", + "traverse": "~0.6.6", + "valid-url": "~1.0.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/json-schema-deref-sync/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/json-schema-deref-sync/node_modules/md5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", + "integrity": "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "~0.0.1", + "crypt": "~0.0.1", + "is-buffer": "~1.1.1" + } + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "license": "ISC" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/libphonenumber-js": { + "version": "1.11.12", + "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.12.tgz", + "integrity": "sha512-QkJn9/D7zZ1ucvT++TQSvZuSA2xAWeUytU+DiEQwbPKLyrDpvbul2AFs1CGbRAPpSCCk47aRAb5DX5mmcayp4g==", + "license": "MIT" + }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/lightningcss": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.19.0.tgz", + "integrity": "sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==", + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-darwin-arm64": "1.19.0", + "lightningcss-darwin-x64": "1.19.0", + "lightningcss-linux-arm-gnueabihf": "1.19.0", + "lightningcss-linux-arm64-gnu": "1.19.0", + "lightningcss-linux-arm64-musl": "1.19.0", + "lightningcss-linux-x64-gnu": "1.19.0", + "lightningcss-linux-x64-musl": "1.19.0", + "lightningcss-win32-x64-msvc": "1.19.0" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz", + "integrity": "sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/load-bmfont": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.2.tgz", + "integrity": "sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog==", + "license": "MIT", + "dependencies": { + "buffer-equal": "0.0.1", + "mime": "^1.3.4", + "parse-bmfont-ascii": "^1.0.3", + "parse-bmfont-binary": "^1.0.5", + "parse-bmfont-xml": "^1.1.4", + "phin": "^3.7.1", + "xhr": "^2.0.1", + "xtend": "^4.0.0" + } + }, + "node_modules/load-bmfont/node_modules/phin": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz", + "integrity": "sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==", + "license": "MIT", + "dependencies": { + "centra": "^2.7.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/logkitty": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz", + "integrity": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==", + "license": "MIT", + "dependencies": { + "ansi-fragments": "^0.2.1", + "dayjs": "^1.8.15", + "yargs": "^15.1.0" + }, + "bin": { + "logkitty": "bin/logkitty.js" + } + }, + "node_modules/logkitty/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/logkitty/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/logkitty/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC" + }, + "node_modules/logkitty/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/marky": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", + "license": "Apache-2.0" + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/md5-file": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz", + "integrity": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==", + "license": "MIT", + "dependencies": { + "buffer-alloc": "^1.1.0" + }, + "bin": { + "md5-file": "cli.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/md5hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz", + "integrity": "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==", + "license": "MIT" + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" + }, + "node_modules/memory-cache": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz", + "integrity": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==", + "license": "BSD-2-Clause" + }, + "node_modules/merge-options": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", + "integrity": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/metro": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro/-/metro-0.80.12.tgz", + "integrity": "sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", + "accepts": "^1.3.7", + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "denodeify": "^1.2.1", + "error-stack-parser": "^2.0.6", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "hermes-parser": "0.23.1", + "image-size": "^1.0.2", + "invariant": "^2.2.4", + "jest-worker": "^29.6.3", + "jsc-safe-url": "^0.2.2", + "lodash.throttle": "^4.1.1", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-config": "0.80.12", + "metro-core": "0.80.12", + "metro-file-map": "0.80.12", + "metro-resolver": "0.80.12", + "metro-runtime": "0.80.12", + "metro-source-map": "0.80.12", + "metro-symbolicate": "0.80.12", + "metro-transform-plugins": "0.80.12", + "metro-transform-worker": "0.80.12", + "mime-types": "^2.1.27", + "nullthrows": "^1.1.1", + "serialize-error": "^2.1.0", + "source-map": "^0.5.6", + "strip-ansi": "^6.0.0", + "throat": "^5.0.0", + "ws": "^7.5.10", + "yargs": "^17.6.2" + }, + "bin": { + "metro": "src/cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz", + "integrity": "sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "hermes-parser": "0.23.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==", + "license": "MIT" + }, + "node_modules/metro-babel-transformer/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.23.1" + } + }, + "node_modules/metro-cache": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.80.12.tgz", + "integrity": "sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==", + "license": "MIT", + "dependencies": { + "exponential-backoff": "^3.1.1", + "flow-enums-runtime": "^0.0.6", + "metro-core": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-cache-key": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.80.12.tgz", + "integrity": "sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-config": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.80.12.tgz", + "integrity": "sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==", + "license": "MIT", + "dependencies": { + "connect": "^3.6.5", + "cosmiconfig": "^5.0.5", + "flow-enums-runtime": "^0.0.6", + "jest-validate": "^29.6.3", + "metro": "0.80.12", + "metro-cache": "0.80.12", + "metro-core": "0.80.12", + "metro-runtime": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-core": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.80.12.tgz", + "integrity": "sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "lodash.throttle": "^4.1.1", + "metro-resolver": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-file-map": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.80.12.tgz", + "integrity": "sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==", + "license": "MIT", + "dependencies": { + "anymatch": "^3.0.3", + "debug": "^2.2.0", + "fb-watchman": "^2.0.0", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "invariant": "^2.2.4", + "jest-worker": "^29.6.3", + "micromatch": "^4.0.4", + "node-abort-controller": "^3.1.1", + "nullthrows": "^1.1.1", + "walker": "^1.0.7" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/metro-file-map/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro-file-map/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro-minify-terser": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz", + "integrity": "sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "terser": "^5.15.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-resolver": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.80.12.tgz", + "integrity": "sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-runtime": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.80.12.tgz", + "integrity": "sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.25.0", + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-source-map": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.80.12.tgz", + "integrity": "sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "metro-symbolicate": "0.80.12", + "nullthrows": "^1.1.1", + "ob1": "0.80.12", + "source-map": "^0.5.6", + "vlq": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-source-map/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro-symbolicate": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz", + "integrity": "sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "metro-source-map": "0.80.12", + "nullthrows": "^1.1.1", + "source-map": "^0.5.6", + "through2": "^2.0.1", + "vlq": "^1.0.0" + }, + "bin": { + "metro-symbolicate": "src/index.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-symbolicate/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro-transform-plugins": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz", + "integrity": "sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-transform-worker": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz", + "integrity": "sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "metro": "0.80.12", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-minify-terser": "0.80.12", + "metro-source-map": "0.80.12", + "metro-transform-plugins": "0.80.12", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" + }, + "node_modules/metro/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==", + "license": "MIT" + }, + "node_modules/metro/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.23.1" + } + }, + "node_modules/metro/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "dependencies": { + "dom-walk": "^0.1.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true, + "license": "MIT" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moment": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/nested-error-stacks": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", + "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==", + "license": "MIT" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "license": "MIT" + }, + "node_modules/nocache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz", + "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "license": "MIT" + }, + "node_modules/node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.10.5" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "license": "MIT" + }, + "node_modules/node-stream-zip": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz", + "integrity": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/antelle" + } + }, + "node_modules/node-vibrant": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/node-vibrant/-/node-vibrant-3.1.6.tgz", + "integrity": "sha512-Wlc/hQmBMOu6xon12ZJHS2N3M+I6J8DhrD3Yo6m5175v8sFkVIN+UjhKVRcO+fqvre89ASTpmiFEP3nPO13SwA==", + "license": "MIT", + "dependencies": { + "@jimp/custom": "^0.16.1", + "@jimp/plugin-resize": "^0.16.1", + "@jimp/types": "^0.16.1", + "@types/lodash": "^4.14.53", + "@types/node": "^10.11.7", + "lodash": "^4.17.20", + "url": "^0.11.0" + } + }, + "node_modules/node-vibrant/node_modules/@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-package-arg": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-7.0.0.tgz", + "integrity": "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==", + "license": "ISC", + "dependencies": { + "hosted-git-info": "^3.0.2", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + } + }, + "node_modules/npm-package-arg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nullthrows": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", + "license": "MIT" + }, + "node_modules/nwsapi": { + "version": "2.2.13", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz", + "integrity": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/ob1": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.80.12.tgz", + "integrity": "sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "license": "ISC", + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/parse-bmfont-ascii": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", + "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==", + "license": "MIT" + }, + "node_modules/parse-bmfont-binary": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", + "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==", + "license": "MIT" + }, + "node_modules/parse-bmfont-xml": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz", + "integrity": "sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==", + "license": "MIT", + "dependencies": { + "xml-parse-from-string": "^1.0.0", + "xml2js": "^0.5.0" + } + }, + "node_modules/parse-bmfont-xml/node_modules/xml2js": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz", + "integrity": "sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/parse-headers": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", + "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==", + "license": "MIT" + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-png": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz", + "integrity": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==", + "license": "MIT", + "dependencies": { + "pngjs": "^3.3.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/parse5": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.0.tgz", + "integrity": "sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^4.5.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "license": "0BSD", + "dependencies": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/peek-readable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", + "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/permissionless": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/permissionless/-/permissionless-0.2.17.tgz", + "integrity": "sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A==", + "license": "MIT", + "peerDependencies": { + "viem": "^2.21.22" + } + }, + "node_modules/phin": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", + "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pixelmatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", + "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", + "license": "ISC", + "dependencies": { + "pngjs": "^3.0.0" + }, + "bin": { + "pixelmatch": "bin/pixelmatch" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plist": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/plist/node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/plist/node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" + }, + "node_modules/prettier": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/property-expr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz", + "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==", + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true, + "license": "MIT" + }, + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ], + "license": "MIT" + }, + "node_modules/qrcode": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz", + "integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==", + "license": "MIT", + "dependencies": { + "dijkstrajs": "^1.0.1", + "pngjs": "^5.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "qrcode": "bin/qrcode" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/qrcode-terminal": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz", + "integrity": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==", + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/qrcode/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/qrcode/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/qrcode/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/pngjs": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", + "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/qrcode/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC" + }, + "node_modules/qrcode/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz", + "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==", + "license": "MIT", + "dependencies": { + "decode-uri-component": "^0.2.2", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", + "license": "MIT", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-devtools-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-5.3.2.tgz", + "integrity": "sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==", + "license": "MIT", + "dependencies": { + "shell-quote": "^1.6.1", + "ws": "^7" + } + }, + "node_modules/react-devtools-core/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", + "license": "MIT" + }, + "node_modules/react-freeze": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz", + "integrity": "sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": ">=17.0.0" + } + }, + "node_modules/react-hook-form": { + "version": "7.53.0", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.53.0.tgz", + "integrity": "sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18 || ^19" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-native": { + "version": "0.74.5", + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.74.5.tgz", + "integrity": "sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw==", + "license": "MIT", + "dependencies": { + "@jest/create-cache-key-function": "^29.6.3", + "@react-native-community/cli": "13.6.9", + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-platform-ios": "13.6.9", + "@react-native/assets-registry": "0.74.87", + "@react-native/codegen": "0.74.87", + "@react-native/community-cli-plugin": "0.74.87", + "@react-native/gradle-plugin": "0.74.87", + "@react-native/js-polyfills": "0.74.87", + "@react-native/normalize-colors": "0.74.87", + "@react-native/virtualized-lists": "0.74.87", + "abort-controller": "^3.0.0", + "anser": "^1.4.9", + "ansi-regex": "^5.0.0", + "base64-js": "^1.5.1", + "chalk": "^4.0.0", + "event-target-shim": "^5.0.1", + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "jest-environment-node": "^29.6.3", + "jsc-android": "^250231.0.0", + "memoize-one": "^5.0.0", + "metro-runtime": "^0.80.3", + "metro-source-map": "^0.80.3", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1", + "pretty-format": "^26.5.2", + "promise": "^8.3.0", + "react-devtools-core": "^5.0.0", + "react-refresh": "^0.14.0", + "react-shallow-renderer": "^16.15.0", + "regenerator-runtime": "^0.13.2", + "scheduler": "0.24.0-canary-efb381bbf-20230505", + "stacktrace-parser": "^0.1.10", + "whatwg-fetch": "^3.0.0", + "ws": "^6.2.2", + "yargs": "^17.6.2" + }, + "bin": { + "react-native": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "18.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-native-animatable": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/react-native-animatable/-/react-native-animatable-1.3.3.tgz", + "integrity": "sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.7.2" + } + }, + "node_modules/react-native-draggable-flatlist": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/react-native-draggable-flatlist/-/react-native-draggable-flatlist-4.0.1.tgz", + "integrity": "sha512-ZO1QUTNx64KZfXGXeXcBfql67l38X7kBcJ3rxUVZzPHt5r035GnGzIC0F8rqSXp6zgnwgUYMfB6zQc5PKmPL9Q==", + "license": "MIT", + "dependencies": { + "@babel/preset-typescript": "^7.17.12" + }, + "peerDependencies": { + "react-native": ">=0.64.0", + "react-native-gesture-handler": ">=2.0.0", + "react-native-reanimated": ">=2.8.0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/plugin-transform-typescript": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz", + "integrity": "sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/preset-typescript": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz", + "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-fast-image": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz", + "integrity": "sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg==", + "license": "(MIT AND Apache-2.0)", + "peerDependencies": { + "react": "^17 || ^18", + "react-native": ">=0.60.0" + } + }, + "node_modules/react-native-flipper": { + "version": "0.164.0", + "resolved": "https://registry.npmjs.org/react-native-flipper/-/react-native-flipper-0.164.0.tgz", + "integrity": "sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==", + "dev": true, + "license": "MIT", + "optional": true, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-native": ">0.62.0" + } + }, + "node_modules/react-native-gesture-handler": { + "version": "2.16.2", + "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz", + "integrity": "sha512-vGFlrDKlmyI+BT+FemqVxmvO7nqxU33cgXVsn6IKAFishvlG3oV2Ds67D5nPkHMea8T+s1IcuMm0bF8ntZtAyg==", + "license": "MIT", + "dependencies": { + "@egjs/hammerjs": "^2.0.17", + "hoist-non-react-statics": "^3.3.0", + "invariant": "^2.2.4", + "lodash": "^4.17.21", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-get-random-values": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz", + "integrity": "sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==", + "license": "MIT", + "dependencies": { + "fast-base64-decode": "^1.0.0" + }, + "peerDependencies": { + "react-native": ">=0.56" + } + }, + "node_modules/react-native-helmet-async": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/react-native-helmet-async/-/react-native-helmet-async-2.0.4.tgz", + "integrity": "sha512-m3CkXWss6B1dd6mCMleLpzDCJJGGaHOLQsUzZv8kAASJmMfmVT4d2fx375iXKTRWT25ThBfae3dECuX5cq/8hg==", + "license": "Apache-2.0", + "dependencies": { + "invariant": "^2.2.4", + "react-fast-compare": "^3.2.2", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": "^16.6.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-native-image-colors": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/react-native-image-colors/-/react-native-image-colors-2.4.0.tgz", + "integrity": "sha512-qlC31+UNVthByNLVuYSEQeZghOXn3uy1GLF6lHKlvT1HM1GGFH/LXNhU8iXAoQvUyzNa1bEAOTo09Hwinvp/rA==", + "license": "MIT", + "dependencies": { + "node-vibrant": "3.1.6" + }, + "peerDependencies": { + "expo": "*", + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-linear-gradient": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz", + "integrity": "sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-modal": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/react-native-modal/-/react-native-modal-13.0.1.tgz", + "integrity": "sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.6.2", + "react-native-animatable": "1.3.3" + }, + "peerDependencies": { + "react": "*", + "react-native": ">=0.65.0" + } + }, + "node_modules/react-native-otp-entry": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/react-native-otp-entry/-/react-native-otp-entry-1.7.3.tgz", + "integrity": "sha512-BN/oEpNMfA0cnw9tB9Oq6PZZQztOiq1Ow/M+rAFd0Nll9aO1gwfCwymgIGI89/+63FkmMbv39LcgsfkZNAYzWw==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-pager-view": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-native-pager-view/-/react-native-pager-view-6.3.0.tgz", + "integrity": "sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-passkeys": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/react-native-passkeys/-/react-native-passkeys-0.3.0.tgz", + "integrity": "sha512-xjdoZVRInwFXXD92jpUvSM1OGiEmJgPWm6xc4WFSHb7LnypJ4LjSbfofi59WwA/n7Z/25mcnqZNh5Xq4Viuk+Q==", + "license": "MIT", + "peerDependencies": { + "expo": "*", + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-qrcode-svg": { + "version": "6.3.2", + "resolved": "https://registry.npmjs.org/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.2.tgz", + "integrity": "sha512-IJ0UoKd33ATm08K569SOAQx0tP/MTmSjwhIPfEfgbCUGQuU6JTfgDT7sm1TVgAwPbTuA10wwJJYgWXnnFBQ4FQ==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.0", + "qrcode": "^1.5.1", + "text-encoding": "^0.7.0" + }, + "peerDependencies": { + "react": "*", + "react-native": ">=0.63.4", + "react-native-svg": ">=13.2.0" + } + }, + "node_modules/react-native-reanimated": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.10.1.tgz", + "integrity": "sha512-sfxg6vYphrDc/g4jf/7iJ7NRi+26z2+BszPmvmk0Vnrz6FL7HYljJqTf531F1x6tFmsf+FEAmuCtTUIXFLVo9w==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-arrow-functions": "^7.0.0-0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.0.0-0", + "@babel/plugin-transform-optional-chaining": "^7.0.0-0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0-0", + "@babel/plugin-transform-template-literals": "^7.0.0-0", + "@babel/preset-typescript": "^7.16.7", + "convert-source-map": "^2.0.0", + "invariant": "^2.2.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0", + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-safe-area-context": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz", + "integrity": "sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-screens": { + "version": "3.31.1", + "resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.31.1.tgz", + "integrity": "sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==", + "license": "MIT", + "dependencies": { + "react-freeze": "^1.0.0", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-svg": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/react-native-svg/-/react-native-svg-15.2.0.tgz", + "integrity": "sha512-R0E6IhcJfVLsL0lRmnUSm72QO+mTqcAOM5Jb8FVGxJqX3NfJMlMP0YyvcajZiaRR8CqQUpEoqrY25eyZb006kw==", + "license": "MIT", + "dependencies": { + "css-select": "^5.1.0", + "css-tree": "^1.1.3" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-tab-view": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/react-native-tab-view/-/react-native-tab-view-3.5.2.tgz", + "integrity": "sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==", + "license": "MIT", + "dependencies": { + "use-latest-callback": "^0.1.5" + }, + "peerDependencies": { + "react": "*", + "react-native": "*", + "react-native-pager-view": "*" + } + }, + "node_modules/react-native-web": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/react-native-web/-/react-native-web-0.19.12.tgz", + "integrity": "sha512-o2T0oztoVDQjztt4YksO9S1XRjoH/AqcSvifgWLrPJgGVbMWsfhILgl6lfUdEamVZzZSVV/2gqDVMAk/qq7mZw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.6", + "@react-native/normalize-colors": "^0.74.1", + "fbjs": "^3.0.4", + "inline-style-prefixer": "^6.0.1", + "memoize-one": "^6.0.0", + "nullthrows": "^1.1.1", + "postcss-value-parser": "^4.2.0", + "styleq": "^0.1.3" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/react-native-web/node_modules/@react-native/normalize-colors": { + "version": "0.74.88", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.88.tgz", + "integrity": "sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==", + "license": "MIT" + }, + "node_modules/react-native-web/node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, + "node_modules/react-native-webview": { + "version": "13.12.3", + "resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.12.3.tgz", + "integrity": "sha512-Y1I5YyDYyE7NC96RHLhd2nxh7ymLYOYLTefgx5ixxw2OToQK0ow3OJ+o77QcI1Tuevj5PCxwqC/14ceS/7yPJQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^4.0.0", + "invariant": "2.2.4" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/react-native/node_modules/@react-native/normalize-colors": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.87.tgz", + "integrity": "sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA==", + "license": "MIT" + }, + "node_modules/react-native/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/react-native/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/react-native/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/react-native/node_modules/scheduler": { + "version": "0.24.0-canary-efb381bbf-20230505", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", + "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/react-redux": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.1.2.tgz", + "integrity": "sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w==", + "license": "MIT", + "dependencies": { + "@types/use-sync-external-store": "^0.0.3", + "use-sync-external-store": "^1.0.0" + }, + "peerDependencies": { + "@types/react": "^18.2.25", + "react": "^18.0", + "redux": "^5.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "redux": { + "optional": true + } + } + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-shallow-renderer": { + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", + "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1", + "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-shallow-renderer/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/react-test-renderer": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.2.0.tgz", + "integrity": "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "react-is": "^18.2.0", + "react-shallow-renderer": "^16.15.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-test-renderer/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/reactotron-core-client": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/reactotron-core-client/-/reactotron-core-client-2.9.4.tgz", + "integrity": "sha512-0MVo8R2YVC0t6uEkFJbdelC0lOzJun/+qIOlEpIYh08VKiNVR7GYXevhZvJfSmMAUSVFoGVpeQyTbeW3brgSDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "reactotron-core-contract": "0.2.4" + } + }, + "node_modules/reactotron-core-contract": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/reactotron-core-contract/-/reactotron-core-contract-0.2.4.tgz", + "integrity": "sha512-CmNYahBdk9uES4vimlRsoM1gAQA6T5gXTuJzDvduOjKd0IZufZjkxzBAvhpkX5OIkPl4Xlsv+1AHXLWSJSwFLA==", + "dev": true, + "license": "MIT" + }, + "node_modules/reactotron-react-native": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/reactotron-react-native/-/reactotron-react-native-5.1.9.tgz", + "integrity": "sha512-tHkC5ZADXBJ9vRcs8TFEWOcK1QzHEzI3UnorwDDSU3hnWpwVt5MtxBcgQkicLIRWcPROe4lIJMf6SG9uc+opuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mitt": "^3.0.1", + "reactotron-core-client": "2.9.4" + }, + "optionalDependencies": { + "react-native-flipper": "^0.164.0" + }, + "peerDependencies": { + "react-native": ">=0.40.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "license": "MIT", + "dependencies": { + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==", + "license": "BSD" + }, + "node_modules/recast": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "license": "MIT", + "dependencies": { + "ast-types": "0.15.2", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/redux": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz", + "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==", + "license": "MIT" + }, + "node_modules/redux-persist": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz", + "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==", + "license": "MIT", + "peerDependencies": { + "redux": ">4.0.0" + } + }, + "node_modules/redux-thunk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz", + "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==", + "license": "MIT", + "peerDependencies": { + "redux": "^5.0.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.0.2" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/remove-trailing-slash": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz", + "integrity": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "license": "ISC" + }, + "node_modules/requireg": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz", + "integrity": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==", + "dependencies": { + "nested-error-stacks": "~2.0.1", + "rc": "~1.2.7", + "resolve": "~1.7.1" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/requireg/node_modules/resolve": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", + "license": "MIT", + "dependencies": { + "path-parse": "^1.0.5" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/reselect": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz", + "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "license": "ISC" + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scrypt-js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", + "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==", + "license": "MIT" + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serialize-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", + "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-static/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-static/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-static/node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-static/node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "license": "ISC" + }, + "node_modules/set-cookie-parser": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", + "license": "MIT" + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/simple-plist": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz", + "integrity": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==", + "license": "MIT", + "dependencies": { + "bplist-creator": "0.1.0", + "bplist-parser": "0.3.1", + "plist": "^3.0.5" + } + }, + "node_modules/simple-plist/node_modules/bplist-creator": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz", + "integrity": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==", + "license": "MIT", + "dependencies": { + "stream-buffers": "2.2.x" + } + }, + "node_modules/simple-plist/node_modules/bplist-parser": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz", + "integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "license": "MIT", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/ssri": { + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", + "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/stack-generator": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", + "integrity": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/stacktrace-gps": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz", + "integrity": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "0.5.6", + "stackframe": "^1.3.4" + } + }, + "node_modules/stacktrace-gps/node_modules/source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz", + "integrity": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } + }, + "node_modules/stacktrace-parser": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", + "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.7.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stacktrace-parser/node_modules/type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-buffers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", + "integrity": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==", + "license": "Unlicense", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/stream-slice": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/stream-slice/-/stream-slice-0.1.2.tgz", + "integrity": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==", + "license": "MIT" + }, + "node_modules/strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "license": "MIT" + }, + "node_modules/strtok3": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", + "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/structured-headers": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz", + "integrity": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==", + "license": "MIT" + }, + "node_modules/styleq": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/styleq/-/styleq-0.1.3.tgz", + "integrity": "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==", + "license": "MIT" + }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sudo-prompt": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz", + "integrity": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==", + "license": "MIT" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", + "license": "MIT", + "dependencies": { + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.7.1.tgz", + "integrity": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==", + "license": "MIT", + "dependencies": { + "del": "^6.0.0", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.34.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.34.1.tgz", + "integrity": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-encoding": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/text-encoding/-/text-encoding-0.7.0.tgz", + "integrity": "sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA==", + "license": "(Unlicense OR Apache-2.0)" + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "license": "MIT" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/timm": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", + "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==", + "license": "MIT" + }, + "node_modules/tiny-case": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-case/-/tiny-case-1.0.3.tgz", + "integrity": "sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==", + "license": "MIT" + }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "license": "MIT" + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "license": "BSD-3-Clause" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/token-types": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", + "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/toposort": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==", + "license": "MIT" + }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/traverse": { + "version": "0.6.10", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.10.tgz", + "integrity": "sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==", + "license": "MIT", + "dependencies": { + "gopd": "^1.0.1", + "typedarray.prototype.slice": "^1.0.3", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "license": "0BSD" + }, + "node_modules/turbo-stream": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.4.0.tgz", + "integrity": "sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==", + "license": "ISC" + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", + "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-errors": "^1.3.0", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-offset": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz", + "integrity": "sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici": { + "version": "6.20.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.20.1.tgz", + "integrity": "sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "license": "MIT" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "license": "ISC", + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz", + "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==", + "license": "MIT", + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.12.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/url-join": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz", + "integrity": "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==", + "license": "MIT" + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "license": "MIT" + }, + "node_modules/use-latest-callback": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.11.tgz", + "integrity": "sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", + "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/utif": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz", + "integrity": "sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==", + "license": "MIT", + "dependencies": { + "pako": "^1.0.5" + } + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/valid-url": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" + }, + "node_modules/validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", + "license": "ISC", + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/victory": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory/-/victory-37.1.2.tgz", + "integrity": "sha512-V1YkJiWQ/vu5MSZ/Yf9/AJQeE+N1p1eUW6r5xJgOjbhioIbnL7FBTyJW1AXqqDZN9WdyECI3TkFQ1l/QbgztoA==", + "license": "MIT", + "dependencies": { + "victory-area": "37.1.2", + "victory-axis": "37.1.2", + "victory-bar": "37.1.2", + "victory-box-plot": "37.1.2", + "victory-brush-container": "37.1.2", + "victory-brush-line": "37.1.2", + "victory-candlestick": "37.1.2", + "victory-canvas": "37.1.2", + "victory-chart": "37.1.2", + "victory-core": "37.1.2", + "victory-create-container": "37.1.2", + "victory-cursor-container": "37.1.2", + "victory-errorbar": "37.1.2", + "victory-group": "37.1.2", + "victory-histogram": "37.1.2", + "victory-legend": "37.1.2", + "victory-line": "37.1.2", + "victory-pie": "37.1.2", + "victory-polar-axis": "37.1.2", + "victory-scatter": "37.1.2", + "victory-selection-container": "37.1.2", + "victory-shared-events": "37.1.2", + "victory-stack": "37.1.2", + "victory-tooltip": "37.1.2", + "victory-voronoi": "37.1.2", + "victory-voronoi-container": "37.1.2", + "victory-zoom-container": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-area": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-area/-/victory-area-37.1.2.tgz", + "integrity": "sha512-72i02xTD47i7P+X02AHhZ32yO16VcM1h/7gulgAioLEx+8m3zShBKu46Md/vqmbyS2Bypr3xpUvd+8mCDIvCbw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-axis": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-axis/-/victory-axis-37.1.2.tgz", + "integrity": "sha512-TuivC84cHrFoDetWDhU2VXQ34froIXBrtjYYPdmwBrMEFSu+FfrakYWUr3r25XNEPyOyk4z3a8lL/sqrxWYSRQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-bar": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-bar/-/victory-bar-37.1.2.tgz", + "integrity": "sha512-VJDE+TGSgyIchvln189cPMuG3LYqa8zCjHa8kYValP3bFTa5c+D1Y8R/FjVger40uEL3aQz1teHJODJCOxuXGA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-box-plot": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-box-plot/-/victory-box-plot-37.1.2.tgz", + "integrity": "sha512-i7JIjpaPTr3uaoW6ibfX4PrH1QcUeLXNxeCbmPRb+Hs+ug0d16J4RELPCaeNo/ZNg4rEzfueNTvExsYFIpHaWw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-brush-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-brush-container/-/victory-brush-container-37.1.2.tgz", + "integrity": "sha512-pJrMSo815UJxOT5OTXnq1tI5qQxQLnrlgDRNF8pxVF9dSxm7BhETjZSQfZgcLmCe3N931U19j8oCxw8sMSpJJw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-brush-line": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-brush-line/-/victory-brush-line-37.1.2.tgz", + "integrity": "sha512-Bq9JGu/o4p/NQ/ZOASUm6MmomS+2b0EvAHjULa06z7nsElNePpedTYPk2aAb7mr4sJZe6u/AsDMthG+C8Zc32Q==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-candlestick": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-candlestick/-/victory-candlestick-37.1.2.tgz", + "integrity": "sha512-X+pLwvdIj/+nrvk1bZxhdJ9UBj7QLN4jdkIPDl6ekjfZ9Ylhi8/I/ttAkBu+7w7ilpGudIK6fr7PVHyZyYU6TA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-canvas": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-canvas/-/victory-canvas-37.1.2.tgz", + "integrity": "sha512-4Qmz7YpFBj2KaBSe+j5zLVrKAJLG3HtXVVaKI3oUzw4GzHlYXf77dJLYe2EqJVEFCMgVsmASqE3xVTklioMV7g==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-bar": "37.1.2", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-chart": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-chart/-/victory-chart-37.1.2.tgz", + "integrity": "sha512-efV7lnqwu4+zLzB6aY3jjYbbfYJ9+1VC6uwx+8AGjbb8vGkbByUOKC6Fhdcuca2mLqNQHM0Ynvevs3+4XrBz1g==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-axis": "37.1.2", + "victory-core": "37.1.2", + "victory-polar-axis": "37.1.2", + "victory-shared-events": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-core": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-core/-/victory-core-37.1.2.tgz", + "integrity": "sha512-9fskAQw9MvYEBL+0cDk2lihKyECdrh+8HGicDfSKGOWtsSLk+x7R6PKCpOzhmSgc9fG+HjWYfs2uTWSPNTjF9A==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21", + "react-fast-compare": "^3.2.0", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-create-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-create-container/-/victory-create-container-37.1.2.tgz", + "integrity": "sha512-GvWA+N3SXf6he+hW1IQqaRjKG7XSV9WBr06mZixRVyOeHJGGZ5g7Vsse1WrwUz5/DM8HcqF34PTfhTs39v6zaw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-brush-container": "37.1.2", + "victory-core": "37.1.2", + "victory-cursor-container": "37.1.2", + "victory-selection-container": "37.1.2", + "victory-voronoi-container": "37.1.2", + "victory-zoom-container": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-cursor-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-cursor-container/-/victory-cursor-container-37.1.2.tgz", + "integrity": "sha512-GqOVB/Emas/ODw7Sb7FX1FmUyH3jb5eNF+2sR+DdYfDMTFmjVUyqGkSpi1bIgHoSWTrdG9C2tkxA69gI9JDtLA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-errorbar": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-errorbar/-/victory-errorbar-37.1.2.tgz", + "integrity": "sha512-sgs1nla57Ctt9slG5WXWdxqTXtTdKcZM+u83C5j1ceKKmMjCiqiNYmMQpF7yz7Nj2ewJTrOzZON9h2zgurr2Cg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-group": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-group/-/victory-group-37.1.2.tgz", + "integrity": "sha512-Zwdvs6pSfF02xax8rQbahSqRP7eua4mS0so0gFYr/M2sNiKN4hxnM72j3dLo9nQ63kQpYhcUZe8U/hEjlhHxYQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2", + "victory-shared-events": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-histogram": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-histogram/-/victory-histogram-37.1.2.tgz", + "integrity": "sha512-IGeQZ2HGuvmMyYxoKOczIILNH6ARDJaWcDG3h5BX4jP4JH2+eWeEukCVHGT3b1VM1OFxuvPijJrePXYzKgQ+AQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-bar": "37.1.2", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-legend": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-legend/-/victory-legend-37.1.2.tgz", + "integrity": "sha512-dmwwHtFpEXPIelY9iH1a2Q/V2Ji8DaF0a2g+hLH4SM/xbA9YwjP2/9DIQcwS7/OVl4l1AnSbLFcu5RyDPJ0kww==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-line": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-line/-/victory-line-37.1.2.tgz", + "integrity": "sha512-DjttWkQG0iZtQ9SM/KphN168dQUgw1xwyr0qR1aN12VtVb1jspI1LkBH8XqUeYXgfuI1vKQJWcV/zMOK2Q1n8g==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-native": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-native/-/victory-native-37.1.2.tgz", + "integrity": "sha512-df9RRGv9S4Im6jEo2u/RHT2IhDvkzbsoXXZW8ib7IzDOK4ZWd9l7p4shB+Za8NRdfbqYJMoLA0h5bhpxM4VmWg==", + "license": "MIT", + "dependencies": { + "hoist-non-react-statics": "^3.3.2", + "lodash": "^4.17.21", + "react-fast-compare": "^3.2.0", + "victory": "^37.1.2", + "victory-area": "^37.1.2", + "victory-axis": "^37.1.2", + "victory-bar": "^37.1.2", + "victory-box-plot": "^37.1.2", + "victory-brush-container": "^37.1.2", + "victory-brush-line": "^37.1.2", + "victory-candlestick": "^37.1.2", + "victory-chart": "^37.1.2", + "victory-core": "^37.1.2", + "victory-create-container": "^37.1.2", + "victory-cursor-container": "^37.1.2", + "victory-errorbar": "^37.1.2", + "victory-group": "^37.1.2", + "victory-histogram": "^37.1.2", + "victory-legend": "^37.1.2", + "victory-line": "^37.1.2", + "victory-pie": "^37.1.2", + "victory-polar-axis": "^37.1.2", + "victory-scatter": "^37.1.2", + "victory-selection-container": "^37.1.2", + "victory-shared-events": "^37.1.2", + "victory-stack": "^37.1.2", + "victory-tooltip": "^37.1.2", + "victory-voronoi": "^37.1.2", + "victory-voronoi-container": "^37.1.2", + "victory-zoom-container": "^37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-pie": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-pie/-/victory-pie-37.1.2.tgz", + "integrity": "sha512-lwPMAtkcGDJ4gdpKFmR7hRnowJZIGQ6XIvyPj7Ir+QfL6ew64kl7YiIsQpDnC4zqwAjDPIbIW/kRROiSKRjXjQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-polar-axis": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-polar-axis/-/victory-polar-axis-37.1.2.tgz", + "integrity": "sha512-cvELVQ5MwDjDfC/n/g8QVfUhexLNKcp7kXxbjp6IGbzQMCfNtROHaVaHaISNH7/EV5zinwBhNj0+ISWatROtrQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-scatter": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-scatter/-/victory-scatter-37.1.2.tgz", + "integrity": "sha512-6orfcqdfZCuTHqf/wE+B+sQbpzf2/TyEvLZhvYIXFr5GzdVu39psNl74K3GQ2Ky0db+e6oLEHV8nZYO2IvWoWg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-selection-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-selection-container/-/victory-selection-container-37.1.2.tgz", + "integrity": "sha512-1sp1CV9LrBADnsBcFgVQuYUNCLeANuybtOS9/5TvPPELBGWQQ55nBN3mH/laVPDy9gGyPARh1lmdPgREHmSkmQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-shared-events": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-shared-events/-/victory-shared-events-37.1.2.tgz", + "integrity": "sha512-fpgpe6eI0A9dD39ZsFaid3sXdrCf1WIzFnpkNFT6hBYrDDD5Fd2/2SgqOxuul64PlYJAk6NOY+F1agmEtmB+/Q==", + "license": "MIT", + "dependencies": { + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-stack": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-stack/-/victory-stack-37.1.2.tgz", + "integrity": "sha512-H3FWiv3c6s/++PB3pBZ/9r8mcry1FHg8JK+03DZhRKHtJIti/38iIYUUiFOoQKmjVUQ7wrLdftYiemy3st77Dg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2", + "victory-shared-events": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-tooltip": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-tooltip/-/victory-tooltip-37.1.2.tgz", + "integrity": "sha512-j1r1t83X0epSwivhf4eYSD2DoWRVy5fkINbLk4sVnnV2EUT4Lt4yH3uelIhYQuT4Y+Ez9KFLoQvR6bfwmHyfZw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-vendor": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.1.2.tgz", + "integrity": "sha512-kZ2UVcoINrisEW7JDaxws2v17D4n4ShRzsPUcYnF37/avByNbjzybhvs8JrqO6+vUmoP2W1DrTEI2L/86PEQjw==", + "license": "MIT AND ISC", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/victory-voronoi": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-voronoi/-/victory-voronoi-37.1.2.tgz", + "integrity": "sha512-rbihVJMDLmrMKfm6mbzTft9BbaJWZkymFkYxZZT0ZdHjsyaFm7t3jjrtvG1cq6HsTI10AfCh7iWmD9aky69eMQ==", + "license": "MIT", + "dependencies": { + "d3-voronoi": "^1.1.4", + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-voronoi-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-voronoi-container/-/victory-voronoi-container-37.1.2.tgz", + "integrity": "sha512-uFnZmRWp+QP7mH9jqetmoSR/KYhnFr4sFGR9+HrQkUbOzBQpT7Q2SNrDcr5l29Hm7Lb+3iUuF/l0E//EzuS+Ig==", + "license": "MIT", + "dependencies": { + "delaunay-find": "0.0.6", + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2", + "victory-tooltip": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-zoom-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-zoom-container/-/victory-zoom-container-37.1.2.tgz", + "integrity": "sha512-OI0AgskIpruWaFWF1BkJWi4UZGyEJ+ol3uzlIMk3tPmYkuw5Gh4pTW6kEw/0E1BP+PwJjv+IRGBbT46/YxV3UQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/viem": { + "version": "2.21.29", + "resolved": "https://registry.npmjs.org/viem/-/viem-2.21.29.tgz", + "integrity": "sha512-n9LoCJjmI1XsE33nl+M4p3Wy5hczv7YC682RpX4Qk9cw8s9HJU+hUi5eDcNDPBcAwIHGCPKsf8yFBEYnE2XYVg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "dependencies": { + "@adraffy/ens-normalize": "1.11.0", + "@noble/curves": "1.6.0", + "@noble/hashes": "1.5.0", + "@scure/bip32": "1.5.0", + "@scure/bip39": "1.4.0", + "abitype": "1.0.6", + "isows": "1.0.6", + "webauthn-p256": "0.0.10", + "ws": "8.18.0" + }, + "peerDependencies": { + "typescript": ">=5.0.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/viem/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/vlq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", + "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", + "license": "MIT" + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/warn-once": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz", + "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==", + "license": "MIT" + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/web-encoding": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/web-encoding/-/web-encoding-1.1.5.tgz", + "integrity": "sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==", + "license": "MIT", + "dependencies": { + "util": "^0.12.3" + }, + "optionalDependencies": { + "@zxing/text-encoding": "0.9.0" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/webauthn-p256": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/webauthn-p256/-/webauthn-p256-0.0.10.tgz", + "integrity": "sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "dependencies": { + "@noble/curves": "^1.4.0", + "@noble/hashes": "^1.4.0" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url-without-unicode": { + "version": "8.0.0-3", + "resolved": "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz", + "integrity": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==", + "license": "MIT", + "dependencies": { + "buffer": "^5.4.3", + "punycode": "^2.1.1", + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/whatwg-url-without-unicode/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "license": "ISC" + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wonka": { + "version": "4.0.15", + "resolved": "https://registry.npmjs.org/wonka/-/wonka-4.0.15.tgz", + "integrity": "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==", + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xcode": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz", + "integrity": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==", + "license": "Apache-2.0", + "dependencies": { + "simple-plist": "^1.1.0", + "uuid": "^7.0.3" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/xcode/node_modules/uuid": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/xhr": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", + "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", + "license": "MIT", + "dependencies": { + "global": "~4.4.0", + "is-function": "^1.0.1", + "parse-headers": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, + "node_modules/xml-parse-from-string": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", + "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==", + "license": "MIT" + }, + "node_modules/xml2js": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", + "integrity": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true, + "license": "MIT" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz", + "integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yup": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/yup/-/yup-1.4.0.tgz", + "integrity": "sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==", + "license": "MIT", + "dependencies": { + "property-expr": "^2.0.5", + "tiny-case": "^1.0.3", + "toposort": "^2.0.2", + "type-fest": "^2.19.0" + } + }, + "node_modules/yup/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-2.1.0.tgz", + "integrity": "sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.18.0" + } + }, + "node_modules/zustand": { + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.5.tgz", + "integrity": "sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "1.2.2" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "@types/react": ">=16.8", + "immer": ">=9.0.6", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + } + } +} diff --git a/package.json b/package.json index b779e34..b6afae4 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,8 @@ "@react-native-masked-view/masked-view": "^0.3.1", "@react-navigation/native": "^6.0.2", "@reduxjs/toolkit": "^2.2.7", + "@tanstack/react-query": "^5.62.2", + "axios": "^1.7.9", "expo": "~51.0.38", "expo-apple-authentication": "^6.4.2", "expo-application": "^5.9.1", @@ -53,17 +55,21 @@ "expo-web-browser": "^13.0.3", "fast-text-encoding": "^1.0.6", "lodash": "^4.17.21", + "lottie-ios": "3.4.0", + "lottie-react-native": "^5.1.5", "moment": "^2.30.1", "permissionless": "^0.2.17", "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "^7.53.0", "react-native": "0.74.5", + "react-native-draggable-flatlist": "^4.0.1", "react-native-fast-image": "^8.6.3", "react-native-gesture-handler": "~2.16.1", "react-native-get-random-values": "^1.11.0", "react-native-image-colors": "^2.4.0", "react-native-linear-gradient": "^2.8.3", + "react-native-modal": "^13.0.1", "react-native-otp-entry": "^1.7.3", "react-native-pager-view": "6.3.0", "react-native-passkeys": "^0.3.0", @@ -84,6 +90,7 @@ "devDependencies": { "@babel/core": "^7.20.0", "@react-navigation/material-top-tabs": "^6.6.14", + "@tanstack/eslint-plugin-query": "^5.62.1", "@types/jest": "^29.5.12", "@types/lodash": "^4.17.7", "@types/react": "~18.2.45", diff --git a/providers/AllProviders.tsx b/providers/AllProviders.tsx index 5f230d2..8d0e995 100644 --- a/providers/AllProviders.tsx +++ b/providers/AllProviders.tsx @@ -9,6 +9,7 @@ import { privyAppId, privyClientId } from '@/constants/env'; import { ReduxProvider } from './ReduxProvider'; import { ThemeProvider } from './ThemeProvider'; import { AuthProvider } from './AuthProvider'; +import { TanstackProvider } from './TanstackProvider'; // Prevent the splash screen from auto-hiding before asset loading is complete. SplashScreen.preventAutoHideAsync(); @@ -37,11 +38,13 @@ export function AllProviders({ children }: PropsWithChildren) { return ( - - - {children} - - + + + + {children} + + + ); diff --git a/providers/TanstackProvider.tsx b/providers/TanstackProvider.tsx new file mode 100644 index 0000000..3230925 --- /dev/null +++ b/providers/TanstackProvider.tsx @@ -0,0 +1,15 @@ +import { PropsWithChildren } from 'react'; +import { QueryClientProvider, QueryClient } from '@tanstack/react-query'; + +const queryClient = new QueryClient({ + defaultOptions: { + queries: { + refetchOnWindowFocus: false, + retryDelay: 1000, + }, + }, +}); + +export function TanstackProvider({ children }: PropsWithChildren) { + return {children}; +} diff --git a/providers/index.ts b/providers/index.ts index c9866fa..61fe808 100644 --- a/providers/index.ts +++ b/providers/index.ts @@ -3,3 +3,4 @@ export * from './AllProviders'; export * from './ReduxProvider'; export * from './ThemeProvider'; export * from './AuthProvider'; +export * from './TanstackProvider'; diff --git a/screens/create-strategy/actions.tsx b/screens/create-strategy/actions.tsx new file mode 100644 index 0000000..2fd058f --- /dev/null +++ b/screens/create-strategy/actions.tsx @@ -0,0 +1,117 @@ +import React from 'react'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import DraggableFlatList, { ScaleDecorator } from 'react-native-draggable-flatlist'; +import { DragHandleIcon, EditProfileIcon, PlusIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import ICONS from '@/constants/icons'; + +const ActionItem = ({ title, action }: IActionItem) => { + return ( + + + + + + {title} + + + + + + + + ); +}; + +const Actions = ({ addNewAction, list, setList }: IActions) => { + const renderItem = ({ item, drag, isActive }: IActionsRenderItem) => { + return ( + + + + + + + + {ICONS[item.action]} + {item.protocol.title} + + + + + + + ); + }; + + return ( + + Actions + setList(data)} + keyExtractor={(_, index) => index.toString()} + renderItem={renderItem} + contentContainerStyle={styles.listContainer} + ListFooterComponent={() => } + /> + + ); +}; + +export default Actions; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + }, + title: { + fontWeight: '500', + marginBottom: 16, + color: '#181E00', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + listContainer: { + padding: 10, + borderRadius: 18, + borderWidth: 1, + borderColor: '#F1F5F9', + }, + actionText: { + flex: 1, + fontSize: adjustFontSizeForIOS(13, 2), + color: '#64748B', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + }, + actionItem: { + flexDirection: 'row', + alignItems: 'center', + paddingVertical: 14, + paddingHorizontal: 10, + backgroundColor: '#fff', + borderWidth: 1, + borderRadius: 16, + borderColor: '#EAEEF4', + gap: 16, + }, + innerWrapper: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + gap: 10, + }, + activeActionText: { + fontSize: adjustFontSizeForIOS(14, 2), + color: '#0F172A', + lineHeight: 19.48, + fontFamily: 'Aeonik', + fontWeight: '500', + }, + addButton: {}, + actionItemContainer: { flexDirection: 'row', alignItems: 'center', gap: 10, padding: 10 }, + dragWrapper: { flexDirection: 'row', alignItems: 'center', gap: 10, padding: 10 }, +}); diff --git a/screens/create-strategy/index.tsx b/screens/create-strategy/index.tsx new file mode 100644 index 0000000..53068d2 --- /dev/null +++ b/screens/create-strategy/index.tsx @@ -0,0 +1,142 @@ +import React from 'react'; +import { Pressable, ScrollView, StyleSheet, Text, View } from 'react-native'; +import { useForm } from 'react-hook-form'; +import * as yup from 'yup'; +import { LQDButton, LQDInput } from '@/components'; +import { yupResolver } from '@hookform/resolvers/yup'; +import useAppActions from '@/store/app/actions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +import Actions from './actions'; +import { AerodromeIcon, BorrowIcon, CuratorIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; + +const schema = yup.object().shape({ + name: yup.string().required('Strategy name is required'), + description: yup.string().required('Description is required'), +}); + +interface CreateStrategyForm { + name: string; + description: string; +} + +const CreateStrategy = () => { + const { + control, + handleSubmit, + formState: { isValid }, + } = useForm({ + mode: 'onSubmit', + resolver: yupResolver(schema), + }); + const { searchIsFocused: focusSearch, showSearch } = useAppActions(); + const { router, appState } = useSystemFunctions(); + const { handleStrategyActions } = useAppActions(); + + const { strategyActions } = appState; + + const focusInput = () => { + focusSearch(true); + }; + + const blurInput = () => { + focusSearch(false); + }; + + const navigateToNewAction = () => { + router.push('/new-action-strategy'); + }; + + const navigateToPreview = (data: CreateStrategyForm) => { + router.push({ + pathname: '/preview-strategy', + params: { name: data.name, description: data.description }, + }); + }; + + const handleCancel = () => { + handleStrategyActions([]); + router.back(); + }; + + return ( + + + + + + + + + + + + + + + + + Cancel + + + + ); +}; + +export default CreateStrategy; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + flex: 1, + paddingTop: 20, + paddingHorizontal: 16, + gap: 50, + }, + scrollContainer: { + flex: 1, + paddingBottom: 150, + }, + cancel: { + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 16, + color: '#64748B', + fontFamily: 'QuantaGroteskProSemiBold', + fontWeight: '600', + alignSelf: 'center', + }, + btnBottomWrapper: { + justifyContent: 'flex-end', + marginBottom: 40, + gap: 30, + }, +}); diff --git a/screens/create-strategy/loader.tsx b/screens/create-strategy/loader.tsx new file mode 100644 index 0000000..f913dfd --- /dev/null +++ b/screens/create-strategy/loader.tsx @@ -0,0 +1,36 @@ +import { StyleSheet, View } from 'react-native'; +import React from 'react'; +import LottieView from 'lottie-react-native'; +import Modal from 'react-native-modal'; + +const Loader = ({ + visible = true, + backgroundColor = 'rgba(87, 87, 87, 0.73)', + animationSource = require('../../assets/json/liquid loader animation.json'), +}) => { + if (!visible) return null; + + return ( + + + + + + + + ); +}; + +export default Loader; + +const styles = StyleSheet.create({ + innerWrapper: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + }, + image: { + width: 100, + height: 130, + }, +}); diff --git a/screens/create-strategy/new-action-strategy.tsx b/screens/create-strategy/new-action-strategy.tsx new file mode 100644 index 0000000..83cb3f2 --- /dev/null +++ b/screens/create-strategy/new-action-strategy.tsx @@ -0,0 +1,251 @@ +import React, { useState } from 'react'; +import { Platform, StyleSheet, StatusBar as RNStatusBar, Text, TouchableOpacity, View } from 'react-native'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { ArrowDropdownDownIcon } from '@/assets/icons'; +import { LQDActionCard, LQDAssetSelection, LQDBottomSheet, LQDButton, LQDProtocolCard, LQDTokenImage } from '@/components'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import useAppActions from '@/store/app/actions'; +import { TokenItem } from '@/store/account/types'; +import { protocolList } from '@/constants/addresses'; +import ICONS from '@/constants/icons'; +import { actionList } from '../discover/dummy'; + +const ActionItem = ({ title, label, icon, action }: IActionItem) => { + return ( + + {label} + + + {icon && ICONS[icon]} + {title} + + + + + + + ); +}; + +const AssetItem = ({ title, label, logoUrl, action }: IActionItem) => { + return ( + + {label} + + + + {title} + + + + + + + + ); +}; + +const NewAction = () => { + const { router, appState } = useSystemFunctions(); + const { handleStrategyActions } = useAppActions(); + const [selectedProtocol, setSelectedProtocol] = useState(protocolList[0]); + const [selectedAction, setSelectedAction] = useState(actionList[0]); + const [selectedAssets, setSelectedAssets] = useState([]); + + const [showProtocal, setShowProtocal] = useState(false); + const [showActions, setShowActions] = useState(false); + const [showFirstAssets, setShowFirstAssets] = useState(false); + const [showSecondAssets, setShowSecondAssets] = useState(false); + + const { strategyActions } = appState; + + const openProtocal = () => { + setShowProtocal((prev) => !prev); + }; + + const openActions = () => { + setShowActions((prev) => !prev); + }; + + const handleShowFirstAsset = () => { + setShowFirstAssets((prev) => !prev); + }; + + const handleShowSecondAsset = () => { + setShowSecondAssets((prev) => !prev); + }; + + const handleFirstAsset = (data: TokenItem) => { + const newAssets = [...selectedAssets]; + newAssets[0] = data; + setSelectedAssets(newAssets); + }; + + const handleSecondAsset = (data: TokenItem) => { + const newAssets = [...selectedAssets]; + newAssets[1] = data; + setSelectedAssets(newAssets); + }; + + const handleAddNewStrategyAction = () => { + const currentActions = [...strategyActions]; + + const selectedAssetsAddresses = selectedAssets.map((asset) => asset.address); + + const newAction: StrategyAction = { + action: selectedAction.variant, + assetsIn: selectedAssetsAddresses, + protocol: selectedProtocol, + }; + + handleStrategyActions([...currentActions, newAction]); + router.back(); + }; + + return ( + + + Njoku’s Aerodrome wealth builder + + + + + + + {selectedProtocol.title === 'Aerodrome' && selectedAction.variant === 'deposit' && ( + + )} + + + + + + + + + + {protocolList.map((protocol, index) => ( + { + setSelectedProtocol(protocol); + openProtocal(); + }} + /> + ))} + + + + + + {actionList.map((action, index) => ( + { + setSelectedAction({ ...action }); + openActions(); + }} + /> + ))} + + + + + + + + ); +}; + +export default NewAction; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + flex: 1, + justifyContent: 'space-between', + paddingTop: 20, + paddingHorizontal: 16, + }, + + itemWrapper: { + gap: 12, + borderWidth: 1, + borderColor: '#F1F5F9', + padding: 20, + borderRadius: 18, + }, + + username: { + fontWeight: '500', + marginBottom: 16, + color: '#64748B', + fontSize: adjustFontSizeForIOS(13, 2), + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + + label: { + fontSize: adjustFontSizeForIOS(13, 2), + color: '#1E293B', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + marginBottom: 8, + fontWeight: '500', + }, + + actionText: { + fontSize: adjustFontSizeForIOS(13, 2), + color: '#334155', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + fontWeight: '400', + }, + addButton: { + padding: 8, + }, + actionItem: { + flexDirection: 'row', + alignItems: 'center', + borderWidth: 1, + borderRadius: 16, + borderColor: '#EAEEF4', + paddingHorizontal: 10, + paddingVertical: 5, + }, + protocalContainerStyle: { gap: 20, paddingBottom: 50 }, + searchWrapper: { + flex: 1, + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + bottomWrapper: { paddingHorizontal: 20, marginBottom: 50 }, + iconFlex: { flexDirection: 'row', gap: 10, flex: 1 }, +}); diff --git a/screens/create-strategy/preview-strategy.tsx b/screens/create-strategy/preview-strategy.tsx new file mode 100644 index 0000000..3a2b3db --- /dev/null +++ b/screens/create-strategy/preview-strategy.tsx @@ -0,0 +1,192 @@ +import React, { useState } from 'react'; +import { StyleSheet, Text, View } from 'react-native'; +import { useLocalSearchParams } from 'expo-router'; + +import { LQDButton } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import Loader from './loader'; +import { useWriteFeed } from '@/services/feeds/queries'; +import PreviewFeedStep from '@/components/feed-card/preview-feed-step'; + +const SUPPLY = 0; // Supply assets +const WITHDRAW = 1; // Withdraw assets +const BORROW = 2; // Borrow assets +const REPAY = 3; // Repay debt +const STAKE = 4; // Stake assets +const UNSTAKE = 5; // Unstake assets +const SWAP = 6; // Swap assets +const CLAIM = 7; // Claim rewards + +const getActionType = (action: 'deposit' | 'stake' | 'borrow' | 'supply') => { + switch (action) { + case 'deposit': + return SUPPLY; + case 'stake': + return STAKE; + case 'borrow': + return BORROW; + case 'supply': + return SUPPLY; + default: + return SUPPLY; + } +}; + +const RreviewStrategy = () => { + const param = useLocalSearchParams(); + const { appState, accountState } = useSystemFunctions(); + const { postStrategy, loading } = useWriteFeed(); + + const { strategyActions } = appState; + const { tokens } = accountState; + + const strategySteps = () => { + const steps = strategyActions.map((item: StrategyAction, index) => { + const assetsIn = tokens.data?.find((token) => item.assetsIn[0] == token.address); + + return { + variant: item.action, + token: assetsIn?.symbol || 'USDC', + protocolTitle: item.protocol.title, + tokenIconURL: assetsIn?.logoUrl || '', + protocolIcon: item.protocol.icon, + isLast: index === strategyActions.length - 1, + }; + }); + + return steps; + }; + + const handlePublish = () => { + const steps = strategyActions.map((item: StrategyAction) => { + return { + connector: '0x01249b37d803573c071186BC4C3ea92872B93F5E' as `0x${string}`, + actionType: getActionType(item.action), + assetsIn: item.assetsIn, + amountRatio: BigInt(5000), + assetOut: '0xF877ACaFA28c19b96727966690b2f44d35aD5976' as `0x${string}`, + data: '0x' as `0x${string}`, + }; + }); + + const data: StrategyBody = { + name: param.name as string, + description: param.description as string, + minDeposit: BigInt(1000), + maxTvl: BigInt(1000000), + performanceFee: BigInt(20), + steps, + }; + + postStrategy(data); + }; + + if (loading) { + return ; + } + + return ( + + + + {strategySteps().map((step, index: number) => ( + + ))} + + + + {param.name} + + Est. APY + 65.45% + + {param.description} + + + + + + + + ); +}; + +export default RreviewStrategy; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + flex: 1, + paddingTop: 20, + paddingHorizontal: 16, + }, + feedStep: { + borderColor: '#F1F5F9', + borderWidth: 1, + borderRadius: 10, + overflow: 'hidden', + paddingHorizontal: 12, + paddingVertical: 12, + marginTop: 20, + }, + contentWrapper: { + borderColor: '#F1F5F9', + borderWidth: 1, + borderRadius: 10, + overflow: 'hidden', + paddingHorizontal: 12, + paddingVertical: 12, + marginTop: 20, + gap: 15, + }, + estWrapper: { flexDirection: 'row', gap: 10 }, + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, + estimate: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + actionText: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + percentage: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(14, 3), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + description: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(14, 2), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 18.4, + }, +}); diff --git a/screens/create-strategy/types.ts b/screens/create-strategy/types.ts new file mode 100644 index 0000000..eea1c8a --- /dev/null +++ b/screens/create-strategy/types.ts @@ -0,0 +1,31 @@ +type IconVariant = 'moonwell' | 'aerodrome' | 'morpho' | 'deposit' | 'stake' | 'borrow' | 'supply'; + +interface IActionItem { + label?: string; + title: string; + icon?: IconVariant; + logoUrl?: string; + action?: () => void; +} +interface IActions { + addNewAction: () => void; + list: StrategyAction[]; + setList: (data: StrategyAction[]) => void; +} +interface IActionsListItem { + id: string; + title: string; + variant: 'deposit' | 'stake' | 'borrow' | 'supply'; +} +interface IActionsRenderItem { + drag?: () => void; + item: StrategyAction; + isActive: boolean; +} + +interface ProtocolItem { + id: string; + icon: 'moonwell' | 'aerodrome' | 'morpho'; + title: string; + address: `0x${string}`; +} diff --git a/screens/deposit/crypto/connect-wallet.tsx b/screens/deposit/crypto/connect-wallet.tsx new file mode 100644 index 0000000..d474eac --- /dev/null +++ b/screens/deposit/crypto/connect-wallet.tsx @@ -0,0 +1,101 @@ +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import { LQDBottomSheet, LQDImage, LQDScrollView, LQShrimeLoader } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { ConncetWalletProps } from '../types'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +const ConncetWallet = ({ openCloseComment, showCommentSection, data }: ConncetWalletProps) => { + const { router } = useSystemFunctions(); + + const handleNavigate = () => { + router.push('/deposit/crypto-wallet'); + openCloseComment(); + }; + + return ( + + + + + {data.map((item, index) => ( + + {item.title} + {item.children.map((child) => ( + + + {child.title} + + ))} + + ))} + + + + + New to ethereum wallets? + + Learn More + + + + + ); +}; + +export default ConncetWallet; + +const styles = StyleSheet.create({ + bottomTitle: { + color: '#475569', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + textAlign: 'left', + fontFamily: 'AeonikRegular', + }, + bottomSubTitle: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + textAlign: 'left', + fontWeight: '600', + fontFamily: 'AeonikBold', + }, + bottomWrapper: { + height: 60, + + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + borderTopWidth: 1, + borderTopColor: '#F1F5F9', + }, + + cardContainer: { + alignSelf: 'stretch', + flex: 1, + height: 320, + maxHeight: 450, + }, + itemContainer: { + gap: 10, + marginBottom: 10, + }, + itemTitle: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(15, 2), + fontWeight: '600', + fontFamily: 'AeonikMedium', + }, + childContainer: { + flexDirection: 'row', + alignItems: 'center', + gap: 10, + marginTop: 10, + }, + childText: { + color: '#020617', + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '400', + fontFamily: 'AeonikBold', + }, +}); diff --git a/screens/deposit/crypto/crypto-wallet.tsx b/screens/deposit/crypto/crypto-wallet.tsx new file mode 100644 index 0000000..abe06ab --- /dev/null +++ b/screens/deposit/crypto/crypto-wallet.tsx @@ -0,0 +1,142 @@ +import { useEffect, useState } from 'react'; +import { View, Text, TouchableOpacity, TextInput, Platform } from 'react-native'; + +import { LQDActionCard, LQDBottomSheet, LQDButton, LQDNumericKeyboard } from '@/components'; +import { formatAmount, formatWithThousandSeparator, removeCommasFromNumber } from '@/utils/helpers'; +import { CaretDownIcon, UserOctagonIcon } from '@/assets/icons'; +import styles from '../styles'; + +const getMaxWidth = (amount: string) => { + const baseWidth = 27; + const maxDigitsBeforeAuto = 4; + + if (!amount) return 106; + + const plainAmount = amount.replace(/,/g, ''); + const amountLength = plainAmount.length; + + if (amountLength > maxDigitsBeforeAuto) return undefined; + + const commaWidth = amountLength === 4 ? baseWidth / 3 : 0; + + const totalWidth = baseWidth * amountLength + commaWidth; + + return totalWidth; +}; + +const CryptoWalletDeposit = () => { + const [amount, setAmount] = useState(''); + const [showCursor, setShowCursor] = useState(true); + const [address, setAddress] = useState('0x8db6...aEA8'); + const [showBottomSheet, setShowBottomSheet] = useState(false); + + const walletBalance = 100; + + const disableButton = + !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(walletBalance || 0)!; + + const balancePartitions = [ + { text: '$10', action: () => setAmount('10') }, + { text: '$50', action: () => setAmount('50') }, + { text: '$100', action: () => setAmount('100') }, + { text: 'Max', action: () => setAmount('500') }, + ]; + + const handleAmountChange = (key: string) => { + if (key === '⌫') { + return setAmount((prev) => formatWithThousandSeparator(prev.slice(0, -1))); + } + if (key === '.' && amount.includes('.')) { + return; + } + setAmount((prev) => formatWithThousandSeparator(prev + key)); + }; + + const onSubmit = () => { + const amountNumber = parseFloat(removeCommasFromNumber(amount)); + console.log('submit', { amount: amountNumber }); + }; + + useEffect(() => { + const cursorInterval = setInterval(() => { + setShowCursor((prev) => !prev); + }, 500); + return () => clearInterval(cursorInterval); + }, []); + + return ( + <> + + + + + + + {amount && ( + + $ + + )} + + {showCursor && } + + + + setShowBottomSheet(true)}> + + {address} + + + + Bal: {formatAmount(walletBalance).toLocaleString()} USDC + + + + {balancePartitions.map(({ text, action }) => ( + + {text} + + ))} + + + + + + Fees: + $5 + + + + + + + + + setShowBottomSheet(false)}> + + {}} /> + + + + ); +}; + +export default CryptoWalletDeposit; diff --git a/screens/deposit/crypto/index.tsx b/screens/deposit/crypto/index.tsx index c5b6991..d6ad08d 100644 --- a/screens/deposit/crypto/index.tsx +++ b/screens/deposit/crypto/index.tsx @@ -1,5 +1,5 @@ import { useState } from 'react'; -import { View, Text, StyleSheet, Image, TouchableOpacity } from 'react-native'; +import { View, Text, StyleSheet, Image, TouchableOpacity, ScrollView, Pressable } from 'react-native'; import QRCode from 'react-native-qrcode-svg'; import useTruncateText from '@/hooks/useTruncateText'; @@ -9,19 +9,33 @@ import { CaretDownIcon, CoinsIcon, CopyIcon } from '@/assets/icons'; import PaymentMethodSelection from '../method-selection'; import sharedStyles from '../styles'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { LQDActionCard, LQDBottomSheet, LQDButton, LQDImage, LQDScrollView } from '@/components'; +import { popularList } from '../dummy'; +import ConncetWallet from './connect-wallet'; const CryptoDeposit = () => { const { smartAccountState } = useSystemFunctions(); const [showBottomSheet, setShowBottomSheet] = useState(false); + const [showConnectWalletSheet, setShowConnectWalletSheet] = useState(false); const { handleCopy, hasCopied } = useCopy(); const address = truncate(smartAccountState?.address || ''); const tokensImage = require('../../../assets/images/tokens.png'); + const handleOpenWallet = () => { + setShowConnectWalletSheet((prev) => !prev); + }; + return ( <> + setShowBottomSheet(true)}> + + Crypto + + + @@ -33,19 +47,19 @@ const CryptoDeposit = () => { {hasCopied ? 'Copied' : 'Copy'} - - setShowBottomSheet(true)}> - - Crypto - - + - + Deposit from external wallet Send USDC, ETH or any ERC20 token on Base + + + + + setShowBottomSheet(false)} show={showBottomSheet} /> ); @@ -103,13 +117,14 @@ const styles = StyleSheet.create({ }, infoContainer: { - flexDirection: 'row', - padding: 16, + paddingHorizontal: 20, + paddingVertical: 20, alignSelf: 'stretch', - gap: 16, - alignItems: 'center', - borderRadius: 20, - backgroundColor: '#EBF1FF', + gap: 12, + borderRadius: 12, + backgroundColor: '#F8FAFC', + borderWidth: 1, + borderColor: '#EAEEF4', }, infoImage: { @@ -117,12 +132,20 @@ const styles = StyleSheet.create({ height: 18, }, - text: { - flex: 1, + title: { color: '#162664', + fontSize: adjustFontSizeForIOS(16, 3), + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + text: { + color: '#475569', fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, textAlign: 'left', fontFamily: 'AeonikRegular', }, + buttonWrapper: { + marginTop: 10, + }, }); diff --git a/screens/deposit/dummy.ts b/screens/deposit/dummy.ts new file mode 100644 index 0000000..118c969 --- /dev/null +++ b/screens/deposit/dummy.ts @@ -0,0 +1,18 @@ +export const popularList = [ + { + title: 'Popular', + children: [ + { id: '1', title: 'Rainbow' }, + { id: '2', title: 'Coinbase wallet' }, + { id: '3', title: 'Meta Mask' }, + { id: '4', title: 'WalletConnect' }, + ], + }, + { + title: 'More', + children: [ + { id: '1', title: 'Agent' }, + { id: '2', title: 'Trsut Wallet' }, + ], + }, +]; diff --git a/screens/deposit/method-selection.tsx b/screens/deposit/method-selection.tsx index 2158517..ef94eca 100644 --- a/screens/deposit/method-selection.tsx +++ b/screens/deposit/method-selection.tsx @@ -66,6 +66,7 @@ const styles = StyleSheet.create({ container: { alignSelf: 'stretch', gap: 14, + paddingBottom: 50, }, selectorCard: { diff --git a/screens/deposit/styles.ts b/screens/deposit/styles.ts index c242cd4..bd9134a 100644 --- a/screens/deposit/styles.ts +++ b/screens/deposit/styles.ts @@ -111,6 +111,16 @@ const styles = StyleSheet.create({ backgroundColor: '#F8FAFC', }, + fee: { + color: '#64748B', + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + + feeAmount: { + color: '#475569', + }, + balanceSelectorText: { color: '#334155', }, @@ -120,6 +130,11 @@ const styles = StyleSheet.create({ paddingVertical: 12, alignItems: 'stretch', }, + + feeWrapper: { + flexDirection: 'row', + gap: 10, + }, }); export default styles; diff --git a/screens/deposit/types.ts b/screens/deposit/types.ts index c270a14..6b7a076 100644 --- a/screens/deposit/types.ts +++ b/screens/deposit/types.ts @@ -11,4 +11,20 @@ interface IMethod { path: Href; } -export type { IPaymentMethodSelection, IMethod }; +interface Wallet { + id: string; + title: string; +} + +interface WalletCategory { + title: string; + children: Wallet[]; +} + +interface ConncetWalletProps { + openCloseComment: () => void; + showCommentSection: boolean; + data: WalletCategory[]; +} + +export type { IPaymentMethodSelection, IMethod, ConncetWalletProps }; diff --git a/screens/discover/dummy.ts b/screens/discover/dummy.ts new file mode 100644 index 0000000..dede40f --- /dev/null +++ b/screens/discover/dummy.ts @@ -0,0 +1,567 @@ +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; + +export const actionList: IActionsListItem[] = [ + { + id: '1', + variant: 'deposit', + title: 'Deposit', + }, + { + id: '2', + variant: 'stake', + title: 'Stake', + }, + { + id: '3', + variant: 'borrow', + title: 'Borrow', + }, +]; + +export const addMoney: AddMoneyActionItem[] = [ + { + id: '1', + icon: 'crypto', + title: 'Crypto', + comingSoon: false, + }, + { + id: '2', + icon: 'debitCard', + title: 'Debit card', + comingSoon: true, + }, + { + id: '3', + icon: 'coinBase', + title: 'Coinbase Wallet', + comingSoon: true, + }, +]; + +export const sortList = [ + { + id: '1', + icon: 'deposit', + title: 'Popular', + }, + { + id: '2', + icon: 'stake', + title: 'New', + }, +]; + +export const strategyies: Array = [ + { + id: '1', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '2', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '3', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '4', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '5', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '6', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '7', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '8', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '9', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '10', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '11', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '12', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, +]; + +export const positions = [ + { + id: '1', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '2', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + }, + { + id: '3', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + }, +]; diff --git a/screens/discover/filters.tsx b/screens/discover/filters.tsx new file mode 100644 index 0000000..c5e9a55 --- /dev/null +++ b/screens/discover/filters.tsx @@ -0,0 +1,268 @@ +import { useCallback, useEffect, useRef, useState } from 'react'; +import { StyleSheet, View, Text, StatusBar as RNStatusBar, Pressable, Platform, Animated } from 'react-native'; +import { useForm } from 'react-hook-form'; +import { LQDAssetSelection, LQDBottomSheet, LQDButton, LQDFlatlist, LQDInput, LQDProtocolCard } from '@/components'; +import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, AerodromeIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { protocolList } from '@/constants/addresses'; +import PercentageSetter from '../liquidity-actions/remove/percentage-setter'; +import { useDebouncedEffect } from '@/hooks/useDebouncedEffect'; + +const DiscoverFilters = ({ setSearchQuery, setMinTvl, setMaxTvl, setCursor, setAssets, setProtocols }: DiscoverFiltersProps) => { + const { control, watch, reset } = useForm(); + const searchValue = watch('search'); + const [search, setSearch] = useState(false); + const [showTvl, setShowTvl] = useState(false); + const [protocal, setProtocal] = useState(false); + const [percentage, setPercentage] = useState(0); + const [selectedProtocol, setSelecteProtocol] = useState(''); + const [selectedAssets, setSelectedAssets] = useState([]); + + const stableSetPercentage = useCallback((value: number) => setPercentage(value), []); + const [showAssets, setShowAssets] = useState(false); + + useDebouncedEffect( + function setSearchValue() { + if (setSearchQuery && searchValue !== undefined) { + setSearchQuery(searchValue); + } + }, + [searchValue, setSearchQuery], + 300 + ); + + const hanldeFilterTVL = () => { + setMaxTvl(String(percentage)); + setShowTvl((prev) => !prev); + }; + + const animationValue = useRef(new Animated.Value(0)).current; + + const discoverStyle = { + opacity: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [1, 0], + }), + transform: [ + { + translateY: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [0, -20], + }), + }, + ], + }; + + const searchStyle = { + opacity: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [0, 1], + }), + transform: [ + { + translateY: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [20, 0], + }), + }, + ], + }; + + const closeInput = () => { + setSearchQuery(''); + reset({ search: '' }); + setSearch((prev) => !prev); + }; + + const openTvl = () => { + setShowTvl((prev) => !prev); + }; + + const openProtocal = () => { + setSelecteProtocol(''); + setProtocal((prev) => !prev); + }; + + const handleShowAsset = () => { + setShowAssets((prev) => !prev); + }; + + const handleAsset = (data: TokenItem) => { + const newAssets = [...selectedAssets]; + newAssets[0] = data; + setSelectedAssets(newAssets); + setAssets([newAssets[0].address]); + }; + + useEffect(() => { + Animated.timing(animationValue, { + toValue: search ? 1 : 0, + duration: 300, + useNativeDriver: true, + }).start(); + }, [search]); + + return ( + <> + {!search && ( + + Discover + + + + + + + + + + + + + + + + + + + + + + + + + )} + + {search && ( + + + + )} + + { + setMaxTvl(''); + openTvl(); + }} + > + + + + + + + + + + + ( + { + setSelecteProtocol(item.address); + setProtocols([item.address]); + openProtocal(); + }} + /> + )} + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.protocalContainerStyle} + /> + + + + + ); +}; + +export default DiscoverFilters; + +const styles = StyleSheet.create({ + topText: { + flex: 1, + fontSize: adjustFontSizeForIOS(20, 3), + fontFamily: 'AeonikMedium', + fontWeight: '500', + }, + topIconWrapper: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'space-between', + }, + dropIcon: { + position: 'absolute', + bottom: 0, + right: 0, + }, + relativeWrapper: { + position: 'relative', + }, + + percentageSetterContainer: { + alignSelf: 'stretch', + padding: 11, + justifyContent: 'center', + alignItems: 'center', + gap: 20, + borderRadius: 12, + borderWidth: 1, + borderColor: '#EAEEF4', + marginBottom: 40, + }, + searchWrapper: { + flex: 1, + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + + protocalContainerStyle: { + gap: 20, + paddingBottom: 50, + }, + recentContainerStyle: { + gap: 10, + paddingBottom: 0, + paddingHorizontal: 12, + }, + searchModalWrapper: { + paddingHorizontal: 12, + paddingBottom: 10, + backgroundColor: '#fff', + }, + discoverTopWrapper: { + flexDirection: 'row', + alignItems: 'center', + marginHorizontal: 16, + paddingVertical: 10, + }, +}); diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx new file mode 100644 index 0000000..81f53a1 --- /dev/null +++ b/screens/discover/index.tsx @@ -0,0 +1,88 @@ +import { useState } from 'react'; +import { StyleSheet, View, FlatList, Text } from 'react-native'; +import { LQDStrategyCard } from '@/components'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import DiscoverFilters from './filters'; +import Loader from '../home/loader'; +import { useSearchFeeds } from '@/services/discover/queries'; + +const Discover = () => { + const [searchQuery, setSearchQuery] = useState(''); + const [minTvl, setMinTvl] = useState(''); + const [maxTvl, setMaxTvl] = useState(''); + const [cursor, setCursor] = useState(''); + const [assets, setAssets] = useState([]); + const [protocols, setProtocols] = useState([]); + + const { data, fetchNextPage, hasNextPage, isFetching, isFetchingNextPage, isLoading, refetch } = useSearchFeeds( + searchQuery, + cursor, + minTvl, + maxTvl, + assets, + protocols + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + return ( + + + + {isLoading && } + + {feeds.length > 0 && !isLoading && ( + } + keyExtractor={(_, index) => index.toString()} + contentContainerStyle={styles.strategyContainerStyle} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + )} + + {!feeds.length && !isLoading && No strategies found} + + ); +}; + +export default Discover; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFF', + paddingTop: 20, + }, + strategyContainerStyle: { + gap: 20, + paddingBottom: 120, + paddingHorizontal: 12, + paddingTop: 15, + }, + noStrategiesText: { + fontSize: 16, + fontWeight: '500', + textAlign: 'center', + fontFamily: 'AeonikMedium', + marginTop: 50, + }, + topGainerLoaderOne: { height: 45, width: 45, borderRadius: 100 }, +}); diff --git a/screens/discover/types.ts b/screens/discover/types.ts new file mode 100644 index 0000000..e0683a7 --- /dev/null +++ b/screens/discover/types.ts @@ -0,0 +1,8 @@ +interface DiscoverFiltersProps { + setMinTvl: (value: string) => void; + setMaxTvl: (value: string) => void; + setAssets: (assets: any[]) => void; + setProtocols: (protocols: string[]) => void; + setSearchQuery: (query: string) => void; + setCursor: (cursor: string) => void; +} diff --git a/screens/holdings/assets/index.tsx b/screens/holdings/assets/index.tsx deleted file mode 100644 index a5afa45..0000000 --- a/screens/holdings/assets/index.tsx +++ /dev/null @@ -1,127 +0,0 @@ -import { View, Text, StyleSheet, FlatList } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDButton } from '@/components'; -import { ILQDButton } from '@/components/button/types'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import AssetPaper from './paper'; -import { useAccountActions } from '@/store/account/actions'; - -const Assets = () => { - const { router, accountState } = useSystemFunctions(); - const { getTokens } = useAccountActions(); - const { tokens, tokenBalance, refreshing } = accountState; - - const actions: Array = [ - { - title: 'Add money', - onPress: () => router.push('/deposit/debit'), - variant: 'tertiary', - fullWidth: false, - icon: 'money', - style: styles.action, - }, - { - title: 'Withdraw', - onPress: () => router.push('/withdraw'), - variant: 'tertiaryOutline', - fullWidth: false, - icon: 'arrow-up', - style: styles.action, - }, - ]; - - const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); - const assets: IAssetPaper[] = tokensUserHas?.map?.((token) => ({ - iconUrl: token.logoUrl, - name: token.symbol, - value: Number(token.balance), - usdValue: Number(token.usdBalance), - })); - - return ( - - - - Total Holdings - ${tokenBalance.toLocaleString()} - - - - {actions.map((action, index) => ( - - ))} - - - - Assets - - } - keyExtractor={(_, index) => index.toString()} - contentContainerStyle={{ gap: 24 }} - refreshing={refreshing} - onRefresh={getTokens} - bounces={true} - showsVerticalScrollIndicator={false} - /> - - ); -}; - -export default Assets; - -const styles = StyleSheet.create({ - container: { - flex: 1, - paddingTop: 28, - paddingBottom: 80, - gap: 47, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - balanceAndActionsContainer: { - alignSelf: 'stretch', - gap: 17, - alignItems: 'stretch', - }, - - balanceContainer: { - gap: 10, - }, - - balanceText: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontFamily: 'AeonikRegular', - }, - - balanceValue: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(36, 4), - lineHeight: 40.32, - fontWeight: '700', - fontFamily: 'QuantaGroteskProBold', - }, - - actionsContainer: { - flexDirection: 'row', - gap: 11, - }, - - action: { - flex: 1, - }, - - assetLabel: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), - lineHeight: 23.2, - fontWeight: '500', - fontFamily: 'AeonikMedium', - marginBottom: -20, - }, -}); diff --git a/screens/holdings/assets/paper.tsx b/screens/holdings/assets/paper.tsx deleted file mode 100644 index 3e0928d..0000000 --- a/screens/holdings/assets/paper.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import { View, Text, StyleSheet } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { LQDTokenImage } from '@/components'; - -const AssetPaper = ({ iconUrl, name, usdValue, value }: IAssetPaper) => { - return ( - - - - - - {name} - - {value.toLocaleString()} {name} - - - - - ${usdValue.toLocaleString()} - - ); -}; - -export default AssetPaper; - -const styles = StyleSheet.create({ - container: { - flexDirection: 'row', - paddingVertical: 2, - justifyContent: 'space-between', - alignItems: 'center', - borderRadius: 10, - }, - - leftContainer: { - alignSelf: 'stretch', - flexDirection: 'row', - alignItems: 'center', - gap: 10, - }, - - nameAndValueContainer: { - justifyContent: 'center', - gap: 4, - }, - - name: { - color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - value: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - usdValue: { - color: '#475569', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, -}); diff --git a/screens/holdings/assets/types.ts b/screens/holdings/assets/types.ts deleted file mode 100644 index d2b66d8..0000000 --- a/screens/holdings/assets/types.ts +++ /dev/null @@ -1,6 +0,0 @@ -interface IAssetPaper { - iconUrl: string; - name: string; - value: number; - usdValue: number; -} diff --git a/screens/holdings/card.tsx b/screens/holdings/card.tsx deleted file mode 100644 index eacd0c9..0000000 --- a/screens/holdings/card.tsx +++ /dev/null @@ -1,258 +0,0 @@ -import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { CaretRightAltIcon, CoinsAltIcon, DollarSquareIcon, InformationIcon, MoneysAltIcon } from '@/assets/icons'; - -const icons = { - primary: , - secondary: , - tertiary: , - quaternary: , -}; - -const Card = ({ details, subtitle, title, variant }: IItem) => { - const { router } = useSystemFunctions(); - - const config: ICardConfig = { - primary: { - primaryColor: '#EBF1FF', - secondaryColor: '#162664', - label: 'Liquid balance', - action: () => router.navigate('/(tabs)/holdings/assets'), - }, - secondary: { - primaryColor: '#FEF7EC', - secondaryColor: '#693D11', - label: 'LP balance', - action: () => router.navigate('/(tabs)/holdings/pools'), - }, - // tertiary: { - // primaryColor: '#EEEBFF', - // secondaryColor: '#2B1664', - // label: 'Aero rewards', - // action: () => - // router.navigate({ - // pathname: '/(tabs)/holdings/rewards', - // params: { type: 'aero' }, - // }), - // }, - // quaternary: { - // primaryColor: '#EBFAFF', - // secondaryColor: '#164564', - // label: 'Fees earned', - // action: () => - // router.navigate({ - // pathname: '/(tabs)/holdings/rewards', - // params: { type: 'fees' }, - // }), - // }, - }; - - return ( - - - - - - {icons[variant]} - - - - - {config[variant].label} - - - - - {title} - - - - {subtitle} - - - - - - - - - - - {details.map((detail, index) => ( - - - {detail.title} - - - - {detail.value} - - - ))} - - - - - {variant === 'primary' ? 'View assets' : 'See all'} - - - - - - - - ); -}; - -export default Card; - -const styles = StyleSheet.create({ - container: { - width: '100%', - alignSelf: 'stretch', - padding: 16, - gap: 16, - borderRadius: 12, - borderWidth: 1, - }, - - top: { - alignSelf: 'stretch', - paddingVertical: 2, - flexDirection: 'row', - justifyContent: 'space-between', - }, - - topLeft: { - flexDirection: 'row', - alignItems: 'center', - gap: 10, - }, - - iconContainer: { - width: 30, - height: 30, - padding: 6, - justifyContent: 'center', - alignItems: 'center', - borderRadius: 9, - }, - - labelAndHeader: { - alignSelf: 'stretch', - gap: 4, - }, - - label: { - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontFamily: 'AeonikRegular', - }, - - titleAndSubtitle: { - flexDirection: 'row', - alignItems: 'center', - gap: 8, - }, - - title: { - fontSize: adjustFontSizeForIOS(18, 2), - lineHeight: 27, - letterSpacing: -0.36, - fontFamily: 'ClashDisplaySemibold', - fontWeight: '600', - }, - - subtitle: { - fontSize: adjustFontSizeForIOS(12, 2), - lineHeight: 15.84, - fontFamily: 'AeonikRegular', - }, - - bottom: { - flexDirection: 'row', - alignSelf: 'stretch', - justifyContent: 'space-between', - alignItems: 'flex-end', - }, - - details: { - flexDirection: 'row', - alignItems: 'center', - gap: 24, - }, - - detail: { - justifyContent: 'center', - gap: 4, - }, - - detailTitle: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - detailValue: { - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - actionContainer: { - flexDirection: 'row', - gap: 4, - alignItems: 'flex-end', - justifyContent: 'flex-end', - }, - - actionText: { - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontFamily: 'AeonikRegular', - }, -}); diff --git a/screens/holdings/dummy.ts b/screens/holdings/dummy.ts deleted file mode 100644 index e28b6da..0000000 --- a/screens/holdings/dummy.ts +++ /dev/null @@ -1,17 +0,0 @@ -const emptyData: IEmptyData = { - primary: { - icon: 'wallet', - title: 'Make your first Deposit', - subtitle: 'Click “Add money” and Deposit cash easily with the payment method of your choice', - actionIcon: 'plus', - }, - - secondary: { - icon: 'radio', - title: 'No Liquidity Pools yet', - subtitle: 'Deposit Liquidity into a pool and your balances will show up here', - actionIcon: 'right-caret', - }, -}; - -export { emptyData }; diff --git a/screens/holdings/empty.tsx b/screens/holdings/empty.tsx deleted file mode 100644 index 6d991ee..0000000 --- a/screens/holdings/empty.tsx +++ /dev/null @@ -1,106 +0,0 @@ -import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { AddIcon, CaretRightAltIcon, CoinsAltIcon, DollarSquareIcon, MoneysIcon, WalletMoneyIcon } from '@/assets/icons'; - -const icons = { - wallet: , - radio: , - coins: , - dollar: , -}; - -const actionIcons = { - plus: , - 'right-caret': , -}; - -const Empty = ({ icon, subtitle, title, action, actionIcon, isLast }: IEmpty) => { - return ( - - {icons[icon]} - - - {title} - {subtitle} - - - {action && ( - - {action.title} - {actionIcon && actionIcons[actionIcon]} - - )} - - ); -}; - -export default Empty; - -const styles = StyleSheet.create({ - container: { - alignItems: 'center', - justifyContent: 'center', - paddingVertical: 24, - alignSelf: 'stretch', - gap: 20, - }, - - iconContainer: { - padding: 8, - width: 40, - height: 40, - backgroundColor: '#334155', - borderRadius: 12, - alignItems: 'center', - justifyContent: 'center', - }, - - textContainer: { - alignSelf: 'stretch', - alignItems: 'center', - justifyContent: 'center', - gap: 8, - }, - - title: { - color: '#334155', - fontSize: adjustFontSizeForIOS(16, 2), - lineHeight: 19.2, - fontWeight: '500', - }, - - subtile: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - textAlign: 'center', - width: '80%', - }, - - action: { - flexDirection: 'row', - height: 32, - paddingVertical: 4, - paddingHorizontal: 12, - alignItems: 'center', - justifyContent: 'center', - gap: 5, - backgroundColor: '#334155', - borderRadius: 6, - }, - - actionText: { - color: '#FFF', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontWeight: '500', - textAlign: 'center', - }, - - notLastStyle: { - borderBottomWidth: 1, - borderBottomColor: '#EAEEF4', - paddingBottom: 50, - }, -}); diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx deleted file mode 100644 index bb7e323..0000000 --- a/screens/holdings/index.tsx +++ /dev/null @@ -1,189 +0,0 @@ -import { View, Text, StyleSheet, ScrollView, Platform, StatusBar as RNStatusBar } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDScrollView, LQDButton, SearchUI } from '@/components'; -import { ILQDButton } from '@/components/button/types'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import Card from './card'; -import Empty from './empty'; -import { emptyData } from './dummy'; -import SearchPlaceholder from '@/components/search-ui/search-placeholder'; -import { useState } from 'react'; -import { useAccountActions } from '@/store/account/actions'; - -const Holdings = () => { - const { router, accountState, appState } = useSystemFunctions(); - const { getTokens } = useAccountActions(); - const { tokens, tokenBalance, positions, lpBalance, refreshing } = accountState; - - const actions: Array = [ - { - title: 'Add money', - onPress: () => router.push('/deposit/debit'), - variant: 'tertiary', - fullWidth: false, - icon: 'money', - style: styles.action, - }, - { - title: 'Withdraw', - onPress: () => router.push('/withdraw'), - variant: 'tertiaryOutline', - fullWidth: false, - icon: 'arrow-up', - style: styles.action, - hide: tokenBalance <= 0, - }, - ]; - - const visibleActions = actions.filter((action) => !action.hide); - const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); - - const items: Array = [ - { - variant: 'primary', - details: [{ title: 'Assets', value: `${tokensUserHas?.length || 0} assets` }], - subtitle: '', - title: `$${tokenBalance.toLocaleString()}`, - empty: { - ...emptyData.primary, - action: { - title: 'Add money', - onPress: () => router.navigate('/deposit/debit'), - }, - }, - isEmpty: tokensUserHas?.length === 0, - }, - { - variant: 'secondary', - details: [ - { title: 'Staked Balance:', value: `${100} AERO-LP` }, - { title: 'Your Pools', value: `${positions?.length} pools` }, - ], - subtitle: `$${(10_706).toLocaleString()}`, - title: `${lpBalance.toLocaleString()} AERO-LP`, - empty: { - ...emptyData.secondary, - action: { - title: 'Explore pools', - onPress: () => router.navigate('/(tabs)/home'), - }, - }, - isEmpty: positions?.length === 0, - }, - ]; - - const nonEmptyItems = items.filter((item) => !item.isEmpty); - - const emptyItems = items.filter((item) => item.isEmpty && item.empty).map((item) => item.empty); - - if (appState.showSearch) { - return ( - - - - ); - } - - return ( - <> - - - getTokens(true)} style={styles.container}> - - - Total Holdings - ${(tokenBalance + lpBalance).toLocaleString()} - - - - {visibleActions.map((action, index) => ( - - ))} - - - - {Boolean(items.length) && ( - - {nonEmptyItems.map((item, index) => ( - - ))} - - )} - - {Boolean(emptyItems.length) && ( - - {emptyItems.map((item, index) => ( - - ))} - - )} - - - ); -}; - -export default Holdings; - -const styles = StyleSheet.create({ - container: { - paddingTop: 34, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - emptyContainer: { - gap: 26, - }, - - cardContainer: { - gap: 24, - }, - - contentContainer: { - paddingBottom: 175, - gap: 27, - }, - - balanceAndActionsContainer: { - alignSelf: 'stretch', - gap: 17, - alignItems: 'stretch', - }, - - balanceContainer: { - gap: 10, - }, - - balanceText: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontFamily: 'AeonikRegular', - }, - - balanceValue: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(36, 4), - lineHeight: 40.32, - fontWeight: '700', - fontFamily: 'QuantaGroteskProBold', - }, - - actionsContainer: { - flexDirection: 'row', - gap: 11, - }, - - action: { - flex: 1, - }, - - searchWrapper: { - flex: 1, - paddingHorizontal: 16, - backgroundColor: '#fff', - paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, - paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, - }, -}); diff --git a/screens/holdings/pools/action.tsx b/screens/holdings/pools/action.tsx deleted file mode 100644 index a96b241..0000000 --- a/screens/holdings/pools/action.tsx +++ /dev/null @@ -1,69 +0,0 @@ -import { Text, StyleSheet, GestureResponderEvent, TouchableOpacity } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; - -const PoolCardAction = ({ disabled, id, type }: IPoolCardAction) => { - const { router } = useSystemFunctions(); - - const action = (event: GestureResponderEvent) => { - event.stopPropagation(); - - router.push({ pathname: '/liquidity-management', params: { id, type } }); - }; - - return ( - - {type} - - ); -}; - -export default PoolCardAction; - -const styles = StyleSheet.create({ - container: { - height: '100%', - paddingVertical: 4, - justifyContent: 'center', - alignItems: 'center', - borderRadius: 10, - paddingHorizontal: 20, - }, - - stakeActive: { - backgroundColor: '#4691FE', - }, - - stakeDisabled: { - backgroundColor: '#CBD5E1', - }, - - unstakeActive: { - borderWidth: 1, - borderColor: '#E2E8F0', - backgroundColor: '#F8FAFC', - }, - - unstakeDisabled: { - opacity: 0.5, - }, - - title: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - textTransform: 'capitalize', - }, - - stakeTitle: { - color: '#FFF', - }, - - unstakeTitle: { - color: '#0F172A', - }, -}); diff --git a/screens/holdings/pools/card.tsx b/screens/holdings/pools/card.tsx deleted file mode 100644 index 3b92005..0000000 --- a/screens/holdings/pools/card.tsx +++ /dev/null @@ -1,214 +0,0 @@ -import { View, Text, StyleSheet, Pressable } from 'react-native'; -import FastImage from 'react-native-fast-image'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import PoolCardAction from './action'; - -const PoolCard = ({ - fees, - id, - lpBalance, - primaryIconURL, - primaryTitle, - secondaryIconURL, - secondaryTitle, - stakedBalance, - variant = 'stable', -}: IPoolCard) => { - const { router } = useSystemFunctions(); - const flagColors = { - stable: '#B47818', - volatile: '#AF1D38', - }; - - const actions: Array = [ - { disabled: lpBalance <= 0, id, type: 'stake' }, - { disabled: stakedBalance <= 0, id, type: 'unstake' }, - ]; - - return ( - router.push(`/holdings/${id}`)}> - - - - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - - - - ))} - - - - - {variant.charAt(0)}AMM - {primaryTitle} / {secondaryTitle} - - - - Basic {variant} - - - - - - {fees}% Fee - - - - - - LP Balance: - {lpBalance.toLocaleString()} AERO-LP - - - - - - {actions.map((action, index) => ( - - ))} - - - - Staked Balance: - {stakedBalance.toLocaleString()} AERO-LP - - - - ); -}; - -export default PoolCard; - -const styles = StyleSheet.create({ - container: { - padding: 16, - alignSelf: 'stretch', - gap: 16, - borderRadius: 12, - borderWidth: 1, - borderColor: '#EAEEF4', - }, - - topContainer: { - paddingVertical: 2, - alignSelf: 'stretch', - flexDirection: 'row', - justifyContent: 'space-between', - alignItems: 'center', - borderRadius: 10, - }, - - topLeftContainer: { - flexDirection: 'row', - alignSelf: 'stretch', - alignItems: 'center', - gap: 10 + 6, - }, - - iconContainer: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - }, - - icon: { - width: 24, - height: 24, - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - borderWidth: 1, - borderColor: '#EAEEF4', - marginRight: -6, - }, - - detailContainer: { - justifyContent: 'center', - gap: 4, - }, - - detailHeader: { - color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - details: { - flexDirection: 'row', - alignSelf: 'stretch', - alignItems: 'center', - gap: 4, - }, - - detailText: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - fee: { - color: '#64748B', - fontFamily: 'AeonikRegular', - }, - - separator: { - position: 'relative', - width: 7, - height: 0.5, - backgroundColor: '#0C050766', - }, - - separatorCircle: { - width: 3, - height: 3, - borderRadius: 9999, - backgroundColor: '#0C0507', - position: 'absolute', - top: -1.35, - left: '26%', - }, - - balanceContainer: { - justifyContent: 'center', - alignItems: 'flex-end', - gap: 5, - }, - - balanceLabel: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - balanceValue: { - color: '#334155', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - bottomContainer: { - flexDirection: 'row', - alignSelf: 'stretch', - justifyContent: 'space-between', - alignItems: 'flex-end', - }, - - actions: { - flexDirection: 'row', - gap: 16, - height: 30, - }, -}); diff --git a/screens/holdings/pools/index.tsx b/screens/holdings/pools/index.tsx deleted file mode 100644 index 8266b46..0000000 --- a/screens/holdings/pools/index.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import { View, Text, StyleSheet, ScrollView } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import PoolCard from './card'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; - -const Pools = () => { - const pools: Array = [ - { - fees: 0.3, - id: '1', - lpBalance: 2_000, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 100, - variant: 'stable', - }, - { - fees: 0.3, - id: '2', - lpBalance: 0, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 360, - variant: 'volatile', - }, - - { - fees: 0.3, - id: '1', - lpBalance: 2_000, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 0, - variant: 'stable', - }, - { - fees: 0.3, - id: '2', - lpBalance: 200, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 360, - variant: 'volatile', - }, - ]; - - return ( - - My Pools - - - {pools.map((pool, index) => ( - - ))} - - - ); -}; - -export default Pools; - -const styles = StyleSheet.create({ - container: { - flex: 1, - paddingTop: 32, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - contentContainer: { - paddingBottom: 175, - gap: 20, - }, - - header: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), - lineHeight: 23.2, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - poolsContainer: { - gap: 24, - }, -}); diff --git a/screens/holdings/pools/types.ts b/screens/holdings/pools/types.ts deleted file mode 100644 index 59e53a7..0000000 --- a/screens/holdings/pools/types.ts +++ /dev/null @@ -1,19 +0,0 @@ -type PoolCardVariant = 'stable' | 'volatile'; - -interface IPoolCard { - id: string; - variant: PoolCardVariant; - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; - fees: number; - lpBalance: number; - stakedBalance: number; -} - -interface IPoolCardAction { - id: string; - type: 'stake' | 'unstake'; - disabled: boolean; -} diff --git a/screens/holdings/rewards/card.tsx b/screens/holdings/rewards/card.tsx deleted file mode 100644 index dca0e80..0000000 --- a/screens/holdings/rewards/card.tsx +++ /dev/null @@ -1,238 +0,0 @@ -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { View, Text, StyleSheet, TouchableOpacity, Image } from 'react-native'; - -const RewardCard = ({ - condition, - fee, - id, - primaryIconURL, - primaryTitle, - secondaryIconURL, - secondaryTitle, - variant, - aero, - fees, -}: IRewardCard) => { - const conditionColors = { - stable: '#B47818', - volatile: '#AF1D38', - }; - - const rewards = { - fees: { - label: 'Fees Earned', - render: ( - - - {fees?.primaryValue.toLocaleString()} {fees?.primaryName} - - - - - - {fees?.secondaryValue.toLocaleString()} {fees?.secondaryName} - - - ), - }, - aero: { - label: 'AERO rewards:', - render: {aero?.toLocaleString()} AERO, - }, - }; - - return ( - - - - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - - - - ))} - - - - - {condition.charAt(0)}AMM - {primaryTitle} / {secondaryTitle} - - - - - Basic {condition} - - - - - - - {fee}% Fee - - - - - - - {rewards[variant].label} - {rewards[variant].render} - - - - - Claim - - - - - ); -}; - -export default RewardCard; - -const styles = StyleSheet.create({ - container: { - padding: 16, - alignSelf: 'stretch', - gap: 16, - borderRadius: 12, - borderWidth: 1, - borderColor: '#EAEEF4', - }, - - topContainer: { - paddingVertical: 2, - alignSelf: 'stretch', - flexDirection: 'row', - alignItems: 'center', - gap: 10 + 6, - }, - - iconContainer: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - }, - - icon: { - width: 24, - height: 24, - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - borderWidth: 1, - borderColor: '#EAEEF4', - marginRight: -6, - }, - - detailContainer: { - justifyContent: 'center', - gap: 4, - }, - - detailHeader: { - color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - }, - - details: { - flexDirection: 'row', - alignSelf: 'stretch', - alignItems: 'center', - gap: 4, - }, - - detailText: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - }, - - fee: { - color: '#64748B', - }, - - separator: { - position: 'relative', - width: 7, - height: 0.5, - backgroundColor: '#0C050766', - }, - - separatorCircle: { - width: 3, - height: 3, - borderRadius: 9999, - backgroundColor: '#0C0507', - position: 'absolute', - top: -1.35, - left: '26%', - }, - - bottomContainer: { - alignSelf: 'stretch', - flexDirection: 'row', - justifyContent: 'space-between', - alignItems: 'flex-end', - }, - - separatorAlt: { - position: 'relative', - width: 14, - height: 1, - backgroundColor: '#7FB3FE66', - }, - - separatorCircleAlt: { - width: 6, - height: 6, - borderRadius: 9999, - backgroundColor: '#7FB3FE', - position: 'absolute', - top: -2.5, - left: '26%', - }, - - rewardContainer: { - justifyContent: 'center', - gap: 5, - }, - - rewardLabel: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - }, - - rewardValue: { - color: '#334155', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontWeight: '500', - }, - - action: { - height: 30, - paddingVertical: 4, - justifyContent: 'center', - alignItems: 'center', - borderRadius: 10, - paddingHorizontal: 20, - backgroundColor: '#4691FE', - }, - - actionText: { - color: '#FFF', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - textTransform: 'capitalize', - }, -}); diff --git a/screens/holdings/rewards/dummy.ts b/screens/holdings/rewards/dummy.ts deleted file mode 100644 index d85bd3d..0000000 --- a/screens/holdings/rewards/dummy.ts +++ /dev/null @@ -1,169 +0,0 @@ -const aeroRewards: Array = [ - { - id: '1', - condition: 'volatile', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - aero: 16, - }, - { - id: '2', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - aero: 5, - }, - { - id: '3', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - aero: 500, - }, - { - id: '4', - condition: 'volatile', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - aero: 16, - }, - { - id: '5', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - aero: 5, - }, - { - id: '6', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - aero: 500, - }, -]; - -const feesRewards: Array = [ - { - id: '1', - condition: 'volatile', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - fees: { - primaryValue: 16, - primaryName: 'USDT', - secondaryValue: 0.05, - secondaryName: 'ETH', - }, - }, - { - id: '2', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - fees: { - primaryValue: 5, - primaryName: 'USDT', - secondaryValue: 0.1, - secondaryName: 'ETH', - }, - }, - { - id: '3', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - fees: { - primaryValue: 500, - primaryName: 'USDT', - secondaryValue: 1.34, - secondaryName: 'ETH', - }, - }, - { - id: '4', - condition: 'volatile', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - fees: { - primaryValue: 16, - primaryName: 'USDT', - secondaryValue: 0.05, - secondaryName: 'ETH', - }, - }, - { - id: '5', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - fees: { - primaryValue: 5, - primaryName: 'USDT', - secondaryValue: 0.1, - secondaryName: 'ETH', - }, - }, - { - id: '6', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - fees: { - primaryValue: 500, - primaryName: 'USDT', - secondaryValue: 1.34, - secondaryName: 'ETH', - }, - }, -]; - -export { aeroRewards, feesRewards }; diff --git a/screens/holdings/rewards/index.tsx b/screens/holdings/rewards/index.tsx deleted file mode 100644 index 09877f9..0000000 --- a/screens/holdings/rewards/index.tsx +++ /dev/null @@ -1,61 +0,0 @@ -import { View, Text, StyleSheet, ScrollView } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import RewardCard from './card'; -import { aeroRewards, feesRewards } from './dummy'; - -const Rewards = ({ type }: { type: RewardVariants }) => { - const rewards = { - fees: feesRewards, - aero: aeroRewards, - }[type]; - - const noOfRewards = rewards.length; - return ( - - - Rewards - ({noOfRewards} pools) - - - - {rewards.map((reward) => ( - - ))} - - - ); -}; - -export default Rewards; - -const styles = StyleSheet.create({ - container: { - flex: 1, - paddingTop: 32, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - contentContainer: { - paddingBottom: 175, - gap: 20, - }, - - header: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), - lineHeight: 23.2, - fontWeight: '500', - }, - - subHeader: { - color: '#94A3B8', - fontSize: adjustFontSizeForIOS(16, 2), - fontWeight: '500', - }, - - rewardsContainer: { - gap: 24, - }, -}); diff --git a/screens/holdings/rewards/types.ts b/screens/holdings/rewards/types.ts deleted file mode 100644 index 3f8182d..0000000 --- a/screens/holdings/rewards/types.ts +++ /dev/null @@ -1,20 +0,0 @@ -type RewardCardCondition = 'stable' | 'volatile'; -type RewardCardVariant = 'fees' | 'aero'; - -interface IRewardCard { - id: string; - condition: RewardCardCondition; - variant: RewardCardVariant; - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; - fee: number; - aero?: number; - fees?: { - primaryName: string; - primaryValue: number; - secondaryName: string; - secondaryValue: number; - }; -} diff --git a/screens/holdings/types.ts b/screens/holdings/types.ts deleted file mode 100644 index 9536c69..0000000 --- a/screens/holdings/types.ts +++ /dev/null @@ -1,38 +0,0 @@ -interface IEmpty { - icon: 'wallet' | 'radio' | 'coins' | 'dollar'; - title: string; - subtitle: string; - action?: { - title: string; - onPress: () => void; - }; - actionIcon?: 'plus' | 'right-caret'; - isLast?: boolean; -} - -type Variants = 'primary' | 'secondary'; - -interface IItem { - variant: Variants; - title: string; - subtitle: string; - details: Array<{ - title: string; - value: string; - }>; - isEmpty?: boolean; - empty?: IEmpty; -} - -interface CardConfig { - primaryColor: string; - secondaryColor: string; - label: string; - action: () => void; -} - -interface IEmptyData extends Record {} - -interface ICardConfig extends Record {} - -type RewardVariants = 'aero' | 'fees'; diff --git a/screens/home/dummy.ts b/screens/home/dummy.ts new file mode 100644 index 0000000..fa24751 --- /dev/null +++ b/screens/home/dummy.ts @@ -0,0 +1,93 @@ +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; +export const feeds: Array = [ + { + photo: image, + username: '@Nurayyy.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + likeCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'supply', + token: 'cbBTC', + protocolTitle: 'moonWell', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'moonWell', + }, + + { + variant: 'deposit', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', + }, + { + variant: 'borrow', + token: 'cbBTC', + protocolTitle: 'Aerodrome', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'aerodrome', + }, + + { + variant: 'deposit', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', + }, + ], + }, + { + photo: image, + username: '@Gabby.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + likeCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'supply', + token: 'cbBTC', + protocolTitle: 'moonWell', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'moonWell', + }, + + { + variant: 'deposit', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', + }, + { + variant: 'borrow', + token: 'cbBTC', + protocolTitle: 'Aerodrome', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'aerodrome', + }, + + { + variant: 'deposit', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', + }, + ], + }, +]; diff --git a/screens/home/header.tsx b/screens/home/header.tsx new file mode 100644 index 0000000..11a5df5 --- /dev/null +++ b/screens/home/header.tsx @@ -0,0 +1,48 @@ +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import { HeaderMenuIcon, HeaderWalletIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; + +const Header = ({ amount, actionLeft, actionRight }: IHeader) => { + return ( + + + {actionLeft && ( + + + + )} + + + + {actionRight && ( + + ${amount} + + + )} + + + ); +}; + +export default Header; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + justifyContent: 'space-between', + paddingHorizontal: 16, + backgroundColor: '#fff', + alignItems: 'center', + borderBottomWidth: 1, + paddingVertical: 10, + borderColor: '#F1F5F9', + }, + amountWrap: { flexDirection: 'row', alignItems: 'center', gap: 10 }, + amount: { + fontSize: adjustFontSizeForIOS(18, 3), + fontFamily: 'AeonikMedium', + fontWeight: '500', + }, +}); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 1c5d363..ccf3135 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -1,142 +1,48 @@ -import { useEffect } from 'react'; -import { StyleSheet, View, Text, FlatList, TouchableOpacity, Platform, StatusBar as RNStatusBar, ScrollView } from 'react-native'; +import { StyleSheet, Platform, StatusBar as RNStatusBar, Pressable, FlatList } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS, createArrayWithIndexes, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; -import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDScrollView, LQShrimeLoader, SearchUI } from '@/components'; -import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, TrendUpIcon } from '@/assets/icons'; -import { useAccountActions } from '@/store/account/actions'; -import { usePoolActions } from '@/store/pools/actions'; -import { useOnMount } from '@/hooks/useOnMount'; -import Section from './section'; -import SearchPlaceholder from '@/components/search-ui/search-placeholder'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { LQDFeedCard } from '@/components'; +import { PlusIcon } from '@/assets/icons'; import Loader from './loader'; +import { useFeeds } from '@/services/feeds/queries'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; const Home = () => { - const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); - const { getTokens } = useAccountActions(); - const { getPools, getAllPools } = usePoolActions(); - - const { trendingPools, hotPools, topGainers, loadingPools } = poolsState; - const { loading: loadingAccounts } = accountState; - - const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); - - const hotPoolsArray = Object.values(hotPools.data); - const trendingPoolsArray = Object.values(trendingPools.data); - const top7GainersArray = Object.values(topGainers.data); - - const top10TrendingPools = trendingPoolsArray?.slice(0, 10); - const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; - const top7Gainers = top7GainersArray.slice(0, 7); - const globalLoading = loadingPools || loadingAccounts; - const emptyArryTopGainers = createArrayWithIndexes(3); - const emptyArryTrending = createArrayWithIndexes(5); - - const sections = [ - { - title: 'Top gainers', - subtitle: 'by APR', - icon: , - action: () => router.push('/(tabs)/home/top'), - children: ( - } - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={{ gap: 10 }} - /> - ), - }, - - { - title: 'Trending', - subtitle: 'by Volume', - icon: , - action: () => router.push('/(tabs)/home/trending'), - children: ( - - {top10TrendingPools.map((pool, index) => ( - - ))} - - ), - }, - { - title: 'Hot', - subtitle: 'by TVL', - icon: , - action: () => router.push('/(tabs)/home/hot'), - children: ( - - {top10HotPools.map((pool, index) => ( - - ))} - - ), - }, - ]; - - useEffect( - function fetchBalances() { - getTokens(); - //getPositions(); - }, - [smartAccountState.address] - ); + const { router } = useSystemFunctions(); + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useFeeds(); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreFeeds = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; - useOnMount(function loadData() { - getPools(); - getAllPools(); - }); - - if (appState.showSearch) { - return ( - - - - ); + if (isLoading) { + return ; } - if (globalLoading) return ; return ( <> - - - getTokens(true)} - style={styles.container} - contentStyle={styles.contentContainer} - > - - - Total Balance - router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> - - ${whole}.{decimal} - - - - - - - router.push('/deposit/debit')} - variant="tertiaryOutline" - icon="money" - iconColor="#334155" - style={{ alignSelf: 'stretch' }} - /> - - - {sections.map((section, index) => ( -
- ))} -
+ router.navigate('/(strategy)/create-strategy')} style={styles.addIcon}> + + + + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.listContainer} + style={{ backgroundColor: '#fff' }} + onRefresh={refetch} + onEndReached={loadMoreFeeds} + ListFooterComponent={isFetchingNextPage ? : null} + /> ); }; @@ -156,6 +62,11 @@ const styles = StyleSheet.create({ paddingBottom: 150, }, + listContainer: { + backgroundColor: '#fff', + paddingBottom: 100, + }, + balanceAndActionContainer: { alignSelf: 'stretch', gap: 24, @@ -216,4 +127,16 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, + addIcon: { + backgroundColor: '#4691FE', + height: 50, + width: 50, + justifyContent: 'center', + alignItems: 'center', + borderRadius: 100, + position: 'absolute', + bottom: '12%', + right: 15, + zIndex: 2, + }, }); diff --git a/screens/home/loader.tsx b/screens/home/loader.tsx index c6927fa..907c106 100644 --- a/screens/home/loader.tsx +++ b/screens/home/loader.tsx @@ -1,54 +1,31 @@ -import { View, Text, StyleSheet, Platform, StatusBar as RNStatusBar } from 'react-native'; +import { View, StyleSheet, Platform, StatusBar as RNStatusBar } from 'react-native'; import React from 'react'; import { LQShrimeLoader } from '@/components'; import { createArrayWithIndexes } from '@/utils/helpers'; const Loader = () => { - const emptyArryTopGainers = createArrayWithIndexes(3); - const emptyArryTrending = createArrayWithIndexes(5); + const emptyArry = createArrayWithIndexes(3); return ( - - {/* search */} - - - - - - - {/* total balance */} - - - {/* button */} - - - {/* section */} - - - - - - {/* gainers */} - - {emptyArryTopGainers.map((_, index) => ( - - ))} - + + {emptyArry.map((_, index) => ( + + + + + + + + - {/* section */} - - - - + - {/* trending */} - {emptyArryTrending.map((_, index) => ( - - - - - + + + - + + + ))} @@ -58,19 +35,18 @@ const Loader = () => { export default Loader; const styles = StyleSheet.create({ + container: { backgroundColor: '#fff', flex: 1 }, + loaderBody: { borderBottomWidth: 1, paddingBottom: 30, borderColor: '#F1F5F9', paddingHorizontal: 16 }, loaderButton: { height: 40, borderRadius: 10, marginTop: 20 }, - loaderBalance: { height: 98, borderRadius: 10, marginTop: 30 }, + loaderBalance: { height: 98, borderRadius: 10, marginTop: 20 }, searchLoader: { flexDirection: 'row', - gap: 30, - alignItems: 'center', - backgroundColor: '#fff', - paddingHorizontal: 16, + gap: 10, paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, - paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, - loaderOne: { height: 24, width: 24, borderRadius: 16 }, - loaderTwo: { height: 35, width: 50, borderRadius: 6, flex: 1 }, + loaderOne: { height: 40, width: 40, borderRadius: 100 }, + loaderTwo: { height: 40, width: 50, borderRadius: 10, flex: 1 }, + loaderThree: { height: 25, width: 24, borderRadius: 100 }, header: { flexDirection: 'row', alignSelf: 'stretch', @@ -97,6 +73,5 @@ const styles = StyleSheet.create({ topGainerLoaderThree: { height: 15, width: '50%', borderRadius: 6 }, topGainerLoaderFour: { height: 15, width: 56, borderRadius: 6 }, gainerLoaderContainer: { flexDirection: 'row', gap: 20, marginTop: 20 }, - sectionContainer: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 30 }, - loaderBody: { backgroundColor: '#fff', flex: 1, paddingHorizontal: 16 }, + sectionContainer: { justifyContent: 'space-between', marginTop: 20, gap: 10 }, }); diff --git a/screens/home/types.ts b/screens/home/types.ts index b00c434..e361813 100644 --- a/screens/home/types.ts +++ b/screens/home/types.ts @@ -6,3 +6,9 @@ interface ISection { action?: () => void; isShowingAll?: boolean; } + +interface IHeader { + amount: number; + actionLeft?: () => void; + actionRight?: () => void; +} diff --git a/screens/index.ts b/screens/index.ts index 846df33..36473ad 100644 --- a/screens/index.ts +++ b/screens/index.ts @@ -3,39 +3,52 @@ import TopGainers from './home/topGainers'; import Trending from './home/trending'; import Hot from './home/hot'; -import Setup from './setup'; +import Discover from './discover'; +import CreateStrategy from './create-strategy'; +import NewActionStrategy from './create-strategy/new-action-strategy'; +import PreviewStrategy from './create-strategy/preview-strategy'; +import StrategyDetail from './strategy-detail'; -import Holdings from './holdings'; -import Assets from './holdings/assets'; -import Pools from './holdings/pools'; -import Rewards from './holdings/rewards'; +import Profile from './profile'; +import EditProfile from './profile/edit-profile.tsx'; +import Setup from './setup'; import CryptoDeposit from './deposit/crypto'; +import CryptoWalletDeposit from './deposit/crypto/crypto-wallet'; import DebitDeposit from './deposit/debit'; import LiquidityManagement from './liquidity-management'; import Withdraw from './withdraw'; +import RecepientAddress from './withdraw/recepient-address'; import PoolDetail from './pool-detail'; import AddLiquidty from './liquidity-actions/add'; import RemoveLiquidity from './liquidity-actions/remove'; +import Portfolio from './portfolio'; + export { Home, TopGainers, Trending, + PreviewStrategy, Hot, + Discover, + Profile, + EditProfile, Setup, - Holdings, - Assets, - Pools, - Rewards, LiquidityManagement, CryptoDeposit, + CryptoWalletDeposit, DebitDeposit, Withdraw, + RecepientAddress, PoolDetail, AddLiquidty, RemoveLiquidity, + CreateStrategy, + NewActionStrategy, + StrategyDetail, + Portfolio, }; diff --git a/screens/liquidity-actions/remove/percentage-setter.tsx b/screens/liquidity-actions/remove/percentage-setter.tsx index b6d381d..f41e5bc 100644 --- a/screens/liquidity-actions/remove/percentage-setter.tsx +++ b/screens/liquidity-actions/remove/percentage-setter.tsx @@ -1,53 +1,108 @@ -import React, { useState, useEffect } from 'react'; -import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; -import Slider from '@react-native-community/slider'; - +import React, { useState, useEffect, useRef } from 'react'; +import { View, Text, StyleSheet, TouchableOpacity, PanResponder, Animated } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; +interface IPercentageSetter { + setPercentage: (value: number) => void; +} + const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { - const [percentage, setInternalPercentage] = useState(25); + const [percentage, setInternalPercentage] = useState(10); + const [label, setInternalLabel] = useState('$10k'); + const [sliderWidth, setSliderWidth] = useState(1); + const [startValue, setStartValue] = useState(0); const percentages = [ - { value: 10, label: '10%' }, - { value: 25, label: '25%' }, - { value: 50, label: '50%' }, - { value: 75, label: '75%' }, - { value: 100, label: 'MAX' }, + { value: 50000, label: '$50k' }, + { value: 1000000, label: '$1m' }, + { value: 5000000, label: '$5m' }, + { value: 10000000, label: '$10m' }, + { value: 100000000, label: '$100m' }, ]; + const pan = useRef(new Animated.Value(0)).current; + + const calculatePercentageFromValue = (value: number) => { + const index = percentages.findIndex((p) => p.value === value); + if (index === -1) return 0; + return (index / (percentages.length - 1)) * 100; + }; + + const calculateValueFromPercentage = (percent: number) => { + const index = Math.round((percent / 100) * (percentages.length - 1)); + return percentages[Math.min(Math.max(0, index), percentages.length - 1)].value; + }; + + const formatLabel = (value: number) => { + if (value < 1000000) { + return `$${Math.round(value / 1000)}k`; + } + return `$${(value / 1000000).toFixed(1)}m`; + }; + useEffect(() => { if (setPercentage) { setPercentage(percentage); } }, [percentage, setPercentage]); - const handleSliderChange = (value: number) => { - setInternalPercentage(Math.round(value)); - }; + const panResponder = PanResponder.create({ + onStartShouldSetPanResponder: () => true, + onMoveShouldSetPanResponder: () => true, + onPanResponderGrant: (_, gestureState) => { + pan.setOffset(pan.getValue()); + }, + onPanResponderMove: (_, gestureState) => { + const percentageMove = (gestureState.dx / sliderWidth) * 100; + const newPercentage = Math.max(0, Math.min(100, pan.getOffset() + percentageMove)); + + pan.setValue(newPercentage); - const setPredefinedPercentage = (value: number) => { + const newValue = calculateValueFromPercentage(newPercentage); + setInternalPercentage(newValue); + setInternalLabel(formatLabel(newValue)); + }, + onPanResponderRelease: () => { + pan.flattenOffset(); + }, + }); + + const setPredefinedValues = (value: number, label: string) => { setInternalPercentage(value); + setInternalLabel(label); + const newPercentage = calculatePercentageFromValue(value); + pan.setValue(newPercentage); }; return ( - {percentage}% - - - + {label} + setSliderWidth(event.nativeEvent.layout.width)} + > + {/* ignore this i need to fix this pan animation */} + {/* + + + */} + @@ -55,7 +110,7 @@ const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { setPredefinedPercentage(value)} + onPress={() => setPredefinedValues(value, label)} > {label} @@ -81,22 +136,41 @@ const styles = StyleSheet.create({ label: { color: '#475569', fontSize: adjustFontSizeForIOS(18, 2), - lineHeight: 23.76, + lineHeight: 24, fontWeight: '500', fontFamily: 'AeonikMedium', }, sliderContainer: { width: '100%', + height: 20, + justifyContent: 'center', + }, + track: { + width: '100%', + height: 4, + backgroundColor: '#CBD5E1', + borderRadius: 2, + position: 'relative', + }, + progress: { + height: '100%', + backgroundColor: '#4691FE', + borderRadius: 2, + }, + thumb: { + position: 'absolute', + width: 16, + height: 16, + borderRadius: 8, + backgroundColor: '#4691FE', + top: -6, + marginLeft: -8, }, - partitions: { - alignSelf: 'stretch', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', - gap: 18, }, - partition: { paddingVertical: 6, paddingHorizontal: 10, @@ -108,15 +182,14 @@ const styles = StyleSheet.create({ borderWidth: 1, borderColor: '#E2E8F0', }, - activePartition: { backgroundColor: '#F1F5F9', + borderColor: '#4691FE', }, - partitionText: { color: '#334155', fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, + lineHeight: 16, fontWeight: '500', fontFamily: 'AeonikMedium', }, diff --git a/screens/portfolio/asset-item.tsx b/screens/portfolio/asset-item.tsx new file mode 100644 index 0000000..24ff438 --- /dev/null +++ b/screens/portfolio/asset-item.tsx @@ -0,0 +1,63 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { LQDImage } from '@/components'; + +const AssetItem = ({ title, subTitle, icon }: IAssetItem) => { + return ( + + + + + {title} + {subTitle} + + + + ); +}; + +export default AssetItem; + +const styles = StyleSheet.create({ + detailContainer: { + justifyContent: 'center', + gap: 4, + }, + + title: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(14, 2), + + fontFamily: 'AeonikMedium', + }, + + details: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + gap: 4, + }, + + subTitle: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 2), + lineHeight: 13.64, + fontFamily: 'AeonikRegular', + }, + + container: { + paddingVertical: 2, + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + }, + + leftContainer: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + gap: 10, + maxWidth: '70%', + }, +}); diff --git a/screens/portfolio/index.tsx b/screens/portfolio/index.tsx new file mode 100644 index 0000000..1b4f080 --- /dev/null +++ b/screens/portfolio/index.tsx @@ -0,0 +1,194 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React, { useState } from 'react'; +import { LQDActionCard, LQDBottomSheet, LQDButton, LQDFlatlist, LQDScrollView, LQDSlider, LQDStrategyCard } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { addMoney, strategyies } from '../discover/dummy'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import AssetItem from './asset-item'; + +const Portfolio = () => { + const [showModal, setShowModal] = useState(false); + const [selectedAction, setSelectedAction] = useState(''); + const { router, dispatch } = useSystemFunctions(); + + const openModal = () => { + setShowModal((prev) => !prev); + setSelectedAction(''); + }; + + const navigateToWithdrawal = () => { + router.push('/withdraw/withdraw'); + }; + + const handleSelectAction = () => { + openModal(); + + setTimeout(() => { + if (selectedAction === '1') { + router.push('/deposit/crypto'); + } + + if (selectedAction === '2') { + router.push('/deposit/debit'); + } + + if (selectedAction === '3') { + // handle coinbase + } + }, 200); + }; + + return ( + <> + + + Portfolio + $144,600 + + + + + + + + + {}} style={styles.container}> + + + + All Asset + + {[ + { + title: 'USD Coin', + icon: '', + subTitle: '0 ETH', + }, + { + title: 'Ethereum', + icon: '', + subTitle: '0 ETH', + }, + ].map((asset, index) => ( + + ))} + + + + + Positions + + {strategyies.slice(0, 3).map((strategy, index) => ( + + ))} + {!strategyies.length && You have no open positions} + + + + + + {addMoney.map((action, index) => ( + !action.comingSoon && setSelectedAction(action.id)} + /> + ))} + + + + + + + + + ); +}; + +export default Portfolio; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFF', + paddingTop: 10, + }, + title: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(13, 1), + lineHeight: 16.12, + fontWeight: '400', + fontFamily: 'AeonikMedium', + marginVertical: 15, + }, + position: { + color: '#0F172A', + fontSize: adjustFontSizeForIOS(14, 1), + lineHeight: 18.48, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + subTitle: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(36, 1), + lineHeight: 40.32, + fontWeight: '700', + fontFamily: 'QuantaGroteskProBold', + }, + noPosition: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(11, 1), + lineHeight: 13.64, + fontWeight: '400', + fontFamily: 'AeonikMedium', + textAlign: 'center', + marginVertical: 30, + }, + strategyContainerStyle: { gap: 20, marginTop: 15 }, + modalContainerStyle: { gap: 20, paddingBottom: 50 }, + bottomWrapper: { marginTop: 10, marginBottom: 30, marginHorizontal: 10 }, + dotsWrapper: { + flexDirection: 'row', + alignSelf: 'center', + backgroundColor: 'green', + }, + indicatorDot: { + width: 8, + height: 8, + borderRadius: 8 / 2, + borderColor: 'green', + borderWidth: 1, + marginRight: 8, + }, + btnWrapper: { + flexDirection: 'row', + justifyContent: 'space-between', + marginTop: 24, + }, + topWrapper: { paddingHorizontal: 16, backgroundColor: '#fff', paddingBottom: 15 }, + allAsset: { paddingHorizontal: 16, marginBottom: 20 }, + allPositions: { paddingHorizontal: 16, paddingBottom: 60 }, +}); diff --git a/screens/portfolio/types.ts b/screens/portfolio/types.ts new file mode 100644 index 0000000..a4c8065 --- /dev/null +++ b/screens/portfolio/types.ts @@ -0,0 +1,12 @@ +interface IAssetItem { + title: string; + subTitle: string; + icon: string; +} + +interface AddMoneyActionItem { + title: string; + id: string; + comingSoon: boolean; + icon: 'debitCard' | 'crypto' | 'coinBase' | 'supply'; +} diff --git a/screens/profile/dummy.ts b/screens/profile/dummy.ts new file mode 100644 index 0000000..095442d --- /dev/null +++ b/screens/profile/dummy.ts @@ -0,0 +1,92 @@ +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; +export const feeds: Array = [ + { + photo: image, + username: '@Nurayyy.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + likeCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + photo: image, + username: '@Gabby.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + likeCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, +]; diff --git a/screens/profile/edit-profile.tsx/index.tsx b/screens/profile/edit-profile.tsx/index.tsx new file mode 100644 index 0000000..04dac7a --- /dev/null +++ b/screens/profile/edit-profile.tsx/index.tsx @@ -0,0 +1,192 @@ +import { Pressable, StyleSheet, Text, TextInput, View } from 'react-native'; +import React, { useState } from 'react'; +import { LQDButton, LQDImage } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { FamcasterIcon, XIcon } from '@/assets/icons'; + +const EditProfile = () => { + const [username, setUsername] = useState(''); + + const handleTagChange = (value: string) => { + setUsername(value); + }; + + return ( + + + + Upload photo + Remove photo + + + + + Username + + + + + X account + Verify your X account to display it on your profile and kep it real + + + + + + @Jeffing.eth + + + Disconnect + + + + + Farcaster + Verify your Farcaster account to display it on your profile and kep it real + + + + + + @Jeffing.eth + + + Connect + + + + + + + + Cancel + + + + + ); +}; + +export default EditProfile; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + }, + topWrapper: { + justifyContent: 'center', + alignItems: 'center', + marginTop: 40, + }, + bottomWrapper: { + marginTop: 24, + }, + title: { + fontSize: adjustFontSizeForIOS(12, 1), + fontFamily: 'ClashDisplayMedium', + fontWeight: '500', + color: '#4691FE', + lineHeight: 19.2, + marginTop: 6, + marginBottom: 3, + }, + subTitle: { + fontSize: adjustFontSizeForIOS(12, 1), + fontFamily: 'ClashDisplayMedium', + fontWeight: '500', + color: '#AF1D38', + lineHeight: 16.2, + }, + accountTitle: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + lineHeight: 15.2, + marginTop: 6, + marginBottom: 3, + }, + accountSubTitle: { + fontSize: adjustFontSizeForIOS(12, 1), + fontFamily: 'Aeonik', + fontWeight: '400', + color: '#64748B', + lineHeight: 19.2, + }, + lable: { + fontSize: adjustFontSizeForIOS(13, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginBottom: 5, + }, + username: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + }, + disconnet: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#475569', + lineHeight: 19.2, + }, + inputWrapper: { + borderBottomWidth: 1, + paddingBottom: 24, + borderColor: '#F1F5F9', + marginTop: 20, + }, + input: { + alignSelf: 'stretch', + padding: 12, + backgroundColor: '#FFF', + borderRadius: 16, + borderColor: '#EAEEF4', + color: '#020617', + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + fontFamily: 'AeonikMedium', + borderWidth: 1, + }, + actionBtn: { + flexDirection: 'row', + gap: 7, + borderWidth: 1, + borderColor: '#EAEEF4', + paddingHorizontal: 11, + paddingVertical: 7, + borderRadius: 10, + alignItems: 'center', + }, + btnWrapper: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 20, paddingHorizontal: 15 }, + xIconFlex: { flexDirection: 'row', alignItems: 'center', gap: 10 }, + cancel: { + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 16, + color: '#64748B', + fontFamily: 'QuantaGroteskProSemiBold', + fontWeight: '600', + alignSelf: 'center', + marginTop: 20, + }, + btnBottomWrapper: { + marginTop: 40, + }, +}); diff --git a/screens/profile/index.tsx b/screens/profile/index.tsx new file mode 100644 index 0000000..aaaeb22 --- /dev/null +++ b/screens/profile/index.tsx @@ -0,0 +1,115 @@ +import React, { useState } from 'react'; +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import { SceneMap } from 'react-native-tab-view'; +import { LQDImage } from '@/components'; +import { CopyIcon, FamcasterIcon, FillCheckIcon, LinkIcon, UserOctagonIcon, XIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useCustomTabView from '@/hooks/useCustomTabview'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import UserStrategies from './user-strategies'; +import UserLikedStrategies from './user-liked-strategies'; +import UserRepostStrategies from './user-repost-strategies'; + +const Profile = () => { + const { CustomTabView } = useCustomTabView(); + const { router } = useSystemFunctions(); + const [copyProfileLink, setCopyProfileLink] = useState(false); + + const handleCopyPL = () => { + setCopyProfileLink((prev) => !prev); + + setTimeout(() => { + setCopyProfileLink(false); + }, 3000); + }; + + const renderScene = SceneMap({ + strategy: UserStrategies, + deposit: UserRepostStrategies, + like: UserLikedStrategies, + }); + + const [routes] = React.useState([ + { key: 'strategy', title: 'My Strategies' }, + { key: 'deposit', title: 'Deposits' }, + { key: 'like', title: 'Likes' }, + ]); + + return ( + + + router.push(`/(tabs)/profile/edit-profile`)} edit height={56} width={56} /> + @jeffing.eth + + 0xc57...13d4f + + + + + + Joined NOV 2024 + + + + + + + + + {copyProfileLink ? : } + + + + + + + ); +}; + +export default Profile; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFF', + }, + topWrapper: { + justifyContent: 'center', + alignItems: 'center', + marginTop: 40, + }, + actionBtn: { + flexDirection: 'row', + gap: 7, + borderWidth: 1, + borderColor: '#EAEEF4', + paddingHorizontal: 11, + paddingVertical: 7, + borderRadius: 10, + alignItems: 'center', + }, + actionBtnWrapper: { flexDirection: 'row', alignItems: 'center', gap: 9, marginTop: 15, marginBottom: 20 }, + addressWrapper: { flexDirection: 'row', gap: 7 }, + username: { + fontSize: adjustFontSizeForIOS(16, 1), + fontFamily: 'ClashDisplayBold', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginTop: 6, + marginBottom: 5, + }, + address: { + fontSize: adjustFontSizeForIOS(13, 2), + fontFamily: 'Aeonik', + fontWeight: '400', + color: '#64748B', + lineHeight: 16.12, + }, + joinDate: { + fontSize: adjustFontSizeForIOS(14, 2), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + }, +}); diff --git a/screens/profile/user-liked-strategies.tsx b/screens/profile/user-liked-strategies.tsx new file mode 100644 index 0000000..56ccb19 --- /dev/null +++ b/screens/profile/user-liked-strategies.tsx @@ -0,0 +1,40 @@ +import { FlatList } from 'react-native'; +import { useUserLikes } from '@/services/user/queries'; +import { LQDFeedCard } from '@/components'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import Loader from '../home/loader'; + +const UserLikedStrategies = () => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useUserLikes( + '0x1234567890123456789012345678901234567890' + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={refetch} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + ); +}; + +export default UserLikedStrategies; diff --git a/screens/profile/user-repost-strategies.tsx b/screens/profile/user-repost-strategies.tsx new file mode 100644 index 0000000..59fc545 --- /dev/null +++ b/screens/profile/user-repost-strategies.tsx @@ -0,0 +1,39 @@ +import { FlatList } from 'react-native'; +import { useUserLikes } from '@/services/user/queries'; +import { LQDFeedCard } from '@/components'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import Loader from '../home/loader'; + +const UserRepostStrategies = () => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useUserLikes( + '0x1234567890123456789012345678901234567890' + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + } + keyExtractor={(_, index) => index.toString()} + style={{ backgroundColor: '#fff' }} + onRefresh={refetch} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + ); +}; + +export default UserRepostStrategies; diff --git a/screens/profile/user-strategies.tsx b/screens/profile/user-strategies.tsx new file mode 100644 index 0000000..c9062e7 --- /dev/null +++ b/screens/profile/user-strategies.tsx @@ -0,0 +1,40 @@ +import { FlatList } from 'react-native'; +import { useUserStrategies } from '@/services/user/queries'; +import { LQDFeedCard } from '@/components'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import Loader from '../home/loader'; + +const UserStrategies = () => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useUserStrategies( + '0x1234567890123456789012345678901234567890' + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={refetch} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + ); +}; + +export default UserStrategies; diff --git a/screens/strategy-detail/comment-card.tsx b/screens/strategy-detail/comment-card.tsx new file mode 100644 index 0000000..bb412c5 --- /dev/null +++ b/screens/strategy-detail/comment-card.tsx @@ -0,0 +1,99 @@ +import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; +import React, { useState } from 'react'; +import { FlashIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS, formatTimestamp } from '@/utils/helpers'; +import { LQDImage } from '@/components'; +import { useLikeCommentMutation } from '@/services/comments/queries'; + +const CommentCard = ({ author, content, createdAt, isLiked, likeCount, id, strategyId }: CommentItem) => { + const likeCommentMutation = useLikeCommentMutation(strategyId, id); + + const handleLikeComment = () => { + likeCommentMutation.mutate(); + }; + + return ( + + + + + + Meister + {formatTimestamp(createdAt)} + + {content} + + + + {isLiked ? : } + + {likeCount} + + + ); +}; + +export default CommentCard; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + gap: 8, + }, + commentRightWrapper: { + alignItems: 'center', + gap: 6, + }, + commentLeftWrapper: { + flex: 1, + marginRight: 10, + gap: 5, + }, + commentCardContainer: { + flexDirection: 'row', + gap: 8, + }, + usernameFlex: { + flexDirection: 'row', + gap: 7, + }, + username: { + fontSize: adjustFontSizeForIOS(13, 3), + fontFamily: 'ClashDisplayBold', + fontWeight: '500', + color: '#1E293B', + }, + likeCount: { + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + }, + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + comment: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, +}); diff --git a/screens/strategy-detail/comment-input.tsx b/screens/strategy-detail/comment-input.tsx new file mode 100644 index 0000000..22edf33 --- /dev/null +++ b/screens/strategy-detail/comment-input.tsx @@ -0,0 +1,95 @@ +import { useRef, useState } from 'react'; +import { FlatList, StyleSheet, TextInput, TouchableOpacity, View } from 'react-native'; +import { LQDImage } from '@/components'; +import { ArrowUpCircleIcon, SmileEmojiIcon } from '@/assets/icons'; +import { useAddCommentMutation } from '@/services/comments/queries'; + +const CommentInput = ({ strategyId }: { strategyId: string }) => { + const flatListRef = useRef(null); + const [comment, setComment] = useState(''); + const [isInputFocused, setIsInputFocused] = useState(false); + const [dynamicHeight, setDynamicHeight] = useState(0); + + const inputheight = Math.min(Math.max(44, dynamicHeight), 80); + + const addCommentMutation = useAddCommentMutation(strategyId); + + const handleAddComment = () => { + if (comment.trim()) { + addCommentMutation.mutate( + { content: comment.trim() }, + { + onSuccess: () => { + setComment(''); + flatListRef.current?.scrollToOffset({ offset: 0, animated: true }); + }, + } + ); + } + }; + + return ( + + + + setComment(val)} + multiline={true} + onContentSizeChange={(event) => setDynamicHeight(event.nativeEvent.contentSize.height)} + style={styles.textInput} + onFocus={() => setIsInputFocused(true)} + onBlur={() => setIsInputFocused(false)} + /> + + {comment.length > 0 ? ( + + + + ) : ( + + )} + + + ); +}; + +export default CommentInput; + +const styles = StyleSheet.create({ + commentContainer: { + bottom: 10, + left: 0, + right: 0, + flexDirection: 'row', + gap: 10, + alignItems: 'center', + backgroundColor: '#FFFFFF', + paddingVertical: 8, + borderTopColor: '#EAEEF4', + zIndex: 10, + }, + + commentInput: { + borderWidth: 1, + borderColor: '#EAEEF4', + height: 44, + borderRadius: 16, + alignItems: 'center', + paddingLeft: 10, + paddingRight: 6, + flex: 1, + flexDirection: 'row', + gap: 3, + }, + + textInput: { + flex: 1, + }, + + focusedInput: { + borderColor: '#4691FE', + borderWidth: 1.2, + }, +}); diff --git a/screens/strategy-detail/comments.tsx b/screens/strategy-detail/comments.tsx new file mode 100644 index 0000000..813003f --- /dev/null +++ b/screens/strategy-detail/comments.tsx @@ -0,0 +1,128 @@ +import { FlatList, StyleSheet, Text, View } from 'react-native'; +import { LQDBottomSheet, LQShrimeLoader } from '@/components'; +import CommentCard from './comment-card'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { useComments } from '@/services/comments/queries'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import CommentInput from './comment-input'; +import Loader from '../home/loader'; + +const EmptyState = () => ( + + No comments + + + + +); + +const Comments = ({ + openCloseComment, + showCommentSection, + strategyId, +}: { + openCloseComment: () => void; + showCommentSection: boolean; + strategyId: string; +}) => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useComments(strategyId); + + const comments = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreComments = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + + + + + {comments.length > 0 ? ( + } + keyExtractor={(_, index) => index.toString()} + onRefresh={refetch} + onEndReached={loadMoreComments} + ListFooterComponent={isFetchingNextPage ? : null} + contentContainerStyle={styles.commentContainerStyle} + /> + ) : ( + + )} + + + + + + + ); +}; + +export default Comments; + +const styles = StyleSheet.create({ + lineOne: { + height: 8, + borderRadius: 10, + marginTop: 10, + width: '80%', + }, + lineTwo: { + height: 8, + borderRadius: 10, + marginTop: 10, + width: '60%', + }, + lineThree: { + height: 8, + borderRadius: 10, + marginTop: 10, + width: '40%', + }, + emptyStateWrapper: { + alignItems: 'center', + marginTop: 30, + }, + commentContainer: { + bottom: 10, + left: 0, + right: 0, + flexDirection: 'row', + gap: 10, + alignItems: 'center', + backgroundColor: '#FFFFFF', + paddingVertical: 8, + + borderTopColor: '#EAEEF4', + zIndex: 10, + }, + commentContainerStyle: { + gap: 24, + paddingBottom: 50, + }, + + emptyText: { + fontSize: adjustFontSizeForIOS(16, 1), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginBottom: 5, + }, + + flatlistWrapper: { + flex: 1, + height: 320, + maxHeight: 450, + }, +}); diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx new file mode 100644 index 0000000..0a0f2f1 --- /dev/null +++ b/screens/strategy-detail/index.tsx @@ -0,0 +1,199 @@ +import React, { useState } from 'react'; +import { StyleSheet, Text, View } from 'react-native'; +import { LQDButton, LQDFeedCard, LQDScrollView } from '@/components'; +import { DiscoverUSDIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; +import { useFeed, useLikeMutation } from '@/services/feeds/queries'; +import StatsCard from './stats-card'; +import Comments from './comments'; +import Loader from '../home/loader'; + +const StrategyDetail = ({ strategyId }: { strategyId: string }) => { + const { data, isLoading, isFetching, isError, refetch } = useFeed(strategyId); + + const [showCommentSection, setShowCommentSection] = useState(false); + + const openCloseComment = () => { + setShowCommentSection((prev) => !prev); + }; + + const strategyInfo = [ + { + id: '1', + variant: 'locked', + title: 'Total value locked', + value: `$${formatNumberWithSuffix(data?.metrics.tvl || 0)}`, + active: false, + }, + { + id: '2', + variant: 'risk', + title: 'Risk profile', + value: 'Stable', + active: true, + }, + { + id: '3', + variant: 'deposit', + title: 'No. of deposits', + value: Number(data?.metrics.totalDepositAmount || 0).toLocaleString(), + active: false, + }, + { + id: '4', + variant: 'curator', + title: 'Curator fee', + value: `5%`, + active: false, + }, + ]; + + if (isLoading) { + return ; + } + + if (isError) { + return error; + } + + return ( + + + + + Strategy Info + + + {strategyInfo.map((stats: any, index) => ( + + ))} + + + + + + USDC + + + Invested: + 3,000 + + + + + + + + + + + ); +}; + +export default StrategyDetail; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFFFFF', + }, + statsWrapper: { + flexDirection: 'row', + width: '100%', + flexWrap: 'wrap', + gap: 20, + }, + + infoContainer: { + paddingVertical: 10, + paddingHorizontal: 16, + }, + + emptyText: { + fontSize: adjustFontSizeForIOS(16, 1), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginBottom: 5, + }, + + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + comment: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, + sectionTitle: { + fontSize: 16, + fontWeight: '600', + color: '#1E293B', + marginBottom: 12, + }, + token: { + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + color: '#1A2001', + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + invested: { + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + color: '#64748B', + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + investedAmount: { + fontSize: adjustFontSizeForIOS(16, 2), + fontWeight: '500', + color: '#1A2001', + lineHeight: 19.84, + fontFamily: 'AeonikMedium', + }, + tokenContainer: { + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + paddingVertical: 20, + paddingHorizontal: 5, + }, + tokenWrapper: { + flexDirection: 'row', + gap: 5, + alignItems: 'center', + }, + buttonWrapper: { + marginTop: 20, + }, + + textInput: { + flex: 1, + }, + focusedInput: { + borderColor: '#4691FE', + borderWidth: 1.2, + }, +}); diff --git a/screens/strategy-detail/stats-card.tsx b/screens/strategy-detail/stats-card.tsx new file mode 100644 index 0000000..1b92a5e --- /dev/null +++ b/screens/strategy-detail/stats-card.tsx @@ -0,0 +1,54 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import { CuratorIcon, DepositIcon, LockedIcon, RiskIcon, StatsDepositIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; + +const StatsCard = ({ title, value, variant, isActive = false }: IStatCard) => { + const icon = { + locked: , + risk: , + deposit: , + curator: , + }; + + const backgroundColor = isActive ? '#EFFAF6' : '#F8FAFC'; + const borderColor = isActive ? '#CBF5E5' : '#F1F5F9'; + const textColor = isActive ? '#013220' : '#121212'; + + return ( + + {icon[variant]} + + {title} + {value} + + + ); +}; + +export default StatsCard; + +const styles = StyleSheet.create({ + container: { + width: '47%', + borderWidth: 1, + borderRadius: 20, + padding: 15, + rowGap: 15, + }, + title: { + fontSize: adjustFontSizeForIOS(28, 2), + fontWeight: '700', + color: '#1A2001', + lineHeight: 31.36, + fontFamily: 'QuantaGroteskProSemiBold', + marginTop: 10, + }, + subTitle: { + fontSize: adjustFontSizeForIOS(13, 2), + fontWeight: '400', + color: '#1A2001', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + }, +}); diff --git a/screens/strategy-detail/types.ts b/screens/strategy-detail/types.ts new file mode 100644 index 0000000..7299a09 --- /dev/null +++ b/screens/strategy-detail/types.ts @@ -0,0 +1,6 @@ +interface IStatCard { + title?: string; + variant: 'locked' | 'risk' | 'deposit' | 'curator'; + value: string; + isActive: boolean; +} diff --git a/screens/withdraw/index.tsx b/screens/withdraw/index.tsx index e1cfe58..1747717 100644 --- a/screens/withdraw/index.tsx +++ b/screens/withdraw/index.tsx @@ -29,6 +29,7 @@ const getMaxWidth = (amount: string) => { const Withdraw = () => { const { accountState } = useSystemFunctions(); + const { router, dispatch } = useSystemFunctions(); const [amount, setAmount] = useState(''); const [asset, setAsset] = useState(); const [showCursor, setShowCursor] = useState(true); @@ -41,7 +42,8 @@ const Withdraw = () => { { text: '$500', action: () => setAmount('500') }, ]; - const disableButton = !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(asset?.balance)!; + const disableButton = + !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(asset?.balance || 0)!; const handleAmountChange = (key: string) => { if (key === '⌫') { @@ -56,6 +58,7 @@ const Withdraw = () => { const onSubmit = () => { const amountNumber = parseFloat(removeCommasFromNumber(amount)); console.log('submit', { amount: amountNumber }); + router.push('/withdraw/recepient-address'); }; useEffect(() => { @@ -84,13 +87,14 @@ const Withdraw = () => { - {amount && $} + {amount && $} { + const { control, watch, reset } = useForm(); + const searchValue = watch('search'); + + const onSubmit = () => {}; + return ( + + + + + + + Make sure the address supports USDC + + + + + {searchValue && ( + + + Authenticate Using Face ID + + )} + + + + ); +}; + +export default RecepientAddress; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + paddingVertical: 20, + paddingHorizontal: 16, + flex: 1, + }, + action: { + paddingHorizontal: 8, + paddingVertical: 12, + alignItems: 'stretch', + gap: 50, + }, + toastWrapper: { + height: 36, + borderRadius: 8, + backgroundColor: '#EBF1FF', + flexDirection: 'row', + paddingHorizontal: 10, + alignItems: 'center', + gap: 8, + marginTop: 20, + }, + toastTitle: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'AeonikRegular', + fontWeight: '400', + }, + faceIDBtn: { + backgroundColor: '#007AFF', + height: 60, + justifyContent: 'center', + flexDirection: 'row', + alignItems: 'center', + gap: 10, + borderRadius: 12, + }, + faceIDText: { + fontSize: adjustFontSizeForIOS(17, 1), + lineHeight: 22, + fontFamily: 'AeonikMedium', + fontWeight: '400', + color: '#fff', + }, +}); diff --git a/services/comments/apis.ts b/services/comments/apis.ts new file mode 100644 index 0000000..9637db3 --- /dev/null +++ b/services/comments/apis.ts @@ -0,0 +1,22 @@ +import { strategyAxiosInstance } from '@/init/axios'; + +const fetchComments = async (strategyId: string, pageParam?: string) => { + return ( + await strategyAxiosInstance.get(`${strategyId}/comments`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +const commentOnAStrategy = async (strategyId: string, data: PostCommentBody) => { + return (await strategyAxiosInstance.post(`${strategyId}/comments`, data)).data; +}; + +const likeCommentOnAStrategy = async (comment: string) => { + return (await strategyAxiosInstance.post(`comments/${comment}/like`)).data; +}; + +export { fetchComments, commentOnAStrategy, likeCommentOnAStrategy }; diff --git a/services/comments/queries.ts b/services/comments/queries.ts new file mode 100644 index 0000000..f5154c7 --- /dev/null +++ b/services/comments/queries.ts @@ -0,0 +1,125 @@ +import { useInfiniteQuery, useMutation, useQueryClient } from '@tanstack/react-query'; + +import { commentOnAStrategy, fetchComments, likeCommentOnAStrategy } from './apis'; + +const useComments = (strategyId: string) => { + return useInfiniteQuery({ + queryKey: ['comments'], + queryFn: ({ pageParam }) => fetchComments(strategyId, pageParam), + getNextPageParam: (lastPage) => (lastPage.pagination.hasMore ? lastPage.pagination.nextCursor : undefined), + initialPageParam: '', + }); +}; + +const useLikeCommentMutation = (strategyId: string, commentId: string) => { + const queryClient = useQueryClient(); + + return useMutation({ + mutationFn: () => likeCommentOnAStrategy(commentId), + onMutate: async () => { + const queryKey: any = ['feedDetail', strategyId]; + + await queryClient.cancelQueries(queryKey); + + const previousFeed = queryClient.getQueryData(queryKey); + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData) return oldData; + + return { + ...oldData, + comments: oldData.comments?.map((comment: any) => + comment.id === commentId + ? { + ...comment, + isLiked: true, + likesCount: comment.likesCount + 1, + } + : comment + ), + }; + }); + + return { previousFeed }; + }, + onError: (err, _, context) => { + const queryKey = ['feedDetail', strategyId]; + + if (context?.previousFeed) { + queryClient.setQueryData(queryKey, context.previousFeed); + } + + console.log('Error liking comment:', err); + }, + onSettled: () => { + const queryKey: any = ['feedDetail', strategyId]; + + queryClient.invalidateQueries(queryKey); + }, + }); +}; + +const useAddCommentMutation = (strategyId: string) => { + const queryClient = useQueryClient(); + + return useMutation({ + mutationFn: (data: PostCommentBody) => commentOnAStrategy(strategyId, data), + + onMutate: async (newComment) => { + const queryKey: any = ['feedDetail', strategyId]; + + await queryClient.cancelQueries(queryKey); + + const previousFeed = queryClient.getQueryData(queryKey); + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData || !oldData.comments) return oldData; + + return { + ...oldData, + comments: [ + ...oldData.comments, + { + ...newComment, + id: `temp-${Date.now()}`, + isTemporary: true, + }, + ], + }; + }); + + return { previousFeed }; + }, + + onError: (err, _, context) => { + const queryKey = ['feedDetail', strategyId]; + + if (context?.previousFeed) { + queryClient.setQueryData(queryKey, context.previousFeed); + } + + console.log('Error adding comment:', err); + }, + + onSuccess: (newComment) => { + const queryKey = ['feedDetail', strategyId]; + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData || !oldData.comments) return oldData; + + return { + ...oldData, + comments: oldData.comments.map((comment: any) => (comment.isTemporary ? newComment : comment)), + }; + }); + }, + + onSettled: () => { + const queryKey: any = ['feedDetail', strategyId]; + + queryClient.invalidateQueries(queryKey); + }, + }); +}; + +export { useComments, useLikeCommentMutation, useAddCommentMutation }; diff --git a/services/comments/types.ts b/services/comments/types.ts new file mode 100644 index 0000000..efbeece --- /dev/null +++ b/services/comments/types.ts @@ -0,0 +1,26 @@ +type Comments = { + data: CommentItem[]; + pagination: { + nextCursor?: string; + hasMore: boolean; + }; +}; + +type CommentItem = { + id: string; + content: string; + createdAt: string; + author: { + address: string; + }; + likeCount: number; + isLiked: boolean; + strategyId: string; + replyToId: string; + replies: string[]; +}; + +type PostCommentBody = { + content: string; + replyToId?: string; +}; diff --git a/services/discover/apis.ts b/services/discover/apis.ts new file mode 100644 index 0000000..06f2150 --- /dev/null +++ b/services/discover/apis.ts @@ -0,0 +1,26 @@ +import { strategyAxiosInstance } from '@/init/axios'; + +const searchFeed = async ( + query?: string, + pageParam?: string, + minTvl?: string, + maxTvl?: string, + assets?: string[], + protocols?: string[] +) => { + const params = new URLSearchParams(); + if (query) params.append('q', query); + if (pageParam) params.append('cursor', pageParam); + if (minTvl) params.append('minTvl', minTvl); + if (maxTvl) params.append('maxTvl', maxTvl); + if (assets) assets.forEach((asset) => params.append('assets[]', asset)); + if (protocols) protocols.forEach((protocol) => params.append('protocols[]', protocol)); + + return ( + await strategyAxiosInstance.get(`search`, { + params: params, + }) + ).data; +}; + +export { searchFeed }; diff --git a/services/discover/queries.ts b/services/discover/queries.ts new file mode 100644 index 0000000..af14b61 --- /dev/null +++ b/services/discover/queries.ts @@ -0,0 +1,13 @@ +import { QueryKey, useInfiniteQuery, useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; +import { searchFeed } from './apis'; + +const useSearchFeeds = (query?: string, pageParam?: string, minTvl?: string, maxTvl?: string, assets?: string[], protocols?: string[]) => { + return useInfiniteQuery({ + queryKey: ['searchFeeds', query, pageParam, minTvl, maxTvl, assets, protocols], + queryFn: () => searchFeed(query, pageParam, minTvl, maxTvl, assets, protocols), + getNextPageParam: (lastPage) => (lastPage.pagination.hasMore ? lastPage.pagination.nextCursor : undefined), + initialPageParam: '', + }); +}; + +export { useSearchFeeds }; diff --git a/services/feeds/apis.ts b/services/feeds/apis.ts new file mode 100644 index 0000000..49fe340 --- /dev/null +++ b/services/feeds/apis.ts @@ -0,0 +1,26 @@ +import { strategyAxiosInstance, setStrategyTokenHeader } from '@/init/axios'; + +const fetchFeeds = async (pageParam?: string, sort?: 'latest' | 'trending') => { + await setStrategyTokenHeader( + 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjB4MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MCIsImFkZHJlc3MiOiIweDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDEyMzQ1Njc4OTAiLCJpYXQiOjE3MzQxMTc5OTF9.qeL-tK0Yh6bMq8L7WrYakYpwUFqvBkv7XSoyTWBqMmY' + ); + return ( + await strategyAxiosInstance.get(`feed`, { + params: { + cursor: pageParam, + limit: 10, + sort, + }, + }) + ).data; +}; + +const fetchFeed = async (strategyId: string) => { + return (await strategyAxiosInstance.get(`${strategyId}`)).data?.data; +}; + +const likeAStrategy = async (strategyId: string) => { + return (await strategyAxiosInstance.post(`${strategyId}/like`)).data; +}; + +export { fetchFeeds, fetchFeed, likeAStrategy }; diff --git a/services/feeds/queries.ts b/services/feeds/queries.ts new file mode 100644 index 0000000..04689f4 --- /dev/null +++ b/services/feeds/queries.ts @@ -0,0 +1,115 @@ +import { QueryKey, useInfiniteQuery, useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; +import { fetchFeed, fetchFeeds, likeAStrategy } from './apis'; +import { useLiquidity } from '@/hooks/useLiquid'; +import { publicClient } from '@/init/client'; +import { PublicClient } from 'viem'; +import { isDev } from '@/constants/env'; +import { useToastActions } from '@/store/toast/actions'; +import { useState } from 'react'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import useAppActions from '@/store/app/actions'; + +const useFeeds = () => { + return useInfiniteQuery({ + queryKey: ['feeds'], + queryFn: ({ pageParam }) => fetchFeeds(pageParam), + getNextPageParam: (lastPage) => (lastPage.pagination.hasMore ? lastPage.pagination.nextCursor : undefined), + initialPageParam: '', + }); +}; + +const useFeed = (strategyId: string) => { + return useQuery({ + queryKey: ['feedDetail', strategyId], + queryFn: () => fetchFeed(strategyId), + enabled: !!strategyId, + }); +}; + +const useWriteFeed = () => { + const { router } = useSystemFunctions(); + const { createStrategy } = useLiquidity(publicClient as PublicClient); + const { showToast } = useToastActions(); + const { handleStrategyActions } = useAppActions(); + const [loading, setLoading] = useState(false); + + const postStrategy = async (data: StrategyBody) => { + try { + setLoading(true); + await createStrategy(data); + + showToast({ + title: 'Strategy created!', + description: "You've successfully created a strategy", + variant: 'success', + }); + + handleStrategyActions([]); + + return router.replace('/(tabs)/home'); + } catch (error: any) { + if (error.cause?.message && error.cause?.message.includes('Biometrics must be enabled')) { + const alertTitle = 'Device not enrolled to FaceID'; + const alertMessage = isDev + ? 'On the top menu bar, click on \nFeatures > Face ID > Enrolled' + : 'Please enroll your device to FaceID on settings'; + + return showToast({ + title: alertTitle, + description: alertMessage, + variant: 'error', + }); + } else { + return showToast({ + title: 'Failed to create strategy', + description: "We couldn't create the strategy. Please try again later!", + variant: 'error', + }); + } + } finally { + setLoading(false); + } + }; + + return { postStrategy, loading }; +}; + +const useLikeMutation = (strategyId: string) => { + const queryClient = useQueryClient(); + + return useMutation({ + mutationFn: () => likeAStrategy(strategyId), + onMutate: async () => { + const queryKey: any = ['feedDetail', strategyId]; + + await queryClient.cancelQueries(queryKey); + + const previousFeed = queryClient.getQueryData(queryKey); + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData) return oldData; + return { + ...oldData, + isLiked: true, + likesCount: oldData.likesCount + 1, + }; + }); + + return { previousFeed }; + }, + onError: (err, _, context) => { + const queryKey = ['feedDetail', strategyId]; + if (context?.previousFeed) { + queryClient.setQueryData(queryKey, context.previousFeed); + } + + console.log('Error liking strategy:', err); + }, + onSettled: () => { + const queryKey: any = ['feedDetail', strategyId]; + queryClient.invalidateQueries(queryKey); + }, + }); +}; + +export { useFeeds, useFeed, useWriteFeed, useLikeMutation }; diff --git a/services/feeds/types.ts b/services/feeds/types.ts new file mode 100644 index 0000000..4b90503 --- /dev/null +++ b/services/feeds/types.ts @@ -0,0 +1,95 @@ +type Feeds = { + data: Strategy[]; + pagination: { + hasMore: boolean; + nextCursor?: string; + }; +}; + +type Strategy = { + id: string; + name: string; + onchainId: number; + description: string; + curator: { + address: `0x${string}`; + username: string; + avatarUrl: string; + }; + steps: StrategyStep[]; + metrics: { + tvl: string; + repostCount: number; + likeCount: number; + commentCount: number; + apy: number; + totalDepositAmount: string; + }; + assets: { + addresses: `0x${string}`[]; + count: number; + }; + userInteraction: { + hasLiked: boolean; + deposit: { + amount: number; + }; + }; + createdAt: string; + transactionHash: `0x${string}`; +}; + +type StrategyStep = { + id: string; + stepIndex: number; + protocolAddress: `0x${string}`; + actionType: 'supply' | 'borrow' | 'stake' | 'deposit' | 'swap'; + assetInToken: { + address: `0x${string}`; + symbol: string; + logoUrl: string; + }; + assetOutTokens: { + address: `0x${string}`; + symbol: string; + logoUrl: string; + }[]; + amountRatio: number; + blockNumber: string; + transactionHash: `0x${string}`; +}; + +type LikeStrategyResponse = { + success: boolean; + strategy: { + id: string; + likeCount: number; + }; +}; + +type StrategyBody = { + name: string; + description: string; + minDeposit: bigint; + maxTvl: bigint; + performanceFee: bigint; + steps: { + connector: `0x${string}`; + actionType: ActionType; + assetsIn: `0x${string}`[]; + assetOut: `0x${string}`; + amountRatio: bigint; + data: `0x${string}`; + }[]; +}; + +enum ActionType { + SUPPLY, // Supply assets + WITHDRAW, // Withdraw assets + BORROW, // Borrow assets + REPAY, // Repay debt + STAKE, // Stake assets + UNSTAKE, // Unstake assets + SWAP, // Swap assets + CLAIM, // Claim rewards +} diff --git a/services/user/apis.ts b/services/user/apis.ts new file mode 100644 index 0000000..937a972 --- /dev/null +++ b/services/user/apis.ts @@ -0,0 +1,40 @@ +import { axiosInstance, strategyAxiosInstance } from '@/init/axios'; + +const fetchUserInfo = async (walletAddress: string) => { + return (await axiosInstance.get(`/users/${walletAddress}`)).data; +}; + +const fetchUserStrategies = async (walletAddress: string, pageParam?: string) => { + return ( + await strategyAxiosInstance.get(`user/${walletAddress}`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +const fetchUserDeposits = async (walletAddress: string, pageParam?: string) => { + return ( + await strategyAxiosInstance.get(`user/${walletAddress}/deposits`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +const fetchUserLikes = async (walletAddress: string, pageParam?: string) => { + return ( + await strategyAxiosInstance.get(`user/${walletAddress}/liked`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +export { fetchUserInfo, fetchUserStrategies, fetchUserDeposits, fetchUserLikes }; diff --git a/services/user/queries.ts b/services/user/queries.ts new file mode 100644 index 0000000..3a07852 --- /dev/null +++ b/services/user/queries.ts @@ -0,0 +1,39 @@ +import { useInfiniteQuery, useQuery } from '@tanstack/react-query'; +import { fetchUserDeposits, fetchUserInfo, fetchUserLikes, fetchUserStrategies } from './apis'; + +const useUser = (walletAddress: string) => { + return useQuery({ + queryKey: ['user', walletAddress], + queryFn: () => fetchUserInfo(walletAddress), + enabled: !!walletAddress, + }); +}; + +const useUserStrategies = (walletAddress: string) => { + return useInfiniteQuery({ + queryKey: ['userStrategies', walletAddress], + queryFn: ({ pageParam }) => fetchUserStrategies(walletAddress, pageParam), + getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + initialPageParam: '', + }); +}; + +const useUserDeposits = (walletAddress: string) => { + return useInfiniteQuery({ + queryKey: ['userDeposits', walletAddress], + queryFn: ({ pageParam }) => fetchUserDeposits(walletAddress, pageParam), + getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + initialPageParam: '', + }); +}; + +const useUserLikes = (walletAddress: string) => { + return useInfiniteQuery({ + queryKey: ['userLikes', walletAddress], + queryFn: ({ pageParam }) => fetchUserLikes(walletAddress, pageParam), + getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + initialPageParam: '', + }); +}; + +export { useUser, useUserStrategies, useUserDeposits, useUserLikes }; diff --git a/services/user/types.ts b/services/user/types.ts new file mode 100644 index 0000000..ba258d9 --- /dev/null +++ b/services/user/types.ts @@ -0,0 +1,22 @@ +type User = { + username: string; + walletAddress: string; + avatar?: string; + joinDate: string; + metrics: { + totalStrategies: number; + totalDeposits: string; + followersCount?: number; + followingCount?: number; + }; + socials: { + twitter?: string; + farcaster?: string; + }; +}; + +type UserStrategies = { + data: Strategy[]; + nextCursor?: string; + hasMore: boolean; +}; diff --git a/store/account/types.ts b/store/account/types.ts index 2341536..42a788c 100644 --- a/store/account/types.ts +++ b/store/account/types.ts @@ -10,8 +10,8 @@ export type TokenResponse = { }; export type TokenItem = { - formattedBalance: string; - usdBalance: string; + formattedBalance?: string; + usdBalance?: string; address: Address; symbol: string; decimals: number; diff --git a/store/app/actions.ts b/store/app/actions.ts index fabe855..973d178 100644 --- a/store/app/actions.ts +++ b/store/app/actions.ts @@ -1,5 +1,5 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { setShowSearch, setSearchIsFocused } from '.'; +import { setShowSearch, setSearchIsFocused, setStrategyActions } from '.'; const useAppActions = () => { const { dispatch } = useSystemFunctions(); @@ -12,9 +12,14 @@ const useAppActions = () => { dispatch(setSearchIsFocused(focused)); }; + const handleStrategyActions = (actions: StrategyAction[]) => { + dispatch(setStrategyActions(actions)); + }; + return { showSearch, searchIsFocused, + handleStrategyActions, }; }; diff --git a/store/app/index.ts b/store/app/index.ts index 3fccb6f..fe3ed2f 100644 --- a/store/app/index.ts +++ b/store/app/index.ts @@ -4,11 +4,13 @@ import type { PayloadAction } from '@reduxjs/toolkit'; export interface AppState { showSearch: boolean; searchIsFocused: boolean; + strategyActions: StrategyAction[]; } const initialState: AppState = { showSearch: false, searchIsFocused: false, + strategyActions: [], }; export const appReducer = createSlice({ @@ -22,9 +24,13 @@ export const appReducer = createSlice({ setSearchIsFocused: (state, action: PayloadAction) => { state.searchIsFocused = action.payload; }, + + setStrategyActions: (state, action: PayloadAction) => { + state.strategyActions = [...action.payload]; + }, }, }); -export const { setShowSearch, setSearchIsFocused } = appReducer.actions; +export const { setShowSearch, setSearchIsFocused, setStrategyActions } = appReducer.actions; export default appReducer.reducer; diff --git a/store/app/types.ts b/store/app/types.ts new file mode 100644 index 0000000..5f101fb --- /dev/null +++ b/store/app/types.ts @@ -0,0 +1,5 @@ +type StrategyAction = { + protocol: ProtocolItem; + action: 'deposit' | 'stake' | 'borrow' | 'supply'; + assetsIn: `0x${string}`[]; +}; diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 811ff3e..3ff47fb 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -57,7 +57,7 @@ export function useSmartAccountActions() { owners: [webAuthnAccount], }); - return smartAccount; + return { webAuthnAccount, smartAccount }; }; const login = async (userName: string) => { @@ -113,8 +113,10 @@ export function useSmartAccountActions() { }; const signTransaction = async (hash: Hex) => { - const signature = await session?.sign({ hash }); - return signature; + const { webAuthnAccount } = await getSmartAccount(); + const signatureData = await webAuthnAccount.sign({ hash }); + + return signatureData; }; const logout = async () => { try { diff --git a/utils/base64.ts b/utils/base64.ts index 1d1d0ff..dd2101d 100644 --- a/utils/base64.ts +++ b/utils/base64.ts @@ -1,4 +1,4 @@ -import type { Hex } from 'viem'; +import { bytesToBigInt, hexToBytes, type Hex } from 'viem'; // ! taken from https://github.com/MasterKale/SimpleWebAuthn/blob/e02dce6f2f83d8923f3a549f84e0b7b3d44fa3da/packages/browser/src/helpers/base64URLStringToBuffer.ts /** @@ -98,3 +98,19 @@ export function base64ToBytes(base64String: string): Uint8Array { return bytes; } + +export function parseAndNormalizeSig(sig: Hex): { r: bigint; s: bigint } { + const bSig = hexToBytes(sig); + // assert(bSig.length === 64, "signature is not 64 bytes"); + const bR = bSig.slice(0, 32); + const bS = bSig.slice(32); + + // Avoid malleability. Ensure low S (<= N/2 where N is the curve order) + const r = bytesToBigInt(bR); + let s = bytesToBigInt(bS); + const n = BigInt('0xFFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551'); + if (s > n / 2n) { + s = n - s; + } + return { r, s }; +} diff --git a/utils/encoders.ts b/utils/encoders.ts index 38a5616..5fd975c 100644 --- a/utils/encoders.ts +++ b/utils/encoders.ts @@ -1,5 +1,5 @@ import { Address, Hex, encodeFunctionData, encodeAbiParameters, parseAbiParameters, erc20Abi } from 'viem'; -import { AerodromeConnectorABI, ConnectorPluginABI } from '@/constants/abis'; +import { AerodromeConnectorABI, ConnectorPluginABI, LiquidStrategy } from '@/constants/abis'; interface RouteStruct { from: Address; @@ -170,3 +170,11 @@ export function encodeApprove({ amount, spender }: { amount: bigint; spender: Ad args: [spender, amount], }); } + +export function encodeCreateStrategy({ description, maxTvl, minDeposit, name, performanceFee, steps }: StrategyBody) { + return encodeFunctionData({ + abi: LiquidStrategy.LiquidStrategy.abi, + functionName: 'createStrategy', + args: [name, description, steps, minDeposit, maxTvl, performanceFee], + }); +} diff --git a/utils/helpers.ts b/utils/helpers.ts index 1e90347..f35b642 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -1,5 +1,6 @@ -import { formatUnits } from 'viem'; +import { decodeAbiParameters, formatUnits, Hex, hexToBigInt } from 'viem'; import { Platform } from 'react-native'; +import moment from 'moment'; const formatAmount = (amount?: number | string, decimals = 4): number => { if (!amount) return 0; @@ -136,7 +137,7 @@ const formatInputAmount = (value: string): string => { return newValue; }; -export const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { +const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { if (!showFullSymbol) { return symbol.split('-')[1].replace('/', ' / '); } @@ -156,6 +157,37 @@ const createArrayWithIndexes = (length: number): number[] => { return Array.from({ length }, (_, index) => index); }; +function splitSignature(signature: string): { r: bigint; s: bigint } { + let [r, s] = decodeAbiParameters([{ type: 'uint256' }, { type: 'uint256' }], signature as Hex); + const n = hexToBigInt('0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551'); + if (s > n / 2n) { + s = n - s; + } + return { r, s }; +} + +export const findQuoteIndices = (input: string): { beforeType: bigint; beforeChallenge: bigint } => { + const beforeTypeIndex = BigInt(input.lastIndexOf('"type":"webauthn.get"')); + const beforeChallengeIndex = BigInt(input.indexOf('"challenge')); + return { + beforeType: beforeTypeIndex, + beforeChallenge: beforeChallengeIndex, + }; +}; + +const formatTimestamp = (timestamp: string | number | Date): string => { + const now = moment(); + const time = moment(timestamp); + + const diffInHours = now.diff(time, 'hours'); + + if (diffInHours < 24) { + return time.fromNow(); // e.g., "1hr ago", "few secs ago" + } else { + return time.format('MMM D, YYYY'); // e.g., "Dec 13, 2024" + } +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -174,4 +206,6 @@ export { formatInputAmount, formatSymbol, createArrayWithIndexes, + splitSignature, + formatTimestamp, }; diff --git a/utils/signature.ts b/utils/signature.ts index 7046025..3861d76 100644 --- a/utils/signature.ts +++ b/utils/signature.ts @@ -12,9 +12,9 @@ import { import { BuildUserOperationParams, SignatureWrapperStruct, WebAuthnAuthStruct } from './types'; export function buildWebAuthnSignature({ ownerIndex, authenticatorData, clientDataJSON, r, s }: BuildUserOperationParams): Hex { - const challengeIndex = clientDataJSON.indexOf('"challenge":'); - const typeIndex = clientDataJSON.indexOf('"type":'); - + const challengeIndex = clientDataJSON.indexOf('"challenge"'); + const typeIndex = clientDataJSON.indexOf('"type"'); + console.log(authenticatorData, clientDataJSON); const webAuthnAuthBytes = encodeAbiParameters( [WebAuthnAuthStruct], [ diff --git a/utils/types.ts b/utils/types.ts index 2c5f294..e8ae2ea 100644 --- a/utils/types.ts +++ b/utils/types.ts @@ -58,3 +58,35 @@ export interface PaymasterResult { paymasterVerificationGasLimit: bigint; paymasterPostOpGasLimit: bigint; } + +export interface UserOperationV6 { + sender: Address; + nonce: bigint; + initCode: Hex; + callData: Hex; + callGasLimit: bigint; + verificationGasLimit: bigint; + preVerificationGas: bigint; + maxFeePerGas: bigint; + maxPriorityFeePerGas: bigint; + paymasterAndData: Hex; + signature: Hex; +} + +export interface GasPrice { + maxFeePerGas: string; + maxPriorityFeePerGas: string; +} + +export interface GasPriceResponse { + slow: GasPrice; + standard: GasPrice; + fast: GasPrice; +} + +export interface GasEstimateResponse { + preVerificationGas: string; + verificationGas: string; + verificationGasLimit: string; + callGasLimit: string; +} diff --git a/utils/wallet.ts b/utils/wallet.ts index 481aa16..ab78e29 100644 --- a/utils/wallet.ts +++ b/utils/wallet.ts @@ -1,14 +1,24 @@ import { EntryPointABI, SmartWalletABI } from '@/constants/abis'; import { ACCOUNT_FACTORY_ADDRESS, ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { Address, Chain, encodeAbiParameters, encodeFunctionData, Hex, keccak256, PublicClient, Transport } from 'viem'; -import { entryPoint06Abi, entryPoint06Address, estimateUserOperationGas, PaymasterClient, UserOperation } from 'viem/account-abstraction'; +import { + entryPoint06Abi, + entryPoint06Address, + estimateUserOperationGas, + getUserOperationHash, + PaymasterClient, + UserOperation, +} from 'viem/account-abstraction'; import { estimateFeesPerGas, getCode, readContract } from 'viem/actions'; -import { Call, PaymasterResult } from './types'; +import { Call, GasEstimateResponse, GasPriceResponse, PaymasterResult, UserOperationV6 } from './types'; import { SmartAccountClient } from 'permissionless'; import { bundlerClient, publicClient } from '@/init/client'; import { smartWalletFactoryAbi } from '@/constants/abis/SmartWalletFactory'; +import { pimilcoRPCURL } from '@/constants/env'; +import { smartWalletABI } from '@/constants/abis/SmartWallet'; -export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = '0x'; +export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = + '0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000001eef89a56cd6ebb7fa3650a467b2fb6609ff0741ee98c7db10e5199c5f32038ff56593ce0a1fd38f043ac2519b7e363720438b3c2433606098f36f5e99ef01c29000000000000000000000000000000000000000000000000000000000000004c30783937303165383131383932663033636137316438636464353239396432653538346534663734353462653439393537643463653363363630313263383264333731643030303030303030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000767b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a2257377a34326863705865626e326c656d4130375a4e723065706137627567466b534c74675f615a63743130222c226f726967696e223a2268747470733a2f2f6170692e7573656c69717569642e78797a227d00000000000000000000'; // https://github.com/wilsoncusack/scw-tx/blob/5ff88a10e928b5df9ec12bce2ef64caa0b35afcd/utils/smartWallet.ts#L10 export async function buildUserOp( @@ -51,14 +61,12 @@ export async function buildUserOp( args: [smartWalletAddress, 0n], }); // Get the current gas fees from the network - let maxFeesPerGas = await estimateFeesPerGas(publicClient); - console.log('Max fees:', { - maxFeePerGas: maxFeesPerGas.maxFeePerGas.toString(), - maxPriorityFeePerGas: maxFeesPerGas.maxPriorityFeePerGas.toString(), - }); + // const maxFeePerGas = await estimateFeesPerGas(publicClient); + const maxFeePerGas = (await getUserOperationGasPrice()).fast; + // Increase gas limits for deployment const baseGasLimit = 1_000_000n; - const deploymentBuffer = !code ? 3n : 1n; // Double gas limits for deployment + const deploymentBuffer = !code ? 3n : 2n; // Double gas limits for deployment // Put all the fields together in a user op const op = { @@ -67,10 +75,10 @@ export async function buildUserOp( initCode, callData, paymasterAndData, - preVerificationGas: baseGasLimit * deploymentBuffer, - verificationGasLimit: baseGasLimit * deploymentBuffer, - callGasLimit: baseGasLimit * deploymentBuffer, - ...maxFeesPerGas, + preVerificationGas: baseGasLimit, + verificationGasLimit: baseGasLimit, + callGasLimit: baseGasLimit, + ...maxFeePerGas, }; // Update user op specific gas limits like `preVerificationGas` etc. @@ -83,8 +91,9 @@ export async function buildUserOp( preVerificationGas: op.preVerificationGas, verificationGasLimit: op.verificationGasLimit, callGasLimit: op.callGasLimit, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, + maxFeePerGas: BigInt(op.maxFeePerGas), + maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), + signature: PASSKEY_OWNER_DUMMY_SIGNATURE, entryPointAddress: entryPoint06Address, }); @@ -166,6 +175,63 @@ export function getUserOpHash({ userOperation, chainId }: { userOperation: UserO ); return keccak256(encodedWithChainAndEntryPoint); } +export const sponsorUserOperation = async (userOperation: { + callData: any; + sender: Address; + nonce: bigint; + initCode?: Hex; + maxFeePerGas: bigint; + maxPriorityFeePerGas: bigint; + callGasLimit: bigint; + verificationGasLimit: bigint; + preVerificationGas: any; + signature: Hex; +}) => { + const userOperationData = { + sender: userOperation.sender, + nonce: `0x${BigInt(userOperation.nonce).toString(16)}`, // ensure hex + initCode: userOperation.initCode, + callData: userOperation.callData, + callGasLimit: `0x${BigInt(userOperation.callGasLimit).toString(16)}`, // ensure hex + verificationGasLimit: `0x${BigInt(userOperation.verificationGasLimit).toString(16)}`, // ensure hex + preVerificationGas: `0x${BigInt(userOperation.preVerificationGas).toString(16)}`, // ensure hex + maxPriorityFeePerGas: `0x${BigInt(userOperation.maxPriorityFeePerGas).toString(16)}`, // ensure hex + maxFeePerGas: `0x${BigInt(userOperation.maxFeePerGas).toString(16)}`, // ensure hex + signature: userOperation.signature, + }; + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + id: 1, + method: 'pm_sponsorUserOperation', + params: [ + { + sender: userOperationData.sender, + nonce: userOperationData.nonce, + initCode: userOperationData.initCode, + callData: userOperationData.callData, + callGasLimit: userOperationData.callGasLimit, // Let Pimlico estimate + verificationGasLimit: userOperationData.verificationGasLimit, // Let Pimlico estimate + preVerificationGas: userOperationData.preVerificationGas, // Let Pimlico estimate + maxPriorityFeePerGas: userOperationData.maxPriorityFeePerGas, + maxFeePerGas: userOperationData.maxFeePerGas, + paymasterAndData: '0x', + signature: PASSKEY_OWNER_DUMMY_SIGNATURE, + }, + ENTRYPOINT_V06_ADDRESS, + ], + }), + }); + + const sponsorResult = await response.json(); + if (sponsorResult.error) { + throw new Error(`Sponsorship failed: ${sponsorResult.error.message}`); + } + + return sponsorResult.result; +}; export async function getPaymasterData({ paymasterClient, @@ -194,7 +260,7 @@ export async function getPaymasterData({ }): Promise { try { const paymasterAndData = await paymasterClient.getPaymasterData({ - chainId: 8543, + chainId: 8453, entryPointAddress: entryPoint06Address, callData, sender, @@ -219,3 +285,121 @@ export async function getPaymasterData({ throw error; } } + +export const getOwnerIndex = async (publicKey: string, smartwalletAddress: Hex): Promise => { + const ownerCount = await readContract(publicClient, { + address: smartwalletAddress, + abi: smartWalletABI, + functionName: 'ownerCount', + args: [], + }); + + for (let i = 0n; i < ownerCount; i++) { + const ownerBytes = await readContract(publicClient, { + address: smartwalletAddress, + abi: smartWalletABI, + functionName: 'ownerAtIndex', + args: [i], + }); + // For WebAuthn owners, check the public key matches + if (ownerBytes.length === 64) { + // Compare with your public key coordinates + if (ownerBytes === publicKey) { + return i; + } + } + } + + throw new Error('Owner not found'); +}; + +export const sendUserOperation = async (userOperation: UserOperationV6) => { + const userOperationData = { + sender: userOperation.sender, + nonce: `0x${userOperation.nonce.toString(16)}`, + initCode: userOperation.initCode, + callData: userOperation.callData, + callGasLimit: `0x${userOperation.callGasLimit.toString(16)}`, + verificationGasLimit: `0x${userOperation.verificationGasLimit.toString(16)}`, + preVerificationGas: `0x${userOperation.preVerificationGas.toString(16)}`, + maxFeePerGas: `0x${userOperation.maxFeePerGas.toString(16)}`, + maxPriorityFeePerGas: `0x${userOperation.maxPriorityFeePerGas.toString(16)}`, + paymasterAndData: userOperation.paymasterAndData, + signature: userOperation.signature, + }; + + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + id: 1, + method: 'eth_sendUserOperation', + params: [userOperationData, entryPoint06Address], + }), + }); + + const result = await response.json(); + if (result.error) { + throw new Error(`Failed to send user operation: ${result.error.message}`); + } + + return result.result as Hex; +}; + +export const getUserOperationGasPrice = async (): Promise => { + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + method: 'pimlico_getUserOperationGasPrice', + params: [], + id: 1, + }), + }); + + const result = await response.json(); + if (result.error) { + throw new Error(`Failed to get gas price: ${result.error.message}`); + } + + return result.result as GasPriceResponse; +}; + +export const estimateUserOperationGasInternal = async (userOperation: UserOperation): Promise => { + const formattedUserOp = { + sender: userOperation.sender, + nonce: `0x${userOperation.nonce.toString(16)}`, + initCode: userOperation.initCode, + callData: userOperation.callData, + callGasLimit: '0x0', + verificationGasLimit: '0x0', + preVerificationGas: '0x0', + maxFeePerGas: `0x${userOperation.maxFeePerGas.toString(16)}`, + maxPriorityFeePerGas: `0x${userOperation.maxPriorityFeePerGas.toString(16)}`, + paymasterAndData: userOperation.paymasterAndData, + signature: + '0x00000000fffffffffffffffffffffffffffffff0000000000000000000000000000000007aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa1c', + }; + + const params = [formattedUserOp, entryPoint06Address]; + + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + method: 'eth_estimateUserOperationGas', + params, + id: 1, + }), + }); + + const result = await response.json(); + if (result.error) { + throw new Error(`Failed to estimate gas: ${result.error.message}`); + } + + return result.result; +}; diff --git a/yarn.lock b/yarn.lock index 946aa4c..1d94d04 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3,11 +3,11 @@ "@0no-co/graphql.web@^1.0.5": - version "1.0.8" - resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.8.tgz#20682c7839b0b5b7728ad944a8602ca46d983e75" - integrity sha512-8BG6woLtDMvXB9Ajb/uE+Zr/U7y4qJ3upXi0JQHZmsKUJa7HjF/gFvmL2f3/mSmfZoQGRr9VoY97LCX2uaFMzA== + version "1.0.12" + resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.12.tgz#5fab8caaf5e6dae88e31111305f93dfd152de2fb" + integrity sha512-BTDjjsV/zSPy5fqItwm+KWUfh9CSe9tTtR6rCB72ddtkAxdcHbi4Ir4r/L1Et4lyxmL+i7Rb3m9sjLLi9tYrzA== -"@adraffy/ens-normalize@1.11.0": +"@adraffy/ens-normalize@^1.10.1": version "1.11.0" resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz#42cc67c5baa407ac25059fcd7d405cc5ecdb0c33" integrity sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg== @@ -27,34 +27,35 @@ dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.25.7.tgz#438f2c524071531d643c6f0188e1e28f130cebc7" - integrity sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== dependencies: - "@babel/highlight" "^7.25.7" + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.7": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.8.tgz#0376e83df5ab0eb0da18885c0140041f0747a402" - integrity sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA== +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.9": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.3.tgz#99488264a56b2aded63983abd6a417f03b92ed02" + integrity sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g== "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.20.0", "@babel/core@^7.23.9": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.8.tgz#a57137d2a51bbcffcfaeba43cb4dd33ae3e0e1c6" - integrity sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.25.7" - "@babel/generator" "^7.25.7" - "@babel/helper-compilation-targets" "^7.25.7" - "@babel/helper-module-transforms" "^7.25.7" - "@babel/helpers" "^7.25.7" - "@babel/parser" "^7.25.8" - "@babel/template" "^7.25.7" - "@babel/traverse" "^7.25.7" - "@babel/types" "^7.25.8" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -72,60 +73,61 @@ source-map "^0.5.0" trim-right "^1.0.1" -"@babel/generator@^7.20.0", "@babel/generator@^7.20.5", "@babel/generator@^7.25.7", "@babel/generator@^7.7.2": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.7.tgz#de86acbeb975a3e11ee92dd52223e6b03b479c56" - integrity sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA== +"@babel/generator@^7.20.0", "@babel/generator@^7.20.5", "@babel/generator@^7.26.0", "@babel/generator@^7.26.3", "@babel/generator@^7.7.2": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.3.tgz#ab8d4360544a425c90c248df7059881f4b2ce019" + integrity sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ== dependencies: - "@babel/types" "^7.25.7" + "@babel/parser" "^7.26.3" + "@babel/types" "^7.26.3" "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.7.tgz#63f02dbfa1f7cb75a9bdb832f300582f30bb8972" - integrity sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA== +"@babel/helper-annotate-as-pure@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4" + integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g== dependencies: - "@babel/types" "^7.25.7" + "@babel/types" "^7.25.9" -"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz#11260ac3322dda0ef53edfae6e97b961449f5fa4" - integrity sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A== +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" + integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== dependencies: - "@babel/compat-data" "^7.25.7" - "@babel/helper-validator-option" "^7.25.7" + "@babel/compat-data" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" browserslist "^4.24.0" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.7.tgz#5d65074c76cae75607421c00d6bd517fe1892d6b" - integrity sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-member-expression-to-functions" "^7.25.7" - "@babel/helper-optimise-call-expression" "^7.25.7" - "@babel/helper-replace-supers" "^7.25.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.7" - "@babel/traverse" "^7.25.7" +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83" + integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/traverse" "^7.25.9" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.7.tgz#dcb464f0e2cdfe0c25cc2a0a59c37ab940ce894e" - integrity sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ== +"@babel/helper-create-regexp-features-plugin@^7.25.9": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz#5169756ecbe1d95f7866b90bb555b022595302a0" + integrity sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - regexpu-core "^6.1.1" + "@babel/helper-annotate-as-pure" "^7.25.9" + regexpu-core "^6.2.0" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.6.2": - version "0.6.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" - integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== +"@babel/helper-define-polyfill-provider@^0.6.2", "@babel/helper-define-polyfill-provider@^0.6.3": + version "0.6.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz#f4f2792fae2ef382074bc2d713522cf24e6ddb21" + integrity sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -140,126 +142,117 @@ dependencies: "@babel/types" "^7.24.7" -"@babel/helper-member-expression-to-functions@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.7.tgz#541a33b071f0355a63a0fa4bdf9ac360116b8574" - integrity sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA== - dependencies: - "@babel/traverse" "^7.25.7" - "@babel/types" "^7.25.7" - -"@babel/helper-module-imports@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz#dba00d9523539152906ba49263e36d7261040472" - integrity sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw== - dependencies: - "@babel/traverse" "^7.25.7" - "@babel/types" "^7.25.7" - -"@babel/helper-module-transforms@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz#2ac9372c5e001b19bc62f1fe7d96a18cb0901d1a" - integrity sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ== - dependencies: - "@babel/helper-module-imports" "^7.25.7" - "@babel/helper-simple-access" "^7.25.7" - "@babel/helper-validator-identifier" "^7.25.7" - "@babel/traverse" "^7.25.7" - -"@babel/helper-optimise-call-expression@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.7.tgz#1de1b99688e987af723eed44fa7fc0ee7b97d77a" - integrity sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng== - dependencies: - "@babel/types" "^7.25.7" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.7", "@babel/helper-plugin-utils@^7.8.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz#8ec5b21812d992e1ef88a9b068260537b6f0e36c" - integrity sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw== - -"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.7.tgz#9efdc39df5f489bcd15533c912b6c723a0a65021" - integrity sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-wrap-function" "^7.25.7" - "@babel/traverse" "^7.25.7" - -"@babel/helper-replace-supers@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.7.tgz#38cfda3b6e990879c71d08d0fef9236b62bd75f5" - integrity sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.25.7" - "@babel/helper-optimise-call-expression" "^7.25.7" - "@babel/traverse" "^7.25.7" - -"@babel/helper-simple-access@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz#5eb9f6a60c5d6b2e0f76057004f8dacbddfae1c0" - integrity sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ== - dependencies: - "@babel/traverse" "^7.25.7" - "@babel/types" "^7.25.7" - -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.7.tgz#382831c91038b1a6d32643f5f49505b8442cb87c" - integrity sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA== - dependencies: - "@babel/traverse" "^7.25.7" - "@babel/types" "^7.25.7" - -"@babel/helper-string-parser@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz#d50e8d37b1176207b4fe9acedec386c565a44a54" - integrity sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g== - -"@babel/helper-validator-identifier@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz#77b7f60c40b15c97df735b38a66ba1d7c3e93da5" - integrity sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg== - -"@babel/helper-validator-option@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz#97d1d684448228b30b506d90cace495d6f492729" - integrity sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ== - -"@babel/helper-wrap-function@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.7.tgz#9f6021dd1c4fdf4ad515c809967fc4bac9a70fe7" - integrity sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg== - dependencies: - "@babel/template" "^7.25.7" - "@babel/traverse" "^7.25.7" - "@babel/types" "^7.25.7" - -"@babel/helpers@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.7.tgz#091b52cb697a171fe0136ab62e54e407211f09c2" - integrity sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA== - dependencies: - "@babel/template" "^7.25.7" - "@babel/types" "^7.25.7" - -"@babel/highlight@^7.10.4", "@babel/highlight@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.25.7.tgz#20383b5f442aa606e7b5e3043b0b1aafe9f37de5" - integrity sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw== - dependencies: - "@babel/helper-validator-identifier" "^7.25.7" +"@babel/helper-member-expression-to-functions@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3" + integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== + dependencies: + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-optimise-call-expression@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e" + integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ== + dependencies: + "@babel/types" "^7.25.9" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" + integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== + +"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz#e53956ab3d5b9fb88be04b3e2f31b523afd34b92" + integrity sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-wrap-function" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-replace-supers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5" + integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9" + integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-string-parser@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/helper-validator-option@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== + +"@babel/helper-wrap-function@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz#d99dfd595312e6c894bd7d237470025c85eea9d0" + integrity sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g== + dependencies: + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== + dependencies: + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" + +"@babel/highlight@^7.10.4": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.25.9.tgz#8141ce68fc73757946f983b343f1231f4691acc6" + integrity sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw== + dependencies: + "@babel/helper-validator-identifier" "^7.25.9" chalk "^2.4.2" js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.7", "@babel/parser@^7.25.8": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.8.tgz#f6aaf38e80c36129460c1657c0762db584c9d5e2" - integrity sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ== +"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.3.tgz#8c51c5db6ddf08134af1ddbacf16aaab48bac234" + integrity sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA== dependencies: - "@babel/types" "^7.25.8" + "@babel/types" "^7.26.3" "@babel/plugin-proposal-async-generator-functions@^7.0.0": version "7.20.7" @@ -280,20 +273,20 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-decorators@^7.12.9": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.7.tgz#dabfd82df5dff3a8fc61a434233bf8227c88402c" - integrity sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz#8680707f943d1a3da2cd66b948179920f097e254" + integrity sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/plugin-syntax-decorators" "^7.25.7" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-decorators" "^7.25.9" "@babel/plugin-proposal-export-default-from@^7.0.0": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.25.8.tgz#fa22151caa240683c3659796037237813767f348" - integrity sha512-5SLPHA/Gk7lNdaymtSVS9jH77Cs7yuHTR3dYj+9q+M7R7tNLXhNuvnmOfafRIzpWL+dtMibuu1I4ofrc768Gkw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.25.9.tgz#52702be6ef8367fc8f18b8438278332beeb8f87c" + integrity sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-proposal-logical-assignment-operators@^7.18.0": version "7.20.7" @@ -375,12 +368,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-decorators@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.7.tgz#cf26fdde4e750688e133c0e33ead2506377e88f7" - integrity sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw== +"@babel/plugin-syntax-decorators@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz#986b4ca8b7b5df3f67cee889cedeffc2e2bf14b3" + integrity sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-dynamic-import@^7.8.0": version "7.8.3" @@ -390,25 +383,25 @@ "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-export-default-from@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.25.7.tgz#3e05205c62303fe088f6b7073e5c143a669c26f4" - integrity sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.25.9.tgz#86614767a9ff140366f0c3766ef218beb32a730a" + integrity sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.25.7.tgz#7d1255201b55d7644c57e0eb354aaf9f8b8d2d02" - integrity sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w== +"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.25.9": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz#96507595c21b45fccfc2bc758d5c45452e6164fa" + integrity sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-attributes@^7.24.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.7.tgz#d78dd0499d30df19a598e63ab895e21b909bc43f" - integrity sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" + integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" @@ -424,12 +417,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.25.7", "@babel/plugin-syntax-jsx@^7.7.2": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.7.tgz#5352d398d11ea5e7ef330c854dea1dae0bf18165" - integrity sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw== +"@babel/plugin-syntax-jsx@^7.25.9", "@babel/plugin-syntax-jsx@^7.7.2": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" + integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" @@ -487,302 +480,301 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.25.7", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz#bfc05b0cc31ebd8af09964650cee723bb228108b" - integrity sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g== +"@babel/plugin-syntax-typescript@^7.25.9", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399" + integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.0.0-0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.7.tgz#1b9ed22e6890a0e9ff470371c73b8c749bcec386" - integrity sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845" + integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-async-to-generator@^7.20.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.7.tgz#a44c7323f8d4285a6c568dd43c5c361d6367ec52" - integrity sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz#c80008dacae51482793e5a9c08b39a5be7e12d71" + integrity sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ== dependencies: - "@babel/helper-module-imports" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-remap-async-to-generator" "^7.25.7" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-remap-async-to-generator" "^7.25.9" "@babel/plugin-transform-block-scoping@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.7.tgz#6dab95e98adf780ceef1b1c3ab0e55cd20dd410a" - integrity sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz#c33665e46b06759c93687ca0f84395b80c0473a1" + integrity sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-classes@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.7.tgz#5103206cf80d02283bbbd044509ea3b65d0906bb" - integrity sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-compilation-targets" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-replace-supers" "^7.25.7" - "@babel/traverse" "^7.25.7" + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52" + integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/traverse" "^7.25.9" globals "^11.1.0" "@babel/plugin-transform-computed-properties@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.7.tgz#7f621f0aa1354b5348a935ab12e3903842466f65" - integrity sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz#db36492c78460e534b8852b1d5befe3c923ef10b" + integrity sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/template" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/template" "^7.25.9" "@babel/plugin-transform-destructuring@^7.20.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.7.tgz#f6f26a9feefb5aa41fd45b6f5838901b5333d560" - integrity sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz#966ea2595c498224340883602d3cfd7a0c79cea1" + integrity sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-export-namespace-from@^7.22.11": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.8.tgz#d1988c3019a380b417e0516418b02804d3858145" - integrity sha512-sPtYrduWINTQTW7FtOy99VCTWp4H23UX7vYcut7S4CIMEXU+54zKX9uCoGkLsWXteyaMXzVHgzWbLfQ1w4GZgw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz#90745fe55053394f554e40584cda81f2c8a402a2" + integrity sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-flow-strip-types@^7.20.0", "@babel/plugin-transform-flow-strip-types@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.7.tgz#32be871a80e10bbe6d8b1c8a7eeedbbc896d5e80" - integrity sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w== +"@babel/plugin-transform-flow-strip-types@^7.20.0", "@babel/plugin-transform-flow-strip-types@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz#85879b42a8f5948fd6317069978e98f23ef8aec1" + integrity sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/plugin-syntax-flow" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-flow" "^7.25.9" "@babel/plugin-transform-function-name@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.7.tgz#7e394ccea3693902a8b50ded8b6ae1fa7b8519fd" - integrity sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz#939d956e68a606661005bfd550c4fc2ef95f7b97" + integrity sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA== dependencies: - "@babel/helper-compilation-targets" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/traverse" "^7.25.7" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/traverse" "^7.25.9" "@babel/plugin-transform-literals@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.7.tgz#70cbdc742f2cfdb1a63ea2cbd018d12a60b213c3" - integrity sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz#1a1c6b4d4aa59bc4cad5b6b3a223a0abd685c9de" + integrity sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.7.tgz#173f0c791bb7407c092ce6d77ee90eb3f2d1d2fd" - integrity sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg== +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.25.9": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz#8f011d44b20d02c3de44d8850d971d8497f981fb" + integrity sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ== dependencies: - "@babel/helper-module-transforms" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-simple-access" "^7.25.7" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-named-capturing-groups-regex@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.7.tgz#a2f3f6d7f38693b462542951748f0a72a34d196d" - integrity sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz#454990ae6cc22fd2a0fa60b3a2c6f63a38064e6a" + integrity sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.8.tgz#befb4900c130bd52fccf2b926314557987f1b552" - integrity sha512-Z7WJJWdQc8yCWgAmjI3hyC+5PXIubH9yRKzkl9ZEG647O9szl9zvmKLzpbItlijBnVhTUf1cpyWBsZ3+2wjWPQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz#bcb1b0d9e948168102d5f7104375ca21c3266949" + integrity sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-object-rest-spread@^7.12.13": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.8.tgz#0904ac16bcce41df4db12d915d6780f85c7fb04b" - integrity sha512-LkUu0O2hnUKHKE7/zYOIjByMa4VRaV2CD/cdGz0AxU9we+VA3kDDggKEzI0Oz1IroG+6gUP6UmWEHBMWZU316g== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz#0203725025074164808bcf1a2cfa90c652c99f18" + integrity sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg== dependencies: - "@babel/helper-compilation-targets" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/plugin-transform-parameters" "^7.25.7" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-transform-parameters" "^7.25.9" "@babel/plugin-transform-optional-chaining@^7.0.0-0": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.8.tgz#f46283b78adcc5b6ab988a952f989e7dce70653f" - integrity sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz#e142eb899d26ef715435f201ab6e139541eee7dd" + integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15", "@babel/plugin-transform-parameters@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.7.tgz#80c38b03ef580f6d6bffe1c5254bb35986859ac7" - integrity sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ== +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15", "@babel/plugin-transform-parameters@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz#b856842205b3e77e18b7a7a1b94958069c7ba257" + integrity sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-private-methods@^7.22.5": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.7.tgz#c790a04f837b4bd61d6b0317b43aa11ff67dce80" - integrity sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz#847f4139263577526455d7d3223cd8bda51e3b57" + integrity sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-private-property-in-object@^7.22.11": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.8.tgz#1234f856ce85e061f9688764194e51ea7577c434" - integrity sha512-8Uh966svuB4V8RHHg0QJOB32QK287NBksJOByoKmHMp1TAobNniNalIkI2i5IPj5+S9NYCG4VIjbEuiSN8r+ow== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz#9c8b73e64e6cc3cbb2743633885a7dd2c385fe33" + integrity sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-create-class-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.7.tgz#2753e875a1b702fb1d806c4f5d4c194d64cadd88" - integrity sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA== +"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz#4b79746b59efa1f38c8695065a92a9f5afb24f7d" + integrity sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-react-jsx-development@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.7.tgz#2fbd77887b8fa2942d7cb61edf1029ea1b048554" - integrity sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg== +"@babel/plugin-transform-react-jsx-development@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz#8fd220a77dd139c07e25225a903b8be8c829e0d7" + integrity sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw== dependencies: - "@babel/plugin-transform-react-jsx" "^7.25.7" + "@babel/plugin-transform-react-jsx" "^7.25.9" "@babel/plugin-transform-react-jsx-self@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.7.tgz#3d11df143131fd8f5486a1f7d3839890f88f8c85" - integrity sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz#c0b6cae9c1b73967f7f9eb2fca9536ba2fad2858" + integrity sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-react-jsx-source@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.7.tgz#a0d8372310d5ea5b0447dfa03a8485f960eff7be" - integrity sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz#4c6b8daa520b5f155b5fb55547d7c9fa91417503" + integrity sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.7.tgz#f5e2af6020a562fe048dd343e571c4428e6c5632" - integrity sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q== +"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz#06367940d8325b36edff5e2b9cbe782947ca4166" + integrity sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-module-imports" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/plugin-syntax-jsx" "^7.25.7" - "@babel/types" "^7.25.7" + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-jsx" "^7.25.9" + "@babel/types" "^7.25.9" -"@babel/plugin-transform-react-pure-annotations@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.7.tgz#6d0b8dadb2d3c5cbb8ade68c5efd49470b0d65f7" - integrity sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA== +"@babel/plugin-transform-react-pure-annotations@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz#ea1c11b2f9dbb8e2d97025f43a3b5bc47e18ae62" + integrity sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-runtime@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.7.tgz#435a4fab67273f00047dc806e05069c9c6344e12" - integrity sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz#62723ea3f5b31ffbe676da9d6dae17138ae580ea" + integrity sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ== dependencies: - "@babel/helper-module-imports" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" babel-plugin-polyfill-corejs2 "^0.4.10" babel-plugin-polyfill-corejs3 "^0.10.6" babel-plugin-polyfill-regenerator "^0.6.1" semver "^6.3.1" "@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.0.0-0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.7.tgz#92690a9c671915602d91533c278cc8f6bf12275f" - integrity sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2" + integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-spread@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.7.tgz#df83e899a9fc66284ee601a7b738568435b92998" - integrity sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz#24a35153931b4ba3d13cec4a7748c21ab5514ef9" + integrity sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" "@babel/plugin-transform-sticky-regex@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.7.tgz#341c7002bef7f29037be7fb9684e374442dd0d17" - integrity sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz#c7f02b944e986a417817b20ba2c504dfc1453d32" + integrity sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-template-literals@^7.0.0-0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.7.tgz#e566c581bb16d8541dd8701093bb3457adfce16b" - integrity sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz#6dbd4a24e8fad024df76d1fac6a03cf413f60fe1" + integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-typescript@^7.25.7", "@babel/plugin-transform-typescript@^7.5.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.7.tgz#8fc7c3d28ddd36bce45b9b48594129d0e560cfbe" - integrity sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q== +"@babel/plugin-transform-typescript@^7.25.9", "@babel/plugin-transform-typescript@^7.5.0": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz#3d6add9c78735623317387ee26d5ada540eee3fd" + integrity sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-create-class-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.7" - "@babel/plugin-syntax-typescript" "^7.25.7" + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/plugin-syntax-typescript" "^7.25.9" "@babel/plugin-transform-unicode-regex@^7.0.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.7.tgz#f93a93441baf61f713b6d5552aaa856bfab34809" - integrity sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz#5eae747fe39eacf13a8bd006a4fb0b5d1fa5e9b1" + integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/preset-flow@^7.13.13": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.25.7.tgz#a9460677c182c2e105c32567a036d360c86668a9" - integrity sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.25.9.tgz#ef8b5e7e3f24a42b3711e77fb14919b87dffed0a" + integrity sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-validator-option" "^7.25.7" - "@babel/plugin-transform-flow-strip-types" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + "@babel/plugin-transform-flow-strip-types" "^7.25.9" "@babel/preset-react@^7.22.15": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.25.7.tgz#081cbe1dea363b732764d06a0fdda67ffa17735d" - integrity sha512-GjV0/mUEEXpi1U5ZgDprMRRgajGMRW3G5FjMr5KLKD8nT2fTG8+h/klV3+6Dm5739QE+K5+2e91qFKAYI3pmRg== - dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-validator-option" "^7.25.7" - "@babel/plugin-transform-react-display-name" "^7.25.7" - "@babel/plugin-transform-react-jsx" "^7.25.7" - "@babel/plugin-transform-react-jsx-development" "^7.25.7" - "@babel/plugin-transform-react-pure-annotations" "^7.25.7" - -"@babel/preset-typescript@^7.13.0", "@babel/preset-typescript@^7.16.7", "@babel/preset-typescript@^7.23.0": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.25.7.tgz#43c5b68eccb856ae5b52274b77b1c3c413cde1b7" - integrity sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw== - dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-validator-option" "^7.25.7" - "@babel/plugin-syntax-jsx" "^7.25.7" - "@babel/plugin-transform-modules-commonjs" "^7.25.7" - "@babel/plugin-transform-typescript" "^7.25.7" + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.26.3.tgz#7c5e028d623b4683c1f83a0bd4713b9100560caa" + integrity sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + "@babel/plugin-transform-react-display-name" "^7.25.9" + "@babel/plugin-transform-react-jsx" "^7.25.9" + "@babel/plugin-transform-react-jsx-development" "^7.25.9" + "@babel/plugin-transform-react-pure-annotations" "^7.25.9" + +"@babel/preset-typescript@^7.13.0", "@babel/preset-typescript@^7.16.7", "@babel/preset-typescript@^7.17.12", "@babel/preset-typescript@^7.23.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz#4a570f1b8d104a242d923957ffa1eaff142a106d" + integrity sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + "@babel/plugin-syntax-jsx" "^7.25.9" + "@babel/plugin-transform-modules-commonjs" "^7.25.9" + "@babel/plugin-transform-typescript" "^7.25.9" "@babel/register@^7.13.16": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.25.7.tgz#75ec0d3a8f843d344c51bf2f18fcc03f3a4c9117" - integrity sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.25.9.tgz#1c465acf7dc983d70ccc318eb5b887ecb04f021b" + integrity sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA== dependencies: clone-deep "^4.0.1" find-cache-dir "^2.0.0" @@ -791,42 +783,41 @@ source-map-support "^0.5.16" "@babel/runtime@^7.13.10", "@babel/runtime@^7.18.6", "@babel/runtime@^7.20.0", "@babel/runtime@^7.25.0", "@babel/runtime@^7.7.2": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.7.tgz#7ffb53c37a8f247c8c4d335e89cdf16a2e0d0fb6" - integrity sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.0.0", "@babel/template@^7.25.7", "@babel/template@^7.3.3": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.7.tgz#27f69ce382855d915b14ab0fe5fb4cbf88fa0769" - integrity sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA== - dependencies: - "@babel/code-frame" "^7.25.7" - "@babel/parser" "^7.25.7" - "@babel/types" "^7.25.7" - -"@babel/traverse@^7.20.0", "@babel/traverse@^7.25.7": - version "7.25.7" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.7.tgz#83e367619be1cab8e4f2892ef30ba04c26a40fa8" - integrity sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg== - dependencies: - "@babel/code-frame" "^7.25.7" - "@babel/generator" "^7.25.7" - "@babel/parser" "^7.25.7" - "@babel/template" "^7.25.7" - "@babel/types" "^7.25.7" +"@babel/template@^7.0.0", "@babel/template@^7.25.9", "@babel/template@^7.3.3": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/traverse@^7.20.0", "@babel/traverse@^7.25.9": + version "7.26.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd" + integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== + dependencies: + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.3" + "@babel/parser" "^7.26.3" + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.3" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.19.0", "@babel/types@^7.2.0", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.7", "@babel/types@^7.25.8", "@babel/types@^7.3.3": - version "7.25.8" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.8.tgz#5cf6037258e8a9bcad533f4979025140cb9993e1" - integrity sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg== +"@babel/types@^7.0.0", "@babel/types@^7.19.0", "@babel/types@^7.2.0", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3", "@babel/types@^7.3.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0" + integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA== dependencies: - "@babel/helper-string-parser" "^7.25.7" - "@babel/helper-validator-identifier" "^7.25.7" - to-fast-properties "^2.0.0" + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" "@bcoe/v8-coverage@^0.2.3": version "0.2.3" @@ -840,6 +831,13 @@ dependencies: "@types/hammerjs" "^2.0.36" +"@eslint-community/eslint-utils@^4.4.0": + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + dependencies: + eslint-visitor-keys "^3.4.3" + "@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" @@ -1194,10 +1192,10 @@ dependencies: uuid "^8.0.0" -"@expo/cli@0.18.30": - version "0.18.30" - resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.18.30.tgz#0cb4829aa11e98ae350a5c15958b9816e9a1d2f0" - integrity sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg== +"@expo/cli@0.18.31": + version "0.18.31" + resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.18.31.tgz#d07b7f1b2d10d146ec8b732ce1353b90912c56bd" + integrity sha512-v9llw9fT3Uv+TCM6Xllo54t672CuYtinEQZ2LPJ2EJsCwuTc4Cd2gXQaouuIVD21VoeGQnr5JtJuWbF97sBKzQ== dependencies: "@babel/runtime" "^7.20.0" "@expo/code-signing-certificates" "0.0.5" @@ -1285,10 +1283,10 @@ node-forge "^1.2.1" nullthrows "^1.1.1" -"@expo/config-plugins@8.0.10", "@expo/config-plugins@~8.0.0-beta.0", "@expo/config-plugins@~8.0.8": - version "8.0.10" - resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-8.0.10.tgz#5cda076f38bc04675cb42d8acdd23d6e460a62de" - integrity sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg== +"@expo/config-plugins@8.0.11", "@expo/config-plugins@~8.0.8": + version "8.0.11" + resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-8.0.11.tgz#b814395a910f4c8b7cc95d9719dccb6ca53ea4c5" + integrity sha512-oALE1HwnLFthrobAcC9ocnR9KXLzfWEjgIe4CPe+rDsfC6GDs8dGYCXfRFoCEzoLN4TGYs9RdZ8r0KoCcNrm2A== dependencies: "@expo/config-types" "^51.0.3" "@expo/json-file" "~8.3.0" @@ -1306,7 +1304,7 @@ xcode "^3.0.1" xml2js "0.6.0" -"@expo/config-types@^51.0.0-unreleased", "@expo/config-types@^51.0.3": +"@expo/config-types@^51.0.3": version "51.0.3" resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-51.0.3.tgz#520bdce5fd75f9d234fd81bd0347443086419450" integrity sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA== @@ -1382,6 +1380,15 @@ json5 "^2.2.2" write-file-atomic "^2.3.0" +"@expo/json-file@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-9.0.0.tgz#e3688c9b108cfd7e819f1354a9458ba6e93fc943" + integrity sha512-M+55xFVrFzDcgMDf+52lPDLjKB5xwRfStWlv/b/Vu2OLgxGZLWpxoPYjlRoHqxjPbCQIi2ZCbobK+0KuNhsELg== + dependencies: + "@babel/code-frame" "~7.10.4" + json5 "^2.2.3" + write-file-atomic "^2.3.0" + "@expo/metro-config@0.18.11": version "0.18.11" resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.18.11.tgz#22e82d92fb9d94ac760cc8b3bff48e6f32b4f032" @@ -1412,28 +1419,28 @@ integrity sha512-v5ji+fAGi7B9YavrxvekuF8gXEV/5fz0+PhaED5AaFDnbGB4IJIbpaiqK9nqZV1axjGZNQSw6Q8TsnFetCR3bQ== "@expo/osascript@^2.0.31": - version "2.1.3" - resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.1.3.tgz#912b74825cb83f3b958cad81034df9e19f1f2808" - integrity sha512-aOEkhPzDsaAfolSswObGiYW0Pf0ROfR9J2NBRLQACdQ6uJlyAMiPF45DVEVknAU9juKh0y8ZyvC9LXqLEJYohA== + version "2.1.4" + resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.1.4.tgz#4918d16ba09d8b01cb393bc5997055e61d31246f" + integrity sha512-LcPjxJ5FOFpqPORm+5MRLV0CuYWMthJYV6eerF+lQVXKlvgSn3EOqaHC3Vf3H+vmB0f6G4kdvvFtg40vG4bIhA== dependencies: "@expo/spawn-async" "^1.7.2" exec-async "^2.2.0" "@expo/package-manager@^1.5.0": - version "1.5.2" - resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.5.2.tgz#6015963669977a188bbbac930aa0dc103162ee73" - integrity sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA== + version "1.6.1" + resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.6.1.tgz#ab845238dec10bb48bca2b90e060dfe8c1525602" + integrity sha512-4rT46wP/94Ll+CWXtFKok1Lbo9XncSUtErFOo/9/3FVughGbIfdG4SKZOAWIpr9wxwEfkyhHfAP9q71ONlWODw== dependencies: - "@expo/json-file" "^8.3.0" + "@expo/json-file" "^9.0.0" "@expo/spawn-async" "^1.7.2" ansi-regex "^5.0.0" chalk "^4.0.0" find-up "^5.0.0" - find-yarn-workspace-root "~2.0.0" js-yaml "^3.13.1" - micromatch "^4.0.2" - npm-package-arg "^7.0.0" + micromatch "^4.0.8" + npm-package-arg "^11.0.0" ora "^3.4.0" + resolve-workspace-root "^2.0.0" split "^1.0.1" sudo-prompt "9.1.1" @@ -1446,40 +1453,6 @@ base64-js "^1.2.3" xmlbuilder "^14.0.0" -"@expo/prebuild-config@7.0.6": - version "7.0.6" - resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-7.0.6.tgz#b9c2c36ee564244da8073ce7bea22ebe57743615" - integrity sha512-Hts+iGBaG6OQ+N8IEMMgwQElzJeSTb7iUJ26xADEHkaexsucAK+V52dM8M4ceicvbZR9q8M+ebJEGj0MCNA3dQ== - dependencies: - "@expo/config" "~9.0.0-beta.0" - "@expo/config-plugins" "~8.0.0-beta.0" - "@expo/config-types" "^51.0.0-unreleased" - "@expo/image-utils" "^0.5.0" - "@expo/json-file" "^8.3.0" - "@react-native/normalize-colors" "0.74.84" - debug "^4.3.1" - fs-extra "^9.0.0" - resolve-from "^5.0.0" - semver "^7.6.0" - xml2js "0.6.0" - -"@expo/prebuild-config@7.0.8": - version "7.0.8" - resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-7.0.8.tgz#8af72b19c92f05f1ab6c6c70d31f33159dacac39" - integrity sha512-wH9NVg6HiwF5y9x0TxiMEeBF+ITPGDXy5/i6OUheSrKpPgb0lF1Mwzl/f2fLPXBEpl+ZXOQ8LlLW32b7K9lrNg== - dependencies: - "@expo/config" "~9.0.0-beta.0" - "@expo/config-plugins" "~8.0.8" - "@expo/config-types" "^51.0.0-unreleased" - "@expo/image-utils" "^0.5.0" - "@expo/json-file" "^8.3.0" - "@react-native/normalize-colors" "0.74.85" - debug "^4.3.1" - fs-extra "^9.0.0" - resolve-from "^5.0.0" - semver "^7.6.0" - xml2js "0.6.0" - "@expo/prebuild-config@7.0.9": version "7.0.9" resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-7.0.9.tgz#7abd489e18ed6514a0c9cd214eb34c0d5efda799" @@ -1540,9 +1513,9 @@ prop-types "^15.8.1" "@expo/xcpretty@^4.3.0": - version "4.3.1" - resolved "https://registry.yarnpkg.com/@expo/xcpretty/-/xcpretty-4.3.1.tgz#e0a6a92d1e46ab5ac5e90d9a8e66ac1a2a2f5920" - integrity sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw== + version "4.3.2" + resolved "https://registry.yarnpkg.com/@expo/xcpretty/-/xcpretty-4.3.2.tgz#12dba1295167a9c8dde4be783d74f7e81648ca5d" + integrity sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw== dependencies: "@babel/code-frame" "7.10.4" chalk "^4.1.0" @@ -1567,14 +1540,14 @@ "@hapi/hoek" "^9.0.0" "@hexagon/base64@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@hexagon/base64/-/base64-2.0.3.tgz#59f01a3e584097941063d631765117c5d5c5685a" - integrity sha512-ZtQDPh0m9MXHK241Cutx4low/WwqtPr0fPeUsXTAEX5Nocrdk6oB9TvyUF9SePrZYkeTL4gFrd+ceMHVb/zC8A== + version "2.0.4" + resolved "https://registry.yarnpkg.com/@hexagon/base64/-/base64-2.0.4.tgz#888e7ef238a07ffc0922cd5900b18ecb26dd17e7" + integrity sha512-H/ZY6rGyaEuk0mwQgZ3BVi9hMjFTYpBNFbmtOuec/pPibuGhCMXd8fGtwBaO0h44FkWMurysMsDrpkJsBRmoWQ== "@hookform/resolvers@^3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-3.9.0.tgz#cf540ac21c6c0cd24a40cf53d8e6d64391fb753d" - integrity sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg== + version "3.9.1" + resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-3.9.1.tgz#a23883c40bfd449cb6c6ab5a0fa0729184c950ff" + integrity sha512-ud2HqmGBM0P0IABqoskKWI6PEf6ZDDBZkFqe2Vnl+mTHCEHzr3ISjjZyCwTjC/qpL25JC9aIDkloQejvMeq0ug== "@isaacs/cliui@^8.0.2": version "8.0.2" @@ -1967,17 +1940,22 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@noble/curves@1.6.0", "@noble/curves@^1.4.0", "@noble/curves@~1.6.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.6.0.tgz#be5296ebcd5a1730fccea4786d420f87abfeb40b" - integrity sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ== +"@noble/curves@1.7.0", "@noble/curves@^1.4.0", "@noble/curves@^1.6.0", "@noble/curves@~1.7.0": + version "1.7.0" + resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.7.0.tgz#0512360622439256df892f21d25b388f52505e45" + integrity sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw== dependencies: - "@noble/hashes" "1.5.0" + "@noble/hashes" "1.6.0" -"@noble/hashes@1.5.0", "@noble/hashes@^1.4.0", "@noble/hashes@~1.5.0": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.5.0.tgz#abadc5ca20332db2b1b2aa3e496e9af1213570b0" - integrity sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA== +"@noble/hashes@1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.6.0.tgz#d4bfb516ad6e7b5111c216a5cc7075f4cf19e6c5" + integrity sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ== + +"@noble/hashes@1.6.1", "@noble/hashes@^1.4.0", "@noble/hashes@^1.5.0", "@noble/hashes@~1.6.0": + version "1.6.1" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.6.1.tgz#df6e5943edcea504bac61395926d6fd67869a0d5" + integrity sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w== "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -2012,13 +1990,20 @@ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@privy-io/api-base@1.4.0", "@privy-io/api-base@^1.4.0": +"@privy-io/api-base@1.4.0": version "1.4.0" resolved "https://registry.yarnpkg.com/@privy-io/api-base/-/api-base-1.4.0.tgz#2e3485ef1398c26302a76d0b941c3900002412a0" integrity sha512-8Pm/8bx6WvNt8uLtYOOj9acYL+JjUJxeChlBEvSywmre1l5o8naK6J4SeAb5v8b8p4178VNI4AYhd+rFh4HCsA== dependencies: zod "^3.21.4" +"@privy-io/api-base@^1.4.0": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@privy-io/api-base/-/api-base-1.4.1.tgz#78884201434dbbef60ae43abf19c27f9f03ef84d" + integrity sha512-q98uQGVBIY5SBHjJWL/udpbxM9ISpZl8Lwwjd0p0XHSMJMOgEhS4GLjcO7l3clfNrqL0fAuinQaa+seCaYOzng== + dependencies: + zod "^3.21.4" + "@privy-io/expo-native-extensions@^0.0.3": version "0.0.3" resolved "https://registry.yarnpkg.com/@privy-io/expo-native-extensions/-/expo-native-extensions-0.0.3.tgz#6398ad2b1b825e1dc168e85c2232da953059ada3" @@ -2088,9 +2073,9 @@ merge-options "^3.0.4" "@react-native-clipboard/clipboard@^1.14.2": - version "1.14.2" - resolved "https://registry.yarnpkg.com/@react-native-clipboard/clipboard/-/clipboard-1.14.2.tgz#d290e9f79799e260ba4ebd9e9948079258826b25" - integrity sha512-Mb58f3neB6sM9oOtKYVGLvN8KVByea67OA9ekJ0c9FwdH24INu8RJoA7/fq+PRk+7oxbeamAcEoQPRv0uwbbMw== + version "1.15.0" + resolved "https://registry.yarnpkg.com/@react-native-clipboard/clipboard/-/clipboard-1.15.0.tgz#dcd47279b159289f11b31edf976723ad3984e0ce" + integrity sha512-YDMC3E956jn9zE11uKGcQDKS1SO9q72iNHxZyrKY5y9XYwZcA9vo3Xk74+zRnf7cM48drDO0s9lyAPUlOvyhrw== "@react-native-community/cli-clean@13.6.9": version "13.6.9" @@ -2253,9 +2238,9 @@ integrity sha512-DbFyCyI7rwl0FkBkp0lzEVp+5mNfS5qU/nM2sK2aSguWhj0Odkt1aKHP2iW/ljruOhgS/O4dEixXlne4OdZJDQ== "@react-native-masked-view/masked-view@^0.3.1": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.1.tgz#5bd76f17004a6ccbcec03856893777ee91f23d29" - integrity sha512-uVm8U6nwFIlUd1iDIB5cS+lDadApKR+l8k4k84d9hn+GN4lzAIJhUZ9syYX7c022MxNgAlbxoFLt0pqKoyaAGg== + version "0.3.2" + resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.2.tgz#7064533a573e3539ec912f59c1f457371bf49dd9" + integrity sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ== "@react-native/assets-registry@0.74.87": version "0.74.87" @@ -2417,11 +2402,6 @@ hermes-parser "0.19.1" nullthrows "^1.1.1" -"@react-native/normalize-colors@0.74.84": - version "0.74.84" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.84.tgz#4764d59775c17a6ed193509cb01ae2f42dd5c045" - integrity sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A== - "@react-native/normalize-colors@0.74.85": version "0.74.85" resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz#62bcb9ab1b10b822ca0278fdfdf23d3b18e125da" @@ -2505,9 +2485,9 @@ nanoid "^3.1.23" "@reduxjs/toolkit@^2.2.7": - version "2.2.8" - resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-2.2.8.tgz#69e6473dd5a395860d387abdd53fe5a2add378c8" - integrity sha512-eK/ieXftPRQfaBSmzsamXEyDwkntMTY0e9SG5ETsEOv5JIPKhu3mj992t6B8FJjlnSrZBAAqdT8oMkPe4j+P9g== + version "2.5.0" + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-2.5.0.tgz#4679b09b4da211cb9a821803aabf86a13c96fbfa" + integrity sha512-awNe2oTodsZ6LmRqmkFhtb/KH03hUhxOamEQy411m3Njj3BbFvoBovxo4Q1cBWnV1ErprVj9MlF0UPXkng0eyg== dependencies: immer "^10.0.3" redux "^5.0.1" @@ -2515,11 +2495,11 @@ reselect "^5.1.0" "@remix-run/node@^2.7.2": - version "2.13.1" - resolved "https://registry.yarnpkg.com/@remix-run/node/-/node-2.13.1.tgz#572f838201a11f8d9d8ef56929eb2a2c46e0f5ea" - integrity sha512-2ly7bENj2n2FNBdEN60ZEbNCs5dAOex/QJoo6EZ8RNFfUQxVKAZkMwfQ4ETV2SLWDgkRLj3Jo5n/dx7O2ZGhGw== + version "2.15.1" + resolved "https://registry.yarnpkg.com/@remix-run/node/-/node-2.15.1.tgz#f57b06016f3a71cbdc47e89bdc08ac579e2a2f66" + integrity sha512-23xWN3/yOohNUr27KS7hEcDMbtufMkniXfXkcLx8Dz2wUVNfJYGpICjeV48Ue/INtpiUCCzOYwkL9VRjIMEJbA== dependencies: - "@remix-run/server-runtime" "2.13.1" + "@remix-run/server-runtime" "2.15.1" "@remix-run/web-fetch" "^4.4.2" "@web3-storage/multipart-parser" "^1.0.0" cookie-signature "^1.1.0" @@ -2527,17 +2507,17 @@ stream-slice "^0.1.2" undici "^6.11.1" -"@remix-run/router@1.20.0": - version "1.20.0" - resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.20.0.tgz#03554155b45d8b529adf635b2f6ad1165d70d8b4" - integrity sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg== +"@remix-run/router@1.21.0": + version "1.21.0" + resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.21.0.tgz#c65ae4262bdcfe415dbd4f64ec87676e4a56e2b5" + integrity sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA== -"@remix-run/server-runtime@2.13.1": - version "2.13.1" - resolved "https://registry.yarnpkg.com/@remix-run/server-runtime/-/server-runtime-2.13.1.tgz#91cc669fee41288b7f7c287558f144cc4b5ed65a" - integrity sha512-2DfBPRcHKVzE4bCNsNkKB50BhCCKF73x+jiS836OyxSIAL+x0tguV2AEjmGXefEXc5AGGzoxkus0AUUEYa29Vg== +"@remix-run/server-runtime@2.15.1": + version "2.15.1" + resolved "https://registry.yarnpkg.com/@remix-run/server-runtime/-/server-runtime-2.15.1.tgz#1ebf96c351f3398d73856fae38dbd41fd45b2da2" + integrity sha512-TDM3rzax//N2F5uNMV5pNTWAop8cYul6hteDu+Xmfwys/eRGlbzEf7YJzyRj6Kcsg2TFVHI7+xEPItGAVm1hHA== dependencies: - "@remix-run/router" "1.20.0" + "@remix-run/router" "1.21.0" "@types/cookie" "^0.6.0" "@web3-storage/multipart-parser" "^1.0.0" cookie "^0.6.0" @@ -2600,27 +2580,27 @@ mkdirp "^1.0.4" rimraf "^3.0.2" -"@scure/base@~1.1.7", "@scure/base@~1.1.8": - version "1.1.9" - resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.9.tgz#e5e142fbbfe251091f9c5f1dd4c834ac04c3dbd1" - integrity sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== +"@scure/base@~1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.2.1.tgz#dd0b2a533063ca612c17aa9ad26424a2ff5aa865" + integrity sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ== -"@scure/bip32@1.5.0": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.5.0.tgz#dd4a2e1b8a9da60e012e776d954c4186db6328e6" - integrity sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw== +"@scure/bip32@1.6.0", "@scure/bip32@^1.5.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.6.0.tgz#6dbc6b4af7c9101b351f41231a879d8da47e0891" + integrity sha512-82q1QfklrUUdXJzjuRU7iG7D7XiFx5PHYVS0+oeNKhyDLT7WPqs6pBcM2W5ZdwOwKCwoE1Vy1se+DHjcXwCYnA== dependencies: - "@noble/curves" "~1.6.0" - "@noble/hashes" "~1.5.0" - "@scure/base" "~1.1.7" + "@noble/curves" "~1.7.0" + "@noble/hashes" "~1.6.0" + "@scure/base" "~1.2.1" -"@scure/bip39@1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.4.0.tgz#664d4f851564e2e1d4bffa0339f9546ea55960a6" - integrity sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw== +"@scure/bip39@1.5.0", "@scure/bip39@^1.4.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.5.0.tgz#c8f9533dbd787641b047984356531d84485f19be" + integrity sha512-Dop+ASYhnrwm9+HA/HwXg7j2ZqM6yk2fyLWb5znexjctFY3+E+eU8cIWI0Pql0Qx4hPZCijlGq4OL71g+Uz30A== dependencies: - "@noble/hashes" "~1.5.0" - "@scure/base" "~1.1.8" + "@noble/hashes" "~1.6.0" + "@scure/base" "~1.2.1" "@segment/loosely-validate-event@^2.0.0": version "2.0.0" @@ -2666,6 +2646,25 @@ dependencies: "@sinonjs/commons" "^3.0.0" +"@tanstack/eslint-plugin-query@^5.62.1": + version "5.62.1" + resolved "https://registry.yarnpkg.com/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.62.1.tgz#5a5a504f3ba0d999468d404fc4d6e9fb58c4cdff" + integrity sha512-1886D5U+re1TW0wSH4/kUGG36yIoW5Wkz4twVEzlk3ZWmjF3XkRSWgB+Sc7n+Lyzt8usNV8ZqkZE6DA7IC47fQ== + dependencies: + "@typescript-eslint/utils" "^8.15.0" + +"@tanstack/query-core@5.62.7": + version "5.62.7" + resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.62.7.tgz#c7f6d0131c08cd2f60e73ec6e7b70e2e9e335def" + integrity sha512-fgpfmwatsrUal6V+8EC2cxZIQVl9xvL7qYa03gsdsCy985UTUlS4N+/3hCzwR0PclYDqisca2AqR1BVgJGpUDA== + +"@tanstack/react-query@^5.62.2": + version "5.62.7" + resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.62.7.tgz#8f253439a38ad6ce820bc6d42d89ca2556574d1a" + integrity sha512-+xCtP4UAFDTlRTYyEjLx0sRtWyr5GIk7TZjZwBu4YaNahi3Rt2oMyRqfpfVrtwsqY2sayP4iXVCwmC+ZqqFmuw== + dependencies: + "@tanstack/query-core" "5.62.7" + "@tokenizer/token@^0.3.0": version "0.3.0" resolved "https://registry.yarnpkg.com/@tokenizer/token/-/token-0.3.0.tgz#fe98a93fe789247e998c75e74e9c7c63217aa276" @@ -2756,9 +2755,9 @@ "@types/d3-path" "*" "@types/d3-time@*", "@types/d3-time@^3.0.0": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.3.tgz#3c186bbd9d12b9d84253b6be6487ca56b54f88be" - integrity sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.4.tgz#8472feecd639691450dd8000eb33edd444e1323f" + integrity sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g== "@types/d3-timer@^3.0.0": version "3.0.2" @@ -2805,9 +2804,9 @@ "@types/istanbul-lib-report" "*" "@types/jest@^29.5.12": - version "29.5.13" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.13.tgz#8bc571659f401e6a719a7bf0dbcb8b78c71a8adc" - integrity sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg== + version "29.5.14" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.14.tgz#2b910912fa1d6856cadcd0c1f95af7df1d6049e5" + integrity sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ== dependencies: expect "^29.0.0" pretty-format "^29.0.0" @@ -2827,9 +2826,9 @@ integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/lodash@^4.14.53", "@types/lodash@^4.17.7": - version "4.17.10" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.10.tgz#64f3edf656af2fe59e7278b73d3e62404144a6e6" - integrity sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ== + version "4.17.13" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.13.tgz#786e2d67cfd95e32862143abe7463a7f90c300eb" + integrity sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg== "@types/node-forge@^1.3.0": version "1.3.11" @@ -2839,11 +2838,11 @@ "@types/node" "*" "@types/node@*": - version "22.7.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.7.5.tgz#cfde981727a7ab3611a481510b473ae54442b92b" - integrity sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ== + version "22.10.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.1.tgz#41ffeee127b8975a05f8c4f83fb89bcb2987d766" + integrity sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ== dependencies: - undici-types "~6.19.2" + undici-types "~6.20.0" "@types/node@16.9.1": version "16.9.1" @@ -2856,28 +2855,28 @@ integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== "@types/node@^18.0.0": - version "18.19.55" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.55.tgz#29c3f8e1485a92ec96636957ddec55aabc6e856e" - integrity sha512-zzw5Vw52205Zr/nmErSEkN5FLqXPuKX/k5d1D7RKHATGqU7y6YfX9QxZraUzUrFGqH6XzOzG196BC35ltJC4Cw== + version "18.19.67" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.67.tgz#77c4b01641a1e3e1509aff7e10d39e4afd5ae06d" + integrity sha512-wI8uHusga+0ZugNp0Ol/3BqQfEcCCNfojtO6Oou9iVNGPTL6QNSdnUdqq85fRgIorLhLMuPIKpsN98QE9Nh+KQ== dependencies: undici-types "~5.26.4" "@types/prop-types@*": - version "15.7.13" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.13.tgz#2af91918ee12d9d32914feb13f5326658461b451" - integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA== + version "15.7.14" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.14.tgz#1433419d73b2a7ebfc6918dcefd2ec0d5cd698f2" + integrity sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ== "@types/react-test-renderer@^18.0.7": - version "18.3.0" - resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.3.0.tgz#839502eae70058a4ae161f63385a8e7929cef4c0" - integrity sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw== + version "18.3.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.3.1.tgz#225bfe8d4ad7ee3b04c2fa27642bb74274a5961d" + integrity sha512-vAhnk0tG2eGa37lkU9+s5SoroCsRI08xnsWFiAXOuPH2jqzMbcXvKExXViPi1P5fIklDeCvXqyrdmipFaSkZrA== dependencies: - "@types/react" "*" + "@types/react" "^18" -"@types/react@*": - version "18.3.11" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.11.tgz#9d530601ff843ee0d7030d4227ea4360236bd537" - integrity sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ== +"@types/react@^18": + version "18.3.16" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.16.tgz#5326789125fac98b718d586ad157442ceb44ff28" + integrity sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw== dependencies: "@types/prop-types" "*" csstype "^3.0.2" @@ -2900,10 +2899,10 @@ resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304" integrity sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA== -"@types/use-sync-external-store@^0.0.3": - version "0.0.3" - resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz#b6725d5f4af24ace33b36fafd295136e75509f43" - integrity sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA== +"@types/use-sync-external-store@^0.0.6": + version "0.0.6" + resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz#60be8d21baab8c305132eb9cb912ed497852aadc" + integrity sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg== "@types/yargs-parser@*": version "21.0.3" @@ -2931,6 +2930,51 @@ dependencies: "@types/yargs-parser" "*" +"@typescript-eslint/scope-manager@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.18.0.tgz#30b040cb4557804a7e2bcc65cf8fdb630c96546f" + integrity sha512-PNGcHop0jkK2WVYGotk/hxj+UFLhXtGPiGtiaWgVBVP1jhMoMCHlTyJA+hEj4rszoSdLTK3fN4oOatrL0Cp+Xw== + dependencies: + "@typescript-eslint/types" "8.18.0" + "@typescript-eslint/visitor-keys" "8.18.0" + +"@typescript-eslint/types@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.18.0.tgz#3afcd30def8756bc78541268ea819a043221d5f3" + integrity sha512-FNYxgyTCAnFwTrzpBGq+zrnoTO4x0c1CKYY5MuUTzpScqmY5fmsh2o3+57lqdI3NZucBDCzDgdEbIaNfAjAHQA== + +"@typescript-eslint/typescript-estree@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.18.0.tgz#d8ca785799fbb9c700cdff1a79c046c3e633c7f9" + integrity sha512-rqQgFRu6yPkauz+ms3nQpohwejS8bvgbPyIDq13cgEDbkXt4LH4OkDMT0/fN1RUtzG8e8AKJyDBoocuQh8qNeg== + dependencies: + "@typescript-eslint/types" "8.18.0" + "@typescript-eslint/visitor-keys" "8.18.0" + debug "^4.3.4" + fast-glob "^3.3.2" + is-glob "^4.0.3" + minimatch "^9.0.4" + semver "^7.6.0" + ts-api-utils "^1.3.0" + +"@typescript-eslint/utils@^8.15.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.18.0.tgz#48f67205d42b65d895797bb7349d1be5c39a62f7" + integrity sha512-p6GLdY383i7h5b0Qrfbix3Vc3+J2k6QWw6UMUeY5JGfm3C5LbZ4QIZzJNoNOfgyRe0uuYKjvVOsO/jD4SJO+xg== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + "@typescript-eslint/scope-manager" "8.18.0" + "@typescript-eslint/types" "8.18.0" + "@typescript-eslint/typescript-estree" "8.18.0" + +"@typescript-eslint/visitor-keys@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.18.0.tgz#7b6d33534fa808e33a19951907231ad2ea5c36dd" + integrity sha512-pCh/qEA8Lb1wVIqNvBke8UaRjJ6wrAWkJO5yyIbs8Yx6TNGYyfNjOo61tLv+WwLvoLPp4BQ8B7AHKijl8NGUfw== + dependencies: + "@typescript-eslint/types" "8.18.0" + eslint-visitor-keys "^4.2.0" + "@urql/core@2.3.6": version "2.3.6" resolved "https://registry.yarnpkg.com/@urql/core/-/core-2.3.6.tgz#ee0a6f8fde02251e9560c5f17dce5cd90f948552" @@ -2940,9 +2984,9 @@ wonka "^4.0.14" "@urql/core@>=2.3.1": - version "5.0.6" - resolved "https://registry.yarnpkg.com/@urql/core/-/core-5.0.6.tgz#0d6624e30084f9137f78dc6c5bb8a599cba7f9dc" - integrity sha512-38rgSDqVNihFDauw1Pm9V7XLWIKuK8V9CKgrUF7/xEKinze8ENKP1ZeBhkG+dxWzJan7CHK+SLl46kAdvZwIlA== + version "5.1.0" + resolved "https://registry.yarnpkg.com/@urql/core/-/core-5.1.0.tgz#7f4b81f1aba1ca34ae6354763abeb87ff9af84ff" + integrity sha512-yC3sw8yqjbX45GbXxfiBY8GLYCiyW/hLBbQF9l3TJrv4ro00Y0ChkKaD9I2KntRxAVm9IYBqh0awX8fwWAe/Yw== dependencies: "@0no-co/graphql.web" "^1.0.5" wonka "^6.3.2" @@ -2980,10 +3024,10 @@ abab@^2.0.6: resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== -abitype@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.6.tgz#76410903e1d88e34f1362746e2d407513c38565b" - integrity sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A== +abitype@1.0.7, abitype@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.7.tgz#876a0005d211e1c9132825d45bcee7b46416b284" + integrity sha512-ZfYYSktDQUwc2eduYu8C4wOs+RDPmnRYMh7zNfzeMtGGgb0U+6tLGjixUic6mXf5xKKCcgT5Qp6cv39tOARVFw== abort-controller@^3.0.0: version "3.0.0" @@ -2992,7 +3036,7 @@ abort-controller@^3.0.0: dependencies: event-target-shim "^5.0.0" -accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.7: +accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.7: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== @@ -3016,9 +3060,9 @@ acorn-walk@^8.0.2: acorn "^8.11.0" acorn@^8.1.0, acorn@^8.11.0, acorn@^8.8.1, acorn@^8.8.2: - version "8.12.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" - integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== aes-js@3.0.0: version "3.0.0" @@ -3250,6 +3294,15 @@ available-typed-arrays@^1.0.7: dependencies: possible-typed-array-names "^1.0.0" +axios@^1.7.9: + version "1.7.9" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.9.tgz#d7d071380c132a24accda1b2cfc1535b79ec650a" + integrity sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + babel-core@^7.0.0-bridge.0: version "7.0.0-bridge.0" resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" @@ -3290,12 +3343,12 @@ babel-plugin-jest-hoist@^29.6.3: "@types/babel__traverse" "^7.0.6" babel-plugin-polyfill-corejs2@^0.4.10: - version "0.4.11" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" - integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== + version "0.4.12" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz#ca55bbec8ab0edeeef3d7b8ffd75322e210879a9" + integrity sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" semver "^6.3.1" babel-plugin-polyfill-corejs3@^0.10.6: @@ -3307,11 +3360,11 @@ babel-plugin-polyfill-corejs3@^0.10.6: core-js-compat "^3.38.0" babel-plugin-polyfill-regenerator@^0.6.1: - version "0.6.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" - integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + version "0.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz#abeb1f3f1c762eace37587f42548b08b57789bc8" + integrity sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q== dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: version "0.0.0-experimental-592953e-20240517" @@ -3327,9 +3380,9 @@ babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: zod-validation-error "^2.1.0" babel-plugin-react-native-web@~0.19.10: - version "0.19.12" - resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz#90481ee72b515020b06cb644abe1e8a16590bd86" - integrity sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w== + version "0.19.13" + resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz#bf919bd6f18c4689dd1a528a82bda507363b953d" + integrity sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ== babel-plugin-transform-flow-enums@^0.0.2: version "0.0.2" @@ -3430,9 +3483,9 @@ bmp-js@^0.1.0: integrity sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw== bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + version "4.12.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.1.tgz#215741fe3c9dba2d7e12c001d0cfdbae43975ba7" + integrity sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg== bn.js@^5.2.1: version "5.2.1" @@ -3499,15 +3552,15 @@ brorand@^1.1.0: resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== -browserslist@^4.23.3, browserslist@^4.24.0: - version "4.24.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.0.tgz#a1325fe4bc80b64fda169629fc01b3d6cecd38d4" - integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A== +browserslist@^4.24.0, browserslist@^4.24.2: + version "4.24.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" + integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== dependencies: - caniuse-lite "^1.0.30001663" - electron-to-chromium "^1.5.28" + caniuse-lite "^1.0.30001669" + electron-to-chromium "^1.5.41" node-releases "^2.0.18" - update-browserslist-db "^1.1.0" + update-browserslist-db "^1.1.1" bs58@^5.0.0: version "5.0.0" @@ -3564,10 +3617,10 @@ builtins@^1.0.3: resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== cacache@^18.0.2: version "18.0.4" @@ -3587,16 +3640,23 @@ cacache@^18.0.2: tar "^6.1.11" unique-filename "^3.0.0" -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== +call-bind-apply-helpers@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840" + integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g== dependencies: - es-define-property "^1.0.0" es-errors "^1.3.0" function-bind "^1.1.2" + +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7, call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" get-intrinsic "^1.2.4" - set-function-length "^1.2.1" + set-function-length "^1.2.2" caller-callsite@^2.0.0: version "2.0.0" @@ -3632,10 +3692,10 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001663: - version "1.0.30001668" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz#98e214455329f54bf7a4d70b49c9794f0fbedbed" - integrity sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw== +caniuse-lite@^1.0.30001669: + version "1.0.30001687" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz#d0ac634d043648498eedf7a3932836beba90ebae" + integrity sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ== centra@^2.7.0: version "2.7.0" @@ -3675,9 +3735,9 @@ char-regex@^1.0.2: integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== char-regex@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.1.tgz#6dafdb25f9d3349914079f010ba8d0e6ff9cd01e" - integrity sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw== + version "2.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.2.tgz#81385bb071af4df774bff8721d0ca15ef29ea0bb" + integrity sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg== charenc@0.0.2, charenc@~0.0.1: version "0.0.2" @@ -3872,7 +3932,7 @@ component-type@^1.2.1: resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.2.2.tgz#4458ecc0c1871efc6288bfaff0cbdab08141d079" integrity sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA== -compressible@~2.0.16: +compressible@~2.0.18: version "2.0.18" resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== @@ -3880,16 +3940,16 @@ compressible@~2.0.16: mime-db ">= 1.43.0 < 2" compression@^1.7.1: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + version "1.7.5" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.5.tgz#fdd256c0a642e39e314c478f6c2cd654edd74c93" + integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q== dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" + bytes "3.1.2" + compressible "~2.0.18" debug "2.6.9" + negotiator "~0.6.4" on-headers "~1.0.2" - safe-buffer "5.1.2" + safe-buffer "5.2.1" vary "~1.1.2" concat-map@0.0.1: @@ -3913,9 +3973,9 @@ convert-source-map@^2.0.0: integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== cookie-signature@^1.1.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.2.1.tgz#790dea2cce64638c7ae04d9fabed193bd7ccf3b4" - integrity sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw== + version "1.2.2" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.2.2.tgz#57c7fc3cc293acab9fec54d73e15690ebe4a1793" + integrity sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg== cookie@^0.6.0: version "0.6.0" @@ -3923,11 +3983,11 @@ cookie@^0.6.0: integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== core-js-compat@^3.38.0: - version "3.38.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.1.tgz#2bc7a298746ca5a7bcb9c164bcb120f2ebc09a09" - integrity sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw== + version "3.39.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.39.0.tgz#b12dccb495f2601dc860bdbe7b4e3ffa8ba63f61" + integrity sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw== dependencies: - browserslist "^4.23.3" + browserslist "^4.24.2" core-util-is@~1.0.0: version "1.0.3" @@ -3965,9 +4025,9 @@ cross-fetch@^3.1.5: node-fetch "^2.6.12" cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + version "6.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.6.tgz#30d0efa0712ddb7eb5a76e1e8721bffafa6b5d57" + integrity sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw== dependencies: nice-try "^1.0.4" path-key "^2.0.1" @@ -3976,9 +4036,9 @@ cross-spawn@^6.0.0: which "^1.2.9" cross-spawn@^7.0.0, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -4187,9 +4247,9 @@ debug@2.6.9, debug@^2.2.0, debug@^2.6.9: ms "2.0.0" debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: ms "^2.1.3" @@ -4215,6 +4275,11 @@ decode-uri-component@^0.2.2: resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== +dedent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" + integrity sha512-cSfRWjXJtZQeRuZGVvDrJroCR5V2UvBNUMHsPCdNYzuAG8b9V8aAy3KUcdQrGQPXs17Y+ojbPh1aOCplg9YR9g== + dedent@^1.0.0: version "1.5.3" resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" @@ -4384,16 +4449,25 @@ domutils@^3.0.1: domhandler "^5.0.3" dotenv-expand@~11.0.6: - version "11.0.6" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.6.tgz#f2c840fd924d7c77a94eff98f153331d876882d3" - integrity sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g== + version "11.0.7" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz#af695aea007d6fdc84c86cd8d0ad7beb40a0bd08" + integrity sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA== dependencies: - dotenv "^16.4.4" + dotenv "^16.4.5" -dotenv@^16.4.4, dotenv@~16.4.5: - version "16.4.5" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" - integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== +dotenv@^16.4.5, dotenv@~16.4.5: + version "16.4.7" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz#0e20c5b82950140aa99be360a8a5f52335f53c26" + integrity sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ== + +dunder-proto@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.0.tgz#c2fce098b3c8f8899554905f4377b6d85dabaa80" + integrity sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-errors "^1.3.0" + gopd "^1.2.0" eastasianwidth@^0.2.0: version "0.2.0" @@ -4405,10 +4479,10 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.5.28: - version "1.5.37" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.37.tgz#1660fb87d2bc82a3f8a652ef78eed17cc0d3ef4f" - integrity sha512-u7000ZB/X0K78TaQqXZ5ktoR7J79B9US7IkE4zyvcILYwOGY2Tx9GRPYstn7HmuPcMxZ+BDGqIsyLpZQi9ufPw== +electron-to-chromium@^1.5.41: + version "1.5.72" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz#a732805986d3a5b5fedd438ddf4616c7d78ac2df" + integrity sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw== elliptic@6.5.4: version "6.5.4" @@ -4497,10 +4571,10 @@ errorhandler@^1.5.1: accepts "~1.3.7" escape-html "~1.0.3" -es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: - version "1.23.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" - integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.5: + version "1.23.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.5.tgz#f4599a4946d57ed467515ed10e4f157289cd52fb" + integrity sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ== dependencies: array-buffer-byte-length "^1.0.1" arraybuffer.prototype.slice "^1.0.3" @@ -4517,7 +4591,7 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: function.prototype.name "^1.1.6" get-intrinsic "^1.2.4" get-symbol-description "^1.0.2" - globalthis "^1.0.3" + globalthis "^1.0.4" gopd "^1.0.1" has-property-descriptors "^1.0.2" has-proto "^1.0.3" @@ -4533,10 +4607,10 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: is-string "^1.0.7" is-typed-array "^1.1.13" is-weakref "^1.0.2" - object-inspect "^1.13.1" + object-inspect "^1.13.3" object-keys "^1.1.1" object.assign "^4.1.5" - regexp.prototype.flags "^1.5.2" + regexp.prototype.flags "^1.5.3" safe-array-concat "^1.1.2" safe-regex-test "^1.0.3" string.prototype.trim "^1.2.9" @@ -4549,12 +4623,10 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: unbox-primitive "^1.0.2" which-typed-array "^1.1.15" -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" @@ -4578,13 +4650,13 @@ es-set-tostringtag@^2.0.3: hasown "^2.0.1" es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18" + integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" + is-callable "^1.2.7" + is-date-object "^1.0.5" + is-symbol "^1.0.4" escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" @@ -4622,6 +4694,16 @@ escodegen@^2.0.0: optionalDependencies: source-map "~0.6.1" +eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint-visitor-keys@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45" + integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== + esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" @@ -4683,7 +4765,7 @@ event-target-shim@^5.0.0, event-target-shim@^5.0.1: resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== -eventemitter3@^5.0.1: +eventemitter3@5.0.1, eventemitter3@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== @@ -4785,38 +4867,38 @@ expo-crypto@^13.0.2: base64-js "^1.3.0" expo-dev-client@~4.0.26: - version "4.0.28" - resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-4.0.28.tgz#3a345662ca2b2dfd7d0fa18e537cb75abd9a563c" - integrity sha512-wz5G4vY3Gbk5GuQTyijdqY4Hwr/NDt5OUTErbOu1vd4XRIAsI+8IkK5hsBUhGmqrdkYnP5NxxOxC/soFzX/9+w== + version "4.0.29" + resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-4.0.29.tgz#86683c584db6b787828b10e2a049f810a246441d" + integrity sha512-aANlw9dC4PJEPaRNpe+X5xwyYI+aCIcbZklAAsFlkv2/05gLrsvAFgmQpRtowAzF+VggHWde1eKUOeUccAYIEg== dependencies: - expo-dev-launcher "4.0.28" - expo-dev-menu "5.0.22" - expo-dev-menu-interface "1.8.3" + expo-dev-launcher "4.0.29" + expo-dev-menu "5.0.23" + expo-dev-menu-interface "1.8.4" expo-manifests "~0.14.0" expo-updates-interface "~0.16.2" -expo-dev-launcher@4.0.28: - version "4.0.28" - resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-4.0.28.tgz#6097f4beb4d000bcc201f1b69dcd516e2b10247c" - integrity sha512-goE7jcaGVA2zu4gV3/hQ9RXqGhUZZAu339VYNLbwPdaNCzFaG6A8MZHg18gytCUnZ5QkRJsYi4q/8YcwUCASlQ== +expo-dev-launcher@4.0.29: + version "4.0.29" + resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-4.0.29.tgz#c655d842802f696ad6a5e446c60d20c1e453d175" + integrity sha512-0a0SL8mc4FrqPeGxJHe9kf0kG+Di+38Gd+HP5DEL9dcOa8m2qffKnk22UcyujCT6+Qk0OUK1s53nnfqFB26uVw== dependencies: ajv "8.11.0" - expo-dev-menu "5.0.22" + expo-dev-menu "5.0.23" expo-manifests "~0.14.0" resolve-from "^5.0.0" semver "^7.6.0" -expo-dev-menu-interface@1.8.3: - version "1.8.3" - resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.3.tgz#8c1262e29e0124fc5932a129c95b36de56656b20" - integrity sha512-QM0LRozeFT5Ek0N7XpV93M+HMdEKRLEOXn0aW5M3uoUlnqC1+PLtF3HMy3k3hMKTTE/kJ1y1Z7akH07T0lunCQ== +expo-dev-menu-interface@1.8.4: + version "1.8.4" + resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.4.tgz#fa23bf3228ea51cf412599fcb715c27259ffdd84" + integrity sha512-FpYI57EUu9qTSOOi+FZJ58xkCGJK7QD0mTiXK/y1I8lRdZGjCmdBqVvC4dAx2GcbIT78EPxaVf4/90tK/KRK6A== -expo-dev-menu@5.0.22: - version "5.0.22" - resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-5.0.22.tgz#30e16b6709759edb027e492fc96d262ee063b0c8" - integrity sha512-VzpdQReAtjbI1qIuwOf0sUzf91HsfGThojgJD9Ez0eca12qY5tTGYzHa1EM9V+zIcNuNZ7+A8bHJJdmZ4zvU6g== +expo-dev-menu@5.0.23: + version "5.0.23" + resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-5.0.23.tgz#7e6d6fd93c54ca955e8a69601a0b1991b64389b3" + integrity sha512-ztDvrSdFGkRbMoQlGLyKMS6CslMGylonVW4kQHUrBQApCL0c2NtRwLlr2bA1SXF0S7qYdPPg/ayLnj7DDR5X2w== dependencies: - expo-dev-menu-interface "1.8.3" + expo-dev-menu-interface "1.8.4" semver "^7.5.4" expo-file-system@~17.0.1: @@ -4883,9 +4965,9 @@ expo-modules-core@1.12.26: invariant "^2.2.4" expo-router@~3.5.23: - version "3.5.23" - resolved "https://registry.yarnpkg.com/expo-router/-/expo-router-3.5.23.tgz#da038e28c64cb69f19d046d7c651c389c5207a3e" - integrity sha512-Re2kYcxov67hWrcjuu0+3ovsLxYn79PuX6hgtYN20MgigY5ttX79KOIBEVGTO3F3y9dxSrGHyy5Z14BcO+usGQ== + version "3.5.24" + resolved "https://registry.yarnpkg.com/expo-router/-/expo-router-3.5.24.tgz#ac834b66c023151a3f919c456805cdd7377a677f" + integrity sha512-wFi+PIUrOntF5cgg0PgBMlkxEZlWedIv5dWnPFEzN6Tr3A3bpsqdDLgOEIwvwd+pxn5DLzykTmg9EkQ1pPGspw== dependencies: "@expo/metro-runtime" "3.2.3" "@expo/server" "^0.4.0" @@ -4893,7 +4975,7 @@ expo-router@~3.5.23: "@react-navigation/bottom-tabs" "~6.5.7" "@react-navigation/native" "~6.1.6" "@react-navigation/native-stack" "~6.9.12" - expo-splash-screen "0.27.5" + expo-splash-screen "0.27.7" react-native-helmet-async "2.0.4" schema-utils "^4.0.1" @@ -4902,19 +4984,12 @@ expo-secure-store@^13.0.2: resolved "https://registry.yarnpkg.com/expo-secure-store/-/expo-secure-store-13.0.2.tgz#ba8f6076fc38062a28bb2ce5edab9cd28ef88598" integrity sha512-3QYgoneo8p8yeeBPBiAfokNNc2xq6+n8+Ob4fAlErEcf4H7Y72LH+K/dx0nQyWau2ZKZUXBxyyfuHFyVKrEVLg== -expo-splash-screen@0.27.5: - version "0.27.5" - resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.27.5.tgz#bcc1ebb4e761e19a1f2112469f3d424a36fb1e2c" - integrity sha512-9rdZuLkFCfgJBxrheUsOEOIW6Rp+9NVlpSE0hgXQwbTCLTncf00IHSE8/L2NbFyeDLNjof1yZBppaV7tXHRUzA== - dependencies: - "@expo/prebuild-config" "7.0.6" - -expo-splash-screen@~0.27.5: - version "0.27.6" - resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.27.6.tgz#d57f3f80d22f4ada90fd2edf573bbc148f956f67" - integrity sha512-joUwZQS48k3VMnucQ0Y8Dle1t1FyIvluQA4kjuPx2x7l2dRrfctbo34ahTnC0p1o2go5oN2iEnSTOElY4wRQHw== +expo-splash-screen@0.27.7, expo-splash-screen@~0.27.5: + version "0.27.7" + resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.27.7.tgz#52171be54d8c008880d928e802819d767fbd3c12" + integrity sha512-s+eGcG185878nixlrjhhLD6UDYrvoqBUaBkIEozBVWFg3pkdsKpONPiUAco4XR3h7I/9ODq4quN28RJLFO+s0Q== dependencies: - "@expo/prebuild-config" "7.0.8" + "@expo/prebuild-config" "7.0.9" expo-status-bar@~1.12.1: version "1.12.1" @@ -4940,14 +5015,14 @@ expo-web-browser@^13.0.3: integrity sha512-HXb7y82ApVJtqk8tManyudtTrCtx8xcUnVzmJECeHCB0SsWSQ+penVLZxJkcyATWoJOsFMnfVSVdrTcpKKGszQ== expo@~51.0.38: - version "51.0.38" - resolved "https://registry.yarnpkg.com/expo/-/expo-51.0.38.tgz#e4127b230454a34a507cfb9f1a2e4b3855cb0579" - integrity sha512-/B9npFkOPmv6WMIhdjQXEY0Z9k/67UZIVkodW8JxGIXwKUZAGHL+z1R5hTtWimpIrvVhyHUFU3f8uhfEKYhHNQ== + version "51.0.39" + resolved "https://registry.yarnpkg.com/expo/-/expo-51.0.39.tgz#d9efab081a91a0d3e925b0e4648722b13a8fceae" + integrity sha512-Cs/9xopyzJrpXWbyVUZnr37rprdFJorRgfSp6cdBfvbjxZeKnw2MEu7wJwV/s626i5lZTPGjZPHUF9uQvt51cg== dependencies: "@babel/runtime" "^7.20.0" - "@expo/cli" "0.18.30" + "@expo/cli" "0.18.31" "@expo/config" "9.0.4" - "@expo/config-plugins" "8.0.10" + "@expo/config-plugins" "8.0.11" "@expo/metro-config" "0.18.11" "@expo/vector-icons" "^14.0.3" babel-preset-expo "~11.0.15" @@ -5002,9 +5077,9 @@ fast-text-encoding@^1.0.6: integrity sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w== fast-uri@^3.0.1: - version "3.0.2" - resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.2.tgz#d78b298cf70fd3b752fd951175a3da6a7b48f024" - integrity sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row== + version "3.0.3" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.3.tgz#892a1c91802d5d7860de728f18608a0573142241" + integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw== fast-xml-parser@^4.0.12, fast-xml-parser@^4.2.4: version "4.5.0" @@ -5141,9 +5216,9 @@ flow-enums-runtime@^0.0.6: integrity sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw== flow-parser@0.*: - version "0.248.1" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.248.1.tgz#0de3af63d27970d145a02d2c9e0e7e698fb6e92d" - integrity sha512-fkCfVPelbTzSVp+jVwSvEyc+I4WG8MNhRG/EWSZZTlgHAMEdhXJaFEbfErXxMktboMhVGchvEFhWxkzNGM1m2A== + version "0.256.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.256.0.tgz#2a453925caa0f40beb83ef72ea6479ef7b25d739" + integrity sha512-HFb/GgB7hq+TYosLJuMLdLp8aGlyAVfrJaTvcM0w2rz2T33PjkVbRU419ncK/69cjowUksewuspkBheq9ZX9Hw== follow-redirects@^1.15.6: version "1.15.9" @@ -5281,16 +5356,19 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== +get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.5" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.5.tgz#dfe7dd1b30761b464fe51bf4bb00ac7c37b681e7" + integrity sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg== dependencies: + call-bind-apply-helpers "^1.0.0" + dunder-proto "^1.0.0" + es-define-property "^1.0.1" es-errors "^1.3.0" function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" get-package-type@^0.1.0: version "0.1.0" @@ -5392,7 +5470,7 @@ globals@^11.1.0: resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globalthis@^1.0.3: +globalthis@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== @@ -5412,12 +5490,10 @@ globby@^11.0.1: merge2 "^1.4.1" slash "^3.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" +gopd@^1.0.1, gopd@^1.1.0, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== graceful-fs@^4.1.11, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" @@ -5436,7 +5512,7 @@ graphql@15.8.0: resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38" integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== -has-bigints@^1.0.1, has-bigints@^1.0.2: +has-bigints@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== @@ -5458,15 +5534,17 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== +has-proto@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5" + integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== + dependencies: + dunder-proto "^1.0.0" -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" @@ -5544,6 +5622,13 @@ hosted-git-info@^3.0.2: dependencies: lru-cache "^6.0.0" +hosted-git-info@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.2.tgz#9b751acac097757667f30114607ef7b661ff4f17" + integrity sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w== + dependencies: + lru-cache "^10.0.1" + html-encoding-sniffer@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" @@ -5704,7 +5789,7 @@ internal-slot@^1.0.7: resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== -invariant@2.2.4, invariant@^2.2.4: +invariant@2.2.4, invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== @@ -5747,27 +5832,34 @@ is-arrayish@^0.3.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== dependencies: - has-bigints "^1.0.1" + has-tostringtag "^1.0.0" -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== +is-bigint@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672" + integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + has-bigints "^1.0.2" + +is-boolean-object@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.0.tgz#9743641e80a62c094b5941c5bb791d66a88e497a" + integrity sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw== + dependencies: + call-bind "^1.0.7" + has-tostringtag "^1.0.2" is-buffer@~1.1.1, is-buffer@~1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: +is-callable@^1.1.3, is-callable@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== @@ -5786,7 +5878,7 @@ is-data-view@^1.0.1: dependencies: is-typed-array "^1.1.13" -is-date-object@^1.0.1: +is-date-object@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== @@ -5813,6 +5905,13 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-finalizationregistry@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz#d74a7d0c5f3578e34a20729e69202e578d495dc2" + integrity sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA== + dependencies: + call-bind "^1.0.7" + is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" @@ -5833,7 +5932,7 @@ is-generator-fn@^2.0.0: resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== -is-generator-function@^1.0.7: +is-generator-function@^1.0.10, is-generator-function@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== @@ -5847,7 +5946,7 @@ is-glob@^2.0.0: dependencies: is-extglob "^1.0.0" -is-glob@^4.0.1: +is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== @@ -5866,17 +5965,23 @@ is-invalid-path@^0.1.0: dependencies: is-glob "^2.0.0" +is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + is-negative-zero@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== +is-number-object@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.0.tgz#5a867e9ecc3d294dda740d9f127835857af7eb05" + integrity sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw== dependencies: - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + has-tostringtag "^1.0.2" is-number@^7.0.0: version "7.0.0" @@ -5911,12 +6016,19 @@ is-potential-custom-element-name@^1.0.1: integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.0.tgz#41b9d266e7eb7451312c64efc37e8a7d453077cf" + integrity sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + gopd "^1.1.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: version "1.0.3" @@ -5935,19 +6047,22 @@ is-stream@^2.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== +is-string@^1.0.7, is-string@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.0.tgz#8cb83c5d57311bf8058bc6c8db294711641da45d" + integrity sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g== dependencies: - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + has-tostringtag "^1.0.2" -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== +is-symbol@^1.0.4, is-symbol@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.0.tgz#ae993830a56d4781886d39f9f0a46b3e89b7b60b" + integrity sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A== dependencies: - has-symbols "^1.0.2" + call-bind "^1.0.7" + has-symbols "^1.0.3" + safe-regex-test "^1.0.3" is-typed-array@^1.1.13, is-typed-array@^1.1.3: version "1.1.13" @@ -5968,6 +6083,11 @@ is-valid-path@^0.1.1: dependencies: is-invalid-path "^0.1.0" +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + is-weakref@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" @@ -5975,6 +6095,14 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" +is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + is-wsl@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" @@ -6619,7 +6747,12 @@ jsesc@^2.5.1: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== -jsesc@^3.0.2, jsesc@~3.0.2: +jsesc@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== + +jsesc@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== @@ -6695,9 +6828,9 @@ leven@^3.1.0: integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== libphonenumber-js@^1.10.31, libphonenumber-js@^1.10.44: - version "1.11.12" - resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.11.12.tgz#e108a4632048255f30b872bb1abbb3356f290fbb" - integrity sha512-QkJn9/D7zZ1ucvT++TQSvZuSA2xAWeUytU+DiEQwbPKLyrDpvbul2AFs1CGbRAPpSCCk47aRAb5DX5mmcayp4g== + version "1.11.16" + resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.11.16.tgz#3aa64a8a95ffc59253a5df3009940a9604a02102" + integrity sha512-Noyazmt0yOvnG0OeRY45Cd1ur8G7Z0HWVkuCuKe+yysGNxPQwBAODBQQ40j0AIagi9ZWurfmmZWNlpg4h4W+XQ== lighthouse-logger@^1.0.0: version "1.4.2" @@ -6850,6 +6983,19 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +lottie-ios@3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/lottie-ios/-/lottie-ios-3.4.0.tgz#a23be299760aefb44298b9cb5f60df489030adbf" + integrity sha512-qnV8UrawwnBRf5V0no2yxlPUE69vzfFqpxEEXGTZhb1/WX1xewqVNYvtbguqwQkdu9IT9D5WC1U9CHZ1KbkGDw== + +lottie-react-native@^5.1.5: + version "5.1.6" + resolved "https://registry.yarnpkg.com/lottie-react-native/-/lottie-react-native-5.1.6.tgz#6ae72829c3c0b95952dddd3d78c043f4dfbcb487" + integrity sha512-vhdeZstXMfuVKwnddYWjJgQ/1whGL58IJEJu/iSf0XQ5gAb4pp/+vy91mdYQLezlb8Aw4Vu3fKnqErJL2hwchg== + dependencies: + invariant "^2.2.2" + react-native-safe-modules "^1.0.3" + lru-cache@^10.0.1, lru-cache@^10.2.0: version "10.4.3" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" @@ -7161,7 +7307,7 @@ metro@0.80.12, metro@^0.80.3: ws "^7.5.10" yargs "^17.6.2" -micromatch@^4.0.2, micromatch@^4.0.4: +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -7335,9 +7481,9 @@ mz@^2.7.0: thenify-all "^1.0.0" nanoid@^3.1.23, nanoid@^3.3.7: - version "3.3.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" - integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== natural-compare@^1.4.0: version "1.4.0" @@ -7349,6 +7495,11 @@ negotiator@0.6.3: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +negotiator@~0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" + integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== + neo-async@^2.5.0: version "2.6.2" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" @@ -7399,9 +7550,9 @@ node-int64@^0.4.0: integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== node-releases@^2.0.18: - version "2.0.18" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + version "2.0.19" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== node-stream-zip@^1.9.1: version "1.15.0" @@ -7426,6 +7577,16 @@ normalize-path@^3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +npm-package-arg@^11.0.0: + version "11.0.3" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.3.tgz#dae0c21199a99feca39ee4bfb074df3adac87e2d" + integrity sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw== + dependencies: + hosted-git-info "^7.0.0" + proc-log "^4.0.0" + semver "^7.3.5" + validate-npm-package-name "^5.0.0" + npm-package-arg@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-7.0.0.tgz#52cdf08b491c0c59df687c4c925a89102ef794a5" @@ -7463,9 +7624,9 @@ nullthrows@^1.1.1: integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== nwsapi@^2.2.2: - version "2.2.13" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.13.tgz#e56b4e98960e7a040e5474536587e599c4ff4655" - integrity sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ== + version "2.2.16" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.16.tgz#177760bba02c351df1d2644e220c31dfec8cdb43" + integrity sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ== ob1@0.80.12: version "0.80.12" @@ -7479,10 +7640,10 @@ object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== +object-inspect@^1.13.1, object-inspect@^1.13.3: + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== object-keys@^1.1.1: version "1.1.1" @@ -7613,6 +7774,19 @@ osenv@^0.1.5: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +ox@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ox/-/ox-0.1.2.tgz#0f791be2ccabeaf4928e6d423498fe1c8094e560" + integrity sha512-ak/8K0Rtphg9vnRJlbOdaX9R7cmxD2MiSthjWGaQdMk3D7hrAlDoM+6Lxn7hN52Za3vrXfZ7enfke/5WjolDww== + dependencies: + "@adraffy/ens-normalize" "^1.10.1" + "@noble/curves" "^1.6.0" + "@noble/hashes" "^1.5.0" + "@scure/bip32" "^1.5.0" + "@scure/bip39" "^1.4.0" + abitype "^1.0.6" + eventemitter3 "5.0.1" + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" @@ -7724,9 +7898,9 @@ parse-png@^2.1.0: pngjs "^3.3.0" parse5@^7.0.0, parse5@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.0.tgz#8a0591ce9b7c5e2027173ab737d4d3fc3d826fab" - integrity sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA== + version "7.2.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a" + integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== dependencies: entities "^4.5.0" @@ -7792,9 +7966,9 @@ peek-readable@^4.1.0: integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg== permissionless@^0.2.17: - version "0.2.17" - resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.17.tgz#fca70dededbd4a7006de08988003042c184dc6f3" - integrity sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A== + version "0.2.22" + resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.22.tgz#77253208cdbdce7f2b519895146e519743952db4" + integrity sha512-6pyXxSXomHXmCgwST4/MM0CM3ISBhj8R0Il+g46RlDOZgVOWwwQxaVmbbg7vZBNulIg5PYFjVaFCNISc2Ia2uA== phin@^2.9.1: version "2.9.3" @@ -7808,10 +7982,10 @@ phin@^3.7.1: dependencies: centra "^2.7.0" -picocolors@^1.0.0, picocolors@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" - integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== +picocolors@^1.0.0, picocolors@^1.1.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" @@ -7884,18 +8058,18 @@ postcss-value-parser@^4.2.0: integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@~8.4.32: - version "8.4.47" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== + version "8.4.49" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== dependencies: nanoid "^3.3.7" - picocolors "^1.1.0" + picocolors "^1.1.1" source-map-js "^1.2.1" prettier@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" - integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== + version "3.4.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.2.tgz#a5ce1fb522a588bf2b78ca44c6e6fe5aa5a2b13f" + integrity sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ== pretty-bytes@5.6.0: version "5.6.0" @@ -7931,6 +8105,11 @@ pretty-format@^29.0.0, pretty-format@^29.7.0: ansi-styles "^5.0.0" react-is "^18.0.0" +proc-log@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034" + integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA== + process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -7968,7 +8147,7 @@ prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.2: kleur "^3.0.3" sisteransi "^1.0.5" -prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: +prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -7982,10 +8161,17 @@ property-expr@^2.0.5: resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.6.tgz#f77bc00d5928a6c748414ad12882e83f24aec1e8" integrity sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA== +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + psl@^1.1.33: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + version "1.15.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.15.0.tgz#bdace31896f1d97cec6a79e8224898ce93d974c6" + integrity sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w== + dependencies: + punycode "^2.3.1" pump@^3.0.0: version "3.0.2" @@ -8000,7 +8186,7 @@ punycode@^1.4.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== -punycode@^2.1.0, punycode@^2.1.1: +punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== @@ -8025,9 +8211,9 @@ qrcode@^1.5.1: yargs "^15.3.1" qs@^6.12.3: - version "6.13.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" - integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== + version "6.13.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.1.tgz#3ce5fc72bd3a8171b85c99b93c65dd20b7d1b16e" + integrity sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg== dependencies: side-channel "^1.0.6" @@ -8105,9 +8291,9 @@ react-freeze@^1.0.0: integrity sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA== react-hook-form@^7.53.0: - version "7.53.0" - resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.53.0.tgz#3cf70951bf41fa95207b34486203ebefbd3a05ab" - integrity sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ== + version "7.54.0" + resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.54.0.tgz#46bd9142d65fd16ac064a2bbf4dc0333e2d6840d" + integrity sha512-PS05+UQy/IdSbJNojBypxAo9wllhHgGmyr8/dyGQcPoiMf3e7Dfb9PWYVRco55bLbxH9S+1yDDJeTdlYCSxO3A== "react-is@^16.12.0 || ^17.0.0 || ^18.0.0", react-is@^18.0.0, react-is@^18.2.0: version "18.3.1" @@ -8124,16 +8310,25 @@ react-is@^17.0.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== +react-native-animatable@1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/react-native-animatable/-/react-native-animatable-1.3.3.tgz#a13a4af8258e3bb14d0a9d839917e9bb9274ec8a" + integrity sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w== + dependencies: + prop-types "^15.7.2" + +react-native-draggable-flatlist@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/react-native-draggable-flatlist/-/react-native-draggable-flatlist-4.0.1.tgz#2f027d387ba4b8f3eb0907340e32cb85e6460df2" + integrity sha512-ZO1QUTNx64KZfXGXeXcBfql67l38X7kBcJ3rxUVZzPHt5r035GnGzIC0F8rqSXp6zgnwgUYMfB6zQc5PKmPL9Q== + dependencies: + "@babel/preset-typescript" "^7.17.12" + react-native-fast-image@^8.6.3: version "8.6.3" resolved "https://registry.yarnpkg.com/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz#6edc3f9190092a909d636d93eecbcc54a8822255" integrity sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg== -react-native-flipper@^0.164.0: - version "0.164.0" - resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.164.0.tgz#64f6269a86a13a72e30f53ba9f5281d2073a7697" - integrity sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA== - react-native-gesture-handler@~2.16.1: version "2.16.2" resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz#032bd2a07334292d7f6cff1dc9d1ec928f72e26d" @@ -8173,10 +8368,18 @@ react-native-linear-gradient@^2.8.3: resolved "https://registry.yarnpkg.com/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz#9a116649f86d74747304ee13db325e20b21e564f" integrity sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA== +react-native-modal@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-13.0.1.tgz#691f1e646abb96fa82c1788bf18a16d585da37cd" + integrity sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw== + dependencies: + prop-types "^15.6.2" + react-native-animatable "1.3.3" + react-native-otp-entry@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/react-native-otp-entry/-/react-native-otp-entry-1.7.3.tgz#16bc161eb9f30ab60840973fdaad629cb260e610" - integrity sha512-BN/oEpNMfA0cnw9tB9Oq6PZZQztOiq1Ow/M+rAFd0Nll9aO1gwfCwymgIGI89/+63FkmMbv39LcgsfkZNAYzWw== + version "1.8.1" + resolved "https://registry.yarnpkg.com/react-native-otp-entry/-/react-native-otp-entry-1.8.1.tgz#e9ee5df57cbd32580b23f55a6db5a37b991c11cd" + integrity sha512-uN5BZNzh5YkU9rNzUI1hFQxaz4R6PAVnDN+udB3fblt+XJgqTfVz+KEx8Z67/+Qga87m747oFysKOX1gI8UzLA== react-native-pager-view@6.3.0: version "6.3.0" @@ -8184,14 +8387,14 @@ react-native-pager-view@6.3.0: integrity sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA== react-native-passkeys@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/react-native-passkeys/-/react-native-passkeys-0.3.0.tgz#83bf8aacacfb7d2dc8577f5091cd176957b42333" - integrity sha512-xjdoZVRInwFXXD92jpUvSM1OGiEmJgPWm6xc4WFSHb7LnypJ4LjSbfofi59WwA/n7Z/25mcnqZNh5Xq4Viuk+Q== + version "0.3.1" + resolved "https://registry.yarnpkg.com/react-native-passkeys/-/react-native-passkeys-0.3.1.tgz#424f2a63b155605250bb3f178b1482850262c03f" + integrity sha512-3M9/V/IJeCXBLcQsIul7BX0x4YJC1X0yID9k9b7gfy1uf9N1JRZIKmndpWs2MVsnE0XnVk2TGVXt0aL0u3xfkw== react-native-qrcode-svg@^6.3.2: - version "6.3.2" - resolved "https://registry.yarnpkg.com/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.2.tgz#84b2bb37201589cff1ab58e7f7c884c5133fe47f" - integrity sha512-IJ0UoKd33ATm08K569SOAQx0tP/MTmSjwhIPfEfgbCUGQuU6JTfgDT7sm1TVgAwPbTuA10wwJJYgWXnnFBQ4FQ== + version "6.3.12" + resolved "https://registry.yarnpkg.com/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.12.tgz#ee2c34c836c0c58f0a7f2d79304bcf12b9e151a9" + integrity sha512-7Bx23ZdFNJJdVXyW9BJmFWdI5kccjnpotzmL3exkV0irUKTmj51jesxpn5sqtgVdYFE4IUVoGzdS+8qg6Ua9BA== dependencies: prop-types "^15.8.0" qrcode "^1.5.1" @@ -8216,6 +8419,13 @@ react-native-safe-area-context@4.10.5: resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz#a9c677a48bd273afa6876772062ce08e8af1f18d" integrity sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g== +react-native-safe-modules@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/react-native-safe-modules/-/react-native-safe-modules-1.0.3.tgz#f5f29bb9d09d17581193843d4173ad3054f74890" + integrity sha512-DUxti4Z+AgJ/ZsO5U7p3uSCUBko8JT8GvFlCeOXk9bMd+4qjpoDvMYpfbixXKgL88M+HwmU/KI1YFN6gsQZyBA== + dependencies: + dedent "^0.6.0" + react-native-screens@3.31.1: version "3.31.1" resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.31.1.tgz#909a890f669e32b0fb1b1410278b71ad2f8238f6" @@ -8240,9 +8450,9 @@ react-native-tab-view@^3.5.2: use-latest-callback "^0.1.5" react-native-web@~0.19.10: - version "0.19.12" - resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.12.tgz#30d1fd70bdff7886f43c0c2698629d830fade6bc" - integrity sha512-o2T0oztoVDQjztt4YksO9S1XRjoH/AqcSvifgWLrPJgGVbMWsfhILgl6lfUdEamVZzZSVV/2gqDVMAk/qq7mZw== + version "0.19.13" + resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.13.tgz#2d84849bf0251ec0e3a8072fda7f9a7c29375331" + integrity sha512-etv3bN8rJglrRCp/uL4p7l8QvUNUC++QwDbdZ8CB7BvZiMvsxfFIRM1j04vxNldG3uo2puRd6OSWR3ibtmc29A== dependencies: "@babel/runtime" "^7.18.6" "@react-native/normalize-colors" "^0.74.1" @@ -8254,9 +8464,9 @@ react-native-web@~0.19.10: styleq "^0.1.3" react-native-webview@^13.12.3: - version "13.12.3" - resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-13.12.3.tgz#3aa9d2fc982ba2681e56d3e96e22b63a0d929270" - integrity sha512-Y1I5YyDYyE7NC96RHLhd2nxh7ymLYOYLTefgx5ixxw2OToQK0ow3OJ+o77QcI1Tuevj5PCxwqC/14ceS/7yPJQ== + version "13.12.5" + resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-13.12.5.tgz#ed9eec1eda234d7cf18d329859b9bdebf7e258b6" + integrity sha512-INOKPom4dFyzkbxbkuQNfeRG9/iYnyRDzrDkJeyvSWgJAW2IDdJkWFJBS2v0RxIL4gqLgHkiIZDOfiLaNnw83Q== dependencies: escape-string-regexp "^4.0.0" invariant "2.2.4" @@ -8305,12 +8515,12 @@ react-native@0.74.5: yargs "^17.6.2" react-redux@^9.1.2: - version "9.1.2" - resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-9.1.2.tgz#deba38c64c3403e9abd0c3fbeab69ffd9d8a7e4b" - integrity sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w== + version "9.2.0" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-9.2.0.tgz#96c3ab23fb9a3af2cb4654be4b51c989e32366f5" + integrity sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g== dependencies: - "@types/use-sync-external-store" "^0.0.3" - use-sync-external-store "^1.0.0" + "@types/use-sync-external-store" "^0.0.6" + use-sync-external-store "^1.4.0" react-refresh@^0.14.0, react-refresh@^0.14.2: version "0.14.2" @@ -8341,10 +8551,10 @@ react@18.2.0: dependencies: loose-envify "^1.1.0" -reactotron-core-client@2.9.4: - version "2.9.4" - resolved "https://registry.yarnpkg.com/reactotron-core-client/-/reactotron-core-client-2.9.4.tgz#eabc520ca8b270ee264e20172279f921778b0a4b" - integrity sha512-0MVo8R2YVC0t6uEkFJbdelC0lOzJun/+qIOlEpIYh08VKiNVR7GYXevhZvJfSmMAUSVFoGVpeQyTbeW3brgSDQ== +reactotron-core-client@2.9.6: + version "2.9.6" + resolved "https://registry.yarnpkg.com/reactotron-core-client/-/reactotron-core-client-2.9.6.tgz#3130f06d85dec2a8d50404ffa4520f8c6cc04002" + integrity sha512-7krCkKn/uy8VF1UhSmgrhYsPJ2VNJ+btYSG0S8NBlhW/EtsRHUtLQy+tbBVg2cHaTHbejY4qrvr0yP5L7L2Osw== dependencies: reactotron-core-contract "0.2.4" @@ -8354,14 +8564,12 @@ reactotron-core-contract@0.2.4: integrity sha512-CmNYahBdk9uES4vimlRsoM1gAQA6T5gXTuJzDvduOjKd0IZufZjkxzBAvhpkX5OIkPl4Xlsv+1AHXLWSJSwFLA== reactotron-react-native@^5.1.9: - version "5.1.9" - resolved "https://registry.yarnpkg.com/reactotron-react-native/-/reactotron-react-native-5.1.9.tgz#1d9d557817e9f10f9c33c1339c54b46690f6ed97" - integrity sha512-tHkC5ZADXBJ9vRcs8TFEWOcK1QzHEzI3UnorwDDSU3hnWpwVt5MtxBcgQkicLIRWcPROe4lIJMf6SG9uc+opuA== + version "5.1.10" + resolved "https://registry.yarnpkg.com/reactotron-react-native/-/reactotron-react-native-5.1.10.tgz#572a1332839e0be7036e2d47328654d4252fe3ce" + integrity sha512-CD20odAESgH0K2YJCyfJLQg5K5Ho1qnk0QBB3SjD1yjt5BJhPuHjdXFyuED8PYLgOz+YwOX7jyK2/wu3TCp1OQ== dependencies: mitt "^3.0.1" - reactotron-core-client "2.9.4" - optionalDependencies: - react-native-flipper "^0.164.0" + reactotron-core-client "2.9.6" readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.2" @@ -8422,6 +8630,20 @@ redux@^5.0.1: resolved "https://registry.yarnpkg.com/redux/-/redux-5.0.1.tgz#97fa26881ce5746500125585d5642c77b6e9447b" integrity sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w== +reflect.getprototypeof@^1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz#c58afb17a4007b4d1118c07b92c23fca422c5d82" + integrity sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ== + dependencies: + call-bind "^1.0.8" + define-properties "^1.2.1" + dunder-proto "^1.0.0" + es-abstract "^1.23.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + gopd "^1.2.0" + which-builtin-type "^1.2.0" + regenerate-unicode-properties@^10.2.0: version "10.2.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz#626e39df8c372338ea9b8028d1f99dc3fd9c3db0" @@ -8444,7 +8666,7 @@ regenerator-runtime@^0.14.0: resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== -regexp.prototype.flags@^1.5.2: +regexp.prototype.flags@^1.5.3: version "1.5.3" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== @@ -8454,15 +8676,15 @@ regexp.prototype.flags@^1.5.2: es-errors "^1.3.0" set-function-name "^2.0.2" -regexpu-core@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.1.1.tgz#b469b245594cb2d088ceebc6369dceb8c00becac" - integrity sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw== +regexpu-core@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.2.0.tgz#0e5190d79e542bf294955dccabae04d3c7d53826" + integrity sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA== dependencies: regenerate "^1.4.2" regenerate-unicode-properties "^10.2.0" regjsgen "^0.8.0" - regjsparser "^0.11.0" + regjsparser "^0.12.0" unicode-match-property-ecmascript "^2.0.0" unicode-match-property-value-ecmascript "^2.1.0" @@ -8471,10 +8693,10 @@ regjsgen@^0.8.0: resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz#df23ff26e0c5b300a6470cad160a9d090c3a37ab" integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== -regjsparser@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.11.1.tgz#ae55c74f646db0c8fcb922d4da635e33da405149" - integrity sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ== +regjsparser@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.12.0.tgz#0e846df6c6530586429377de56e0475583b088dc" + integrity sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ== dependencies: jsesc "~3.0.2" @@ -8534,10 +8756,15 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== +resolve-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-workspace-root/-/resolve-workspace-root-2.0.0.tgz#a0098daa0067cd0efa6eb525c57c8fb4a61e78f8" + integrity sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw== + resolve.exports@^2.0.0, resolve.exports@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" - integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + version "2.0.3" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.3.tgz#41955e6f1b4013b7586f873749a635dea07ebe3f" + integrity sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A== resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.2: version "1.22.8" @@ -8607,16 +8834,16 @@ safe-array-concat@^1.1.2: has-symbols "^1.0.3" isarray "^2.0.5" -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@~5.2.0: +safe-buffer@5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + safe-regex-test@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" @@ -8753,17 +8980,12 @@ set-blocking@^2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-cookie-parser@^2.4.8: - version "2.7.0" - resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.0.tgz#ef5552b56dc01baae102acb5fc9fb8cd060c30f9" - integrity sha512-lXLOiqpkUumhRdFF3k1osNXCy9akgx/dyPZ5p8qAg9seJzXr5ZrlqZuWIMuY6ejOsVLE6flJ5/h3lsn57fQ/PQ== - -set-cookie-parser@^2.6.0: +set-cookie-parser@^2.4.8, set-cookie-parser@^2.6.0: version "2.7.1" resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz#3016f150072202dfbe90fadee053573cc89d2943" integrity sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ== -set-function-length@^1.2.1: +set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -8832,9 +9054,9 @@ shebang-regex@^3.0.0: integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.6.1, shell-quote@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + version "1.8.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.2.tgz#d2d83e057959d53ec261311e9e9b8f51dcb2934a" + integrity sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA== side-channel@^1.0.4, side-channel@^1.0.6: version "1.0.6" @@ -9320,9 +9542,9 @@ terminal-link@^2.1.1: supports-hyperlinks "^2.0.0" terser@^5.15.0: - version "5.34.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.34.1.tgz#af40386bdbe54af0d063e0670afd55c3105abeb6" - integrity sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA== + version "5.37.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.37.0.tgz#38aa66d1cfc43d0638fab54e43ff8a4f72a21ba3" + integrity sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -9407,11 +9629,6 @@ tmpl@1.0.5: resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -9473,15 +9690,20 @@ trim-right@^1.0.1: resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" integrity sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw== +ts-api-utils@^1.3.0: + version "1.4.3" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.3.tgz#bfc2215fe6528fecab2b0fba570a2e8a4263b064" + integrity sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw== + ts-interface-checker@^0.1.9: version "0.1.13" resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01" - integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== turbo-stream@2.4.0: version "2.4.0" @@ -9539,9 +9761,9 @@ typed-array-byte-length@^1.0.1: is-typed-array "^1.1.13" typed-array-byte-offset@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" - integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + version "1.0.3" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz#3fa9f22567700cc86aaf86a1e7176f74b59600f2" + integrity sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.7" @@ -9549,18 +9771,19 @@ typed-array-byte-offset@^1.0.2: gopd "^1.0.1" has-proto "^1.0.3" is-typed-array "^1.1.13" + reflect.getprototypeof "^1.0.6" typed-array-length@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" - integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + version "1.0.7" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d" + integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg== dependencies: call-bind "^1.0.7" for-each "^0.3.3" gopd "^1.0.1" - has-proto "^1.0.3" is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" + reflect.getprototypeof "^1.0.6" typedarray.prototype.slice@^1.0.3: version "1.0.3" @@ -9599,15 +9822,15 @@ undici-types@~5.26.4: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -undici-types@~6.19.2: - version "6.19.8" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" - integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== +undici-types@~6.20.0: + version "6.20.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433" + integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== undici@^6.11.1: - version "6.20.1" - resolved "https://registry.yarnpkg.com/undici/-/undici-6.20.1.tgz#fbb87b1e2b69d963ff2d5410a40ffb4c9e81b621" - integrity sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA== + version "6.21.0" + resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.0.tgz#4b3d3afaef984e07b48e7620c34ed8a285ed4cd4" + integrity sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.1" @@ -9685,7 +9908,7 @@ unpipe@~1.0.0: resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -update-browserslist-db@^1.1.0: +update-browserslist-db@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== @@ -9727,15 +9950,20 @@ use-latest-callback@^0.1.5: integrity sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw== use-latest-callback@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.2.1.tgz#4d4e6a9e4817b13142834850dcfa8d24ca4569cf" - integrity sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ== + version "0.2.3" + resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.2.3.tgz#2d644d3063040b9bc2d4c55bb525a13ae3de9e16" + integrity sha512-7vI3fBuyRcP91pazVboc4qu+6ZqM8izPWX9k7cRnT8hbD5svslcknsh3S9BUhaK11OmgTV4oWZZVSeQAiV53SQ== -use-sync-external-store@1.2.2, use-sync-external-store@^1.0.0: +use-sync-external-store@1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz#c3b6390f3a30eba13200d2302dcdf1e7b57b2ef9" integrity sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw== +use-sync-external-store@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz#adbc795d8eeb47029963016cefdf89dc799fcebc" + integrity sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw== + utif@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759" @@ -9800,270 +10028,275 @@ validate-npm-package-name@^3.0.0: dependencies: builtins "^1.0.3" +validate-npm-package-name@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz#a316573e9b49f3ccd90dbb6eb52b3f06c6d604e8" + integrity sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ== + vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== -victory-area@37.1.2, victory-area@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-area/-/victory-area-37.1.2.tgz#f6ff2849842f69a08fdbb1b1c1c35834395b7a66" - integrity sha512-72i02xTD47i7P+X02AHhZ32yO16VcM1h/7gulgAioLEx+8m3zShBKu46Md/vqmbyS2Bypr3xpUvd+8mCDIvCbw== +victory-area@37.3.4, victory-area@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-area/-/victory-area-37.3.4.tgz#312e2dcaccb9fa682c4e44c897d1d9e204b58897" + integrity sha512-1TUuXHBBttlW2E/totLcG982b364qqiRHvi+zPjIblPqLilQT0tbuk+CYMxxbs4+M5s5GgKP28KIEX5qlrqmLA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-axis@37.1.2, victory-axis@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-axis/-/victory-axis-37.1.2.tgz#51ba607a83323f94b3abc6fa2dcf21c3c203d5be" - integrity sha512-TuivC84cHrFoDetWDhU2VXQ34froIXBrtjYYPdmwBrMEFSu+FfrakYWUr3r25XNEPyOyk4z3a8lL/sqrxWYSRQ== +victory-axis@37.3.4, victory-axis@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-axis/-/victory-axis-37.3.4.tgz#7a67fa1094fa0bcf9da1c14e00a8c8e1336424fd" + integrity sha512-Z7SfBtR54vD3pKGzJDTzsqQJc16FNNUbGPBjn87uaTz+Va+foG7i37WnH6Z96TmtrMIWg+h/MzkySJpyDmC5Gg== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-bar@37.1.2, victory-bar@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-bar/-/victory-bar-37.1.2.tgz#df20cb35186c334656a83de76043848b6f9d3503" - integrity sha512-VJDE+TGSgyIchvln189cPMuG3LYqa8zCjHa8kYValP3bFTa5c+D1Y8R/FjVger40uEL3aQz1teHJODJCOxuXGA== +victory-bar@37.3.4, victory-bar@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-bar/-/victory-bar-37.3.4.tgz#0eaf297a17cb411dc7d11f8697c33546d31a962b" + integrity sha512-I3hNbzlqG3QoqrUZMdlR0zAiNQOXpevDvIUVCFRegnGsRZPl05KiYjNoKzaIpc/82AuZyfKGenAIDCcbevkFjA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-box-plot@37.1.2, victory-box-plot@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-box-plot/-/victory-box-plot-37.1.2.tgz#3459626a93f07d4e0505069bf7237a5b8cdebe42" - integrity sha512-i7JIjpaPTr3uaoW6ibfX4PrH1QcUeLXNxeCbmPRb+Hs+ug0d16J4RELPCaeNo/ZNg4rEzfueNTvExsYFIpHaWw== +victory-box-plot@37.3.4, victory-box-plot@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-box-plot/-/victory-box-plot-37.3.4.tgz#5a38a2be8b367a356c638f5ad5491d909b226f62" + integrity sha512-6ghOwA9C4qPJTf2GKWX4PtPL4REmT4g8RD1frAZkeR04nzN5BGjF1HD1WAHwqAigXPr8tswEpvSQJT21RRstDA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-brush-container@37.1.2, victory-brush-container@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-brush-container/-/victory-brush-container-37.1.2.tgz#2d45f5683c34e41f5359e830f8c6c34c9f9f3921" - integrity sha512-pJrMSo815UJxOT5OTXnq1tI5qQxQLnrlgDRNF8pxVF9dSxm7BhETjZSQfZgcLmCe3N931U19j8oCxw8sMSpJJw== +victory-brush-container@37.3.4, victory-brush-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-brush-container/-/victory-brush-container-37.3.4.tgz#3a1c33b5f8759f1cecd48979d4cd4a13e2a6ddf2" + integrity sha512-Blc0FsT6bqU86x7vBixpPjL3bDwJIc8UX8w/MkNQGU4REsRkN83a5yVL/vbfc/H3aUG4YJaMep7Gh0RwuNBYag== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" + victory-core "37.3.4" -victory-brush-line@37.1.2, victory-brush-line@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-brush-line/-/victory-brush-line-37.1.2.tgz#ada38e7cd1e44afaff89e32189ffc308361cdb24" - integrity sha512-Bq9JGu/o4p/NQ/ZOASUm6MmomS+2b0EvAHjULa06z7nsElNePpedTYPk2aAb7mr4sJZe6u/AsDMthG+C8Zc32Q== +victory-brush-line@37.3.4, victory-brush-line@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-brush-line/-/victory-brush-line-37.3.4.tgz#18dff53b47e917fae3c30921c42ca586a931c48b" + integrity sha512-osKm2ouWGg0J19KF08GDjSkN4zHRtjvBG+pcxdeiAaOBa3jfD03Mrlx0gXkWK1X6F3NTFEsaf8iUpubeDrlHyg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" + victory-core "37.3.4" -victory-candlestick@37.1.2, victory-candlestick@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-candlestick/-/victory-candlestick-37.1.2.tgz#f79083691cfd54dd4e184a99b7a25820466b7f3d" - integrity sha512-X+pLwvdIj/+nrvk1bZxhdJ9UBj7QLN4jdkIPDl6ekjfZ9Ylhi8/I/ttAkBu+7w7ilpGudIK6fr7PVHyZyYU6TA== +victory-candlestick@37.3.4, victory-candlestick@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-candlestick/-/victory-candlestick-37.3.4.tgz#06cc21d1cb56dc1e27b673a3f24a7ec4fb0bcca1" + integrity sha512-6pphv0oGzbjbTSMDsy9b5jVs+q2KH9sRaqcIGFMRUZicnuTLettie945gohWrr/FGYd/2Q1/ss8Jq5/lizFYpA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-canvas@37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-canvas/-/victory-canvas-37.1.2.tgz#2db3235a2fcdb8033efd92026bf2f6bf1810343f" - integrity sha512-4Qmz7YpFBj2KaBSe+j5zLVrKAJLG3HtXVVaKI3oUzw4GzHlYXf77dJLYe2EqJVEFCMgVsmASqE3xVTklioMV7g== +victory-canvas@37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-canvas/-/victory-canvas-37.3.4.tgz#18adac06c9218dc78de99a352a162f3fb33e331a" + integrity sha512-32Ql5kXrKlqLLZbP3IDmB6w9ONpzVG+EuUWB6rAxIONeSPy6eZfIx+IYy0CUAkJj+zwa50iVL5GeRtLNb05WZw== dependencies: lodash "^4.17.19" - victory-bar "37.1.2" - victory-core "37.1.2" + victory-bar "37.3.4" + victory-core "37.3.4" -victory-chart@37.1.2, victory-chart@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-chart/-/victory-chart-37.1.2.tgz#d379f346efa437590ad22526497e7cb955fa92ae" - integrity sha512-efV7lnqwu4+zLzB6aY3jjYbbfYJ9+1VC6uwx+8AGjbb8vGkbByUOKC6Fhdcuca2mLqNQHM0Ynvevs3+4XrBz1g== +victory-chart@37.3.4, victory-chart@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-chart/-/victory-chart-37.3.4.tgz#9afa2360125108448544a2c6c40df5424062cc2e" + integrity sha512-iQ7jSnDSpvHFe+L97jaOPaSPXQzpPhYX5TE4j8olDR/hqWEwALDkFzTCiZt/cLD9lhL+OJQSRbxtwlXMndPlgg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-axis "37.1.2" - victory-core "37.1.2" - victory-polar-axis "37.1.2" - victory-shared-events "37.1.2" + victory-axis "37.3.4" + victory-core "37.3.4" + victory-polar-axis "37.3.4" + victory-shared-events "37.3.4" -victory-core@37.1.2, victory-core@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-core/-/victory-core-37.1.2.tgz#713d95698f9b2b53be79947b60e10c1cbc6a7c3c" - integrity sha512-9fskAQw9MvYEBL+0cDk2lihKyECdrh+8HGicDfSKGOWtsSLk+x7R6PKCpOzhmSgc9fG+HjWYfs2uTWSPNTjF9A== +victory-core@37.3.4, victory-core@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-core/-/victory-core-37.3.4.tgz#255c23068a9399377a5465d0c9c12fee825f6704" + integrity sha512-EGPjBMsVjOEXOtcNOalG96AgytcUb6Ko3EdlSMIrPO8MV6REjmokwbit1zV6ImlptXhSjZbrCvsFQ96+5ucMvQ== dependencies: lodash "^4.17.21" react-fast-compare "^3.2.0" - victory-vendor "37.1.2" + victory-vendor "37.3.4" -victory-create-container@37.1.2, victory-create-container@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-create-container/-/victory-create-container-37.1.2.tgz#aff27ca8fd554a58959861db4925c02188a581de" - integrity sha512-GvWA+N3SXf6he+hW1IQqaRjKG7XSV9WBr06mZixRVyOeHJGGZ5g7Vsse1WrwUz5/DM8HcqF34PTfhTs39v6zaw== +victory-create-container@37.3.4, victory-create-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-create-container/-/victory-create-container-37.3.4.tgz#c44f5c51fd23c657b02a50da635ebd72bcba3610" + integrity sha512-jYSuw5LrqczhBj0oeiDZSLG8VmLIgEc5LYH375iVBHoeSBlLC5f1WRhr7BsSHV4hVqE5IlpYE+4LR0pUM9Ea+w== dependencies: lodash "^4.17.19" - victory-brush-container "37.1.2" - victory-core "37.1.2" - victory-cursor-container "37.1.2" - victory-selection-container "37.1.2" - victory-voronoi-container "37.1.2" - victory-zoom-container "37.1.2" - -victory-cursor-container@37.1.2, victory-cursor-container@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-cursor-container/-/victory-cursor-container-37.1.2.tgz#ba92a67e517d183a7f7f74983e157e69f87c8292" - integrity sha512-GqOVB/Emas/ODw7Sb7FX1FmUyH3jb5eNF+2sR+DdYfDMTFmjVUyqGkSpi1bIgHoSWTrdG9C2tkxA69gI9JDtLA== + victory-brush-container "37.3.4" + victory-core "37.3.4" + victory-cursor-container "37.3.4" + victory-selection-container "37.3.4" + victory-voronoi-container "37.3.4" + victory-zoom-container "37.3.4" + +victory-cursor-container@37.3.4, victory-cursor-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-cursor-container/-/victory-cursor-container-37.3.4.tgz#131a5a7d28eecd7f564fba177716713fae774c6e" + integrity sha512-UJrYWnhIhMSTECsL5BOCeM3ck6zsKj5Dy9UI2Ok45kqDy0E9NH86J6mvpBgEuhgR4nf/lBBHc2fYjLx8fLJi2A== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-errorbar@37.1.2, victory-errorbar@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-errorbar/-/victory-errorbar-37.1.2.tgz#24c650dd563dd9bdc61033a7116cb286ef079c34" - integrity sha512-sgs1nla57Ctt9slG5WXWdxqTXtTdKcZM+u83C5j1ceKKmMjCiqiNYmMQpF7yz7Nj2ewJTrOzZON9h2zgurr2Cg== +victory-errorbar@37.3.4, victory-errorbar@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-errorbar/-/victory-errorbar-37.3.4.tgz#0e0d41b46b1414a70ad1af53e52cb2dd69aab7a5" + integrity sha512-Ys7fIzTaVtlYg4hA0O9R4oe4oAyT36Mv/fMaqOV3PWCm07IrAeqCX5mP+UPAUvZF3cRp5qHRh1BiaBAEzf+/qg== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-group@37.1.2, victory-group@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-group/-/victory-group-37.1.2.tgz#7641330090918f6eed0620f329c6db74855f05ad" - integrity sha512-Zwdvs6pSfF02xax8rQbahSqRP7eua4mS0so0gFYr/M2sNiKN4hxnM72j3dLo9nQ63kQpYhcUZe8U/hEjlhHxYQ== +victory-group@37.3.4, victory-group@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-group/-/victory-group-37.3.4.tgz#aae4d33421e59d1258f7595b3c380932901d0608" + integrity sha512-V93yQp/2+JsHdkp2F97Vy/fEJ9WFjzFIhoQ+9KaCI6eOcE72/aIYSJ9Z4JO1yLAR74akl0fPvC624xm8E2VBzg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" - victory-shared-events "37.1.2" + victory-core "37.3.4" + victory-shared-events "37.3.4" -victory-histogram@37.1.2, victory-histogram@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-histogram/-/victory-histogram-37.1.2.tgz#fb87e08809e386ddae7388b8776d9585002de5be" - integrity sha512-IGeQZ2HGuvmMyYxoKOczIILNH6ARDJaWcDG3h5BX4jP4JH2+eWeEukCVHGT3b1VM1OFxuvPijJrePXYzKgQ+AQ== +victory-histogram@37.3.4, victory-histogram@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-histogram/-/victory-histogram-37.3.4.tgz#d0056d2e35235b0d2cfd7806081fb5ea0ec3261c" + integrity sha512-uqewLuEHDv/CkxDp04KrOaGCenbbjNqklbd52SHlH+C/tSJ0lW9z22WmyHjiygQHzLCpnRjy8jIi1ztQZFDkKg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-bar "37.1.2" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-bar "37.3.4" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-legend@37.1.2, victory-legend@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-legend/-/victory-legend-37.1.2.tgz#1a4b8e60be01330e3f0e9d8d30d5e6c06d49de11" - integrity sha512-dmwwHtFpEXPIelY9iH1a2Q/V2Ji8DaF0a2g+hLH4SM/xbA9YwjP2/9DIQcwS7/OVl4l1AnSbLFcu5RyDPJ0kww== +victory-legend@37.3.4, victory-legend@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-legend/-/victory-legend-37.3.4.tgz#1e562f964e8257759bd2017f25c68fa0be9e39f9" + integrity sha512-EwkE6kAzZUxJkWgSVZ1g93tFFtbyElxy7PPRW7ipmWQbtL99kb8hmL40GsEEKHGyOX4bPo2M1TpckL35qEFihA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-line@37.1.2, victory-line@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-line/-/victory-line-37.1.2.tgz#2d2191b7c9da90e914f133a5abb82ef938246c66" - integrity sha512-DjttWkQG0iZtQ9SM/KphN168dQUgw1xwyr0qR1aN12VtVb1jspI1LkBH8XqUeYXgfuI1vKQJWcV/zMOK2Q1n8g== +victory-line@37.3.4, victory-line@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-line/-/victory-line-37.3.4.tgz#2fed142d45d529a01420eeeb4aa4452048439e25" + integrity sha512-WO4EiBxJG7MS/dfxirRdtrC7qkwCyCKpqtCFSEDJyCyctN8iNp6+SfXiYfIGw6fA4cdT/23weOIaC0DQgI2vBw== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" victory-native@^37.0.3-next.0: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-native/-/victory-native-37.1.2.tgz#d7f3db4579bc36521fbe108d85368a26b8daa005" - integrity sha512-df9RRGv9S4Im6jEo2u/RHT2IhDvkzbsoXXZW8ib7IzDOK4ZWd9l7p4shB+Za8NRdfbqYJMoLA0h5bhpxM4VmWg== + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-native/-/victory-native-37.3.4.tgz#84ec1a57c9b3b18770870f94942549db701f59a9" + integrity sha512-KI3P/ZwjviQj6mSddIaMs/RZ6z55xVRFsrEx8YHRs8kCTYegTrN1kl4Aol2ZZZHZ5l69LoWHONsMdiRyIeolCQ== dependencies: hoist-non-react-statics "^3.3.2" lodash "^4.17.21" react-fast-compare "^3.2.0" - victory "^37.1.2" - victory-area "^37.1.2" - victory-axis "^37.1.2" - victory-bar "^37.1.2" - victory-box-plot "^37.1.2" - victory-brush-container "^37.1.2" - victory-brush-line "^37.1.2" - victory-candlestick "^37.1.2" - victory-chart "^37.1.2" - victory-core "^37.1.2" - victory-create-container "^37.1.2" - victory-cursor-container "^37.1.2" - victory-errorbar "^37.1.2" - victory-group "^37.1.2" - victory-histogram "^37.1.2" - victory-legend "^37.1.2" - victory-line "^37.1.2" - victory-pie "^37.1.2" - victory-polar-axis "^37.1.2" - victory-scatter "^37.1.2" - victory-selection-container "^37.1.2" - victory-shared-events "^37.1.2" - victory-stack "^37.1.2" - victory-tooltip "^37.1.2" - victory-voronoi "^37.1.2" - victory-voronoi-container "^37.1.2" - victory-zoom-container "^37.1.2" - -victory-pie@37.1.2, victory-pie@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-pie/-/victory-pie-37.1.2.tgz#d9041ee2758cf142a9b9818047eedba04c685ba1" - integrity sha512-lwPMAtkcGDJ4gdpKFmR7hRnowJZIGQ6XIvyPj7Ir+QfL6ew64kl7YiIsQpDnC4zqwAjDPIbIW/kRROiSKRjXjQ== + victory "^37.3.4" + victory-area "^37.3.4" + victory-axis "^37.3.4" + victory-bar "^37.3.4" + victory-box-plot "^37.3.4" + victory-brush-container "^37.3.4" + victory-brush-line "^37.3.4" + victory-candlestick "^37.3.4" + victory-chart "^37.3.4" + victory-core "^37.3.4" + victory-create-container "^37.3.4" + victory-cursor-container "^37.3.4" + victory-errorbar "^37.3.4" + victory-group "^37.3.4" + victory-histogram "^37.3.4" + victory-legend "^37.3.4" + victory-line "^37.3.4" + victory-pie "^37.3.4" + victory-polar-axis "^37.3.4" + victory-scatter "^37.3.4" + victory-selection-container "^37.3.4" + victory-shared-events "^37.3.4" + victory-stack "^37.3.4" + victory-tooltip "^37.3.4" + victory-voronoi "^37.3.4" + victory-voronoi-container "^37.3.4" + victory-zoom-container "^37.3.4" + +victory-pie@37.3.4, victory-pie@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-pie/-/victory-pie-37.3.4.tgz#83a8d0be3cc83670e6dfc8107f1ba13e873f31b1" + integrity sha512-J0qdbySZh2D4SoCpNiIvh9n8DxeafHVPU717cZ/77FAF/ICVf6UWzmqnTUaKQ3leeHt3iJRluBEbXbwrur0WKQ== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-polar-axis@37.1.2, victory-polar-axis@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-polar-axis/-/victory-polar-axis-37.1.2.tgz#614c54696a12ea08f2426eab3927819f8c77131a" - integrity sha512-cvELVQ5MwDjDfC/n/g8QVfUhexLNKcp7kXxbjp6IGbzQMCfNtROHaVaHaISNH7/EV5zinwBhNj0+ISWatROtrQ== +victory-polar-axis@37.3.4, victory-polar-axis@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-polar-axis/-/victory-polar-axis-37.3.4.tgz#0bdb6d607c829407aa2d04354433240ebea39cae" + integrity sha512-qS5cWgh21HiFlzeMGA30f3gf4hsxlESgWhtXVXHZbbXjV3uG+N4OioPYGh2Y1uJjFfDQNMmKekl3YrnsQtBCeg== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-scatter@37.1.2, victory-scatter@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-scatter/-/victory-scatter-37.1.2.tgz#34d91c0a0af0ebf9e9b2b380e912a7136dcfd2f3" - integrity sha512-6orfcqdfZCuTHqf/wE+B+sQbpzf2/TyEvLZhvYIXFr5GzdVu39psNl74K3GQ2Ky0db+e6oLEHV8nZYO2IvWoWg== +victory-scatter@37.3.4, victory-scatter@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-scatter/-/victory-scatter-37.3.4.tgz#cc4fd4bfb2dfd5d4ba1c0639872183ca819e5b91" + integrity sha512-7VGkK6S57mQ2hUtXdT0+D5UI7T0h93TR7XtJPG/PWZuoY+jwp+Poq57Eh5Ebf0HdigGTVkKVp9Devh9822K/vQ== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-selection-container@37.1.2, victory-selection-container@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-selection-container/-/victory-selection-container-37.1.2.tgz#7311e4ee4b92a4bd4639fe1ae0ed5e6b1eeaf604" - integrity sha512-1sp1CV9LrBADnsBcFgVQuYUNCLeANuybtOS9/5TvPPELBGWQQ55nBN3mH/laVPDy9gGyPARh1lmdPgREHmSkmQ== +victory-selection-container@37.3.4, victory-selection-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-selection-container/-/victory-selection-container-37.3.4.tgz#c8f5be96ade4143fffdc8a10b9adc718b882004a" + integrity sha512-8XVY3unWH7nJmD+8PPgNZpweIR6eJkAIoXAJC9eef3CAG4GSTtNflXCJVajRCgrd41RX4b4p7zXOisW9fEQ8Jw== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-shared-events@37.1.2, victory-shared-events@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-shared-events/-/victory-shared-events-37.1.2.tgz#d998f0403d3a802310a81b62a6229ff04ed7ea09" - integrity sha512-fpgpe6eI0A9dD39ZsFaid3sXdrCf1WIzFnpkNFT6hBYrDDD5Fd2/2SgqOxuul64PlYJAk6NOY+F1agmEtmB+/Q== +victory-shared-events@37.3.4, victory-shared-events@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-shared-events/-/victory-shared-events-37.3.4.tgz#bc0f5aa6ae940c699c91326ce12407801701af25" + integrity sha512-eX0Vko3k62R1OnQHe8VikkRP3H8O8nrGXG6GfcUjQWN2uBe31zhwXUOpzZcQstHyfo3L8u3JbQWMQGXEg9LlXw== dependencies: json-stringify-safe "^5.0.1" lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" + victory-core "37.3.4" -victory-stack@37.1.2, victory-stack@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-stack/-/victory-stack-37.1.2.tgz#f52cbaa8c574a1a2f32c0d47226cbd76186a9d16" - integrity sha512-H3FWiv3c6s/++PB3pBZ/9r8mcry1FHg8JK+03DZhRKHtJIti/38iIYUUiFOoQKmjVUQ7wrLdftYiemy3st77Dg== +victory-stack@37.3.4, victory-stack@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-stack/-/victory-stack-37.3.4.tgz#13a30749b12192743e674e39498bf908481a5c57" + integrity sha512-2aWAKnf3D+xk02l2ib+5ft5dlMHl2JegyTmNVCrNZsgHuqsblfffQN+VfRsng8U56KJ5MzVTsWdA3dT4ioveag== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" - victory-shared-events "37.1.2" + victory-core "37.3.4" + victory-shared-events "37.3.4" -victory-tooltip@37.1.2, victory-tooltip@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-tooltip/-/victory-tooltip-37.1.2.tgz#5129b11b963f53baa7e5c30060ccd8d0b956fbdb" - integrity sha512-j1r1t83X0epSwivhf4eYSD2DoWRVy5fkINbLk4sVnnV2EUT4Lt4yH3uelIhYQuT4Y+Ez9KFLoQvR6bfwmHyfZw== +victory-tooltip@37.3.4, victory-tooltip@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-tooltip/-/victory-tooltip-37.3.4.tgz#1bba0080d6474085cb412af2f7054925966cd658" + integrity sha512-kWIO5DEWdqhp+gvdjWb1TtjzSpGiQTr23OWR51FW2nXpkBzvy6GbRYRUB76F7/5XaJk0dsQDX4MYVs9JOxxN+w== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-vendor@37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-vendor/-/victory-vendor-37.1.2.tgz#70a10e91d58c83525db58bedfa32530495b6d4d8" - integrity sha512-kZ2UVcoINrisEW7JDaxws2v17D4n4ShRzsPUcYnF37/avByNbjzybhvs8JrqO6+vUmoP2W1DrTEI2L/86PEQjw== +victory-vendor@37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-vendor/-/victory-vendor-37.3.4.tgz#149c5bfa16aa37868b3f9a6f02576594e87e78e8" + integrity sha512-VD0ddlxWErbl4a2KEG2ruPynLdjDskPny0FuhQkrPVz1o5SBaxkYR8/6mFHUAQBurL8w6eujqP3jJIGVNevbiQ== dependencies: "@types/d3-array" "^3.0.3" "@types/d3-ease" "^3.0.0" @@ -10080,79 +10313,79 @@ victory-vendor@37.1.2: d3-time "^3.0.0" d3-timer "^3.0.1" -victory-voronoi-container@37.1.2, victory-voronoi-container@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-voronoi-container/-/victory-voronoi-container-37.1.2.tgz#536df5df863307555ea1b2e83c803e036e3beb6b" - integrity sha512-uFnZmRWp+QP7mH9jqetmoSR/KYhnFr4sFGR9+HrQkUbOzBQpT7Q2SNrDcr5l29Hm7Lb+3iUuF/l0E//EzuS+Ig== +victory-voronoi-container@37.3.4, victory-voronoi-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-voronoi-container/-/victory-voronoi-container-37.3.4.tgz#f6880739a8c18cddf963d30b8090e2057dcfaeab" + integrity sha512-Vt4l85rg/qHwUZR0j8zcHwsMY5VnowJIEgD9u8FJ69PvBDvW0906+Lh7FJ+aw8zUkUq0S5sE6CRUKyilbOCk+A== dependencies: delaunay-find "0.0.6" lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" - victory-tooltip "37.1.2" + victory-core "37.3.4" + victory-tooltip "37.3.4" -victory-voronoi@37.1.2, victory-voronoi@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-voronoi/-/victory-voronoi-37.1.2.tgz#9697d5ed75677c3fda9f747ce8af77fa68c658b9" - integrity sha512-rbihVJMDLmrMKfm6mbzTft9BbaJWZkymFkYxZZT0ZdHjsyaFm7t3jjrtvG1cq6HsTI10AfCh7iWmD9aky69eMQ== +victory-voronoi@37.3.4, victory-voronoi@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-voronoi/-/victory-voronoi-37.3.4.tgz#9eb0a0fe233432e2f6cbeec5c2bf65f66f43673e" + integrity sha512-wNeE3M7g1ggk2JuyDTLVp9ACOHu4Al4Eq8qHDcfkrN1RWRmmDylBoBT7VMOnor4T2QPof513/+EBsZ6a46CUcw== dependencies: d3-voronoi "^1.1.4" lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-zoom-container@37.1.2, victory-zoom-container@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-zoom-container/-/victory-zoom-container-37.1.2.tgz#dd60f2f15ed6fa6ddfa875e62b9a5a3e09167fed" - integrity sha512-OI0AgskIpruWaFWF1BkJWi4UZGyEJ+ol3uzlIMk3tPmYkuw5Gh4pTW6kEw/0E1BP+PwJjv+IRGBbT46/YxV3UQ== +victory-zoom-container@37.3.4, victory-zoom-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-zoom-container/-/victory-zoom-container-37.3.4.tgz#ee65548ca6f215abfd89228b304391f04bd0d184" + integrity sha512-hXMlG2HX2Lr/VdrsZCxhwAfhDaL2W+f2kn7lk/shy02yEVcRh6B1rJDSUWHxJGWOBRngxzzAToNNOuNzJMRovw== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - -victory@^37.1.2: - version "37.1.2" - resolved "https://registry.yarnpkg.com/victory/-/victory-37.1.2.tgz#46a1e4836de7524c730480884c01fa19ad46428f" - integrity sha512-V1YkJiWQ/vu5MSZ/Yf9/AJQeE+N1p1eUW6r5xJgOjbhioIbnL7FBTyJW1AXqqDZN9WdyECI3TkFQ1l/QbgztoA== - dependencies: - victory-area "37.1.2" - victory-axis "37.1.2" - victory-bar "37.1.2" - victory-box-plot "37.1.2" - victory-brush-container "37.1.2" - victory-brush-line "37.1.2" - victory-candlestick "37.1.2" - victory-canvas "37.1.2" - victory-chart "37.1.2" - victory-core "37.1.2" - victory-create-container "37.1.2" - victory-cursor-container "37.1.2" - victory-errorbar "37.1.2" - victory-group "37.1.2" - victory-histogram "37.1.2" - victory-legend "37.1.2" - victory-line "37.1.2" - victory-pie "37.1.2" - victory-polar-axis "37.1.2" - victory-scatter "37.1.2" - victory-selection-container "37.1.2" - victory-shared-events "37.1.2" - victory-stack "37.1.2" - victory-tooltip "37.1.2" - victory-voronoi "37.1.2" - victory-voronoi-container "37.1.2" - victory-zoom-container "37.1.2" + victory-core "37.3.4" + +victory@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory/-/victory-37.3.4.tgz#fa16cf99e727a8b90280549e41aef785d406ca28" + integrity sha512-4fozCnfG8z6EqgQ1G3e0JNTjfr87cUx+MDVwmqfeq0NZATUcXaJ16dcjkZHpXHLoFu/CCZCXGqZSpL/y4l1yUQ== + dependencies: + victory-area "37.3.4" + victory-axis "37.3.4" + victory-bar "37.3.4" + victory-box-plot "37.3.4" + victory-brush-container "37.3.4" + victory-brush-line "37.3.4" + victory-candlestick "37.3.4" + victory-canvas "37.3.4" + victory-chart "37.3.4" + victory-core "37.3.4" + victory-create-container "37.3.4" + victory-cursor-container "37.3.4" + victory-errorbar "37.3.4" + victory-group "37.3.4" + victory-histogram "37.3.4" + victory-legend "37.3.4" + victory-line "37.3.4" + victory-pie "37.3.4" + victory-polar-axis "37.3.4" + victory-scatter "37.3.4" + victory-selection-container "37.3.4" + victory-shared-events "37.3.4" + victory-stack "37.3.4" + victory-tooltip "37.3.4" + victory-voronoi "37.3.4" + victory-voronoi-container "37.3.4" + victory-zoom-container "37.3.4" viem@^2.21.29: - version "2.21.29" - resolved "https://registry.yarnpkg.com/viem/-/viem-2.21.29.tgz#a86225b41968b89f23c9b792eb0745be6bb03cef" - integrity sha512-n9LoCJjmI1XsE33nl+M4p3Wy5hczv7YC682RpX4Qk9cw8s9HJU+hUi5eDcNDPBcAwIHGCPKsf8yFBEYnE2XYVg== - dependencies: - "@adraffy/ens-normalize" "1.11.0" - "@noble/curves" "1.6.0" - "@noble/hashes" "1.5.0" - "@scure/bip32" "1.5.0" - "@scure/bip39" "1.4.0" - abitype "1.0.6" + version "2.21.54" + resolved "https://registry.yarnpkg.com/viem/-/viem-2.21.54.tgz#76d6f86ab8809078f1ac140ac1a2beadbc86b9f6" + integrity sha512-G9mmtbua3UtnVY9BqAtWdNp+3AO+oWhD0B9KaEsZb6gcrOWgmA4rz02yqEMg+qW9m6KgKGie7q3zcHqJIw6AqA== + dependencies: + "@noble/curves" "1.7.0" + "@noble/hashes" "1.6.1" + "@scure/bip32" "1.6.0" + "@scure/bip39" "1.5.0" + abitype "1.0.7" isows "1.0.6" + ox "0.1.2" webauthn-p256 "0.0.10" ws "8.18.0" @@ -10267,15 +10500,44 @@ whatwg-url@^5.0.0: webidl-conversions "^3.0.0" which-boxed-primitive@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.0.tgz#2d850d6c4ac37b95441a67890e19f3fda8b6c6d9" + integrity sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng== + dependencies: + is-bigint "^1.1.0" + is-boolean-object "^1.2.0" + is-number-object "^1.1.0" + is-string "^1.1.0" + is-symbol "^1.1.0" + +which-builtin-type@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.0.tgz#58042ac9602d78a6d117c7e811349df1268ba63c" + integrity sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA== + dependencies: + call-bind "^1.0.7" + function.prototype.name "^1.1.6" + has-tostringtag "^1.0.2" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.1.0" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.2" + which-typed-array "^1.1.15" + +which-collection@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" which-module@^2.0.0: version "2.0.1" @@ -10283,9 +10545,9 @@ which-module@^2.0.0: integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: - version "1.1.15" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + version "1.1.16" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.16.tgz#db4db429c4706feca2f01677a144278e4a8c216b" + integrity sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.7" @@ -10487,9 +10749,9 @@ yallist@^4.0.0: integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^2.2.1: - version "2.6.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.0.tgz#14059ad9d0b1680d0f04d3a60fe00f3a857303c3" - integrity sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ== + version "2.6.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.1.tgz#42f2b1ba89203f374609572d5349fb8686500773" + integrity sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg== yargs-parser@^18.1.2: version "18.1.3" @@ -10540,9 +10802,9 @@ yocto-queue@^0.1.0: integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== yup@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/yup/-/yup-1.4.0.tgz#898dcd660f9fb97c41f181839d3d65c3ee15a43e" - integrity sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg== + version "1.5.0" + resolved "https://registry.yarnpkg.com/yup/-/yup-1.5.0.tgz#1aaa5e453f04424094b9c8a0e5292e0ac2d97246" + integrity sha512-NJfBIHnp1QbqZwxcgl6irnDMIsb/7d1prNhFx02f1kp8h+orpi4xs3w90szNpOh68a/iHPdMsYvhZWoDmUvXBQ== dependencies: property-expr "^2.0.5" tiny-case "^1.0.3" @@ -10555,9 +10817,9 @@ zod-validation-error@^2.1.0: integrity sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ== zod@^3.21.4, zod@^3.22.4: - version "3.23.8" - resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" - integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== + version "3.24.1" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.24.1.tgz#27445c912738c8ad1e9de1bea0359fa44d9d35ee" + integrity sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A== zustand@^4.4.1: version "4.5.5"