Bluesky app fork with some witchin' additions 💫

Initial commit

Paul Frazee 47250e7e

Changed files
+10949
.bundle
__tests__
android
ios
+6
.buckconfig
··· 1 + 2 + [android] 3 + target = Google Inc.:Google APIs:23 4 + 5 + [maven_repositories] 6 + central = https://repo1.maven.org/maven2
+2
.bundle/config
··· 1 + BUNDLE_PATH: "vendor/bundle" 2 + BUNDLE_FORCE_RUBY_PLATFORM: 1
+16
.eslintrc.js
··· 1 + module.exports = { 2 + root: true, 3 + extends: '@react-native-community', 4 + parser: '@typescript-eslint/parser', 5 + plugins: ['@typescript-eslint'], 6 + overrides: [ 7 + { 8 + files: ['*.ts', '*.tsx'], 9 + rules: { 10 + '@typescript-eslint/no-shadow': ['error'], 11 + 'no-shadow': 'off', 12 + 'no-undef': 'off', 13 + }, 14 + }, 15 + ], 16 + };
+61
.gitignore
··· 1 + # OSX 2 + # 3 + .DS_Store 4 + 5 + # Xcode 6 + # 7 + build/ 8 + *.pbxuser 9 + !default.pbxuser 10 + *.mode1v3 11 + !default.mode1v3 12 + *.mode2v3 13 + !default.mode2v3 14 + *.perspectivev3 15 + !default.perspectivev3 16 + xcuserdata 17 + *.xccheckout 18 + *.moved-aside 19 + DerivedData 20 + *.hmap 21 + *.ipa 22 + *.xcuserstate 23 + 24 + # Android/IntelliJ 25 + # 26 + build/ 27 + .idea 28 + .gradle 29 + local.properties 30 + *.iml 31 + *.hprof 32 + 33 + # node.js 34 + # 35 + node_modules/ 36 + npm-debug.log 37 + yarn-error.log 38 + 39 + # BUCK 40 + buck-out/ 41 + \.buckd/ 42 + *.keystore 43 + !debug.keystore 44 + 45 + # fastlane 46 + # 47 + # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 48 + # screenshots whenever they are needed. 49 + # For more information about the recommended setup visit: 50 + # https://docs.fastlane.tools/best-practices/source-control/ 51 + 52 + */fastlane/report.xml 53 + */fastlane/Preview.html 54 + */fastlane/screenshots 55 + 56 + # Bundle artifact 57 + *.jsbundle 58 + 59 + # Ruby / CocoaPods 60 + /ios/Pods/ 61 + /vendor/bundle/
+7
.prettierrc.js
··· 1 + module.exports = { 2 + arrowParens: 'avoid', 3 + bracketSameLine: true, 4 + bracketSpacing: false, 5 + singleQuote: true, 6 + trailingComma: 'all', 7 + };
+1
.ruby-version
··· 1 + 2.7.4
+1
.watchmanconfig
··· 1 + {}
+115
App.tsx
··· 1 + /** 2 + * Sample React Native App 3 + * https://github.com/facebook/react-native 4 + * 5 + * Generated with the TypeScript template 6 + * https://github.com/react-native-community/react-native-template-typescript 7 + * 8 + * @format 9 + */ 10 + 11 + import React from 'react'; 12 + import { 13 + SafeAreaView, 14 + ScrollView, 15 + StatusBar, 16 + StyleSheet, 17 + Text, 18 + useColorScheme, 19 + View, 20 + } from 'react-native'; 21 + 22 + import { 23 + Colors, 24 + DebugInstructions, 25 + Header, 26 + LearnMoreLinks, 27 + ReloadInstructions, 28 + } from 'react-native/Libraries/NewAppScreen'; 29 + 30 + const Section: React.FC<{ 31 + title: string; 32 + }> = ({children, title}) => { 33 + const isDarkMode = useColorScheme() === 'dark'; 34 + return ( 35 + <View style={styles.sectionContainer}> 36 + <Text 37 + style={[ 38 + styles.sectionTitle, 39 + { 40 + color: isDarkMode ? Colors.white : Colors.black, 41 + }, 42 + ]}> 43 + {title} 44 + </Text> 45 + <Text 46 + style={[ 47 + styles.sectionDescription, 48 + { 49 + color: isDarkMode ? Colors.light : Colors.dark, 50 + }, 51 + ]}> 52 + {children} 53 + </Text> 54 + </View> 55 + ); 56 + }; 57 + 58 + const App = () => { 59 + const isDarkMode = useColorScheme() === 'dark'; 60 + 61 + const backgroundStyle = { 62 + backgroundColor: isDarkMode ? Colors.darker : Colors.lighter, 63 + }; 64 + 65 + return ( 66 + <SafeAreaView style={backgroundStyle}> 67 + <StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} /> 68 + <ScrollView 69 + contentInsetAdjustmentBehavior="automatic" 70 + style={backgroundStyle}> 71 + <Header /> 72 + <View 73 + style={{ 74 + backgroundColor: isDarkMode ? Colors.black : Colors.white, 75 + }}> 76 + <Section title="Step One"> 77 + Edit <Text style={styles.highlight}>App.tsx</Text> to change this 78 + screen and then come back to see your edits. 79 + </Section> 80 + <Section title="See Your Changes"> 81 + <ReloadInstructions /> 82 + </Section> 83 + <Section title="Debug"> 84 + <DebugInstructions /> 85 + </Section> 86 + <Section title="Learn More"> 87 + Read the docs to discover what to do next: 88 + </Section> 89 + <LearnMoreLinks /> 90 + </View> 91 + </ScrollView> 92 + </SafeAreaView> 93 + ); 94 + }; 95 + 96 + const styles = StyleSheet.create({ 97 + sectionContainer: { 98 + marginTop: 32, 99 + paddingHorizontal: 24, 100 + }, 101 + sectionTitle: { 102 + fontSize: 24, 103 + fontWeight: '600', 104 + }, 105 + sectionDescription: { 106 + marginTop: 8, 107 + fontSize: 18, 108 + fontWeight: '400', 109 + }, 110 + highlight: { 111 + fontWeight: '700', 112 + }, 113 + }); 114 + 115 + export default App;
+6
Gemfile
··· 1 + source 'https://rubygems.org' 2 + 3 + # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 + ruby '2.7.4' 5 + 6 + gem 'cocoapods', '~> 1.11', '>= 1.11.2'
+20
README.md
··· 1 + # Social App 2 + 3 + In-progress social app. 4 + 5 + Uses: 6 + 7 + - [React Native](https://reactnative.dev) 8 + - (todo) [React Native for Web](https://necolas.github.io/react-native-web/) 9 + - (todo) [React Navigation](https://reactnative.dev/docs/navigation#react-navigation) 10 + - (todo) [MobX](https://mobx.js.org/README.html) and [MobX State Tree](https://mobx-state-tree.js.org/) 11 + - (todo) [Async Storage](https://github.com/react-native-async-storage/async-storage) 12 + 13 + ## Build instructions 14 + 15 + - Setup your environment [using the react native instructions](https://reactnative.dev/docs/environment-setup). 16 + - To run the iOS simulator: `yarn ios` 17 + - To run the Android simulator: `yarn android` 18 + - Tips 19 + - `npx react-native info` Checks what has been installed. 20 + - Android instructions are a *little* inaccurate but not as much as you might think. I had to manually create a virtual device, then run `yarn android` twice (once to start the emulator and the second time to connect to it).
+14
__tests__/App-test.tsx
··· 1 + /** 2 + * @format 3 + */ 4 + 5 + import 'react-native'; 6 + import React from 'react'; 7 + import App from '../App'; 8 + 9 + // Note: test renderer must be required after react-native. 10 + import renderer from 'react-test-renderer'; 11 + 12 + it('renders correctly', () => { 13 + renderer.create(<App />); 14 + });
+55
android/app/_BUCK
··· 1 + # To learn about Buck see [Docs](https://buckbuild.com/). 2 + # To run your application with Buck: 3 + # - install Buck 4 + # - `npm start` - to start the packager 5 + # - `cd android` 6 + # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 + # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 + # - `buck install -r android/app` - compile, install and run application 9 + # 10 + 11 + load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 + 13 + lib_deps = [] 14 + 15 + create_aar_targets(glob(["libs/*.aar"])) 16 + 17 + create_jar_targets(glob(["libs/*.jar"])) 18 + 19 + android_library( 20 + name = "all-libs", 21 + exported_deps = lib_deps, 22 + ) 23 + 24 + android_library( 25 + name = "app-code", 26 + srcs = glob([ 27 + "src/main/java/**/*.java", 28 + ]), 29 + deps = [ 30 + ":all-libs", 31 + ":build_config", 32 + ":res", 33 + ], 34 + ) 35 + 36 + android_build_config( 37 + name = "build_config", 38 + package = "com.app", 39 + ) 40 + 41 + android_resource( 42 + name = "res", 43 + package = "com.app", 44 + res = "src/main/res", 45 + ) 46 + 47 + android_binary( 48 + name = "app", 49 + keystore = "//android/keystores:debug", 50 + manifest = "src/main/AndroidManifest.xml", 51 + package_type = "debug", 52 + deps = [ 53 + ":app-code", 54 + ], 55 + )
+320
android/app/build.gradle
··· 1 + apply plugin: "com.android.application" 2 + 3 + import com.android.build.OutputFile 4 + import org.apache.tools.ant.taskdefs.condition.Os 5 + 6 + /** 7 + * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 8 + * and bundleReleaseJsAndAssets). 9 + * These basically call `react-native bundle` with the correct arguments during the Android build 10 + * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 11 + * bundle directly from the development server. Below you can see all the possible configurations 12 + * and their defaults. If you decide to add a configuration block, make sure to add it before the 13 + * `apply from: "../../node_modules/react-native/react.gradle"` line. 14 + * 15 + * project.ext.react = [ 16 + * // the name of the generated asset file containing your JS bundle 17 + * bundleAssetName: "index.android.bundle", 18 + * 19 + * // the entry file for bundle generation. If none specified and 20 + * // "index.android.js" exists, it will be used. Otherwise "index.js" is 21 + * // default. Can be overridden with ENTRY_FILE environment variable. 22 + * entryFile: "index.android.js", 23 + * 24 + * // https://reactnative.dev/docs/performance#enable-the-ram-format 25 + * bundleCommand: "ram-bundle", 26 + * 27 + * // whether to bundle JS and assets in debug mode 28 + * bundleInDebug: false, 29 + * 30 + * // whether to bundle JS and assets in release mode 31 + * bundleInRelease: true, 32 + * 33 + * // whether to bundle JS and assets in another build variant (if configured). 34 + * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 35 + * // The configuration property can be in the following formats 36 + * // 'bundleIn${productFlavor}${buildType}' 37 + * // 'bundleIn${buildType}' 38 + * // bundleInFreeDebug: true, 39 + * // bundleInPaidRelease: true, 40 + * // bundleInBeta: true, 41 + * 42 + * // whether to disable dev mode in custom build variants (by default only disabled in release) 43 + * // for example: to disable dev mode in the staging build type (if configured) 44 + * devDisabledInStaging: true, 45 + * // The configuration property can be in the following formats 46 + * // 'devDisabledIn${productFlavor}${buildType}' 47 + * // 'devDisabledIn${buildType}' 48 + * 49 + * // the root of your project, i.e. where "package.json" lives 50 + * root: "../../", 51 + * 52 + * // where to put the JS bundle asset in debug mode 53 + * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 54 + * 55 + * // where to put the JS bundle asset in release mode 56 + * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 57 + * 58 + * // where to put drawable resources / React Native assets, e.g. the ones you use via 59 + * // require('./image.png')), in debug mode 60 + * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 61 + * 62 + * // where to put drawable resources / React Native assets, e.g. the ones you use via 63 + * // require('./image.png')), in release mode 64 + * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 65 + * 66 + * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 67 + * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 68 + * // date; if you have any other folders that you want to ignore for performance reasons (gradle 69 + * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 70 + * // for example, you might want to remove it from here. 71 + * inputExcludes: ["android/**", "ios/**"], 72 + * 73 + * // override which node gets called and with what additional arguments 74 + * nodeExecutableAndArgs: ["node"], 75 + * 76 + * // supply additional arguments to the packager 77 + * extraPackagerArgs: [] 78 + * ] 79 + */ 80 + 81 + project.ext.react = [ 82 + enableHermes: false, // clean and rebuild if changing 83 + ] 84 + 85 + apply from: "../../node_modules/react-native/react.gradle" 86 + 87 + /** 88 + * Set this to true to create two separate APKs instead of one: 89 + * - An APK that only works on ARM devices 90 + * - An APK that only works on x86 devices 91 + * The advantage is the size of the APK is reduced by about 4MB. 92 + * Upload all the APKs to the Play Store and people will download 93 + * the correct one based on the CPU architecture of their device. 94 + */ 95 + def enableSeparateBuildPerCPUArchitecture = false 96 + 97 + /** 98 + * Run Proguard to shrink the Java bytecode in release builds. 99 + */ 100 + def enableProguardInReleaseBuilds = false 101 + 102 + /** 103 + * The preferred build flavor of JavaScriptCore. 104 + * 105 + * For example, to use the international variant, you can use: 106 + * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 107 + * 108 + * The international variant includes ICU i18n library and necessary data 109 + * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 110 + * give correct results when using with locales other than en-US. Note that 111 + * this variant is about 6MiB larger per architecture than default. 112 + */ 113 + def jscFlavor = 'org.webkit:android-jsc:+' 114 + 115 + /** 116 + * Whether to enable the Hermes VM. 117 + * 118 + * This should be set on project.ext.react and that value will be read here. If it is not set 119 + * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode 120 + * and the benefits of using Hermes will therefore be sharply reduced. 121 + */ 122 + def enableHermes = project.ext.react.get("enableHermes", false); 123 + 124 + /** 125 + * Architectures to build native code for. 126 + */ 127 + def reactNativeArchitectures() { 128 + def value = project.getProperties().get("reactNativeArchitectures") 129 + return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"] 130 + } 131 + 132 + android { 133 + ndkVersion rootProject.ext.ndkVersion 134 + 135 + compileSdkVersion rootProject.ext.compileSdkVersion 136 + 137 + defaultConfig { 138 + applicationId "com.app" 139 + minSdkVersion rootProject.ext.minSdkVersion 140 + targetSdkVersion rootProject.ext.targetSdkVersion 141 + versionCode 1 142 + versionName "1.0" 143 + buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() 144 + 145 + if (isNewArchitectureEnabled()) { 146 + // We configure the NDK build only if you decide to opt-in for the New Architecture. 147 + externalNativeBuild { 148 + ndkBuild { 149 + arguments "APP_PLATFORM=android-21", 150 + "APP_STL=c++_shared", 151 + "NDK_TOOLCHAIN_VERSION=clang", 152 + "GENERATED_SRC_DIR=$buildDir/generated/source", 153 + "PROJECT_BUILD_DIR=$buildDir", 154 + "REACT_ANDROID_DIR=$rootDir/../node_modules/react-native/ReactAndroid", 155 + "REACT_ANDROID_BUILD_DIR=$rootDir/../node_modules/react-native/ReactAndroid/build" 156 + cFlags "-Wall", "-Werror", "-fexceptions", "-frtti", "-DWITH_INSPECTOR=1" 157 + cppFlags "-std=c++17" 158 + // Make sure this target name is the same you specify inside the 159 + // src/main/jni/Android.mk file for the `LOCAL_MODULE` variable. 160 + targets "app_appmodules" 161 + 162 + // Fix for windows limit on number of character in file paths and in command lines 163 + if (Os.isFamily(Os.FAMILY_WINDOWS)) { 164 + arguments "NDK_APP_SHORT_COMMANDS=true" 165 + } 166 + } 167 + } 168 + if (!enableSeparateBuildPerCPUArchitecture) { 169 + ndk { 170 + abiFilters (*reactNativeArchitectures()) 171 + } 172 + } 173 + } 174 + } 175 + 176 + if (isNewArchitectureEnabled()) { 177 + // We configure the NDK build only if you decide to opt-in for the New Architecture. 178 + externalNativeBuild { 179 + ndkBuild { 180 + path "$projectDir/src/main/jni/Android.mk" 181 + } 182 + } 183 + def reactAndroidProjectDir = project(':ReactAndroid').projectDir 184 + def packageReactNdkDebugLibs = tasks.register("packageReactNdkDebugLibs", Copy) { 185 + dependsOn(":ReactAndroid:packageReactNdkDebugLibsForBuck") 186 + from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib") 187 + into("$buildDir/react-ndk/exported") 188 + } 189 + def packageReactNdkReleaseLibs = tasks.register("packageReactNdkReleaseLibs", Copy) { 190 + dependsOn(":ReactAndroid:packageReactNdkReleaseLibsForBuck") 191 + from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib") 192 + into("$buildDir/react-ndk/exported") 193 + } 194 + afterEvaluate { 195 + // If you wish to add a custom TurboModule or component locally, 196 + // you should uncomment this line. 197 + // preBuild.dependsOn("generateCodegenArtifactsFromSchema") 198 + preDebugBuild.dependsOn(packageReactNdkDebugLibs) 199 + preReleaseBuild.dependsOn(packageReactNdkReleaseLibs) 200 + 201 + // Due to a bug inside AGP, we have to explicitly set a dependency 202 + // between configureNdkBuild* tasks and the preBuild tasks. 203 + // This can be removed once this is solved: https://issuetracker.google.com/issues/207403732 204 + configureNdkBuildRelease.dependsOn(preReleaseBuild) 205 + configureNdkBuildDebug.dependsOn(preDebugBuild) 206 + reactNativeArchitectures().each { architecture -> 207 + tasks.findByName("configureNdkBuildDebug[${architecture}]")?.configure { 208 + dependsOn("preDebugBuild") 209 + } 210 + tasks.findByName("configureNdkBuildRelease[${architecture}]")?.configure { 211 + dependsOn("preReleaseBuild") 212 + } 213 + } 214 + } 215 + } 216 + 217 + splits { 218 + abi { 219 + reset() 220 + enable enableSeparateBuildPerCPUArchitecture 221 + universalApk false // If true, also generate a universal APK 222 + include (*reactNativeArchitectures()) 223 + } 224 + } 225 + signingConfigs { 226 + debug { 227 + storeFile file('debug.keystore') 228 + storePassword 'android' 229 + keyAlias 'androiddebugkey' 230 + keyPassword 'android' 231 + } 232 + } 233 + buildTypes { 234 + debug { 235 + signingConfig signingConfigs.debug 236 + } 237 + release { 238 + // Caution! In production, you need to generate your own keystore file. 239 + // see https://reactnative.dev/docs/signed-apk-android. 240 + signingConfig signingConfigs.debug 241 + minifyEnabled enableProguardInReleaseBuilds 242 + proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 243 + } 244 + } 245 + 246 + // applicationVariants are e.g. debug, release 247 + applicationVariants.all { variant -> 248 + variant.outputs.each { output -> 249 + // For each separate APK per architecture, set a unique version code as described here: 250 + // https://developer.android.com/studio/build/configure-apk-splits.html 251 + // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. 252 + def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] 253 + def abi = output.getFilter(OutputFile.ABI) 254 + if (abi != null) { // null for the universal-debug, universal-release variants 255 + output.versionCodeOverride = 256 + defaultConfig.versionCode * 1000 + versionCodes.get(abi) 257 + } 258 + 259 + } 260 + } 261 + } 262 + 263 + dependencies { 264 + implementation fileTree(dir: "libs", include: ["*.jar"]) 265 + 266 + //noinspection GradleDynamicVersion 267 + implementation "com.facebook.react:react-native:+" // From node_modules 268 + 269 + implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" 270 + 271 + debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { 272 + exclude group:'com.facebook.fbjni' 273 + } 274 + 275 + debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { 276 + exclude group:'com.facebook.flipper' 277 + exclude group:'com.squareup.okhttp3', module:'okhttp' 278 + } 279 + 280 + debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { 281 + exclude group:'com.facebook.flipper' 282 + } 283 + 284 + if (enableHermes) { 285 + def hermesPath = "../../node_modules/hermes-engine/android/"; 286 + debugImplementation files(hermesPath + "hermes-debug.aar") 287 + releaseImplementation files(hermesPath + "hermes-release.aar") 288 + } else { 289 + implementation jscFlavor 290 + } 291 + } 292 + 293 + if (isNewArchitectureEnabled()) { 294 + // If new architecture is enabled, we let you build RN from source 295 + // Otherwise we fallback to a prebuilt .aar bundled in the NPM package. 296 + // This will be applied to all the imported transtitive dependency. 297 + configurations.all { 298 + resolutionStrategy.dependencySubstitution { 299 + substitute(module("com.facebook.react:react-native")) 300 + .using(project(":ReactAndroid")).because("On New Architecture we're building React Native from source") 301 + } 302 + } 303 + } 304 + 305 + // Run this once to be able to run the application with BUCK 306 + // puts all compile dependencies into folder libs for BUCK to use 307 + task copyDownloadableDepsToLibs(type: Copy) { 308 + from configurations.implementation 309 + into 'libs' 310 + } 311 + 312 + apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) 313 + 314 + def isNewArchitectureEnabled() { 315 + // To opt-in for the New Architecture, you can either: 316 + // - Set `newArchEnabled` to true inside the `gradle.properties` file 317 + // - Invoke gradle with `-newArchEnabled=true` 318 + // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true` 319 + return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true" 320 + }
+19
android/app/build_defs.bzl
··· 1 + """Helper definitions to glob .aar and .jar targets""" 2 + 3 + def create_aar_targets(aarfiles): 4 + for aarfile in aarfiles: 5 + name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 + lib_deps.append(":" + name) 7 + android_prebuilt_aar( 8 + name = name, 9 + aar = aarfile, 10 + ) 11 + 12 + def create_jar_targets(jarfiles): 13 + for jarfile in jarfiles: 14 + name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 + lib_deps.append(":" + name) 16 + prebuilt_jar( 17 + name = name, 18 + binary_jar = jarfile, 19 + )
android/app/debug.keystore

This is a binary file and will not be displayed.

+10
android/app/proguard-rules.pro
··· 1 + # Add project specific ProGuard rules here. 2 + # By default, the flags in this file are appended to flags specified 3 + # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 + # You can edit the include path and order by changing the proguardFiles 5 + # directive in build.gradle. 6 + # 7 + # For more details, see 8 + # http://developer.android.com/guide/developing/tools/proguard.html 9 + 10 + # Add any project specific keep options here:
+13
android/app/src/debug/AndroidManifest.xml
··· 1 + <?xml version="1.0" encoding="utf-8"?> 2 + <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 + xmlns:tools="http://schemas.android.com/tools"> 4 + 5 + <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 6 + 7 + <application 8 + android:usesCleartextTraffic="true" 9 + tools:targetApi="28" 10 + tools:ignore="GoogleAppIndexingWarning"> 11 + <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" /> 12 + </application> 13 + </manifest>
+73
android/app/src/debug/java/com/app/ReactNativeFlipper.java
··· 1 + /** 2 + * Copyright (c) Meta Platforms, Inc. and affiliates. 3 + * 4 + * <p>This source code is licensed under the MIT license found in the LICENSE file in the root 5 + * directory of this source tree. 6 + */ 7 + package com.app; 8 + 9 + import android.content.Context; 10 + import com.facebook.flipper.android.AndroidFlipperClient; 11 + import com.facebook.flipper.android.utils.FlipperUtils; 12 + import com.facebook.flipper.core.FlipperClient; 13 + import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; 14 + import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; 15 + import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; 16 + import com.facebook.flipper.plugins.inspector.DescriptorMapping; 17 + import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; 18 + import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; 19 + import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; 20 + import com.facebook.flipper.plugins.react.ReactFlipperPlugin; 21 + import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; 22 + import com.facebook.react.ReactInstanceEventListener; 23 + import com.facebook.react.ReactInstanceManager; 24 + import com.facebook.react.bridge.ReactContext; 25 + import com.facebook.react.modules.network.NetworkingModule; 26 + import okhttp3.OkHttpClient; 27 + 28 + public class ReactNativeFlipper { 29 + public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { 30 + if (FlipperUtils.shouldEnableFlipper(context)) { 31 + final FlipperClient client = AndroidFlipperClient.getInstance(context); 32 + 33 + client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); 34 + client.addPlugin(new ReactFlipperPlugin()); 35 + client.addPlugin(new DatabasesFlipperPlugin(context)); 36 + client.addPlugin(new SharedPreferencesFlipperPlugin(context)); 37 + client.addPlugin(CrashReporterPlugin.getInstance()); 38 + 39 + NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); 40 + NetworkingModule.setCustomClientBuilder( 41 + new NetworkingModule.CustomClientBuilder() { 42 + @Override 43 + public void apply(OkHttpClient.Builder builder) { 44 + builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); 45 + } 46 + }); 47 + client.addPlugin(networkFlipperPlugin); 48 + client.start(); 49 + 50 + // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized 51 + // Hence we run if after all native modules have been initialized 52 + ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); 53 + if (reactContext == null) { 54 + reactInstanceManager.addReactInstanceEventListener( 55 + new ReactInstanceEventListener() { 56 + @Override 57 + public void onReactContextInitialized(ReactContext reactContext) { 58 + reactInstanceManager.removeReactInstanceEventListener(this); 59 + reactContext.runOnNativeModulesQueueThread( 60 + new Runnable() { 61 + @Override 62 + public void run() { 63 + client.addPlugin(new FrescoFlipperPlugin()); 64 + } 65 + }); 66 + } 67 + }); 68 + } else { 69 + client.addPlugin(new FrescoFlipperPlugin()); 70 + } 71 + } 72 + } 73 + }
+26
android/app/src/main/AndroidManifest.xml
··· 1 + <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 + package="com.app"> 3 + 4 + <uses-permission android:name="android.permission.INTERNET" /> 5 + 6 + <application 7 + android:name=".MainApplication" 8 + android:label="@string/app_name" 9 + android:icon="@mipmap/ic_launcher" 10 + android:roundIcon="@mipmap/ic_launcher_round" 11 + android:allowBackup="false" 12 + android:theme="@style/AppTheme"> 13 + <activity 14 + android:name=".MainActivity" 15 + android:label="@string/app_name" 16 + android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" 17 + android:launchMode="singleTask" 18 + android:windowSoftInputMode="adjustResize" 19 + android:exported="true"> 20 + <intent-filter> 21 + <action android:name="android.intent.action.MAIN" /> 22 + <category android:name="android.intent.category.LAUNCHER" /> 23 + </intent-filter> 24 + </activity> 25 + </application> 26 + </manifest>
+40
android/app/src/main/java/com/app/MainActivity.java
··· 1 + package com.app; 2 + 3 + import com.facebook.react.ReactActivity; 4 + import com.facebook.react.ReactActivityDelegate; 5 + import com.facebook.react.ReactRootView; 6 + 7 + public class MainActivity extends ReactActivity { 8 + 9 + /** 10 + * Returns the name of the main component registered from JavaScript. This is used to schedule 11 + * rendering of the component. 12 + */ 13 + @Override 14 + protected String getMainComponentName() { 15 + return "app"; 16 + } 17 + 18 + /** 19 + * Returns the instance of the {@link ReactActivityDelegate}. There the RootView is created and 20 + * you can specify the rendered you wish to use (Fabric or the older renderer). 21 + */ 22 + @Override 23 + protected ReactActivityDelegate createReactActivityDelegate() { 24 + return new MainActivityDelegate(this, getMainComponentName()); 25 + } 26 + 27 + public static class MainActivityDelegate extends ReactActivityDelegate { 28 + public MainActivityDelegate(ReactActivity activity, String mainComponentName) { 29 + super(activity, mainComponentName); 30 + } 31 + 32 + @Override 33 + protected ReactRootView createRootView() { 34 + ReactRootView reactRootView = new ReactRootView(getContext()); 35 + // If you opted-in for the New Architecture, we enable the Fabric Renderer. 36 + reactRootView.setIsFabric(BuildConfig.IS_NEW_ARCHITECTURE_ENABLED); 37 + return reactRootView; 38 + } 39 + } 40 + }
+91
android/app/src/main/java/com/app/MainApplication.java
··· 1 + package com.app; 2 + 3 + import android.app.Application; 4 + import android.content.Context; 5 + import com.facebook.react.PackageList; 6 + import com.facebook.react.ReactApplication; 7 + import com.facebook.react.ReactInstanceManager; 8 + import com.facebook.react.ReactNativeHost; 9 + import com.facebook.react.ReactPackage; 10 + import com.facebook.react.config.ReactFeatureFlags; 11 + import com.facebook.soloader.SoLoader; 12 + import com.app.newarchitecture.MainApplicationReactNativeHost; 13 + import java.lang.reflect.InvocationTargetException; 14 + import java.util.List; 15 + 16 + public class MainApplication extends Application implements ReactApplication { 17 + 18 + private final ReactNativeHost mReactNativeHost = 19 + new ReactNativeHost(this) { 20 + @Override 21 + public boolean getUseDeveloperSupport() { 22 + return BuildConfig.DEBUG; 23 + } 24 + 25 + @Override 26 + protected List<ReactPackage> getPackages() { 27 + @SuppressWarnings("UnnecessaryLocalVariable") 28 + List<ReactPackage> packages = new PackageList(this).getPackages(); 29 + // Packages that cannot be autolinked yet can be added manually here, for example: 30 + // packages.add(new MyReactNativePackage()); 31 + return packages; 32 + } 33 + 34 + @Override 35 + protected String getJSMainModuleName() { 36 + return "index"; 37 + } 38 + }; 39 + 40 + private final ReactNativeHost mNewArchitectureNativeHost = 41 + new MainApplicationReactNativeHost(this); 42 + 43 + @Override 44 + public ReactNativeHost getReactNativeHost() { 45 + if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { 46 + return mNewArchitectureNativeHost; 47 + } else { 48 + return mReactNativeHost; 49 + } 50 + } 51 + 52 + @Override 53 + public void onCreate() { 54 + super.onCreate(); 55 + // If you opted-in for the New Architecture, we enable the TurboModule system 56 + ReactFeatureFlags.useTurboModules = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; 57 + SoLoader.init(this, /* native exopackage */ false); 58 + initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 59 + } 60 + 61 + /** 62 + * Loads Flipper in React Native templates. Call this in the onCreate method with something like 63 + * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 64 + * 65 + * @param context 66 + * @param reactInstanceManager 67 + */ 68 + private static void initializeFlipper( 69 + Context context, ReactInstanceManager reactInstanceManager) { 70 + if (BuildConfig.DEBUG) { 71 + try { 72 + /* 73 + We use reflection here to pick up the class that initializes Flipper, 74 + since Flipper library is not available in release mode 75 + */ 76 + Class<?> aClass = Class.forName("com.app.ReactNativeFlipper"); 77 + aClass 78 + .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) 79 + .invoke(null, context, reactInstanceManager); 80 + } catch (ClassNotFoundException e) { 81 + e.printStackTrace(); 82 + } catch (NoSuchMethodException e) { 83 + e.printStackTrace(); 84 + } catch (IllegalAccessException e) { 85 + e.printStackTrace(); 86 + } catch (InvocationTargetException e) { 87 + e.printStackTrace(); 88 + } 89 + } 90 + } 91 + }
+116
android/app/src/main/java/com/app/newarchitecture/MainApplicationReactNativeHost.java
··· 1 + package com.app.newarchitecture; 2 + 3 + import android.app.Application; 4 + import androidx.annotation.NonNull; 5 + import com.facebook.react.PackageList; 6 + import com.facebook.react.ReactInstanceManager; 7 + import com.facebook.react.ReactNativeHost; 8 + import com.facebook.react.ReactPackage; 9 + import com.facebook.react.ReactPackageTurboModuleManagerDelegate; 10 + import com.facebook.react.bridge.JSIModulePackage; 11 + import com.facebook.react.bridge.JSIModuleProvider; 12 + import com.facebook.react.bridge.JSIModuleSpec; 13 + import com.facebook.react.bridge.JSIModuleType; 14 + import com.facebook.react.bridge.JavaScriptContextHolder; 15 + import com.facebook.react.bridge.ReactApplicationContext; 16 + import com.facebook.react.bridge.UIManager; 17 + import com.facebook.react.fabric.ComponentFactory; 18 + import com.facebook.react.fabric.CoreComponentsRegistry; 19 + import com.facebook.react.fabric.EmptyReactNativeConfig; 20 + import com.facebook.react.fabric.FabricJSIModuleProvider; 21 + import com.facebook.react.uimanager.ViewManagerRegistry; 22 + import com.app.BuildConfig; 23 + import com.app.newarchitecture.components.MainComponentsRegistry; 24 + import com.app.newarchitecture.modules.MainApplicationTurboModuleManagerDelegate; 25 + import java.util.ArrayList; 26 + import java.util.List; 27 + 28 + /** 29 + * A {@link ReactNativeHost} that helps you load everything needed for the New Architecture, both 30 + * TurboModule delegates and the Fabric Renderer. 31 + * 32 + * <p>Please note that this class is used ONLY if you opt-in for the New Architecture (see the 33 + * `newArchEnabled` property). Is ignored otherwise. 34 + */ 35 + public class MainApplicationReactNativeHost extends ReactNativeHost { 36 + public MainApplicationReactNativeHost(Application application) { 37 + super(application); 38 + } 39 + 40 + @Override 41 + public boolean getUseDeveloperSupport() { 42 + return BuildConfig.DEBUG; 43 + } 44 + 45 + @Override 46 + protected List<ReactPackage> getPackages() { 47 + List<ReactPackage> packages = new PackageList(this).getPackages(); 48 + // Packages that cannot be autolinked yet can be added manually here, for example: 49 + // packages.add(new MyReactNativePackage()); 50 + // TurboModules must also be loaded here providing a valid TurboReactPackage implementation: 51 + // packages.add(new TurboReactPackage() { ... }); 52 + // If you have custom Fabric Components, their ViewManagers should also be loaded here 53 + // inside a ReactPackage. 54 + return packages; 55 + } 56 + 57 + @Override 58 + protected String getJSMainModuleName() { 59 + return "index"; 60 + } 61 + 62 + @NonNull 63 + @Override 64 + protected ReactPackageTurboModuleManagerDelegate.Builder 65 + getReactPackageTurboModuleManagerDelegateBuilder() { 66 + // Here we provide the ReactPackageTurboModuleManagerDelegate Builder. This is necessary 67 + // for the new architecture and to use TurboModules correctly. 68 + return new MainApplicationTurboModuleManagerDelegate.Builder(); 69 + } 70 + 71 + @Override 72 + protected JSIModulePackage getJSIModulePackage() { 73 + return new JSIModulePackage() { 74 + @Override 75 + public List<JSIModuleSpec> getJSIModules( 76 + final ReactApplicationContext reactApplicationContext, 77 + final JavaScriptContextHolder jsContext) { 78 + final List<JSIModuleSpec> specs = new ArrayList<>(); 79 + 80 + // Here we provide a new JSIModuleSpec that will be responsible of providing the 81 + // custom Fabric Components. 82 + specs.add( 83 + new JSIModuleSpec() { 84 + @Override 85 + public JSIModuleType getJSIModuleType() { 86 + return JSIModuleType.UIManager; 87 + } 88 + 89 + @Override 90 + public JSIModuleProvider<UIManager> getJSIModuleProvider() { 91 + final ComponentFactory componentFactory = new ComponentFactory(); 92 + CoreComponentsRegistry.register(componentFactory); 93 + 94 + // Here we register a Components Registry. 95 + // The one that is generated with the template contains no components 96 + // and just provides you the one from React Native core. 97 + MainComponentsRegistry.register(componentFactory); 98 + 99 + final ReactInstanceManager reactInstanceManager = getReactInstanceManager(); 100 + 101 + ViewManagerRegistry viewManagerRegistry = 102 + new ViewManagerRegistry( 103 + reactInstanceManager.getOrCreateViewManagers(reactApplicationContext)); 104 + 105 + return new FabricJSIModuleProvider( 106 + reactApplicationContext, 107 + componentFactory, 108 + new EmptyReactNativeConfig(), 109 + viewManagerRegistry); 110 + } 111 + }); 112 + return specs; 113 + } 114 + }; 115 + } 116 + }
+36
android/app/src/main/java/com/app/newarchitecture/components/MainComponentsRegistry.java
··· 1 + package com.app.newarchitecture.components; 2 + 3 + import com.facebook.jni.HybridData; 4 + import com.facebook.proguard.annotations.DoNotStrip; 5 + import com.facebook.react.fabric.ComponentFactory; 6 + import com.facebook.soloader.SoLoader; 7 + 8 + /** 9 + * Class responsible to load the custom Fabric Components. This class has native methods and needs a 10 + * corresponding C++ implementation/header file to work correctly (already placed inside the jni/ 11 + * folder for you). 12 + * 13 + * <p>Please note that this class is used ONLY if you opt-in for the New Architecture (see the 14 + * `newArchEnabled` property). Is ignored otherwise. 15 + */ 16 + @DoNotStrip 17 + public class MainComponentsRegistry { 18 + static { 19 + SoLoader.loadLibrary("fabricjni"); 20 + } 21 + 22 + @DoNotStrip private final HybridData mHybridData; 23 + 24 + @DoNotStrip 25 + private native HybridData initHybrid(ComponentFactory componentFactory); 26 + 27 + @DoNotStrip 28 + private MainComponentsRegistry(ComponentFactory componentFactory) { 29 + mHybridData = initHybrid(componentFactory); 30 + } 31 + 32 + @DoNotStrip 33 + public static MainComponentsRegistry register(ComponentFactory componentFactory) { 34 + return new MainComponentsRegistry(componentFactory); 35 + } 36 + }
+48
android/app/src/main/java/com/app/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java
··· 1 + package com.app.newarchitecture.modules; 2 + 3 + import com.facebook.jni.HybridData; 4 + import com.facebook.react.ReactPackage; 5 + import com.facebook.react.ReactPackageTurboModuleManagerDelegate; 6 + import com.facebook.react.bridge.ReactApplicationContext; 7 + import com.facebook.soloader.SoLoader; 8 + import java.util.List; 9 + 10 + /** 11 + * Class responsible to load the TurboModules. This class has native methods and needs a 12 + * corresponding C++ implementation/header file to work correctly (already placed inside the jni/ 13 + * folder for you). 14 + * 15 + * <p>Please note that this class is used ONLY if you opt-in for the New Architecture (see the 16 + * `newArchEnabled` property). Is ignored otherwise. 17 + */ 18 + public class MainApplicationTurboModuleManagerDelegate 19 + extends ReactPackageTurboModuleManagerDelegate { 20 + 21 + private static volatile boolean sIsSoLibraryLoaded; 22 + 23 + protected MainApplicationTurboModuleManagerDelegate( 24 + ReactApplicationContext reactApplicationContext, List<ReactPackage> packages) { 25 + super(reactApplicationContext, packages); 26 + } 27 + 28 + protected native HybridData initHybrid(); 29 + 30 + native boolean canCreateTurboModule(String moduleName); 31 + 32 + public static class Builder extends ReactPackageTurboModuleManagerDelegate.Builder { 33 + protected MainApplicationTurboModuleManagerDelegate build( 34 + ReactApplicationContext context, List<ReactPackage> packages) { 35 + return new MainApplicationTurboModuleManagerDelegate(context, packages); 36 + } 37 + } 38 + 39 + @Override 40 + protected synchronized void maybeLoadOtherSoLibraries() { 41 + if (!sIsSoLibraryLoaded) { 42 + // If you change the name of your application .so file in the Android.mk file, 43 + // make sure you update the name here as well. 44 + SoLoader.loadLibrary("app_appmodules"); 45 + sIsSoLibraryLoaded = true; 46 + } 47 + } 48 + }
+49
android/app/src/main/jni/Android.mk
··· 1 + THIS_DIR := $(call my-dir) 2 + 3 + include $(REACT_ANDROID_DIR)/Android-prebuilt.mk 4 + 5 + # If you wish to add a custom TurboModule or Fabric component in your app you 6 + # will have to include the following autogenerated makefile. 7 + # include $(GENERATED_SRC_DIR)/codegen/jni/Android.mk 8 + include $(CLEAR_VARS) 9 + 10 + LOCAL_PATH := $(THIS_DIR) 11 + 12 + # You can customize the name of your application .so file here. 13 + LOCAL_MODULE := app_appmodules 14 + 15 + LOCAL_C_INCLUDES := $(LOCAL_PATH) 16 + LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp) 17 + LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) 18 + 19 + # If you wish to add a custom TurboModule or Fabric component in your app you 20 + # will have to uncomment those lines to include the generated source 21 + # files from the codegen (placed in $(GENERATED_SRC_DIR)/codegen/jni) 22 + # 23 + # LOCAL_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni 24 + # LOCAL_SRC_FILES += $(wildcard $(GENERATED_SRC_DIR)/codegen/jni/*.cpp) 25 + # LOCAL_EXPORT_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni 26 + 27 + # Here you should add any native library you wish to depend on. 28 + LOCAL_SHARED_LIBRARIES := \ 29 + libfabricjni \ 30 + libfbjni \ 31 + libfolly_futures \ 32 + libfolly_json \ 33 + libglog \ 34 + libjsi \ 35 + libreact_codegen_rncore \ 36 + libreact_debug \ 37 + libreact_nativemodule_core \ 38 + libreact_render_componentregistry \ 39 + libreact_render_core \ 40 + libreact_render_debug \ 41 + libreact_render_graphics \ 42 + librrc_view \ 43 + libruntimeexecutor \ 44 + libturbomodulejsijni \ 45 + libyoga 46 + 47 + LOCAL_CFLAGS := -DLOG_TAG=\"ReactNative\" -fexceptions -frtti -std=c++17 -Wall 48 + 49 + include $(BUILD_SHARED_LIBRARY)
+24
android/app/src/main/jni/MainApplicationModuleProvider.cpp
··· 1 + #include "MainApplicationModuleProvider.h" 2 + 3 + #include <rncore.h> 4 + 5 + namespace facebook { 6 + namespace react { 7 + 8 + std::shared_ptr<TurboModule> MainApplicationModuleProvider( 9 + const std::string moduleName, 10 + const JavaTurboModule::InitParams &params) { 11 + // Here you can provide your own module provider for TurboModules coming from 12 + // either your application or from external libraries. The approach to follow 13 + // is similar to the following (for a library called `samplelibrary`: 14 + // 15 + // auto module = samplelibrary_ModuleProvider(moduleName, params); 16 + // if (module != nullptr) { 17 + // return module; 18 + // } 19 + // return rncore_ModuleProvider(moduleName, params); 20 + return rncore_ModuleProvider(moduleName, params); 21 + } 22 + 23 + } // namespace react 24 + } // namespace facebook
+16
android/app/src/main/jni/MainApplicationModuleProvider.h
··· 1 + #pragma once 2 + 3 + #include <memory> 4 + #include <string> 5 + 6 + #include <ReactCommon/JavaTurboModule.h> 7 + 8 + namespace facebook { 9 + namespace react { 10 + 11 + std::shared_ptr<TurboModule> MainApplicationModuleProvider( 12 + const std::string moduleName, 13 + const JavaTurboModule::InitParams &params); 14 + 15 + } // namespace react 16 + } // namespace facebook
+45
android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp
··· 1 + #include "MainApplicationTurboModuleManagerDelegate.h" 2 + #include "MainApplicationModuleProvider.h" 3 + 4 + namespace facebook { 5 + namespace react { 6 + 7 + jni::local_ref<MainApplicationTurboModuleManagerDelegate::jhybriddata> 8 + MainApplicationTurboModuleManagerDelegate::initHybrid( 9 + jni::alias_ref<jhybridobject>) { 10 + return makeCxxInstance(); 11 + } 12 + 13 + void MainApplicationTurboModuleManagerDelegate::registerNatives() { 14 + registerHybrid({ 15 + makeNativeMethod( 16 + "initHybrid", MainApplicationTurboModuleManagerDelegate::initHybrid), 17 + makeNativeMethod( 18 + "canCreateTurboModule", 19 + MainApplicationTurboModuleManagerDelegate::canCreateTurboModule), 20 + }); 21 + } 22 + 23 + std::shared_ptr<TurboModule> 24 + MainApplicationTurboModuleManagerDelegate::getTurboModule( 25 + const std::string name, 26 + const std::shared_ptr<CallInvoker> jsInvoker) { 27 + // Not implemented yet: provide pure-C++ NativeModules here. 28 + return nullptr; 29 + } 30 + 31 + std::shared_ptr<TurboModule> 32 + MainApplicationTurboModuleManagerDelegate::getTurboModule( 33 + const std::string name, 34 + const JavaTurboModule::InitParams &params) { 35 + return MainApplicationModuleProvider(name, params); 36 + } 37 + 38 + bool MainApplicationTurboModuleManagerDelegate::canCreateTurboModule( 39 + std::string name) { 40 + return getTurboModule(name, nullptr) != nullptr || 41 + getTurboModule(name, {.moduleName = name}) != nullptr; 42 + } 43 + 44 + } // namespace react 45 + } // namespace facebook
+38
android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h
··· 1 + #include <memory> 2 + #include <string> 3 + 4 + #include <ReactCommon/TurboModuleManagerDelegate.h> 5 + #include <fbjni/fbjni.h> 6 + 7 + namespace facebook { 8 + namespace react { 9 + 10 + class MainApplicationTurboModuleManagerDelegate 11 + : public jni::HybridClass< 12 + MainApplicationTurboModuleManagerDelegate, 13 + TurboModuleManagerDelegate> { 14 + public: 15 + // Adapt it to the package you used for your Java class. 16 + static constexpr auto kJavaDescriptor = 17 + "Lcom/app/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate;"; 18 + 19 + static jni::local_ref<jhybriddata> initHybrid(jni::alias_ref<jhybridobject>); 20 + 21 + static void registerNatives(); 22 + 23 + std::shared_ptr<TurboModule> getTurboModule( 24 + const std::string name, 25 + const std::shared_ptr<CallInvoker> jsInvoker) override; 26 + std::shared_ptr<TurboModule> getTurboModule( 27 + const std::string name, 28 + const JavaTurboModule::InitParams &params) override; 29 + 30 + /** 31 + * Test-only method. Allows user to verify whether a TurboModule can be 32 + * created by instances of this class. 33 + */ 34 + bool canCreateTurboModule(std::string name); 35 + }; 36 + 37 + } // namespace react 38 + } // namespace facebook
+61
android/app/src/main/jni/MainComponentsRegistry.cpp
··· 1 + #include "MainComponentsRegistry.h" 2 + 3 + #include <CoreComponentsRegistry.h> 4 + #include <fbjni/fbjni.h> 5 + #include <react/renderer/componentregistry/ComponentDescriptorProviderRegistry.h> 6 + #include <react/renderer/components/rncore/ComponentDescriptors.h> 7 + 8 + namespace facebook { 9 + namespace react { 10 + 11 + MainComponentsRegistry::MainComponentsRegistry(ComponentFactory *delegate) {} 12 + 13 + std::shared_ptr<ComponentDescriptorProviderRegistry const> 14 + MainComponentsRegistry::sharedProviderRegistry() { 15 + auto providerRegistry = CoreComponentsRegistry::sharedProviderRegistry(); 16 + 17 + // Custom Fabric Components go here. You can register custom 18 + // components coming from your App or from 3rd party libraries here. 19 + // 20 + // providerRegistry->add(concreteComponentDescriptorProvider< 21 + // AocViewerComponentDescriptor>()); 22 + return providerRegistry; 23 + } 24 + 25 + jni::local_ref<MainComponentsRegistry::jhybriddata> 26 + MainComponentsRegistry::initHybrid( 27 + jni::alias_ref<jclass>, 28 + ComponentFactory *delegate) { 29 + auto instance = makeCxxInstance(delegate); 30 + 31 + auto buildRegistryFunction = 32 + [](EventDispatcher::Weak const &eventDispatcher, 33 + ContextContainer::Shared const &contextContainer) 34 + -> ComponentDescriptorRegistry::Shared { 35 + auto registry = MainComponentsRegistry::sharedProviderRegistry() 36 + ->createComponentDescriptorRegistry( 37 + {eventDispatcher, contextContainer}); 38 + 39 + auto mutableRegistry = 40 + std::const_pointer_cast<ComponentDescriptorRegistry>(registry); 41 + 42 + mutableRegistry->setFallbackComponentDescriptor( 43 + std::make_shared<UnimplementedNativeViewComponentDescriptor>( 44 + ComponentDescriptorParameters{ 45 + eventDispatcher, contextContainer, nullptr})); 46 + 47 + return registry; 48 + }; 49 + 50 + delegate->buildRegistryFunction = buildRegistryFunction; 51 + return instance; 52 + } 53 + 54 + void MainComponentsRegistry::registerNatives() { 55 + registerHybrid({ 56 + makeNativeMethod("initHybrid", MainComponentsRegistry::initHybrid), 57 + }); 58 + } 59 + 60 + } // namespace react 61 + } // namespace facebook
+32
android/app/src/main/jni/MainComponentsRegistry.h
··· 1 + #pragma once 2 + 3 + #include <ComponentFactory.h> 4 + #include <fbjni/fbjni.h> 5 + #include <react/renderer/componentregistry/ComponentDescriptorProviderRegistry.h> 6 + #include <react/renderer/componentregistry/ComponentDescriptorRegistry.h> 7 + 8 + namespace facebook { 9 + namespace react { 10 + 11 + class MainComponentsRegistry 12 + : public facebook::jni::HybridClass<MainComponentsRegistry> { 13 + public: 14 + // Adapt it to the package you used for your Java class. 15 + constexpr static auto kJavaDescriptor = 16 + "Lcom/app/newarchitecture/components/MainComponentsRegistry;"; 17 + 18 + static void registerNatives(); 19 + 20 + MainComponentsRegistry(ComponentFactory *delegate); 21 + 22 + private: 23 + static std::shared_ptr<ComponentDescriptorProviderRegistry const> 24 + sharedProviderRegistry(); 25 + 26 + static jni::local_ref<jhybriddata> initHybrid( 27 + jni::alias_ref<jclass>, 28 + ComponentFactory *delegate); 29 + }; 30 + 31 + } // namespace react 32 + } // namespace facebook
+11
android/app/src/main/jni/OnLoad.cpp
··· 1 + #include <fbjni/fbjni.h> 2 + #include "MainApplicationTurboModuleManagerDelegate.h" 3 + #include "MainComponentsRegistry.h" 4 + 5 + JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *) { 6 + return facebook::jni::initialize(vm, [] { 7 + facebook::react::MainApplicationTurboModuleManagerDelegate:: 8 + registerNatives(); 9 + facebook::react::MainComponentsRegistry::registerNatives(); 10 + }); 11 + }
+36
android/app/src/main/res/drawable/rn_edit_text_material.xml
··· 1 + <?xml version="1.0" encoding="utf-8"?> 2 + <!-- Copyright (C) 2014 The Android Open Source Project 3 + 4 + Licensed under the Apache License, Version 2.0 (the "License"); 5 + you may not use this file except in compliance with the License. 6 + You may obtain a copy of the License at 7 + 8 + http://www.apache.org/licenses/LICENSE-2.0 9 + 10 + Unless required by applicable law or agreed to in writing, software 11 + distributed under the License is distributed on an "AS IS" BASIS, 12 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 + See the License for the specific language governing permissions and 14 + limitations under the License. 15 + --> 16 + <inset xmlns:android="http://schemas.android.com/apk/res/android" 17 + android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material" 18 + android:insetRight="@dimen/abc_edit_text_inset_horizontal_material" 19 + android:insetTop="@dimen/abc_edit_text_inset_top_material" 20 + android:insetBottom="@dimen/abc_edit_text_inset_bottom_material"> 21 + 22 + <selector> 23 + <!-- 24 + This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I). 25 + The item below with state_pressed="false" and state_focused="false" causes a NullPointerException. 26 + NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)' 27 + 28 + <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> 29 + 30 + For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR. 31 + --> 32 + <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> 33 + <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/> 34 + </selector> 35 + 36 + </inset>
android/app/src/main/res/mipmap-hdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-mdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xhdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png

This is a binary file and will not be displayed.

+3
android/app/src/main/res/values/strings.xml
··· 1 + <resources> 2 + <string name="app_name">app</string> 3 + </resources>
+9
android/app/src/main/res/values/styles.xml
··· 1 + <resources> 2 + 3 + <!-- Base application theme. --> 4 + <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar"> 5 + <!-- Customize your theme here. --> 6 + <item name="android:editTextBackground">@drawable/rn_edit_text_material</item> 7 + </style> 8 + 9 + </resources>
+53
android/build.gradle
··· 1 + import org.apache.tools.ant.taskdefs.condition.Os 2 + 3 + // Top-level build file where you can add configuration options common to all sub-projects/modules. 4 + 5 + buildscript { 6 + ext { 7 + buildToolsVersion = "31.0.0" 8 + minSdkVersion = 21 9 + compileSdkVersion = 31 10 + targetSdkVersion = 31 11 + 12 + if (System.properties['os.arch'] == "aarch64") { 13 + // For M1 Users we need to use the NDK 24 which added support for aarch64 14 + ndkVersion = "24.0.8215888" 15 + } else { 16 + // Otherwise we default to the side-by-side NDK version from AGP. 17 + ndkVersion = "21.4.7075529" 18 + } 19 + } 20 + repositories { 21 + google() 22 + mavenCentral() 23 + } 24 + dependencies { 25 + classpath("com.android.tools.build:gradle:7.0.4") 26 + classpath("com.facebook.react:react-native-gradle-plugin") 27 + classpath("de.undercouch:gradle-download-task:4.1.2") 28 + // NOTE: Do not place your application dependencies here; they belong 29 + // in the individual module build.gradle files 30 + } 31 + } 32 + 33 + allprojects { 34 + repositories { 35 + maven { 36 + // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 37 + url("$rootDir/../node_modules/react-native/android") 38 + } 39 + maven { 40 + // Android JSC is installed from npm 41 + url("$rootDir/../node_modules/jsc-android/dist") 42 + } 43 + mavenCentral { 44 + // We don't want to fetch react-native from Maven Central as there are 45 + // older versions over there. 46 + content { 47 + excludeGroup "com.facebook.react" 48 + } 49 + } 50 + google() 51 + maven { url 'https://www.jitpack.io' } 52 + } 53 + }
+40
android/gradle.properties
··· 1 + # Project-wide Gradle settings. 2 + 3 + # IDE (e.g. Android Studio) users: 4 + # Gradle settings configured through the IDE *will override* 5 + # any settings specified in this file. 6 + 7 + # For more details on how to configure your build environment visit 8 + # http://www.gradle.org/docs/current/userguide/build_environment.html 9 + 10 + # Specifies the JVM arguments used for the daemon process. 11 + # The setting is particularly useful for tweaking memory settings. 12 + # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m 13 + org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m 14 + 15 + # When configured, Gradle will run in incubating parallel mode. 16 + # This option should only be used with decoupled projects. More details, visit 17 + # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 + # org.gradle.parallel=true 19 + 20 + # AndroidX package structure to make it clearer which packages are bundled with the 21 + # Android operating system, and which are packaged with your app's APK 22 + # https://developer.android.com/topic/libraries/support-library/androidx-rn 23 + android.useAndroidX=true 24 + # Automatically convert third-party libraries to use AndroidX 25 + android.enableJetifier=true 26 + 27 + # Version of flipper SDK to use with React Native 28 + FLIPPER_VERSION=0.125.0 29 + 30 + # Use this property to specify which architecture you want to build. 31 + # You can also override it from the CLI using 32 + # ./gradlew <task> -PreactNativeArchitectures=x86_64 33 + reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 34 + 35 + # Use this property to enable support to the new architecture. 36 + # This will allow you to use TurboModules and the Fabric render in 37 + # your application. You should enable this flag either if you want 38 + # to write custom TurboModules/Fabric components OR use libraries that 39 + # are providing them. 40 + newArchEnabled=false
android/gradle/wrapper/gradle-wrapper.jar

This is a binary file and will not be displayed.

+5
android/gradle/wrapper/gradle-wrapper.properties
··· 1 + distributionBase=GRADLE_USER_HOME 2 + distributionPath=wrapper/dists 3 + distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip 4 + zipStoreBase=GRADLE_USER_HOME 5 + zipStorePath=wrapper/dists
+234
android/gradlew
··· 1 + #!/bin/sh 2 + 3 + # 4 + # Copyright © 2015-2021 the original authors. 5 + # 6 + # Licensed under the Apache License, Version 2.0 (the "License"); 7 + # you may not use this file except in compliance with the License. 8 + # You may obtain a copy of the License at 9 + # 10 + # https://www.apache.org/licenses/LICENSE-2.0 11 + # 12 + # Unless required by applicable law or agreed to in writing, software 13 + # distributed under the License is distributed on an "AS IS" BASIS, 14 + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 + # See the License for the specific language governing permissions and 16 + # limitations under the License. 17 + # 18 + 19 + ############################################################################## 20 + # 21 + # Gradle start up script for POSIX generated by Gradle. 22 + # 23 + # Important for running: 24 + # 25 + # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is 26 + # noncompliant, but you have some other compliant shell such as ksh or 27 + # bash, then to run this script, type that shell name before the whole 28 + # command line, like: 29 + # 30 + # ksh Gradle 31 + # 32 + # Busybox and similar reduced shells will NOT work, because this script 33 + # requires all of these POSIX shell features: 34 + # * functions; 35 + # * expansions «$var», «${var}», «${var:-default}», «${var+SET}», 36 + # «${var#prefix}», «${var%suffix}», and «$( cmd )»; 37 + # * compound commands having a testable exit status, especially «case»; 38 + # * various built-in commands including «command», «set», and «ulimit». 39 + # 40 + # Important for patching: 41 + # 42 + # (2) This script targets any POSIX shell, so it avoids extensions provided 43 + # by Bash, Ksh, etc; in particular arrays are avoided. 44 + # 45 + # The "traditional" practice of packing multiple parameters into a 46 + # space-separated string is a well documented source of bugs and security 47 + # problems, so this is (mostly) avoided, by progressively accumulating 48 + # options in "$@", and eventually passing that to Java. 49 + # 50 + # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, 51 + # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; 52 + # see the in-line comments for details. 53 + # 54 + # There are tweaks for specific operating systems such as AIX, CygWin, 55 + # Darwin, MinGW, and NonStop. 56 + # 57 + # (3) This script is generated from the Groovy template 58 + # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 59 + # within the Gradle project. 60 + # 61 + # You can find Gradle at https://github.com/gradle/gradle/. 62 + # 63 + ############################################################################## 64 + 65 + # Attempt to set APP_HOME 66 + 67 + # Resolve links: $0 may be a link 68 + app_path=$0 69 + 70 + # Need this for daisy-chained symlinks. 71 + while 72 + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path 73 + [ -h "$app_path" ] 74 + do 75 + ls=$( ls -ld "$app_path" ) 76 + link=${ls#*' -> '} 77 + case $link in #( 78 + /*) app_path=$link ;; #( 79 + *) app_path=$APP_HOME$link ;; 80 + esac 81 + done 82 + 83 + APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit 84 + 85 + APP_NAME="Gradle" 86 + APP_BASE_NAME=${0##*/} 87 + 88 + # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 89 + DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 90 + 91 + # Use the maximum available, or set MAX_FD != -1 to use that value. 92 + MAX_FD=maximum 93 + 94 + warn () { 95 + echo "$*" 96 + } >&2 97 + 98 + die () { 99 + echo 100 + echo "$*" 101 + echo 102 + exit 1 103 + } >&2 104 + 105 + # OS specific support (must be 'true' or 'false'). 106 + cygwin=false 107 + msys=false 108 + darwin=false 109 + nonstop=false 110 + case "$( uname )" in #( 111 + CYGWIN* ) cygwin=true ;; #( 112 + Darwin* ) darwin=true ;; #( 113 + MSYS* | MINGW* ) msys=true ;; #( 114 + NONSTOP* ) nonstop=true ;; 115 + esac 116 + 117 + CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 118 + 119 + 120 + # Determine the Java command to use to start the JVM. 121 + if [ -n "$JAVA_HOME" ] ; then 122 + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 123 + # IBM's JDK on AIX uses strange locations for the executables 124 + JAVACMD=$JAVA_HOME/jre/sh/java 125 + else 126 + JAVACMD=$JAVA_HOME/bin/java 127 + fi 128 + if [ ! -x "$JAVACMD" ] ; then 129 + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 130 + 131 + Please set the JAVA_HOME variable in your environment to match the 132 + location of your Java installation." 133 + fi 134 + else 135 + JAVACMD=java 136 + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 137 + 138 + Please set the JAVA_HOME variable in your environment to match the 139 + location of your Java installation." 140 + fi 141 + 142 + # Increase the maximum file descriptors if we can. 143 + if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 144 + case $MAX_FD in #( 145 + max*) 146 + MAX_FD=$( ulimit -H -n ) || 147 + warn "Could not query maximum file descriptor limit" 148 + esac 149 + case $MAX_FD in #( 150 + '' | soft) :;; #( 151 + *) 152 + ulimit -n "$MAX_FD" || 153 + warn "Could not set maximum file descriptor limit to $MAX_FD" 154 + esac 155 + fi 156 + 157 + # Collect all arguments for the java command, stacking in reverse order: 158 + # * args from the command line 159 + # * the main class name 160 + # * -classpath 161 + # * -D...appname settings 162 + # * --module-path (only if needed) 163 + # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. 164 + 165 + # For Cygwin or MSYS, switch paths to Windows format before running java 166 + if "$cygwin" || "$msys" ; then 167 + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) 168 + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) 169 + 170 + JAVACMD=$( cygpath --unix "$JAVACMD" ) 171 + 172 + # Now convert the arguments - kludge to limit ourselves to /bin/sh 173 + for arg do 174 + if 175 + case $arg in #( 176 + -*) false ;; # don't mess with options #( 177 + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath 178 + [ -e "$t" ] ;; #( 179 + *) false ;; 180 + esac 181 + then 182 + arg=$( cygpath --path --ignore --mixed "$arg" ) 183 + fi 184 + # Roll the args list around exactly as many times as the number of 185 + # args, so each arg winds up back in the position where it started, but 186 + # possibly modified. 187 + # 188 + # NB: a `for` loop captures its iteration list before it begins, so 189 + # changing the positional parameters here affects neither the number of 190 + # iterations, nor the values presented in `arg`. 191 + shift # remove old arg 192 + set -- "$@" "$arg" # push replacement arg 193 + done 194 + fi 195 + 196 + # Collect all arguments for the java command; 197 + # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of 198 + # shell script including quotes and variable substitutions, so put them in 199 + # double quotes to make sure that they get re-expanded; and 200 + # * put everything else in single quotes, so that it's not re-expanded. 201 + 202 + set -- \ 203 + "-Dorg.gradle.appname=$APP_BASE_NAME" \ 204 + -classpath "$CLASSPATH" \ 205 + org.gradle.wrapper.GradleWrapperMain \ 206 + "$@" 207 + 208 + # Use "xargs" to parse quoted args. 209 + # 210 + # With -n1 it outputs one arg per line, with the quotes and backslashes removed. 211 + # 212 + # In Bash we could simply go: 213 + # 214 + # readarray ARGS < <( xargs -n1 <<<"$var" ) && 215 + # set -- "${ARGS[@]}" "$@" 216 + # 217 + # but POSIX shell has neither arrays nor command substitution, so instead we 218 + # post-process each arg (as a line of input to sed) to backslash-escape any 219 + # character that might be a shell metacharacter, then use eval to reverse 220 + # that process (while maintaining the separation between arguments), and wrap 221 + # the whole thing up as a single "set" statement. 222 + # 223 + # This will of course break if any of these variables contains a newline or 224 + # an unmatched quote. 225 + # 226 + 227 + eval "set -- $( 228 + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | 229 + xargs -n1 | 230 + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | 231 + tr '\n' ' ' 232 + )" '"$@"' 233 + 234 + exec "$JAVACMD" "$@"
+89
android/gradlew.bat
··· 1 + @rem 2 + @rem Copyright 2015 the original author or authors. 3 + @rem 4 + @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 + @rem you may not use this file except in compliance with the License. 6 + @rem You may obtain a copy of the License at 7 + @rem 8 + @rem https://www.apache.org/licenses/LICENSE-2.0 9 + @rem 10 + @rem Unless required by applicable law or agreed to in writing, software 11 + @rem distributed under the License is distributed on an "AS IS" BASIS, 12 + @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 + @rem See the License for the specific language governing permissions and 14 + @rem limitations under the License. 15 + @rem 16 + 17 + @if "%DEBUG%" == "" @echo off 18 + @rem ########################################################################## 19 + @rem 20 + @rem Gradle startup script for Windows 21 + @rem 22 + @rem ########################################################################## 23 + 24 + @rem Set local scope for the variables with windows NT shell 25 + if "%OS%"=="Windows_NT" setlocal 26 + 27 + set DIRNAME=%~dp0 28 + if "%DIRNAME%" == "" set DIRNAME=. 29 + set APP_BASE_NAME=%~n0 30 + set APP_HOME=%DIRNAME% 31 + 32 + @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 + for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 + 35 + @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 + set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 + 38 + @rem Find java.exe 39 + if defined JAVA_HOME goto findJavaFromJavaHome 40 + 41 + set JAVA_EXE=java.exe 42 + %JAVA_EXE% -version >NUL 2>&1 43 + if "%ERRORLEVEL%" == "0" goto execute 44 + 45 + echo. 46 + echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 + echo. 48 + echo Please set the JAVA_HOME variable in your environment to match the 49 + echo location of your Java installation. 50 + 51 + goto fail 52 + 53 + :findJavaFromJavaHome 54 + set JAVA_HOME=%JAVA_HOME:"=% 55 + set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 + 57 + if exist "%JAVA_EXE%" goto execute 58 + 59 + echo. 60 + echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 + echo. 62 + echo Please set the JAVA_HOME variable in your environment to match the 63 + echo location of your Java installation. 64 + 65 + goto fail 66 + 67 + :execute 68 + @rem Setup the command line 69 + 70 + set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 + 72 + 73 + @rem Execute Gradle 74 + "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 + 76 + :end 77 + @rem End local scope for the variables with windows NT shell 78 + if "%ERRORLEVEL%"=="0" goto mainEnd 79 + 80 + :fail 81 + rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 + rem the _cmd.exe /c_ return code! 83 + if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 + exit /b 1 85 + 86 + :mainEnd 87 + if "%OS%"=="Windows_NT" endlocal 88 + 89 + :omega
+9
android/settings.gradle
··· 1 + rootProject.name = 'app' 2 + apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 + include ':app' 4 + includeBuild('../node_modules/react-native-gradle-plugin') 5 + 6 + if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") { 7 + include(":ReactAndroid") 8 + project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid') 9 + }
+4
app.json
··· 1 + { 2 + "name": "app", 3 + "displayName": "app" 4 + }
+3
babel.config.js
··· 1 + module.exports = { 2 + presets: ['module:metro-react-native-babel-preset'], 3 + };
+9
index.js
··· 1 + /** 2 + * @format 3 + */ 4 + 5 + import {AppRegistry} from 'react-native'; 6 + import App from './App'; 7 + import {name as appName} from './app.json'; 8 + 9 + AppRegistry.registerComponent(appName, () => App);
+37
ios/Podfile
··· 1 + require_relative '../node_modules/react-native/scripts/react_native_pods' 2 + require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' 3 + 4 + platform :ios, '11.0' 5 + install! 'cocoapods', :deterministic_uuids => false 6 + 7 + target 'app' do 8 + config = use_native_modules! 9 + 10 + # Flags change depending on the env values. 11 + flags = get_default_flags() 12 + 13 + use_react_native!( 14 + :path => config[:reactNativePath], 15 + # to enable hermes on iOS, change `false` to `true` and then install pods 16 + :hermes_enabled => flags[:hermes_enabled], 17 + :fabric_enabled => flags[:fabric_enabled], 18 + # An absolute path to your application root. 19 + :app_path => "#{Pod::Config.instance.installation_root}/.." 20 + ) 21 + 22 + target 'appTests' do 23 + inherit! :complete 24 + # Pods for testing 25 + end 26 + 27 + # Enables Flipper. 28 + # 29 + # Note that if you have use_frameworks! enabled, Flipper will not work and 30 + # you should disable the next line. 31 + use_flipper!() 32 + 33 + post_install do |installer| 34 + react_native_post_install(installer) 35 + __apply_Xcode_12_5_M1_post_install_workaround(installer) 36 + end 37 + end
+544
ios/Podfile.lock
··· 1 + PODS: 2 + - boost (1.76.0) 3 + - CocoaAsyncSocket (7.6.5) 4 + - DoubleConversion (1.1.6) 5 + - FBLazyVector (0.68.2) 6 + - FBReactNativeSpec (0.68.2): 7 + - RCT-Folly (= 2021.06.28.00-v2) 8 + - RCTRequired (= 0.68.2) 9 + - RCTTypeSafety (= 0.68.2) 10 + - React-Core (= 0.68.2) 11 + - React-jsi (= 0.68.2) 12 + - ReactCommon/turbomodule/core (= 0.68.2) 13 + - Flipper (0.125.0): 14 + - Flipper-Folly (~> 2.6) 15 + - Flipper-RSocket (~> 1.4) 16 + - Flipper-Boost-iOSX (1.76.0.1.11) 17 + - Flipper-DoubleConversion (3.2.0) 18 + - Flipper-Fmt (7.1.7) 19 + - Flipper-Folly (2.6.10): 20 + - Flipper-Boost-iOSX 21 + - Flipper-DoubleConversion 22 + - Flipper-Fmt (= 7.1.7) 23 + - Flipper-Glog 24 + - libevent (~> 2.1.12) 25 + - OpenSSL-Universal (= 1.1.1100) 26 + - Flipper-Glog (0.5.0.4) 27 + - Flipper-PeerTalk (0.0.4) 28 + - Flipper-RSocket (1.4.3): 29 + - Flipper-Folly (~> 2.6) 30 + - FlipperKit (0.125.0): 31 + - FlipperKit/Core (= 0.125.0) 32 + - FlipperKit/Core (0.125.0): 33 + - Flipper (~> 0.125.0) 34 + - FlipperKit/CppBridge 35 + - FlipperKit/FBCxxFollyDynamicConvert 36 + - FlipperKit/FBDefines 37 + - FlipperKit/FKPortForwarding 38 + - SocketRocket (~> 0.6.0) 39 + - FlipperKit/CppBridge (0.125.0): 40 + - Flipper (~> 0.125.0) 41 + - FlipperKit/FBCxxFollyDynamicConvert (0.125.0): 42 + - Flipper-Folly (~> 2.6) 43 + - FlipperKit/FBDefines (0.125.0) 44 + - FlipperKit/FKPortForwarding (0.125.0): 45 + - CocoaAsyncSocket (~> 7.6) 46 + - Flipper-PeerTalk (~> 0.0.4) 47 + - FlipperKit/FlipperKitHighlightOverlay (0.125.0) 48 + - FlipperKit/FlipperKitLayoutHelpers (0.125.0): 49 + - FlipperKit/Core 50 + - FlipperKit/FlipperKitHighlightOverlay 51 + - FlipperKit/FlipperKitLayoutTextSearchable 52 + - FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0): 53 + - FlipperKit/Core 54 + - FlipperKit/FlipperKitHighlightOverlay 55 + - FlipperKit/FlipperKitLayoutHelpers 56 + - YogaKit (~> 1.18) 57 + - FlipperKit/FlipperKitLayoutPlugin (0.125.0): 58 + - FlipperKit/Core 59 + - FlipperKit/FlipperKitHighlightOverlay 60 + - FlipperKit/FlipperKitLayoutHelpers 61 + - FlipperKit/FlipperKitLayoutIOSDescriptors 62 + - FlipperKit/FlipperKitLayoutTextSearchable 63 + - YogaKit (~> 1.18) 64 + - FlipperKit/FlipperKitLayoutTextSearchable (0.125.0) 65 + - FlipperKit/FlipperKitNetworkPlugin (0.125.0): 66 + - FlipperKit/Core 67 + - FlipperKit/FlipperKitReactPlugin (0.125.0): 68 + - FlipperKit/Core 69 + - FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0): 70 + - FlipperKit/Core 71 + - FlipperKit/SKIOSNetworkPlugin (0.125.0): 72 + - FlipperKit/Core 73 + - FlipperKit/FlipperKitNetworkPlugin 74 + - fmt (6.2.1) 75 + - glog (0.3.5) 76 + - libevent (2.1.12) 77 + - OpenSSL-Universal (1.1.1100) 78 + - RCT-Folly (2021.06.28.00-v2): 79 + - boost 80 + - DoubleConversion 81 + - fmt (~> 6.2.1) 82 + - glog 83 + - RCT-Folly/Default (= 2021.06.28.00-v2) 84 + - RCT-Folly/Default (2021.06.28.00-v2): 85 + - boost 86 + - DoubleConversion 87 + - fmt (~> 6.2.1) 88 + - glog 89 + - RCTRequired (0.68.2) 90 + - RCTTypeSafety (0.68.2): 91 + - FBLazyVector (= 0.68.2) 92 + - RCT-Folly (= 2021.06.28.00-v2) 93 + - RCTRequired (= 0.68.2) 94 + - React-Core (= 0.68.2) 95 + - React (0.68.2): 96 + - React-Core (= 0.68.2) 97 + - React-Core/DevSupport (= 0.68.2) 98 + - React-Core/RCTWebSocket (= 0.68.2) 99 + - React-RCTActionSheet (= 0.68.2) 100 + - React-RCTAnimation (= 0.68.2) 101 + - React-RCTBlob (= 0.68.2) 102 + - React-RCTImage (= 0.68.2) 103 + - React-RCTLinking (= 0.68.2) 104 + - React-RCTNetwork (= 0.68.2) 105 + - React-RCTSettings (= 0.68.2) 106 + - React-RCTText (= 0.68.2) 107 + - React-RCTVibration (= 0.68.2) 108 + - React-callinvoker (0.68.2) 109 + - React-Codegen (0.68.2): 110 + - FBReactNativeSpec (= 0.68.2) 111 + - RCT-Folly (= 2021.06.28.00-v2) 112 + - RCTRequired (= 0.68.2) 113 + - RCTTypeSafety (= 0.68.2) 114 + - React-Core (= 0.68.2) 115 + - React-jsi (= 0.68.2) 116 + - React-jsiexecutor (= 0.68.2) 117 + - ReactCommon/turbomodule/core (= 0.68.2) 118 + - React-Core (0.68.2): 119 + - glog 120 + - RCT-Folly (= 2021.06.28.00-v2) 121 + - React-Core/Default (= 0.68.2) 122 + - React-cxxreact (= 0.68.2) 123 + - React-jsi (= 0.68.2) 124 + - React-jsiexecutor (= 0.68.2) 125 + - React-perflogger (= 0.68.2) 126 + - Yoga 127 + - React-Core/CoreModulesHeaders (0.68.2): 128 + - glog 129 + - RCT-Folly (= 2021.06.28.00-v2) 130 + - React-Core/Default 131 + - React-cxxreact (= 0.68.2) 132 + - React-jsi (= 0.68.2) 133 + - React-jsiexecutor (= 0.68.2) 134 + - React-perflogger (= 0.68.2) 135 + - Yoga 136 + - React-Core/Default (0.68.2): 137 + - glog 138 + - RCT-Folly (= 2021.06.28.00-v2) 139 + - React-cxxreact (= 0.68.2) 140 + - React-jsi (= 0.68.2) 141 + - React-jsiexecutor (= 0.68.2) 142 + - React-perflogger (= 0.68.2) 143 + - Yoga 144 + - React-Core/DevSupport (0.68.2): 145 + - glog 146 + - RCT-Folly (= 2021.06.28.00-v2) 147 + - React-Core/Default (= 0.68.2) 148 + - React-Core/RCTWebSocket (= 0.68.2) 149 + - React-cxxreact (= 0.68.2) 150 + - React-jsi (= 0.68.2) 151 + - React-jsiexecutor (= 0.68.2) 152 + - React-jsinspector (= 0.68.2) 153 + - React-perflogger (= 0.68.2) 154 + - Yoga 155 + - React-Core/RCTActionSheetHeaders (0.68.2): 156 + - glog 157 + - RCT-Folly (= 2021.06.28.00-v2) 158 + - React-Core/Default 159 + - React-cxxreact (= 0.68.2) 160 + - React-jsi (= 0.68.2) 161 + - React-jsiexecutor (= 0.68.2) 162 + - React-perflogger (= 0.68.2) 163 + - Yoga 164 + - React-Core/RCTAnimationHeaders (0.68.2): 165 + - glog 166 + - RCT-Folly (= 2021.06.28.00-v2) 167 + - React-Core/Default 168 + - React-cxxreact (= 0.68.2) 169 + - React-jsi (= 0.68.2) 170 + - React-jsiexecutor (= 0.68.2) 171 + - React-perflogger (= 0.68.2) 172 + - Yoga 173 + - React-Core/RCTBlobHeaders (0.68.2): 174 + - glog 175 + - RCT-Folly (= 2021.06.28.00-v2) 176 + - React-Core/Default 177 + - React-cxxreact (= 0.68.2) 178 + - React-jsi (= 0.68.2) 179 + - React-jsiexecutor (= 0.68.2) 180 + - React-perflogger (= 0.68.2) 181 + - Yoga 182 + - React-Core/RCTImageHeaders (0.68.2): 183 + - glog 184 + - RCT-Folly (= 2021.06.28.00-v2) 185 + - React-Core/Default 186 + - React-cxxreact (= 0.68.2) 187 + - React-jsi (= 0.68.2) 188 + - React-jsiexecutor (= 0.68.2) 189 + - React-perflogger (= 0.68.2) 190 + - Yoga 191 + - React-Core/RCTLinkingHeaders (0.68.2): 192 + - glog 193 + - RCT-Folly (= 2021.06.28.00-v2) 194 + - React-Core/Default 195 + - React-cxxreact (= 0.68.2) 196 + - React-jsi (= 0.68.2) 197 + - React-jsiexecutor (= 0.68.2) 198 + - React-perflogger (= 0.68.2) 199 + - Yoga 200 + - React-Core/RCTNetworkHeaders (0.68.2): 201 + - glog 202 + - RCT-Folly (= 2021.06.28.00-v2) 203 + - React-Core/Default 204 + - React-cxxreact (= 0.68.2) 205 + - React-jsi (= 0.68.2) 206 + - React-jsiexecutor (= 0.68.2) 207 + - React-perflogger (= 0.68.2) 208 + - Yoga 209 + - React-Core/RCTSettingsHeaders (0.68.2): 210 + - glog 211 + - RCT-Folly (= 2021.06.28.00-v2) 212 + - React-Core/Default 213 + - React-cxxreact (= 0.68.2) 214 + - React-jsi (= 0.68.2) 215 + - React-jsiexecutor (= 0.68.2) 216 + - React-perflogger (= 0.68.2) 217 + - Yoga 218 + - React-Core/RCTTextHeaders (0.68.2): 219 + - glog 220 + - RCT-Folly (= 2021.06.28.00-v2) 221 + - React-Core/Default 222 + - React-cxxreact (= 0.68.2) 223 + - React-jsi (= 0.68.2) 224 + - React-jsiexecutor (= 0.68.2) 225 + - React-perflogger (= 0.68.2) 226 + - Yoga 227 + - React-Core/RCTVibrationHeaders (0.68.2): 228 + - glog 229 + - RCT-Folly (= 2021.06.28.00-v2) 230 + - React-Core/Default 231 + - React-cxxreact (= 0.68.2) 232 + - React-jsi (= 0.68.2) 233 + - React-jsiexecutor (= 0.68.2) 234 + - React-perflogger (= 0.68.2) 235 + - Yoga 236 + - React-Core/RCTWebSocket (0.68.2): 237 + - glog 238 + - RCT-Folly (= 2021.06.28.00-v2) 239 + - React-Core/Default (= 0.68.2) 240 + - React-cxxreact (= 0.68.2) 241 + - React-jsi (= 0.68.2) 242 + - React-jsiexecutor (= 0.68.2) 243 + - React-perflogger (= 0.68.2) 244 + - Yoga 245 + - React-CoreModules (0.68.2): 246 + - RCT-Folly (= 2021.06.28.00-v2) 247 + - RCTTypeSafety (= 0.68.2) 248 + - React-Codegen (= 0.68.2) 249 + - React-Core/CoreModulesHeaders (= 0.68.2) 250 + - React-jsi (= 0.68.2) 251 + - React-RCTImage (= 0.68.2) 252 + - ReactCommon/turbomodule/core (= 0.68.2) 253 + - React-cxxreact (0.68.2): 254 + - boost (= 1.76.0) 255 + - DoubleConversion 256 + - glog 257 + - RCT-Folly (= 2021.06.28.00-v2) 258 + - React-callinvoker (= 0.68.2) 259 + - React-jsi (= 0.68.2) 260 + - React-jsinspector (= 0.68.2) 261 + - React-logger (= 0.68.2) 262 + - React-perflogger (= 0.68.2) 263 + - React-runtimeexecutor (= 0.68.2) 264 + - React-jsi (0.68.2): 265 + - boost (= 1.76.0) 266 + - DoubleConversion 267 + - glog 268 + - RCT-Folly (= 2021.06.28.00-v2) 269 + - React-jsi/Default (= 0.68.2) 270 + - React-jsi/Default (0.68.2): 271 + - boost (= 1.76.0) 272 + - DoubleConversion 273 + - glog 274 + - RCT-Folly (= 2021.06.28.00-v2) 275 + - React-jsiexecutor (0.68.2): 276 + - DoubleConversion 277 + - glog 278 + - RCT-Folly (= 2021.06.28.00-v2) 279 + - React-cxxreact (= 0.68.2) 280 + - React-jsi (= 0.68.2) 281 + - React-perflogger (= 0.68.2) 282 + - React-jsinspector (0.68.2) 283 + - React-logger (0.68.2): 284 + - glog 285 + - React-perflogger (0.68.2) 286 + - React-RCTActionSheet (0.68.2): 287 + - React-Core/RCTActionSheetHeaders (= 0.68.2) 288 + - React-RCTAnimation (0.68.2): 289 + - RCT-Folly (= 2021.06.28.00-v2) 290 + - RCTTypeSafety (= 0.68.2) 291 + - React-Codegen (= 0.68.2) 292 + - React-Core/RCTAnimationHeaders (= 0.68.2) 293 + - React-jsi (= 0.68.2) 294 + - ReactCommon/turbomodule/core (= 0.68.2) 295 + - React-RCTBlob (0.68.2): 296 + - RCT-Folly (= 2021.06.28.00-v2) 297 + - React-Codegen (= 0.68.2) 298 + - React-Core/RCTBlobHeaders (= 0.68.2) 299 + - React-Core/RCTWebSocket (= 0.68.2) 300 + - React-jsi (= 0.68.2) 301 + - React-RCTNetwork (= 0.68.2) 302 + - ReactCommon/turbomodule/core (= 0.68.2) 303 + - React-RCTImage (0.68.2): 304 + - RCT-Folly (= 2021.06.28.00-v2) 305 + - RCTTypeSafety (= 0.68.2) 306 + - React-Codegen (= 0.68.2) 307 + - React-Core/RCTImageHeaders (= 0.68.2) 308 + - React-jsi (= 0.68.2) 309 + - React-RCTNetwork (= 0.68.2) 310 + - ReactCommon/turbomodule/core (= 0.68.2) 311 + - React-RCTLinking (0.68.2): 312 + - React-Codegen (= 0.68.2) 313 + - React-Core/RCTLinkingHeaders (= 0.68.2) 314 + - React-jsi (= 0.68.2) 315 + - ReactCommon/turbomodule/core (= 0.68.2) 316 + - React-RCTNetwork (0.68.2): 317 + - RCT-Folly (= 2021.06.28.00-v2) 318 + - RCTTypeSafety (= 0.68.2) 319 + - React-Codegen (= 0.68.2) 320 + - React-Core/RCTNetworkHeaders (= 0.68.2) 321 + - React-jsi (= 0.68.2) 322 + - ReactCommon/turbomodule/core (= 0.68.2) 323 + - React-RCTSettings (0.68.2): 324 + - RCT-Folly (= 2021.06.28.00-v2) 325 + - RCTTypeSafety (= 0.68.2) 326 + - React-Codegen (= 0.68.2) 327 + - React-Core/RCTSettingsHeaders (= 0.68.2) 328 + - React-jsi (= 0.68.2) 329 + - ReactCommon/turbomodule/core (= 0.68.2) 330 + - React-RCTText (0.68.2): 331 + - React-Core/RCTTextHeaders (= 0.68.2) 332 + - React-RCTVibration (0.68.2): 333 + - RCT-Folly (= 2021.06.28.00-v2) 334 + - React-Codegen (= 0.68.2) 335 + - React-Core/RCTVibrationHeaders (= 0.68.2) 336 + - React-jsi (= 0.68.2) 337 + - ReactCommon/turbomodule/core (= 0.68.2) 338 + - React-runtimeexecutor (0.68.2): 339 + - React-jsi (= 0.68.2) 340 + - ReactCommon/turbomodule/core (0.68.2): 341 + - DoubleConversion 342 + - glog 343 + - RCT-Folly (= 2021.06.28.00-v2) 344 + - React-callinvoker (= 0.68.2) 345 + - React-Core (= 0.68.2) 346 + - React-cxxreact (= 0.68.2) 347 + - React-jsi (= 0.68.2) 348 + - React-logger (= 0.68.2) 349 + - React-perflogger (= 0.68.2) 350 + - SocketRocket (0.6.0) 351 + - Yoga (1.14.0) 352 + - YogaKit (1.18.1): 353 + - Yoga (~> 1.14) 354 + 355 + DEPENDENCIES: 356 + - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) 357 + - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 358 + - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 359 + - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) 360 + - Flipper (= 0.125.0) 361 + - Flipper-Boost-iOSX (= 1.76.0.1.11) 362 + - Flipper-DoubleConversion (= 3.2.0) 363 + - Flipper-Fmt (= 7.1.7) 364 + - Flipper-Folly (= 2.6.10) 365 + - Flipper-Glog (= 0.5.0.4) 366 + - Flipper-PeerTalk (= 0.0.4) 367 + - Flipper-RSocket (= 1.4.3) 368 + - FlipperKit (= 0.125.0) 369 + - FlipperKit/Core (= 0.125.0) 370 + - FlipperKit/CppBridge (= 0.125.0) 371 + - FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0) 372 + - FlipperKit/FBDefines (= 0.125.0) 373 + - FlipperKit/FKPortForwarding (= 0.125.0) 374 + - FlipperKit/FlipperKitHighlightOverlay (= 0.125.0) 375 + - FlipperKit/FlipperKitLayoutPlugin (= 0.125.0) 376 + - FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0) 377 + - FlipperKit/FlipperKitNetworkPlugin (= 0.125.0) 378 + - FlipperKit/FlipperKitReactPlugin (= 0.125.0) 379 + - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0) 380 + - FlipperKit/SKIOSNetworkPlugin (= 0.125.0) 381 + - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 382 + - OpenSSL-Universal (= 1.1.1100) 383 + - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 384 + - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) 385 + - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 386 + - React (from `../node_modules/react-native/`) 387 + - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) 388 + - React-Codegen (from `build/generated/ios`) 389 + - React-Core (from `../node_modules/react-native/`) 390 + - React-Core/DevSupport (from `../node_modules/react-native/`) 391 + - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 392 + - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 393 + - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 394 + - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 395 + - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 396 + - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) 397 + - React-logger (from `../node_modules/react-native/ReactCommon/logger`) 398 + - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) 399 + - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 400 + - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 401 + - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 402 + - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 403 + - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 404 + - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 405 + - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 406 + - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 407 + - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 408 + - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) 409 + - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 410 + - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 411 + 412 + SPEC REPOS: 413 + trunk: 414 + - CocoaAsyncSocket 415 + - Flipper 416 + - Flipper-Boost-iOSX 417 + - Flipper-DoubleConversion 418 + - Flipper-Fmt 419 + - Flipper-Folly 420 + - Flipper-Glog 421 + - Flipper-PeerTalk 422 + - Flipper-RSocket 423 + - FlipperKit 424 + - fmt 425 + - libevent 426 + - OpenSSL-Universal 427 + - SocketRocket 428 + - YogaKit 429 + 430 + EXTERNAL SOURCES: 431 + boost: 432 + :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec" 433 + DoubleConversion: 434 + :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 435 + FBLazyVector: 436 + :path: "../node_modules/react-native/Libraries/FBLazyVector" 437 + FBReactNativeSpec: 438 + :path: "../node_modules/react-native/React/FBReactNativeSpec" 439 + glog: 440 + :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 441 + RCT-Folly: 442 + :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" 443 + RCTRequired: 444 + :path: "../node_modules/react-native/Libraries/RCTRequired" 445 + RCTTypeSafety: 446 + :path: "../node_modules/react-native/Libraries/TypeSafety" 447 + React: 448 + :path: "../node_modules/react-native/" 449 + React-callinvoker: 450 + :path: "../node_modules/react-native/ReactCommon/callinvoker" 451 + React-Codegen: 452 + :path: build/generated/ios 453 + React-Core: 454 + :path: "../node_modules/react-native/" 455 + React-CoreModules: 456 + :path: "../node_modules/react-native/React/CoreModules" 457 + React-cxxreact: 458 + :path: "../node_modules/react-native/ReactCommon/cxxreact" 459 + React-jsi: 460 + :path: "../node_modules/react-native/ReactCommon/jsi" 461 + React-jsiexecutor: 462 + :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 463 + React-jsinspector: 464 + :path: "../node_modules/react-native/ReactCommon/jsinspector" 465 + React-logger: 466 + :path: "../node_modules/react-native/ReactCommon/logger" 467 + React-perflogger: 468 + :path: "../node_modules/react-native/ReactCommon/reactperflogger" 469 + React-RCTActionSheet: 470 + :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 471 + React-RCTAnimation: 472 + :path: "../node_modules/react-native/Libraries/NativeAnimation" 473 + React-RCTBlob: 474 + :path: "../node_modules/react-native/Libraries/Blob" 475 + React-RCTImage: 476 + :path: "../node_modules/react-native/Libraries/Image" 477 + React-RCTLinking: 478 + :path: "../node_modules/react-native/Libraries/LinkingIOS" 479 + React-RCTNetwork: 480 + :path: "../node_modules/react-native/Libraries/Network" 481 + React-RCTSettings: 482 + :path: "../node_modules/react-native/Libraries/Settings" 483 + React-RCTText: 484 + :path: "../node_modules/react-native/Libraries/Text" 485 + React-RCTVibration: 486 + :path: "../node_modules/react-native/Libraries/Vibration" 487 + React-runtimeexecutor: 488 + :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" 489 + ReactCommon: 490 + :path: "../node_modules/react-native/ReactCommon" 491 + Yoga: 492 + :path: "../node_modules/react-native/ReactCommon/yoga" 493 + 494 + SPEC CHECKSUMS: 495 + boost: a7c83b31436843459a1961bfd74b96033dc77234 496 + CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 497 + DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662 498 + FBLazyVector: a7a655862f6b09625d11c772296b01cd5164b648 499 + FBReactNativeSpec: 81ce99032d5b586fddd6a38d450f8595f7e04be4 500 + Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0 501 + Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c 502 + Flipper-DoubleConversion: 3d3d04a078d4f3a1b6c6916587f159dc11f232c4 503 + Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b 504 + Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3 505 + Flipper-Glog: 87bc98ff48de90cb5b0b5114ed3da79d85ee2dd4 506 + Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 507 + Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 508 + FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86 509 + fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 510 + glog: 476ee3e89abb49e07f822b48323c51c57124b572 511 + libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 512 + OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c 513 + RCT-Folly: 4d8508a426467c48885f1151029bc15fa5d7b3b8 514 + RCTRequired: 3e917ea5377751094f38145fdece525aa90545a0 515 + RCTTypeSafety: c43c072a4bd60feb49a9570b0517892b4305c45e 516 + React: 176dd882de001854ced260fad41bb68a31aa4bd0 517 + React-callinvoker: c2864d1818d6e64928d2faf774a3800dfc38fe1f 518 + React-Codegen: 98b6f97f0a7abf7d67e4ce435c77c05b7a95cf05 519 + React-Core: fdaa2916b1c893f39f02cff0476d1fb0cab1e352 520 + React-CoreModules: fd8705b80699ec36c2cdd635c2ce9d874b9cfdfc 521 + React-cxxreact: 1832d971f7b0cb2c7b943dc0ec962762c90c906e 522 + React-jsi: 72af715135abe8c3f0dcf3b2548b71d048b69a7e 523 + React-jsiexecutor: b7b553412f2ec768fe6c8f27cd6bafdb9d8719e6 524 + React-jsinspector: c5989c77cb89ae6a69561095a61cce56a44ae8e8 525 + React-logger: a0833912d93b36b791b7a521672d8ee89107aff1 526 + React-perflogger: a18b4f0bd933b8b24ecf9f3c54f9bf65180f3fe6 527 + React-RCTActionSheet: 547fe42fdb4b6089598d79f8e1d855d7c23e2162 528 + React-RCTAnimation: bc9440a1c37b06ae9ebbb532d244f607805c6034 529 + React-RCTBlob: a1295c8e183756d7ef30ba6e8f8144dfe8a19215 530 + React-RCTImage: a30d1ee09b1334067fbb6f30789aae2d7ac150c9 531 + React-RCTLinking: ffc6d5b88d1cb9aca13c54c2ec6507fbf07f2ac4 532 + React-RCTNetwork: f807a2facab6cf5cf36d592e634611de9cf12d81 533 + React-RCTSettings: 861806819226ed8332e6a8f90df2951a34bb3e7f 534 + React-RCTText: f3fb464cc41a50fc7a1aba4deeb76a9ad8282cb9 535 + React-RCTVibration: 79040b92bfa9c3c2d2cb4f57e981164ec7ab9374 536 + React-runtimeexecutor: b960b687d2dfef0d3761fbb187e01812ebab8b23 537 + ReactCommon: 095366164a276d91ea704ce53cb03825c487a3f2 538 + SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608 539 + Yoga: 99652481fcd320aefa4a7ef90095b95acd181952 540 + YogaKit: f782866e155069a2cca2517aafea43200b01fd5a 541 + 542 + PODFILE CHECKSUM: e7829ab2918d1c9b033dd087443b49c3a19ca424 543 + 544 + COCOAPODS: 1.11.3
+698
ios/app.xcodeproj/project.pbxproj
··· 1 + // !$*UTF8*$! 2 + { 3 + archiveVersion = 1; 4 + classes = { 5 + }; 6 + objectVersion = 54; 7 + objects = { 8 + 9 + /* Begin PBXBuildFile section */ 10 + 00E356F31AD99517003FC87E /* appTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* appTests.m */; }; 11 + 0C80B921A6F3F58F76C31292 /* libPods-app.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-app.a */; }; 12 + 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; 13 + 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 14 + 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 15 + 7699B88040F8A987B510C191 /* libPods-app-appTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-app-appTests.a */; }; 16 + 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; 17 + /* End PBXBuildFile section */ 18 + 19 + /* Begin PBXContainerItemProxy section */ 20 + 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 21 + isa = PBXContainerItemProxy; 22 + containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 23 + proxyType = 1; 24 + remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 25 + remoteInfo = app; 26 + }; 27 + /* End PBXContainerItemProxy section */ 28 + 29 + /* Begin PBXFileReference section */ 30 + 00E356EE1AD99517003FC87E /* appTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = appTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 31 + 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; 32 + 00E356F21AD99517003FC87E /* appTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = appTests.m; sourceTree = "<group>"; }; 33 + 13B07F961A680F5B00A75B9A /* app.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = app.app; sourceTree = BUILT_PRODUCTS_DIR; }; 34 + 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = app/AppDelegate.h; sourceTree = "<group>"; }; 35 + 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = app/AppDelegate.mm; sourceTree = "<group>"; }; 36 + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = app/Images.xcassets; sourceTree = "<group>"; }; 37 + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = app/Info.plist; sourceTree = "<group>"; }; 38 + 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = app/main.m; sourceTree = "<group>"; }; 39 + 19F6CBCC0A4E27FBF8BF4A61 /* libPods-app-appTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-app-appTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 40 + 3B4392A12AC88292D35C810B /* Pods-app.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-app.debug.xcconfig"; path = "Target Support Files/Pods-app/Pods-app.debug.xcconfig"; sourceTree = "<group>"; }; 41 + 5709B34CF0A7D63546082F79 /* Pods-app.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-app.release.xcconfig"; path = "Target Support Files/Pods-app/Pods-app.release.xcconfig"; sourceTree = "<group>"; }; 42 + 5B7EB9410499542E8C5724F5 /* Pods-app-appTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-app-appTests.debug.xcconfig"; path = "Target Support Files/Pods-app-appTests/Pods-app-appTests.debug.xcconfig"; sourceTree = "<group>"; }; 43 + 5DCACB8F33CDC322A6C60F78 /* libPods-app.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-app.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 44 + 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = app/LaunchScreen.storyboard; sourceTree = "<group>"; }; 45 + 89C6BE57DB24E9ADA2F236DE /* Pods-app-appTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-app-appTests.release.xcconfig"; path = "Target Support Files/Pods-app-appTests/Pods-app-appTests.release.xcconfig"; sourceTree = "<group>"; }; 46 + ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 47 + /* End PBXFileReference section */ 48 + 49 + /* Begin PBXFrameworksBuildPhase section */ 50 + 00E356EB1AD99517003FC87E /* Frameworks */ = { 51 + isa = PBXFrameworksBuildPhase; 52 + buildActionMask = 2147483647; 53 + files = ( 54 + 7699B88040F8A987B510C191 /* libPods-app-appTests.a in Frameworks */, 55 + ); 56 + runOnlyForDeploymentPostprocessing = 0; 57 + }; 58 + 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 59 + isa = PBXFrameworksBuildPhase; 60 + buildActionMask = 2147483647; 61 + files = ( 62 + 0C80B921A6F3F58F76C31292 /* libPods-app.a in Frameworks */, 63 + ); 64 + runOnlyForDeploymentPostprocessing = 0; 65 + }; 66 + /* End PBXFrameworksBuildPhase section */ 67 + 68 + /* Begin PBXGroup section */ 69 + 00E356EF1AD99517003FC87E /* appTests */ = { 70 + isa = PBXGroup; 71 + children = ( 72 + 00E356F21AD99517003FC87E /* appTests.m */, 73 + 00E356F01AD99517003FC87E /* Supporting Files */, 74 + ); 75 + path = appTests; 76 + sourceTree = "<group>"; 77 + }; 78 + 00E356F01AD99517003FC87E /* Supporting Files */ = { 79 + isa = PBXGroup; 80 + children = ( 81 + 00E356F11AD99517003FC87E /* Info.plist */, 82 + ); 83 + name = "Supporting Files"; 84 + sourceTree = "<group>"; 85 + }; 86 + 13B07FAE1A68108700A75B9A /* app */ = { 87 + isa = PBXGroup; 88 + children = ( 89 + 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 90 + 13B07FB01A68108700A75B9A /* AppDelegate.mm */, 91 + 13B07FB51A68108700A75B9A /* Images.xcassets */, 92 + 13B07FB61A68108700A75B9A /* Info.plist */, 93 + 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 94 + 13B07FB71A68108700A75B9A /* main.m */, 95 + ); 96 + name = app; 97 + sourceTree = "<group>"; 98 + }; 99 + 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 100 + isa = PBXGroup; 101 + children = ( 102 + ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 103 + 5DCACB8F33CDC322A6C60F78 /* libPods-app.a */, 104 + 19F6CBCC0A4E27FBF8BF4A61 /* libPods-app-appTests.a */, 105 + ); 106 + name = Frameworks; 107 + sourceTree = "<group>"; 108 + }; 109 + 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 110 + isa = PBXGroup; 111 + children = ( 112 + ); 113 + name = Libraries; 114 + sourceTree = "<group>"; 115 + }; 116 + 83CBB9F61A601CBA00E9B192 = { 117 + isa = PBXGroup; 118 + children = ( 119 + 13B07FAE1A68108700A75B9A /* app */, 120 + 832341AE1AAA6A7D00B99B32 /* Libraries */, 121 + 00E356EF1AD99517003FC87E /* appTests */, 122 + 83CBBA001A601CBA00E9B192 /* Products */, 123 + 2D16E6871FA4F8E400B85C8A /* Frameworks */, 124 + BBD78D7AC51CEA395F1C20DB /* Pods */, 125 + ); 126 + indentWidth = 2; 127 + sourceTree = "<group>"; 128 + tabWidth = 2; 129 + usesTabs = 0; 130 + }; 131 + 83CBBA001A601CBA00E9B192 /* Products */ = { 132 + isa = PBXGroup; 133 + children = ( 134 + 13B07F961A680F5B00A75B9A /* app.app */, 135 + 00E356EE1AD99517003FC87E /* appTests.xctest */, 136 + ); 137 + name = Products; 138 + sourceTree = "<group>"; 139 + }; 140 + BBD78D7AC51CEA395F1C20DB /* Pods */ = { 141 + isa = PBXGroup; 142 + children = ( 143 + 3B4392A12AC88292D35C810B /* Pods-app.debug.xcconfig */, 144 + 5709B34CF0A7D63546082F79 /* Pods-app.release.xcconfig */, 145 + 5B7EB9410499542E8C5724F5 /* Pods-app-appTests.debug.xcconfig */, 146 + 89C6BE57DB24E9ADA2F236DE /* Pods-app-appTests.release.xcconfig */, 147 + ); 148 + path = Pods; 149 + sourceTree = "<group>"; 150 + }; 151 + /* End PBXGroup section */ 152 + 153 + /* Begin PBXNativeTarget section */ 154 + 00E356ED1AD99517003FC87E /* appTests */ = { 155 + isa = PBXNativeTarget; 156 + buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "appTests" */; 157 + buildPhases = ( 158 + A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */, 159 + 00E356EA1AD99517003FC87E /* Sources */, 160 + 00E356EB1AD99517003FC87E /* Frameworks */, 161 + 00E356EC1AD99517003FC87E /* Resources */, 162 + C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */, 163 + F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */, 164 + ); 165 + buildRules = ( 166 + ); 167 + dependencies = ( 168 + 00E356F51AD99517003FC87E /* PBXTargetDependency */, 169 + ); 170 + name = appTests; 171 + productName = appTests; 172 + productReference = 00E356EE1AD99517003FC87E /* appTests.xctest */; 173 + productType = "com.apple.product-type.bundle.unit-test"; 174 + }; 175 + 13B07F861A680F5B00A75B9A /* app */ = { 176 + isa = PBXNativeTarget; 177 + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "app" */; 178 + buildPhases = ( 179 + C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */, 180 + FD10A7F022414F080027D42C /* Start Packager */, 181 + 13B07F871A680F5B00A75B9A /* Sources */, 182 + 13B07F8C1A680F5B00A75B9A /* Frameworks */, 183 + 13B07F8E1A680F5B00A75B9A /* Resources */, 184 + 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 185 + 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, 186 + E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, 187 + ); 188 + buildRules = ( 189 + ); 190 + dependencies = ( 191 + ); 192 + name = app; 193 + productName = app; 194 + productReference = 13B07F961A680F5B00A75B9A /* app.app */; 195 + productType = "com.apple.product-type.application"; 196 + }; 197 + /* End PBXNativeTarget section */ 198 + 199 + /* Begin PBXProject section */ 200 + 83CBB9F71A601CBA00E9B192 /* Project object */ = { 201 + isa = PBXProject; 202 + attributes = { 203 + LastUpgradeCheck = 1210; 204 + TargetAttributes = { 205 + 00E356ED1AD99517003FC87E = { 206 + CreatedOnToolsVersion = 6.2; 207 + TestTargetID = 13B07F861A680F5B00A75B9A; 208 + }; 209 + 13B07F861A680F5B00A75B9A = { 210 + LastSwiftMigration = 1120; 211 + }; 212 + }; 213 + }; 214 + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "app" */; 215 + compatibilityVersion = "Xcode 12.0"; 216 + developmentRegion = en; 217 + hasScannedForEncodings = 0; 218 + knownRegions = ( 219 + en, 220 + Base, 221 + ); 222 + mainGroup = 83CBB9F61A601CBA00E9B192; 223 + productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 224 + projectDirPath = ""; 225 + projectRoot = ""; 226 + targets = ( 227 + 13B07F861A680F5B00A75B9A /* app */, 228 + 00E356ED1AD99517003FC87E /* appTests */, 229 + ); 230 + }; 231 + /* End PBXProject section */ 232 + 233 + /* Begin PBXResourcesBuildPhase section */ 234 + 00E356EC1AD99517003FC87E /* Resources */ = { 235 + isa = PBXResourcesBuildPhase; 236 + buildActionMask = 2147483647; 237 + files = ( 238 + ); 239 + runOnlyForDeploymentPostprocessing = 0; 240 + }; 241 + 13B07F8E1A680F5B00A75B9A /* Resources */ = { 242 + isa = PBXResourcesBuildPhase; 243 + buildActionMask = 2147483647; 244 + files = ( 245 + 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 246 + 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 247 + ); 248 + runOnlyForDeploymentPostprocessing = 0; 249 + }; 250 + /* End PBXResourcesBuildPhase section */ 251 + 252 + /* Begin PBXShellScriptBuildPhase section */ 253 + 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 254 + isa = PBXShellScriptBuildPhase; 255 + buildActionMask = 2147483647; 256 + files = ( 257 + ); 258 + inputPaths = ( 259 + ); 260 + name = "Bundle React Native code and images"; 261 + outputPaths = ( 262 + ); 263 + runOnlyForDeploymentPostprocessing = 0; 264 + shellPath = /bin/sh; 265 + shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; 266 + }; 267 + 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = { 268 + isa = PBXShellScriptBuildPhase; 269 + buildActionMask = 2147483647; 270 + files = ( 271 + ); 272 + inputFileListPaths = ( 273 + "${PODS_ROOT}/Target Support Files/Pods-app/Pods-app-frameworks-${CONFIGURATION}-input-files.xcfilelist", 274 + ); 275 + name = "[CP] Embed Pods Frameworks"; 276 + outputFileListPaths = ( 277 + "${PODS_ROOT}/Target Support Files/Pods-app/Pods-app-frameworks-${CONFIGURATION}-output-files.xcfilelist", 278 + ); 279 + runOnlyForDeploymentPostprocessing = 0; 280 + shellPath = /bin/sh; 281 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-app/Pods-app-frameworks.sh\"\n"; 282 + showEnvVarsInLog = 0; 283 + }; 284 + A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { 285 + isa = PBXShellScriptBuildPhase; 286 + buildActionMask = 2147483647; 287 + files = ( 288 + ); 289 + inputFileListPaths = ( 290 + ); 291 + inputPaths = ( 292 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 293 + "${PODS_ROOT}/Manifest.lock", 294 + ); 295 + name = "[CP] Check Pods Manifest.lock"; 296 + outputFileListPaths = ( 297 + ); 298 + outputPaths = ( 299 + "$(DERIVED_FILE_DIR)/Pods-app-appTests-checkManifestLockResult.txt", 300 + ); 301 + runOnlyForDeploymentPostprocessing = 0; 302 + shellPath = /bin/sh; 303 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 304 + showEnvVarsInLog = 0; 305 + }; 306 + C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { 307 + isa = PBXShellScriptBuildPhase; 308 + buildActionMask = 2147483647; 309 + files = ( 310 + ); 311 + inputFileListPaths = ( 312 + ); 313 + inputPaths = ( 314 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 315 + "${PODS_ROOT}/Manifest.lock", 316 + ); 317 + name = "[CP] Check Pods Manifest.lock"; 318 + outputFileListPaths = ( 319 + ); 320 + outputPaths = ( 321 + "$(DERIVED_FILE_DIR)/Pods-app-checkManifestLockResult.txt", 322 + ); 323 + runOnlyForDeploymentPostprocessing = 0; 324 + shellPath = /bin/sh; 325 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 326 + showEnvVarsInLog = 0; 327 + }; 328 + C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = { 329 + isa = PBXShellScriptBuildPhase; 330 + buildActionMask = 2147483647; 331 + files = ( 332 + ); 333 + inputFileListPaths = ( 334 + "${PODS_ROOT}/Target Support Files/Pods-app-appTests/Pods-app-appTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", 335 + ); 336 + name = "[CP] Embed Pods Frameworks"; 337 + outputFileListPaths = ( 338 + "${PODS_ROOT}/Target Support Files/Pods-app-appTests/Pods-app-appTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", 339 + ); 340 + runOnlyForDeploymentPostprocessing = 0; 341 + shellPath = /bin/sh; 342 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-app-appTests/Pods-app-appTests-frameworks.sh\"\n"; 343 + showEnvVarsInLog = 0; 344 + }; 345 + E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { 346 + isa = PBXShellScriptBuildPhase; 347 + buildActionMask = 2147483647; 348 + files = ( 349 + ); 350 + inputFileListPaths = ( 351 + "${PODS_ROOT}/Target Support Files/Pods-app/Pods-app-resources-${CONFIGURATION}-input-files.xcfilelist", 352 + ); 353 + name = "[CP] Copy Pods Resources"; 354 + outputFileListPaths = ( 355 + "${PODS_ROOT}/Target Support Files/Pods-app/Pods-app-resources-${CONFIGURATION}-output-files.xcfilelist", 356 + ); 357 + runOnlyForDeploymentPostprocessing = 0; 358 + shellPath = /bin/sh; 359 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-app/Pods-app-resources.sh\"\n"; 360 + showEnvVarsInLog = 0; 361 + }; 362 + F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = { 363 + isa = PBXShellScriptBuildPhase; 364 + buildActionMask = 2147483647; 365 + files = ( 366 + ); 367 + inputFileListPaths = ( 368 + "${PODS_ROOT}/Target Support Files/Pods-app-appTests/Pods-app-appTests-resources-${CONFIGURATION}-input-files.xcfilelist", 369 + ); 370 + name = "[CP] Copy Pods Resources"; 371 + outputFileListPaths = ( 372 + "${PODS_ROOT}/Target Support Files/Pods-app-appTests/Pods-app-appTests-resources-${CONFIGURATION}-output-files.xcfilelist", 373 + ); 374 + runOnlyForDeploymentPostprocessing = 0; 375 + shellPath = /bin/sh; 376 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-app-appTests/Pods-app-appTests-resources.sh\"\n"; 377 + showEnvVarsInLog = 0; 378 + }; 379 + FD10A7F022414F080027D42C /* Start Packager */ = { 380 + isa = PBXShellScriptBuildPhase; 381 + buildActionMask = 2147483647; 382 + files = ( 383 + ); 384 + inputFileListPaths = ( 385 + ); 386 + inputPaths = ( 387 + ); 388 + name = "Start Packager"; 389 + outputFileListPaths = ( 390 + ); 391 + outputPaths = ( 392 + ); 393 + runOnlyForDeploymentPostprocessing = 0; 394 + shellPath = /bin/sh; 395 + shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; 396 + showEnvVarsInLog = 0; 397 + }; 398 + /* End PBXShellScriptBuildPhase section */ 399 + 400 + /* Begin PBXSourcesBuildPhase section */ 401 + 00E356EA1AD99517003FC87E /* Sources */ = { 402 + isa = PBXSourcesBuildPhase; 403 + buildActionMask = 2147483647; 404 + files = ( 405 + 00E356F31AD99517003FC87E /* appTests.m in Sources */, 406 + ); 407 + runOnlyForDeploymentPostprocessing = 0; 408 + }; 409 + 13B07F871A680F5B00A75B9A /* Sources */ = { 410 + isa = PBXSourcesBuildPhase; 411 + buildActionMask = 2147483647; 412 + files = ( 413 + 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */, 414 + 13B07FC11A68108700A75B9A /* main.m in Sources */, 415 + ); 416 + runOnlyForDeploymentPostprocessing = 0; 417 + }; 418 + /* End PBXSourcesBuildPhase section */ 419 + 420 + /* Begin PBXTargetDependency section */ 421 + 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 422 + isa = PBXTargetDependency; 423 + target = 13B07F861A680F5B00A75B9A /* app */; 424 + targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 425 + }; 426 + /* End PBXTargetDependency section */ 427 + 428 + /* Begin XCBuildConfiguration section */ 429 + 00E356F61AD99517003FC87E /* Debug */ = { 430 + isa = XCBuildConfiguration; 431 + baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-app-appTests.debug.xcconfig */; 432 + buildSettings = { 433 + BUNDLE_LOADER = "$(TEST_HOST)"; 434 + GCC_PREPROCESSOR_DEFINITIONS = ( 435 + "DEBUG=1", 436 + "$(inherited)", 437 + ); 438 + INFOPLIST_FILE = appTests/Info.plist; 439 + IPHONEOS_DEPLOYMENT_TARGET = 11.0; 440 + LD_RUNPATH_SEARCH_PATHS = ( 441 + "$(inherited)", 442 + "@executable_path/Frameworks", 443 + "@loader_path/Frameworks", 444 + ); 445 + OTHER_LDFLAGS = ( 446 + "-ObjC", 447 + "-lc++", 448 + "$(inherited)", 449 + ); 450 + PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 451 + PRODUCT_NAME = "$(TARGET_NAME)"; 452 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/app.app/app"; 453 + }; 454 + name = Debug; 455 + }; 456 + 00E356F71AD99517003FC87E /* Release */ = { 457 + isa = XCBuildConfiguration; 458 + baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-app-appTests.release.xcconfig */; 459 + buildSettings = { 460 + BUNDLE_LOADER = "$(TEST_HOST)"; 461 + COPY_PHASE_STRIP = NO; 462 + INFOPLIST_FILE = appTests/Info.plist; 463 + IPHONEOS_DEPLOYMENT_TARGET = 11.0; 464 + LD_RUNPATH_SEARCH_PATHS = ( 465 + "$(inherited)", 466 + "@executable_path/Frameworks", 467 + "@loader_path/Frameworks", 468 + ); 469 + OTHER_LDFLAGS = ( 470 + "-ObjC", 471 + "-lc++", 472 + "$(inherited)", 473 + ); 474 + PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 475 + PRODUCT_NAME = "$(TARGET_NAME)"; 476 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/app.app/app"; 477 + }; 478 + name = Release; 479 + }; 480 + 13B07F941A680F5B00A75B9A /* Debug */ = { 481 + isa = XCBuildConfiguration; 482 + baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-app.debug.xcconfig */; 483 + buildSettings = { 484 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 485 + CLANG_ENABLE_MODULES = YES; 486 + CURRENT_PROJECT_VERSION = 1; 487 + ENABLE_BITCODE = NO; 488 + INFOPLIST_FILE = app/Info.plist; 489 + LD_RUNPATH_SEARCH_PATHS = ( 490 + "$(inherited)", 491 + "@executable_path/Frameworks", 492 + ); 493 + OTHER_LDFLAGS = ( 494 + "$(inherited)", 495 + "-ObjC", 496 + "-lc++", 497 + ); 498 + PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 499 + PRODUCT_NAME = app; 500 + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 501 + SWIFT_VERSION = 5.0; 502 + VERSIONING_SYSTEM = "apple-generic"; 503 + }; 504 + name = Debug; 505 + }; 506 + 13B07F951A680F5B00A75B9A /* Release */ = { 507 + isa = XCBuildConfiguration; 508 + baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-app.release.xcconfig */; 509 + buildSettings = { 510 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 511 + CLANG_ENABLE_MODULES = YES; 512 + CURRENT_PROJECT_VERSION = 1; 513 + INFOPLIST_FILE = app/Info.plist; 514 + LD_RUNPATH_SEARCH_PATHS = ( 515 + "$(inherited)", 516 + "@executable_path/Frameworks", 517 + ); 518 + OTHER_LDFLAGS = ( 519 + "$(inherited)", 520 + "-ObjC", 521 + "-lc++", 522 + ); 523 + PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 524 + PRODUCT_NAME = app; 525 + SWIFT_VERSION = 5.0; 526 + VERSIONING_SYSTEM = "apple-generic"; 527 + }; 528 + name = Release; 529 + }; 530 + 83CBBA201A601CBA00E9B192 /* Debug */ = { 531 + isa = XCBuildConfiguration; 532 + buildSettings = { 533 + ALWAYS_SEARCH_USER_PATHS = NO; 534 + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 535 + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; 536 + CLANG_CXX_LIBRARY = "libc++"; 537 + CLANG_ENABLE_MODULES = YES; 538 + CLANG_ENABLE_OBJC_ARC = YES; 539 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 540 + CLANG_WARN_BOOL_CONVERSION = YES; 541 + CLANG_WARN_COMMA = YES; 542 + CLANG_WARN_CONSTANT_CONVERSION = YES; 543 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 544 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 545 + CLANG_WARN_EMPTY_BODY = YES; 546 + CLANG_WARN_ENUM_CONVERSION = YES; 547 + CLANG_WARN_INFINITE_RECURSION = YES; 548 + CLANG_WARN_INT_CONVERSION = YES; 549 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 550 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 551 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 552 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 553 + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 554 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 555 + CLANG_WARN_STRICT_PROTOTYPES = YES; 556 + CLANG_WARN_SUSPICIOUS_MOVE = YES; 557 + CLANG_WARN_UNREACHABLE_CODE = YES; 558 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 559 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 560 + COPY_PHASE_STRIP = NO; 561 + ENABLE_STRICT_OBJC_MSGSEND = YES; 562 + ENABLE_TESTABILITY = YES; 563 + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; 564 + GCC_C_LANGUAGE_STANDARD = gnu99; 565 + GCC_DYNAMIC_NO_PIC = NO; 566 + GCC_NO_COMMON_BLOCKS = YES; 567 + GCC_OPTIMIZATION_LEVEL = 0; 568 + GCC_PREPROCESSOR_DEFINITIONS = ( 569 + "DEBUG=1", 570 + "$(inherited)", 571 + ); 572 + GCC_SYMBOLS_PRIVATE_EXTERN = NO; 573 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 574 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 575 + GCC_WARN_UNDECLARED_SELECTOR = YES; 576 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 577 + GCC_WARN_UNUSED_FUNCTION = YES; 578 + GCC_WARN_UNUSED_VARIABLE = YES; 579 + IPHONEOS_DEPLOYMENT_TARGET = 11.0; 580 + LD_RUNPATH_SEARCH_PATHS = ( 581 + /usr/lib/swift, 582 + "$(inherited)", 583 + ); 584 + LIBRARY_SEARCH_PATHS = ( 585 + "\"$(SDKROOT)/usr/lib/swift\"", 586 + "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 587 + "\"$(inherited)\"", 588 + ); 589 + MTL_ENABLE_DEBUG_INFO = YES; 590 + ONLY_ACTIVE_ARCH = YES; 591 + OTHER_CPLUSPLUSFLAGS = ( 592 + "$(OTHER_CFLAGS)", 593 + "-DFOLLY_NO_CONFIG", 594 + "-DFOLLY_MOBILE=1", 595 + "-DFOLLY_USE_LIBCPP=1", 596 + ); 597 + SDKROOT = iphoneos; 598 + }; 599 + name = Debug; 600 + }; 601 + 83CBBA211A601CBA00E9B192 /* Release */ = { 602 + isa = XCBuildConfiguration; 603 + buildSettings = { 604 + ALWAYS_SEARCH_USER_PATHS = NO; 605 + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 606 + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; 607 + CLANG_CXX_LIBRARY = "libc++"; 608 + CLANG_ENABLE_MODULES = YES; 609 + CLANG_ENABLE_OBJC_ARC = YES; 610 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 611 + CLANG_WARN_BOOL_CONVERSION = YES; 612 + CLANG_WARN_COMMA = YES; 613 + CLANG_WARN_CONSTANT_CONVERSION = YES; 614 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 615 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 616 + CLANG_WARN_EMPTY_BODY = YES; 617 + CLANG_WARN_ENUM_CONVERSION = YES; 618 + CLANG_WARN_INFINITE_RECURSION = YES; 619 + CLANG_WARN_INT_CONVERSION = YES; 620 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 621 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 622 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 623 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 624 + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 625 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 626 + CLANG_WARN_STRICT_PROTOTYPES = YES; 627 + CLANG_WARN_SUSPICIOUS_MOVE = YES; 628 + CLANG_WARN_UNREACHABLE_CODE = YES; 629 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 630 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 631 + COPY_PHASE_STRIP = YES; 632 + ENABLE_NS_ASSERTIONS = NO; 633 + ENABLE_STRICT_OBJC_MSGSEND = YES; 634 + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; 635 + GCC_C_LANGUAGE_STANDARD = gnu99; 636 + GCC_NO_COMMON_BLOCKS = YES; 637 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 638 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 639 + GCC_WARN_UNDECLARED_SELECTOR = YES; 640 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 641 + GCC_WARN_UNUSED_FUNCTION = YES; 642 + GCC_WARN_UNUSED_VARIABLE = YES; 643 + IPHONEOS_DEPLOYMENT_TARGET = 11.0; 644 + LD_RUNPATH_SEARCH_PATHS = ( 645 + /usr/lib/swift, 646 + "$(inherited)", 647 + ); 648 + LIBRARY_SEARCH_PATHS = ( 649 + "\"$(SDKROOT)/usr/lib/swift\"", 650 + "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 651 + "\"$(inherited)\"", 652 + ); 653 + MTL_ENABLE_DEBUG_INFO = NO; 654 + OTHER_CPLUSPLUSFLAGS = ( 655 + "$(OTHER_CFLAGS)", 656 + "-DFOLLY_NO_CONFIG", 657 + "-DFOLLY_MOBILE=1", 658 + "-DFOLLY_USE_LIBCPP=1", 659 + ); 660 + SDKROOT = iphoneos; 661 + VALIDATE_PRODUCT = YES; 662 + }; 663 + name = Release; 664 + }; 665 + /* End XCBuildConfiguration section */ 666 + 667 + /* Begin XCConfigurationList section */ 668 + 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "appTests" */ = { 669 + isa = XCConfigurationList; 670 + buildConfigurations = ( 671 + 00E356F61AD99517003FC87E /* Debug */, 672 + 00E356F71AD99517003FC87E /* Release */, 673 + ); 674 + defaultConfigurationIsVisible = 0; 675 + defaultConfigurationName = Release; 676 + }; 677 + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "app" */ = { 678 + isa = XCConfigurationList; 679 + buildConfigurations = ( 680 + 13B07F941A680F5B00A75B9A /* Debug */, 681 + 13B07F951A680F5B00A75B9A /* Release */, 682 + ); 683 + defaultConfigurationIsVisible = 0; 684 + defaultConfigurationName = Release; 685 + }; 686 + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "app" */ = { 687 + isa = XCConfigurationList; 688 + buildConfigurations = ( 689 + 83CBBA201A601CBA00E9B192 /* Debug */, 690 + 83CBBA211A601CBA00E9B192 /* Release */, 691 + ); 692 + defaultConfigurationIsVisible = 0; 693 + defaultConfigurationName = Release; 694 + }; 695 + /* End XCConfigurationList section */ 696 + }; 697 + rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 698 + }
+88
ios/app.xcodeproj/xcshareddata/xcschemes/app.xcscheme
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <Scheme 3 + LastUpgradeVersion = "1210" 4 + version = "1.3"> 5 + <BuildAction 6 + parallelizeBuildables = "YES" 7 + buildImplicitDependencies = "YES"> 8 + <BuildActionEntries> 9 + <BuildActionEntry 10 + buildForTesting = "YES" 11 + buildForRunning = "YES" 12 + buildForProfiling = "YES" 13 + buildForArchiving = "YES" 14 + buildForAnalyzing = "YES"> 15 + <BuildableReference 16 + BuildableIdentifier = "primary" 17 + BlueprintIdentifier = "13B07F861A680F5B00A75B9A" 18 + BuildableName = "app.app" 19 + BlueprintName = "app" 20 + ReferencedContainer = "container:app.xcodeproj"> 21 + </BuildableReference> 22 + </BuildActionEntry> 23 + </BuildActionEntries> 24 + </BuildAction> 25 + <TestAction 26 + buildConfiguration = "Debug" 27 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" 28 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" 29 + shouldUseLaunchSchemeArgsEnv = "YES"> 30 + <Testables> 31 + <TestableReference 32 + skipped = "NO"> 33 + <BuildableReference 34 + BuildableIdentifier = "primary" 35 + BlueprintIdentifier = "00E356ED1AD99517003FC87E" 36 + BuildableName = "appTests.xctest" 37 + BlueprintName = "appTests" 38 + ReferencedContainer = "container:app.xcodeproj"> 39 + </BuildableReference> 40 + </TestableReference> 41 + </Testables> 42 + </TestAction> 43 + <LaunchAction 44 + buildConfiguration = "Debug" 45 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" 46 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" 47 + launchStyle = "0" 48 + useCustomWorkingDirectory = "NO" 49 + ignoresPersistentStateOnLaunch = "NO" 50 + debugDocumentVersioning = "YES" 51 + debugServiceExtension = "internal" 52 + allowLocationSimulation = "YES"> 53 + <BuildableProductRunnable 54 + runnableDebuggingMode = "0"> 55 + <BuildableReference 56 + BuildableIdentifier = "primary" 57 + BlueprintIdentifier = "13B07F861A680F5B00A75B9A" 58 + BuildableName = "app.app" 59 + BlueprintName = "app" 60 + ReferencedContainer = "container:app.xcodeproj"> 61 + </BuildableReference> 62 + </BuildableProductRunnable> 63 + </LaunchAction> 64 + <ProfileAction 65 + buildConfiguration = "Release" 66 + shouldUseLaunchSchemeArgsEnv = "YES" 67 + savedToolIdentifier = "" 68 + useCustomWorkingDirectory = "NO" 69 + debugDocumentVersioning = "YES"> 70 + <BuildableProductRunnable 71 + runnableDebuggingMode = "0"> 72 + <BuildableReference 73 + BuildableIdentifier = "primary" 74 + BlueprintIdentifier = "13B07F861A680F5B00A75B9A" 75 + BuildableName = "app.app" 76 + BlueprintName = "app" 77 + ReferencedContainer = "container:app.xcodeproj"> 78 + </BuildableReference> 79 + </BuildableProductRunnable> 80 + </ProfileAction> 81 + <AnalyzeAction 82 + buildConfiguration = "Debug"> 83 + </AnalyzeAction> 84 + <ArchiveAction 85 + buildConfiguration = "Release" 86 + revealArchiveInOrganizer = "YES"> 87 + </ArchiveAction> 88 + </Scheme>
+10
ios/app.xcworkspace/contents.xcworkspacedata
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <Workspace 3 + version = "1.0"> 4 + <FileRef 5 + location = "group:app.xcodeproj"> 6 + </FileRef> 7 + <FileRef 8 + location = "group:Pods/Pods.xcodeproj"> 9 + </FileRef> 10 + </Workspace>
+8
ios/app/AppDelegate.h
··· 1 + #import <React/RCTBridgeDelegate.h> 2 + #import <UIKit/UIKit.h> 3 + 4 + @interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate> 5 + 6 + @property (nonatomic, strong) UIWindow *window; 7 + 8 + @end
+108
ios/app/AppDelegate.mm
··· 1 + #import "AppDelegate.h" 2 + 3 + #import <React/RCTBridge.h> 4 + #import <React/RCTBundleURLProvider.h> 5 + #import <React/RCTRootView.h> 6 + 7 + #import <React/RCTAppSetupUtils.h> 8 + 9 + #if RCT_NEW_ARCH_ENABLED 10 + #import <React/CoreModulesPlugins.h> 11 + #import <React/RCTCxxBridgeDelegate.h> 12 + #import <React/RCTFabricSurfaceHostingProxyRootView.h> 13 + #import <React/RCTSurfacePresenter.h> 14 + #import <React/RCTSurfacePresenterBridgeAdapter.h> 15 + #import <ReactCommon/RCTTurboModuleManager.h> 16 + 17 + #import <react/config/ReactNativeConfig.h> 18 + 19 + @interface AppDelegate () <RCTCxxBridgeDelegate, RCTTurboModuleManagerDelegate> { 20 + RCTTurboModuleManager *_turboModuleManager; 21 + RCTSurfacePresenterBridgeAdapter *_bridgeAdapter; 22 + std::shared_ptr<const facebook::react::ReactNativeConfig> _reactNativeConfig; 23 + facebook::react::ContextContainer::Shared _contextContainer; 24 + } 25 + @end 26 + #endif 27 + 28 + @implementation AppDelegate 29 + 30 + - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 31 + { 32 + RCTAppSetupPrepareApp(application); 33 + 34 + RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 35 + 36 + #if RCT_NEW_ARCH_ENABLED 37 + _contextContainer = std::make_shared<facebook::react::ContextContainer const>(); 38 + _reactNativeConfig = std::make_shared<facebook::react::EmptyReactNativeConfig const>(); 39 + _contextContainer->insert("ReactNativeConfig", _reactNativeConfig); 40 + _bridgeAdapter = [[RCTSurfacePresenterBridgeAdapter alloc] initWithBridge:bridge contextContainer:_contextContainer]; 41 + bridge.surfacePresenter = _bridgeAdapter.surfacePresenter; 42 + #endif 43 + 44 + UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"app", nil); 45 + 46 + if (@available(iOS 13.0, *)) { 47 + rootView.backgroundColor = [UIColor systemBackgroundColor]; 48 + } else { 49 + rootView.backgroundColor = [UIColor whiteColor]; 50 + } 51 + 52 + self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 53 + UIViewController *rootViewController = [UIViewController new]; 54 + rootViewController.view = rootView; 55 + self.window.rootViewController = rootViewController; 56 + [self.window makeKeyAndVisible]; 57 + return YES; 58 + } 59 + 60 + - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 61 + { 62 + #if DEBUG 63 + return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; 64 + #else 65 + return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 66 + #endif 67 + } 68 + 69 + #if RCT_NEW_ARCH_ENABLED 70 + 71 + #pragma mark - RCTCxxBridgeDelegate 72 + 73 + - (std::unique_ptr<facebook::react::JSExecutorFactory>)jsExecutorFactoryForBridge:(RCTBridge *)bridge 74 + { 75 + _turboModuleManager = [[RCTTurboModuleManager alloc] initWithBridge:bridge 76 + delegate:self 77 + jsInvoker:bridge.jsCallInvoker]; 78 + return RCTAppSetupDefaultJsExecutorFactory(bridge, _turboModuleManager); 79 + } 80 + 81 + #pragma mark RCTTurboModuleManagerDelegate 82 + 83 + - (Class)getModuleClassFromName:(const char *)name 84 + { 85 + return RCTCoreModulesClassProvider(name); 86 + } 87 + 88 + - (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const std::string &)name 89 + jsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker 90 + { 91 + return nullptr; 92 + } 93 + 94 + - (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const std::string &)name 95 + initParams: 96 + (const facebook::react::ObjCTurboModule::InitParams &)params 97 + { 98 + return nullptr; 99 + } 100 + 101 + - (id<RCTTurboModule>)getModuleInstanceFromClass:(Class)moduleClass 102 + { 103 + return RCTAppSetupDefaultModuleFromClass(moduleClass); 104 + } 105 + 106 + #endif 107 + 108 + @end
+53
ios/app/Images.xcassets/AppIcon.appiconset/Contents.json
··· 1 + { 2 + "images" : [ 3 + { 4 + "idiom" : "iphone", 5 + "scale" : "2x", 6 + "size" : "20x20" 7 + }, 8 + { 9 + "idiom" : "iphone", 10 + "scale" : "3x", 11 + "size" : "20x20" 12 + }, 13 + { 14 + "idiom" : "iphone", 15 + "scale" : "2x", 16 + "size" : "29x29" 17 + }, 18 + { 19 + "idiom" : "iphone", 20 + "scale" : "3x", 21 + "size" : "29x29" 22 + }, 23 + { 24 + "idiom" : "iphone", 25 + "scale" : "2x", 26 + "size" : "40x40" 27 + }, 28 + { 29 + "idiom" : "iphone", 30 + "scale" : "3x", 31 + "size" : "40x40" 32 + }, 33 + { 34 + "idiom" : "iphone", 35 + "scale" : "2x", 36 + "size" : "60x60" 37 + }, 38 + { 39 + "idiom" : "iphone", 40 + "scale" : "3x", 41 + "size" : "60x60" 42 + }, 43 + { 44 + "idiom" : "ios-marketing", 45 + "scale" : "1x", 46 + "size" : "1024x1024" 47 + } 48 + ], 49 + "info" : { 50 + "author" : "xcode", 51 + "version" : 1 52 + } 53 + }
+6
ios/app/Images.xcassets/Contents.json
··· 1 + { 2 + "info" : { 3 + "version" : 1, 4 + "author" : "xcode" 5 + } 6 + }
+55
ios/app/Info.plist
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 + <plist version="1.0"> 4 + <dict> 5 + <key>CFBundleDevelopmentRegion</key> 6 + <string>en</string> 7 + <key>CFBundleDisplayName</key> 8 + <string>app</string> 9 + <key>CFBundleExecutable</key> 10 + <string>$(EXECUTABLE_NAME)</string> 11 + <key>CFBundleIdentifier</key> 12 + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> 13 + <key>CFBundleInfoDictionaryVersion</key> 14 + <string>6.0</string> 15 + <key>CFBundleName</key> 16 + <string>$(PRODUCT_NAME)</string> 17 + <key>CFBundlePackageType</key> 18 + <string>APPL</string> 19 + <key>CFBundleShortVersionString</key> 20 + <string>1.0</string> 21 + <key>CFBundleSignature</key> 22 + <string>????</string> 23 + <key>CFBundleVersion</key> 24 + <string>1</string> 25 + <key>LSRequiresIPhoneOS</key> 26 + <true/> 27 + <key>NSAppTransportSecurity</key> 28 + <dict> 29 + <key>NSExceptionDomains</key> 30 + <dict> 31 + <key>localhost</key> 32 + <dict> 33 + <key>NSExceptionAllowsInsecureHTTPLoads</key> 34 + <true/> 35 + </dict> 36 + </dict> 37 + </dict> 38 + <key>NSLocationWhenInUseUsageDescription</key> 39 + <string></string> 40 + <key>UILaunchStoryboardName</key> 41 + <string>LaunchScreen</string> 42 + <key>UIRequiredDeviceCapabilities</key> 43 + <array> 44 + <string>armv7</string> 45 + </array> 46 + <key>UISupportedInterfaceOrientations</key> 47 + <array> 48 + <string>UIInterfaceOrientationPortrait</string> 49 + <string>UIInterfaceOrientationLandscapeLeft</string> 50 + <string>UIInterfaceOrientationLandscapeRight</string> 51 + </array> 52 + <key>UIViewControllerBasedStatusBarAppearance</key> 53 + <false/> 54 + </dict> 55 + </plist>
+47
ios/app/LaunchScreen.storyboard
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM"> 3 + <device id="retina4_7" orientation="portrait" appearance="light"/> 4 + <dependencies> 5 + <deployment identifier="iOS"/> 6 + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/> 7 + <capability name="Safe area layout guides" minToolsVersion="9.0"/> 8 + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> 9 + </dependencies> 10 + <scenes> 11 + <!--View Controller--> 12 + <scene sceneID="EHf-IW-A2E"> 13 + <objects> 14 + <viewController id="01J-lp-oVM" sceneMemberID="viewController"> 15 + <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3"> 16 + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/> 17 + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> 18 + <subviews> 19 + <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="app" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb"> 20 + <rect key="frame" x="0.0" y="202" width="375" height="43"/> 21 + <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/> 22 + <nil key="highlightedColor"/> 23 + </label> 24 + <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="MN2-I3-ftu"> 25 + <rect key="frame" x="0.0" y="626" width="375" height="21"/> 26 + <fontDescription key="fontDescription" type="system" pointSize="17"/> 27 + <nil key="highlightedColor"/> 28 + </label> 29 + </subviews> 30 + <color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/> 31 + <constraints> 32 + <constraint firstItem="Bcu-3y-fUS" firstAttribute="bottom" secondItem="MN2-I3-ftu" secondAttribute="bottom" constant="20" id="OZV-Vh-mqD"/> 33 + <constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/> 34 + <constraint firstItem="MN2-I3-ftu" firstAttribute="centerX" secondItem="Bcu-3y-fUS" secondAttribute="centerX" id="akx-eg-2ui"/> 35 + <constraint firstItem="MN2-I3-ftu" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" id="i1E-0Y-4RG"/> 36 + <constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/> 37 + <constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="x7j-FC-K8j"/> 38 + </constraints> 39 + <viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/> 40 + </view> 41 + </viewController> 42 + <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/> 43 + </objects> 44 + <point key="canvasLocation" x="52.173913043478265" y="375"/> 45 + </scene> 46 + </scenes> 47 + </document>
+10
ios/app/main.m
··· 1 + #import <UIKit/UIKit.h> 2 + 3 + #import "AppDelegate.h" 4 + 5 + int main(int argc, char *argv[]) 6 + { 7 + @autoreleasepool { 8 + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 + } 10 + }
+24
ios/appTests/Info.plist
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 + <plist version="1.0"> 4 + <dict> 5 + <key>CFBundleDevelopmentRegion</key> 6 + <string>en</string> 7 + <key>CFBundleExecutable</key> 8 + <string>$(EXECUTABLE_NAME)</string> 9 + <key>CFBundleIdentifier</key> 10 + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> 11 + <key>CFBundleInfoDictionaryVersion</key> 12 + <string>6.0</string> 13 + <key>CFBundleName</key> 14 + <string>$(PRODUCT_NAME)</string> 15 + <key>CFBundlePackageType</key> 16 + <string>BNDL</string> 17 + <key>CFBundleShortVersionString</key> 18 + <string>1.0</string> 19 + <key>CFBundleSignature</key> 20 + <string>????</string> 21 + <key>CFBundleVersion</key> 22 + <string>1</string> 23 + </dict> 24 + </plist>
+66
ios/appTests/appTests.m
··· 1 + #import <UIKit/UIKit.h> 2 + #import <XCTest/XCTest.h> 3 + 4 + #import <React/RCTLog.h> 5 + #import <React/RCTRootView.h> 6 + 7 + #define TIMEOUT_SECONDS 600 8 + #define TEXT_TO_LOOK_FOR @"Welcome to React" 9 + 10 + @interface appTests : XCTestCase 11 + 12 + @end 13 + 14 + @implementation appTests 15 + 16 + - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL (^)(UIView *view))test 17 + { 18 + if (test(view)) { 19 + return YES; 20 + } 21 + for (UIView *subview in [view subviews]) { 22 + if ([self findSubviewInView:subview matching:test]) { 23 + return YES; 24 + } 25 + } 26 + return NO; 27 + } 28 + 29 + - (void)testRendersWelcomeScreen 30 + { 31 + UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 32 + NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 33 + BOOL foundElement = NO; 34 + 35 + __block NSString *redboxError = nil; 36 + #ifdef DEBUG 37 + RCTSetLogFunction( 38 + ^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 39 + if (level >= RCTLogLevelError) { 40 + redboxError = message; 41 + } 42 + }); 43 + #endif 44 + 45 + while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 46 + [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 47 + [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 48 + 49 + foundElement = [self findSubviewInView:vc.view 50 + matching:^BOOL(UIView *view) { 51 + if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 52 + return YES; 53 + } 54 + return NO; 55 + }]; 56 + } 57 + 58 + #ifdef DEBUG 59 + RCTSetLogFunction(RCTDefaultLogFunction); 60 + #endif 61 + 62 + XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 63 + XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 64 + } 65 + 66 + @end
+17
metro.config.js
··· 1 + /** 2 + * Metro configuration for React Native 3 + * https://github.com/facebook/react-native 4 + * 5 + * @format 6 + */ 7 + 8 + module.exports = { 9 + transformer: { 10 + getTransformOptions: async () => ({ 11 + transform: { 12 + experimentalImportSupport: false, 13 + inlineRequires: true, 14 + }, 15 + }), 16 + }, 17 + };
+46
package.json
··· 1 + { 2 + "name": "app", 3 + "version": "0.0.1", 4 + "private": true, 5 + "scripts": { 6 + "android": "react-native run-android", 7 + "ios": "react-native run-ios", 8 + "start": "react-native start", 9 + "test": "jest", 10 + "lint": "eslint . --ext .js,.jsx,.ts,.tsx" 11 + }, 12 + "dependencies": { 13 + "react": "17.0.2", 14 + "react-native": "0.68.2" 15 + }, 16 + "devDependencies": { 17 + "@babel/core": "^7.12.9", 18 + "@babel/runtime": "^7.12.5", 19 + "@react-native-community/eslint-config": "^2.0.0", 20 + "@types/jest": "^26.0.23", 21 + "@types/react-native": "^0.67.3", 22 + "@types/react-test-renderer": "^17.0.1", 23 + "@typescript-eslint/eslint-plugin": "^5.17.0", 24 + "@typescript-eslint/parser": "^5.17.0", 25 + "babel-jest": "^26.6.3", 26 + "eslint": "^7.32.0", 27 + "jest": "^26.6.3", 28 + "metro-react-native-babel-preset": "^0.67.0", 29 + "react-test-renderer": "17.0.2", 30 + "typescript": "^4.4.4" 31 + }, 32 + "resolutions": { 33 + "@types/react": "^17" 34 + }, 35 + "jest": { 36 + "preset": "react-native", 37 + "moduleFileExtensions": [ 38 + "ts", 39 + "tsx", 40 + "js", 41 + "jsx", 42 + "json", 43 + "node" 44 + ] 45 + } 46 + }
+105
tsconfig.json
··· 1 + // prettier-ignore 2 + { 3 + "compilerOptions": { 4 + /* Visit https://aka.ms/tsconfig.json to read more about this file */ 5 + 6 + /* Projects */ 7 + // "incremental": true, /* Enable incremental compilation */ 8 + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ 9 + // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */ 10 + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */ 11 + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ 12 + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ 13 + 14 + /* Language and Environment */ 15 + "target": "esnext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ 16 + "lib": ["es2017"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ 17 + "jsx": "react-native", /* Specify what JSX code is generated. */ 18 + // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ 19 + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ 20 + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ 21 + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ 22 + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ 23 + // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ 24 + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ 25 + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ 26 + 27 + /* Modules */ 28 + "module": "commonjs", /* Specify what module code is generated. */ 29 + // "rootDir": "./", /* Specify the root folder within your source files. */ 30 + "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ 31 + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ 32 + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ 33 + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ 34 + // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ 35 + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ 36 + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 37 + "resolveJsonModule": true, /* Enable importing .json files */ 38 + // "noResolve": true, /* Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project. */ 39 + 40 + /* JavaScript Support */ 41 + "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ 42 + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ 43 + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ 44 + 45 + /* Emit */ 46 + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 47 + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ 48 + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ 49 + // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ 50 + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ 51 + // "outDir": "./", /* Specify an output folder for all emitted files. */ 52 + // "removeComments": true, /* Disable emitting comments. */ 53 + "noEmit": true, /* Disable emitting files from a compilation. */ 54 + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ 55 + // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ 56 + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ 57 + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ 58 + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 59 + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ 60 + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ 61 + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ 62 + // "newLine": "crlf", /* Set the newline character for emitting files. */ 63 + // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ 64 + // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ 65 + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ 66 + // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ 67 + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ 68 + // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ 69 + 70 + /* Interop Constraints */ 71 + "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ 72 + "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ 73 + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ 74 + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ 75 + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ 76 + 77 + /* Type Checking */ 78 + "strict": true, /* Enable all strict type-checking options. */ 79 + // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ 80 + // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ 81 + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ 82 + // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ 83 + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ 84 + // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */ 85 + // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */ 86 + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ 87 + // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ 88 + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ 89 + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ 90 + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ 91 + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ 92 + // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ 93 + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ 94 + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ 95 + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ 96 + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ 97 + 98 + /* Completeness */ 99 + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ 100 + "skipLibCheck": true /* Skip type checking all .d.ts files. */ 101 + }, 102 + "exclude": [ 103 + "node_modules", "babel.config.js", "metro.config.js", "jest.config.js" 104 + ] 105 + }
+7161
yarn.lock
··· 1 + # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 + # yarn lockfile v1 3 + 4 + 5 + "@ampproject/remapping@^2.1.0": 6 + version "2.2.0" 7 + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" 8 + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== 9 + dependencies: 10 + "@jridgewell/gen-mapping" "^0.1.0" 11 + "@jridgewell/trace-mapping" "^0.3.9" 12 + 13 + "@babel/code-frame@7.12.11": 14 + version "7.12.11" 15 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 16 + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 17 + dependencies: 18 + "@babel/highlight" "^7.10.4" 19 + 20 + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7": 21 + version "7.16.7" 22 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" 23 + integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== 24 + dependencies: 25 + "@babel/highlight" "^7.16.7" 26 + 27 + "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.10": 28 + version "7.17.10" 29 + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.10.tgz#711dc726a492dfc8be8220028b1b92482362baab" 30 + integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw== 31 + 32 + "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.12.9", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.7.5": 33 + version "7.18.2" 34 + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.2.tgz#87b2fcd7cce9becaa7f5acebdc4f09f3dd19d876" 35 + integrity sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ== 36 + dependencies: 37 + "@ampproject/remapping" "^2.1.0" 38 + "@babel/code-frame" "^7.16.7" 39 + "@babel/generator" "^7.18.2" 40 + "@babel/helper-compilation-targets" "^7.18.2" 41 + "@babel/helper-module-transforms" "^7.18.0" 42 + "@babel/helpers" "^7.18.2" 43 + "@babel/parser" "^7.18.0" 44 + "@babel/template" "^7.16.7" 45 + "@babel/traverse" "^7.18.2" 46 + "@babel/types" "^7.18.2" 47 + convert-source-map "^1.7.0" 48 + debug "^4.1.0" 49 + gensync "^1.0.0-beta.2" 50 + json5 "^2.2.1" 51 + semver "^6.3.0" 52 + 53 + "@babel/generator@^7.14.0", "@babel/generator@^7.18.2": 54 + version "7.18.2" 55 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d" 56 + integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw== 57 + dependencies: 58 + "@babel/types" "^7.18.2" 59 + "@jridgewell/gen-mapping" "^0.3.0" 60 + jsesc "^2.5.1" 61 + 62 + "@babel/helper-annotate-as-pure@^7.16.7": 63 + version "7.16.7" 64 + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862" 65 + integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== 66 + dependencies: 67 + "@babel/types" "^7.16.7" 68 + 69 + "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7": 70 + version "7.16.7" 71 + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b" 72 + integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA== 73 + dependencies: 74 + "@babel/helper-explode-assignable-expression" "^7.16.7" 75 + "@babel/types" "^7.16.7" 76 + 77 + "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.10", "@babel/helper-compilation-targets@^7.18.2": 78 + version "7.18.2" 79 + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz#67a85a10cbd5fc7f1457fec2e7f45441dc6c754b" 80 + integrity sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ== 81 + dependencies: 82 + "@babel/compat-data" "^7.17.10" 83 + "@babel/helper-validator-option" "^7.16.7" 84 + browserslist "^4.20.2" 85 + semver "^6.3.0" 86 + 87 + "@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.0": 88 + version "7.18.0" 89 + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz#fac430912606331cb075ea8d82f9a4c145a4da19" 90 + integrity sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg== 91 + dependencies: 92 + "@babel/helper-annotate-as-pure" "^7.16.7" 93 + "@babel/helper-environment-visitor" "^7.16.7" 94 + "@babel/helper-function-name" "^7.17.9" 95 + "@babel/helper-member-expression-to-functions" "^7.17.7" 96 + "@babel/helper-optimise-call-expression" "^7.16.7" 97 + "@babel/helper-replace-supers" "^7.16.7" 98 + "@babel/helper-split-export-declaration" "^7.16.7" 99 + 100 + "@babel/helper-create-regexp-features-plugin@^7.16.7": 101 + version "7.17.12" 102 + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz#bb37ca467f9694bbe55b884ae7a5cc1e0084e4fd" 103 + integrity sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw== 104 + dependencies: 105 + "@babel/helper-annotate-as-pure" "^7.16.7" 106 + regexpu-core "^5.0.1" 107 + 108 + "@babel/helper-define-polyfill-provider@^0.3.1": 109 + version "0.3.1" 110 + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz#52411b445bdb2e676869e5a74960d2d3826d2665" 111 + integrity sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA== 112 + dependencies: 113 + "@babel/helper-compilation-targets" "^7.13.0" 114 + "@babel/helper-module-imports" "^7.12.13" 115 + "@babel/helper-plugin-utils" "^7.13.0" 116 + "@babel/traverse" "^7.13.0" 117 + debug "^4.1.1" 118 + lodash.debounce "^4.0.8" 119 + resolve "^1.14.2" 120 + semver "^6.1.2" 121 + 122 + "@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2": 123 + version "7.18.2" 124 + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd" 125 + integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ== 126 + 127 + "@babel/helper-explode-assignable-expression@^7.16.7": 128 + version "7.16.7" 129 + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a" 130 + integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ== 131 + dependencies: 132 + "@babel/types" "^7.16.7" 133 + 134 + "@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9": 135 + version "7.17.9" 136 + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" 137 + integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== 138 + dependencies: 139 + "@babel/template" "^7.16.7" 140 + "@babel/types" "^7.17.0" 141 + 142 + "@babel/helper-hoist-variables@^7.16.7": 143 + version "7.16.7" 144 + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" 145 + integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== 146 + dependencies: 147 + "@babel/types" "^7.16.7" 148 + 149 + "@babel/helper-member-expression-to-functions@^7.17.7": 150 + version "7.17.7" 151 + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4" 152 + integrity sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw== 153 + dependencies: 154 + "@babel/types" "^7.17.0" 155 + 156 + "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7": 157 + version "7.16.7" 158 + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" 159 + integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== 160 + dependencies: 161 + "@babel/types" "^7.16.7" 162 + 163 + "@babel/helper-module-transforms@^7.18.0": 164 + version "7.18.0" 165 + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz#baf05dec7a5875fb9235bd34ca18bad4e21221cd" 166 + integrity sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA== 167 + dependencies: 168 + "@babel/helper-environment-visitor" "^7.16.7" 169 + "@babel/helper-module-imports" "^7.16.7" 170 + "@babel/helper-simple-access" "^7.17.7" 171 + "@babel/helper-split-export-declaration" "^7.16.7" 172 + "@babel/helper-validator-identifier" "^7.16.7" 173 + "@babel/template" "^7.16.7" 174 + "@babel/traverse" "^7.18.0" 175 + "@babel/types" "^7.18.0" 176 + 177 + "@babel/helper-optimise-call-expression@^7.16.7": 178 + version "7.16.7" 179 + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2" 180 + integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w== 181 + dependencies: 182 + "@babel/types" "^7.16.7" 183 + 184 + "@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.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0": 185 + version "7.17.12" 186 + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96" 187 + integrity sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA== 188 + 189 + "@babel/helper-remap-async-to-generator@^7.16.8": 190 + version "7.16.8" 191 + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3" 192 + integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw== 193 + dependencies: 194 + "@babel/helper-annotate-as-pure" "^7.16.7" 195 + "@babel/helper-wrap-function" "^7.16.8" 196 + "@babel/types" "^7.16.8" 197 + 198 + "@babel/helper-replace-supers@^7.16.7", "@babel/helper-replace-supers@^7.18.2": 199 + version "7.18.2" 200 + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz#41fdfcc9abaf900e18ba6e5931816d9062a7b2e0" 201 + integrity sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q== 202 + dependencies: 203 + "@babel/helper-environment-visitor" "^7.18.2" 204 + "@babel/helper-member-expression-to-functions" "^7.17.7" 205 + "@babel/helper-optimise-call-expression" "^7.16.7" 206 + "@babel/traverse" "^7.18.2" 207 + "@babel/types" "^7.18.2" 208 + 209 + "@babel/helper-simple-access@^7.17.7", "@babel/helper-simple-access@^7.18.2": 210 + version "7.18.2" 211 + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz#4dc473c2169ac3a1c9f4a51cfcd091d1c36fcff9" 212 + integrity sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ== 213 + dependencies: 214 + "@babel/types" "^7.18.2" 215 + 216 + "@babel/helper-skip-transparent-expression-wrappers@^7.16.0": 217 + version "7.16.0" 218 + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09" 219 + integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== 220 + dependencies: 221 + "@babel/types" "^7.16.0" 222 + 223 + "@babel/helper-split-export-declaration@^7.16.7": 224 + version "7.16.7" 225 + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" 226 + integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== 227 + dependencies: 228 + "@babel/types" "^7.16.7" 229 + 230 + "@babel/helper-validator-identifier@^7.16.7": 231 + version "7.16.7" 232 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 233 + integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 234 + 235 + "@babel/helper-validator-option@^7.16.7": 236 + version "7.16.7" 237 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" 238 + integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== 239 + 240 + "@babel/helper-wrap-function@^7.16.8": 241 + version "7.16.8" 242 + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz#58afda087c4cd235de92f7ceedebca2c41274200" 243 + integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw== 244 + dependencies: 245 + "@babel/helper-function-name" "^7.16.7" 246 + "@babel/template" "^7.16.7" 247 + "@babel/traverse" "^7.16.8" 248 + "@babel/types" "^7.16.8" 249 + 250 + "@babel/helpers@^7.18.2": 251 + version "7.18.2" 252 + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.2.tgz#970d74f0deadc3f5a938bfa250738eb4ac889384" 253 + integrity sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg== 254 + dependencies: 255 + "@babel/template" "^7.16.7" 256 + "@babel/traverse" "^7.18.2" 257 + "@babel/types" "^7.18.2" 258 + 259 + "@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7": 260 + version "7.17.12" 261 + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351" 262 + integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg== 263 + dependencies: 264 + "@babel/helper-validator-identifier" "^7.16.7" 265 + chalk "^2.0.0" 266 + js-tokens "^4.0.0" 267 + 268 + "@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.18.0", "@babel/parser@^7.7.0": 269 + version "7.18.4" 270 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.4.tgz#6774231779dd700e0af29f6ad8d479582d7ce5ef" 271 + integrity sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow== 272 + 273 + "@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0": 274 + version "7.17.12" 275 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz#84f65c0cc247d46f40a6da99aadd6438315d80a4" 276 + integrity sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw== 277 + dependencies: 278 + "@babel/helper-create-class-features-plugin" "^7.17.12" 279 + "@babel/helper-plugin-utils" "^7.17.12" 280 + 281 + "@babel/plugin-proposal-export-default-from@^7.0.0": 282 + version "7.17.12" 283 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.17.12.tgz#df785e638618d8ffa14e08c78c44d9695d083b73" 284 + integrity sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ== 285 + dependencies: 286 + "@babel/helper-plugin-utils" "^7.17.12" 287 + "@babel/plugin-syntax-export-default-from" "^7.16.7" 288 + 289 + "@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": 290 + version "7.17.12" 291 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.17.12.tgz#1e93079bbc2cbc756f6db6a1925157c4a92b94be" 292 + integrity sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag== 293 + dependencies: 294 + "@babel/helper-plugin-utils" "^7.17.12" 295 + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 296 + 297 + "@babel/plugin-proposal-object-rest-spread@^7.0.0": 298 + version "7.18.0" 299 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.0.tgz#79f2390c892ba2a68ec112eb0d895cfbd11155e8" 300 + integrity sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw== 301 + dependencies: 302 + "@babel/compat-data" "^7.17.10" 303 + "@babel/helper-compilation-targets" "^7.17.10" 304 + "@babel/helper-plugin-utils" "^7.17.12" 305 + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 306 + "@babel/plugin-transform-parameters" "^7.17.12" 307 + 308 + "@babel/plugin-proposal-optional-catch-binding@^7.0.0": 309 + version "7.16.7" 310 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf" 311 + integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA== 312 + dependencies: 313 + "@babel/helper-plugin-utils" "^7.16.7" 314 + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 315 + 316 + "@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12": 317 + version "7.17.12" 318 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz#f96949e9bacace3a9066323a5cf90cfb9de67174" 319 + integrity sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ== 320 + dependencies: 321 + "@babel/helper-plugin-utils" "^7.17.12" 322 + "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 323 + "@babel/plugin-syntax-optional-chaining" "^7.8.3" 324 + 325 + "@babel/plugin-syntax-async-generators@^7.8.4": 326 + version "7.8.4" 327 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 328 + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 329 + dependencies: 330 + "@babel/helper-plugin-utils" "^7.8.0" 331 + 332 + "@babel/plugin-syntax-bigint@^7.8.3": 333 + version "7.8.3" 334 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 335 + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 336 + dependencies: 337 + "@babel/helper-plugin-utils" "^7.8.0" 338 + 339 + "@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.8.3": 340 + version "7.12.13" 341 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 342 + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 343 + dependencies: 344 + "@babel/helper-plugin-utils" "^7.12.13" 345 + 346 + "@babel/plugin-syntax-dynamic-import@^7.0.0": 347 + version "7.8.3" 348 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 349 + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 350 + dependencies: 351 + "@babel/helper-plugin-utils" "^7.8.0" 352 + 353 + "@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.16.7": 354 + version "7.16.7" 355 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.16.7.tgz#fa89cf13b60de2c3f79acdc2b52a21174c6de060" 356 + integrity sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA== 357 + dependencies: 358 + "@babel/helper-plugin-utils" "^7.16.7" 359 + 360 + "@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.17.12", "@babel/plugin-syntax-flow@^7.2.0": 361 + version "7.17.12" 362 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.17.12.tgz#23d852902acd19f42923fca9d0f196984d124e73" 363 + integrity sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ== 364 + dependencies: 365 + "@babel/helper-plugin-utils" "^7.17.12" 366 + 367 + "@babel/plugin-syntax-import-meta@^7.8.3": 368 + version "7.10.4" 369 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 370 + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 371 + dependencies: 372 + "@babel/helper-plugin-utils" "^7.10.4" 373 + 374 + "@babel/plugin-syntax-json-strings@^7.8.3": 375 + version "7.8.3" 376 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 377 + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 378 + dependencies: 379 + "@babel/helper-plugin-utils" "^7.8.0" 380 + 381 + "@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.17.12": 382 + version "7.17.12" 383 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz#834035b45061983a491f60096f61a2e7c5674a47" 384 + integrity sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog== 385 + dependencies: 386 + "@babel/helper-plugin-utils" "^7.17.12" 387 + 388 + "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 389 + version "7.10.4" 390 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 391 + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 392 + dependencies: 393 + "@babel/helper-plugin-utils" "^7.10.4" 394 + 395 + "@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 396 + version "7.8.3" 397 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 398 + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 399 + dependencies: 400 + "@babel/helper-plugin-utils" "^7.8.0" 401 + 402 + "@babel/plugin-syntax-numeric-separator@^7.8.3": 403 + version "7.10.4" 404 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 405 + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 406 + dependencies: 407 + "@babel/helper-plugin-utils" "^7.10.4" 408 + 409 + "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": 410 + version "7.8.3" 411 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 412 + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 413 + dependencies: 414 + "@babel/helper-plugin-utils" "^7.8.0" 415 + 416 + "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 417 + version "7.8.3" 418 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 419 + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 420 + dependencies: 421 + "@babel/helper-plugin-utils" "^7.8.0" 422 + 423 + "@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": 424 + version "7.8.3" 425 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 426 + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 427 + dependencies: 428 + "@babel/helper-plugin-utils" "^7.8.0" 429 + 430 + "@babel/plugin-syntax-top-level-await@^7.8.3": 431 + version "7.14.5" 432 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 433 + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 434 + dependencies: 435 + "@babel/helper-plugin-utils" "^7.14.5" 436 + 437 + "@babel/plugin-syntax-typescript@^7.17.12": 438 + version "7.17.12" 439 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz#b54fc3be6de734a56b87508f99d6428b5b605a7b" 440 + integrity sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw== 441 + dependencies: 442 + "@babel/helper-plugin-utils" "^7.17.12" 443 + 444 + "@babel/plugin-transform-arrow-functions@^7.0.0": 445 + version "7.17.12" 446 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.17.12.tgz#dddd783b473b1b1537ef46423e3944ff24898c45" 447 + integrity sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA== 448 + dependencies: 449 + "@babel/helper-plugin-utils" "^7.17.12" 450 + 451 + "@babel/plugin-transform-async-to-generator@^7.0.0": 452 + version "7.17.12" 453 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.17.12.tgz#dbe5511e6b01eee1496c944e35cdfe3f58050832" 454 + integrity sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ== 455 + dependencies: 456 + "@babel/helper-module-imports" "^7.16.7" 457 + "@babel/helper-plugin-utils" "^7.17.12" 458 + "@babel/helper-remap-async-to-generator" "^7.16.8" 459 + 460 + "@babel/plugin-transform-block-scoped-functions@^7.0.0": 461 + version "7.16.7" 462 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620" 463 + integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg== 464 + dependencies: 465 + "@babel/helper-plugin-utils" "^7.16.7" 466 + 467 + "@babel/plugin-transform-block-scoping@^7.0.0": 468 + version "7.18.4" 469 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.4.tgz#7988627b3e9186a13e4d7735dc9c34a056613fb9" 470 + integrity sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw== 471 + dependencies: 472 + "@babel/helper-plugin-utils" "^7.17.12" 473 + 474 + "@babel/plugin-transform-classes@^7.0.0": 475 + version "7.18.4" 476 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.4.tgz#51310b812a090b846c784e47087fa6457baef814" 477 + integrity sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A== 478 + dependencies: 479 + "@babel/helper-annotate-as-pure" "^7.16.7" 480 + "@babel/helper-environment-visitor" "^7.18.2" 481 + "@babel/helper-function-name" "^7.17.9" 482 + "@babel/helper-optimise-call-expression" "^7.16.7" 483 + "@babel/helper-plugin-utils" "^7.17.12" 484 + "@babel/helper-replace-supers" "^7.18.2" 485 + "@babel/helper-split-export-declaration" "^7.16.7" 486 + globals "^11.1.0" 487 + 488 + "@babel/plugin-transform-computed-properties@^7.0.0": 489 + version "7.17.12" 490 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.17.12.tgz#bca616a83679698f3258e892ed422546e531387f" 491 + integrity sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ== 492 + dependencies: 493 + "@babel/helper-plugin-utils" "^7.17.12" 494 + 495 + "@babel/plugin-transform-destructuring@^7.0.0": 496 + version "7.18.0" 497 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz#dc4f92587e291b4daa78aa20cc2d7a63aa11e858" 498 + integrity sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw== 499 + dependencies: 500 + "@babel/helper-plugin-utils" "^7.17.12" 501 + 502 + "@babel/plugin-transform-exponentiation-operator@^7.0.0": 503 + version "7.16.7" 504 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b" 505 + integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA== 506 + dependencies: 507 + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7" 508 + "@babel/helper-plugin-utils" "^7.16.7" 509 + 510 + "@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.17.12": 511 + version "7.17.12" 512 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.17.12.tgz#5e070f99a4152194bd9275de140e83a92966cab3" 513 + integrity sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw== 514 + dependencies: 515 + "@babel/helper-plugin-utils" "^7.17.12" 516 + "@babel/plugin-syntax-flow" "^7.17.12" 517 + 518 + "@babel/plugin-transform-for-of@^7.0.0": 519 + version "7.18.1" 520 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.1.tgz#ed14b657e162b72afbbb2b4cdad277bf2bb32036" 521 + integrity sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg== 522 + dependencies: 523 + "@babel/helper-plugin-utils" "^7.17.12" 524 + 525 + "@babel/plugin-transform-function-name@^7.0.0": 526 + version "7.16.7" 527 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf" 528 + integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA== 529 + dependencies: 530 + "@babel/helper-compilation-targets" "^7.16.7" 531 + "@babel/helper-function-name" "^7.16.7" 532 + "@babel/helper-plugin-utils" "^7.16.7" 533 + 534 + "@babel/plugin-transform-literals@^7.0.0": 535 + version "7.17.12" 536 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.17.12.tgz#97131fbc6bbb261487105b4b3edbf9ebf9c830ae" 537 + integrity sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ== 538 + dependencies: 539 + "@babel/helper-plugin-utils" "^7.17.12" 540 + 541 + "@babel/plugin-transform-member-expression-literals@^7.0.0": 542 + version "7.16.7" 543 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384" 544 + integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw== 545 + dependencies: 546 + "@babel/helper-plugin-utils" "^7.16.7" 547 + 548 + "@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8": 549 + version "7.18.2" 550 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.2.tgz#1aa8efa2e2a6e818b6a7f2235fceaf09bdb31e9e" 551 + integrity sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ== 552 + dependencies: 553 + "@babel/helper-module-transforms" "^7.18.0" 554 + "@babel/helper-plugin-utils" "^7.17.12" 555 + "@babel/helper-simple-access" "^7.18.2" 556 + babel-plugin-dynamic-import-node "^2.3.3" 557 + 558 + "@babel/plugin-transform-object-assign@^7.0.0": 559 + version "7.16.7" 560 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.16.7.tgz#5fe08d63dccfeb6a33aa2638faf98e5c584100f8" 561 + integrity sha512-R8mawvm3x0COTJtveuoqZIjNypn2FjfvXZr4pSQ8VhEFBuQGBz4XhHasZtHXjgXU4XptZ4HtGof3NoYc93ZH9Q== 562 + dependencies: 563 + "@babel/helper-plugin-utils" "^7.16.7" 564 + 565 + "@babel/plugin-transform-object-super@^7.0.0": 566 + version "7.16.7" 567 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94" 568 + integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw== 569 + dependencies: 570 + "@babel/helper-plugin-utils" "^7.16.7" 571 + "@babel/helper-replace-supers" "^7.16.7" 572 + 573 + "@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.17.12": 574 + version "7.17.12" 575 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.17.12.tgz#eb467cd9586ff5ff115a9880d6fdbd4a846b7766" 576 + integrity sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA== 577 + dependencies: 578 + "@babel/helper-plugin-utils" "^7.17.12" 579 + 580 + "@babel/plugin-transform-property-literals@^7.0.0": 581 + version "7.16.7" 582 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55" 583 + integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw== 584 + dependencies: 585 + "@babel/helper-plugin-utils" "^7.16.7" 586 + 587 + "@babel/plugin-transform-react-display-name@^7.0.0": 588 + version "7.16.7" 589 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz#7b6d40d232f4c0f550ea348593db3b21e2404340" 590 + integrity sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg== 591 + dependencies: 592 + "@babel/helper-plugin-utils" "^7.16.7" 593 + 594 + "@babel/plugin-transform-react-jsx-self@^7.0.0": 595 + version "7.17.12" 596 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.17.12.tgz#7f2e9b8c08d6a4204733138d8c29d4dba4bb66c2" 597 + integrity sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q== 598 + dependencies: 599 + "@babel/helper-plugin-utils" "^7.17.12" 600 + 601 + "@babel/plugin-transform-react-jsx-source@^7.0.0": 602 + version "7.16.7" 603 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.16.7.tgz#1879c3f23629d287cc6186a6c683154509ec70c0" 604 + integrity sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw== 605 + dependencies: 606 + "@babel/helper-plugin-utils" "^7.16.7" 607 + 608 + "@babel/plugin-transform-react-jsx@^7.0.0": 609 + version "7.17.12" 610 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.12.tgz#2aa20022709cd6a3f40b45d60603d5f269586dba" 611 + integrity sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ== 612 + dependencies: 613 + "@babel/helper-annotate-as-pure" "^7.16.7" 614 + "@babel/helper-module-imports" "^7.16.7" 615 + "@babel/helper-plugin-utils" "^7.17.12" 616 + "@babel/plugin-syntax-jsx" "^7.17.12" 617 + "@babel/types" "^7.17.12" 618 + 619 + "@babel/plugin-transform-regenerator@^7.0.0": 620 + version "7.18.0" 621 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.0.tgz#44274d655eb3f1af3f3a574ba819d3f48caf99d5" 622 + integrity sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw== 623 + dependencies: 624 + "@babel/helper-plugin-utils" "^7.17.12" 625 + regenerator-transform "^0.15.0" 626 + 627 + "@babel/plugin-transform-runtime@^7.0.0": 628 + version "7.18.2" 629 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.2.tgz#04637de1e45ae8847ff14b9beead09c33d34374d" 630 + integrity sha512-mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg== 631 + dependencies: 632 + "@babel/helper-module-imports" "^7.16.7" 633 + "@babel/helper-plugin-utils" "^7.17.12" 634 + babel-plugin-polyfill-corejs2 "^0.3.0" 635 + babel-plugin-polyfill-corejs3 "^0.5.0" 636 + babel-plugin-polyfill-regenerator "^0.3.0" 637 + semver "^6.3.0" 638 + 639 + "@babel/plugin-transform-shorthand-properties@^7.0.0": 640 + version "7.16.7" 641 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a" 642 + integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg== 643 + dependencies: 644 + "@babel/helper-plugin-utils" "^7.16.7" 645 + 646 + "@babel/plugin-transform-spread@^7.0.0": 647 + version "7.17.12" 648 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.17.12.tgz#c112cad3064299f03ea32afed1d659223935d1f5" 649 + integrity sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg== 650 + dependencies: 651 + "@babel/helper-plugin-utils" "^7.17.12" 652 + "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 653 + 654 + "@babel/plugin-transform-sticky-regex@^7.0.0": 655 + version "7.16.7" 656 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660" 657 + integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw== 658 + dependencies: 659 + "@babel/helper-plugin-utils" "^7.16.7" 660 + 661 + "@babel/plugin-transform-template-literals@^7.0.0": 662 + version "7.18.2" 663 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.2.tgz#31ed6915721864847c48b656281d0098ea1add28" 664 + integrity sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g== 665 + dependencies: 666 + "@babel/helper-plugin-utils" "^7.17.12" 667 + 668 + "@babel/plugin-transform-typescript@^7.17.12", "@babel/plugin-transform-typescript@^7.5.0": 669 + version "7.18.4" 670 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.4.tgz#587eaf6a39edb8c06215e550dc939faeadd750bf" 671 + integrity sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw== 672 + dependencies: 673 + "@babel/helper-create-class-features-plugin" "^7.18.0" 674 + "@babel/helper-plugin-utils" "^7.17.12" 675 + "@babel/plugin-syntax-typescript" "^7.17.12" 676 + 677 + "@babel/plugin-transform-unicode-regex@^7.0.0": 678 + version "7.16.7" 679 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2" 680 + integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q== 681 + dependencies: 682 + "@babel/helper-create-regexp-features-plugin" "^7.16.7" 683 + "@babel/helper-plugin-utils" "^7.16.7" 684 + 685 + "@babel/preset-flow@^7.13.13": 686 + version "7.17.12" 687 + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.17.12.tgz#664a5df59190260939eee862800a255bef3bd66f" 688 + integrity sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw== 689 + dependencies: 690 + "@babel/helper-plugin-utils" "^7.17.12" 691 + "@babel/helper-validator-option" "^7.16.7" 692 + "@babel/plugin-transform-flow-strip-types" "^7.17.12" 693 + 694 + "@babel/preset-typescript@^7.13.0": 695 + version "7.17.12" 696 + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.17.12.tgz#40269e0a0084d56fc5731b6c40febe1c9a4a3e8c" 697 + integrity sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg== 698 + dependencies: 699 + "@babel/helper-plugin-utils" "^7.17.12" 700 + "@babel/helper-validator-option" "^7.16.7" 701 + "@babel/plugin-transform-typescript" "^7.17.12" 702 + 703 + "@babel/register@^7.13.16": 704 + version "7.17.7" 705 + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.17.7.tgz#5eef3e0f4afc07e25e847720e7b987ae33f08d0b" 706 + integrity sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA== 707 + dependencies: 708 + clone-deep "^4.0.1" 709 + find-cache-dir "^2.0.0" 710 + make-dir "^2.1.0" 711 + pirates "^4.0.5" 712 + source-map-support "^0.5.16" 713 + 714 + "@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4": 715 + version "7.18.3" 716 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4" 717 + integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug== 718 + dependencies: 719 + regenerator-runtime "^0.13.4" 720 + 721 + "@babel/template@^7.0.0", "@babel/template@^7.16.7", "@babel/template@^7.3.3": 722 + version "7.16.7" 723 + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" 724 + integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== 725 + dependencies: 726 + "@babel/code-frame" "^7.16.7" 727 + "@babel/parser" "^7.16.7" 728 + "@babel/types" "^7.16.7" 729 + 730 + "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4": 731 + version "7.18.2" 732 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.2.tgz#b77a52604b5cc836a9e1e08dca01cba67a12d2e8" 733 + integrity sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA== 734 + dependencies: 735 + "@babel/code-frame" "^7.16.7" 736 + "@babel/generator" "^7.18.2" 737 + "@babel/helper-environment-visitor" "^7.18.2" 738 + "@babel/helper-function-name" "^7.17.9" 739 + "@babel/helper-hoist-variables" "^7.16.7" 740 + "@babel/helper-split-export-declaration" "^7.16.7" 741 + "@babel/parser" "^7.18.0" 742 + "@babel/types" "^7.18.2" 743 + debug "^4.1.0" 744 + globals "^11.1.0" 745 + 746 + "@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.17.12", "@babel/types@^7.18.0", "@babel/types@^7.18.2", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.7.0": 747 + version "7.18.4" 748 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.4.tgz#27eae9b9fd18e9dccc3f9d6ad051336f307be354" 749 + integrity sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw== 750 + dependencies: 751 + "@babel/helper-validator-identifier" "^7.16.7" 752 + to-fast-properties "^2.0.0" 753 + 754 + "@bcoe/v8-coverage@^0.2.3": 755 + version "0.2.3" 756 + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 757 + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 758 + 759 + "@cnakazawa/watch@^1.0.3": 760 + version "1.0.4" 761 + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" 762 + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== 763 + dependencies: 764 + exec-sh "^0.3.2" 765 + minimist "^1.2.0" 766 + 767 + "@eslint/eslintrc@^0.4.3": 768 + version "0.4.3" 769 + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" 770 + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== 771 + dependencies: 772 + ajv "^6.12.4" 773 + debug "^4.1.1" 774 + espree "^7.3.0" 775 + globals "^13.9.0" 776 + ignore "^4.0.6" 777 + import-fresh "^3.2.1" 778 + js-yaml "^3.13.1" 779 + minimatch "^3.0.4" 780 + strip-json-comments "^3.1.1" 781 + 782 + "@hapi/hoek@^9.0.0": 783 + version "9.3.0" 784 + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" 785 + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== 786 + 787 + "@hapi/topo@^5.0.0": 788 + version "5.1.0" 789 + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" 790 + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== 791 + dependencies: 792 + "@hapi/hoek" "^9.0.0" 793 + 794 + "@humanwhocodes/config-array@^0.5.0": 795 + version "0.5.0" 796 + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" 797 + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== 798 + dependencies: 799 + "@humanwhocodes/object-schema" "^1.2.0" 800 + debug "^4.1.1" 801 + minimatch "^3.0.4" 802 + 803 + "@humanwhocodes/object-schema@^1.2.0": 804 + version "1.2.1" 805 + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 806 + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 807 + 808 + "@istanbuljs/load-nyc-config@^1.0.0": 809 + version "1.1.0" 810 + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 811 + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 812 + dependencies: 813 + camelcase "^5.3.1" 814 + find-up "^4.1.0" 815 + get-package-type "^0.1.0" 816 + js-yaml "^3.13.1" 817 + resolve-from "^5.0.0" 818 + 819 + "@istanbuljs/schema@^0.1.2": 820 + version "0.1.3" 821 + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 822 + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 823 + 824 + "@jest/console@^26.6.2": 825 + version "26.6.2" 826 + resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2" 827 + integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g== 828 + dependencies: 829 + "@jest/types" "^26.6.2" 830 + "@types/node" "*" 831 + chalk "^4.0.0" 832 + jest-message-util "^26.6.2" 833 + jest-util "^26.6.2" 834 + slash "^3.0.0" 835 + 836 + "@jest/core@^26.6.3": 837 + version "26.6.3" 838 + resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad" 839 + integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw== 840 + dependencies: 841 + "@jest/console" "^26.6.2" 842 + "@jest/reporters" "^26.6.2" 843 + "@jest/test-result" "^26.6.2" 844 + "@jest/transform" "^26.6.2" 845 + "@jest/types" "^26.6.2" 846 + "@types/node" "*" 847 + ansi-escapes "^4.2.1" 848 + chalk "^4.0.0" 849 + exit "^0.1.2" 850 + graceful-fs "^4.2.4" 851 + jest-changed-files "^26.6.2" 852 + jest-config "^26.6.3" 853 + jest-haste-map "^26.6.2" 854 + jest-message-util "^26.6.2" 855 + jest-regex-util "^26.0.0" 856 + jest-resolve "^26.6.2" 857 + jest-resolve-dependencies "^26.6.3" 858 + jest-runner "^26.6.3" 859 + jest-runtime "^26.6.3" 860 + jest-snapshot "^26.6.2" 861 + jest-util "^26.6.2" 862 + jest-validate "^26.6.2" 863 + jest-watcher "^26.6.2" 864 + micromatch "^4.0.2" 865 + p-each-series "^2.1.0" 866 + rimraf "^3.0.0" 867 + slash "^3.0.0" 868 + strip-ansi "^6.0.0" 869 + 870 + "@jest/create-cache-key-function@^27.0.1": 871 + version "27.5.1" 872 + resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-27.5.1.tgz#7448fae15602ea95c828f5eceed35c202a820b31" 873 + integrity sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ== 874 + dependencies: 875 + "@jest/types" "^27.5.1" 876 + 877 + "@jest/environment@^26.6.2": 878 + version "26.6.2" 879 + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c" 880 + integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA== 881 + dependencies: 882 + "@jest/fake-timers" "^26.6.2" 883 + "@jest/types" "^26.6.2" 884 + "@types/node" "*" 885 + jest-mock "^26.6.2" 886 + 887 + "@jest/fake-timers@^26.6.2": 888 + version "26.6.2" 889 + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad" 890 + integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA== 891 + dependencies: 892 + "@jest/types" "^26.6.2" 893 + "@sinonjs/fake-timers" "^6.0.1" 894 + "@types/node" "*" 895 + jest-message-util "^26.6.2" 896 + jest-mock "^26.6.2" 897 + jest-util "^26.6.2" 898 + 899 + "@jest/globals@^26.6.2": 900 + version "26.6.2" 901 + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a" 902 + integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA== 903 + dependencies: 904 + "@jest/environment" "^26.6.2" 905 + "@jest/types" "^26.6.2" 906 + expect "^26.6.2" 907 + 908 + "@jest/reporters@^26.6.2": 909 + version "26.6.2" 910 + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6" 911 + integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw== 912 + dependencies: 913 + "@bcoe/v8-coverage" "^0.2.3" 914 + "@jest/console" "^26.6.2" 915 + "@jest/test-result" "^26.6.2" 916 + "@jest/transform" "^26.6.2" 917 + "@jest/types" "^26.6.2" 918 + chalk "^4.0.0" 919 + collect-v8-coverage "^1.0.0" 920 + exit "^0.1.2" 921 + glob "^7.1.2" 922 + graceful-fs "^4.2.4" 923 + istanbul-lib-coverage "^3.0.0" 924 + istanbul-lib-instrument "^4.0.3" 925 + istanbul-lib-report "^3.0.0" 926 + istanbul-lib-source-maps "^4.0.0" 927 + istanbul-reports "^3.0.2" 928 + jest-haste-map "^26.6.2" 929 + jest-resolve "^26.6.2" 930 + jest-util "^26.6.2" 931 + jest-worker "^26.6.2" 932 + slash "^3.0.0" 933 + source-map "^0.6.0" 934 + string-length "^4.0.1" 935 + terminal-link "^2.0.0" 936 + v8-to-istanbul "^7.0.0" 937 + optionalDependencies: 938 + node-notifier "^8.0.0" 939 + 940 + "@jest/source-map@^26.6.2": 941 + version "26.6.2" 942 + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535" 943 + integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA== 944 + dependencies: 945 + callsites "^3.0.0" 946 + graceful-fs "^4.2.4" 947 + source-map "^0.6.0" 948 + 949 + "@jest/test-result@^26.6.2": 950 + version "26.6.2" 951 + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18" 952 + integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ== 953 + dependencies: 954 + "@jest/console" "^26.6.2" 955 + "@jest/types" "^26.6.2" 956 + "@types/istanbul-lib-coverage" "^2.0.0" 957 + collect-v8-coverage "^1.0.0" 958 + 959 + "@jest/test-sequencer@^26.6.3": 960 + version "26.6.3" 961 + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17" 962 + integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw== 963 + dependencies: 964 + "@jest/test-result" "^26.6.2" 965 + graceful-fs "^4.2.4" 966 + jest-haste-map "^26.6.2" 967 + jest-runner "^26.6.3" 968 + jest-runtime "^26.6.3" 969 + 970 + "@jest/transform@^26.6.2": 971 + version "26.6.2" 972 + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.6.2.tgz#5ac57c5fa1ad17b2aae83e73e45813894dcf2e4b" 973 + integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA== 974 + dependencies: 975 + "@babel/core" "^7.1.0" 976 + "@jest/types" "^26.6.2" 977 + babel-plugin-istanbul "^6.0.0" 978 + chalk "^4.0.0" 979 + convert-source-map "^1.4.0" 980 + fast-json-stable-stringify "^2.0.0" 981 + graceful-fs "^4.2.4" 982 + jest-haste-map "^26.6.2" 983 + jest-regex-util "^26.0.0" 984 + jest-util "^26.6.2" 985 + micromatch "^4.0.2" 986 + pirates "^4.0.1" 987 + slash "^3.0.0" 988 + source-map "^0.6.1" 989 + write-file-atomic "^3.0.0" 990 + 991 + "@jest/types@^26.6.2": 992 + version "26.6.2" 993 + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" 994 + integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== 995 + dependencies: 996 + "@types/istanbul-lib-coverage" "^2.0.0" 997 + "@types/istanbul-reports" "^3.0.0" 998 + "@types/node" "*" 999 + "@types/yargs" "^15.0.0" 1000 + chalk "^4.0.0" 1001 + 1002 + "@jest/types@^27.5.1": 1003 + version "27.5.1" 1004 + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" 1005 + integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== 1006 + dependencies: 1007 + "@types/istanbul-lib-coverage" "^2.0.0" 1008 + "@types/istanbul-reports" "^3.0.0" 1009 + "@types/node" "*" 1010 + "@types/yargs" "^16.0.0" 1011 + chalk "^4.0.0" 1012 + 1013 + "@jridgewell/gen-mapping@^0.1.0": 1014 + version "0.1.1" 1015 + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" 1016 + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== 1017 + dependencies: 1018 + "@jridgewell/set-array" "^1.0.0" 1019 + "@jridgewell/sourcemap-codec" "^1.4.10" 1020 + 1021 + "@jridgewell/gen-mapping@^0.3.0": 1022 + version "0.3.1" 1023 + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz#cf92a983c83466b8c0ce9124fadeaf09f7c66ea9" 1024 + integrity sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg== 1025 + dependencies: 1026 + "@jridgewell/set-array" "^1.0.0" 1027 + "@jridgewell/sourcemap-codec" "^1.4.10" 1028 + "@jridgewell/trace-mapping" "^0.3.9" 1029 + 1030 + "@jridgewell/resolve-uri@^3.0.3": 1031 + version "3.0.7" 1032 + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe" 1033 + integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA== 1034 + 1035 + "@jridgewell/set-array@^1.0.0": 1036 + version "1.1.1" 1037 + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea" 1038 + integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ== 1039 + 1040 + "@jridgewell/sourcemap-codec@^1.4.10": 1041 + version "1.4.13" 1042 + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c" 1043 + integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w== 1044 + 1045 + "@jridgewell/trace-mapping@^0.3.9": 1046 + version "0.3.13" 1047 + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea" 1048 + integrity sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w== 1049 + dependencies: 1050 + "@jridgewell/resolve-uri" "^3.0.3" 1051 + "@jridgewell/sourcemap-codec" "^1.4.10" 1052 + 1053 + "@nodelib/fs.scandir@2.1.5": 1054 + version "2.1.5" 1055 + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 1056 + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 1057 + dependencies: 1058 + "@nodelib/fs.stat" "2.0.5" 1059 + run-parallel "^1.1.9" 1060 + 1061 + "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 1062 + version "2.0.5" 1063 + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 1064 + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 1065 + 1066 + "@nodelib/fs.walk@^1.2.3": 1067 + version "1.2.8" 1068 + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 1069 + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 1070 + dependencies: 1071 + "@nodelib/fs.scandir" "2.1.5" 1072 + fastq "^1.6.0" 1073 + 1074 + "@react-native-community/cli-debugger-ui@^7.0.3": 1075 + version "7.0.3" 1076 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-7.0.3.tgz#3eeeacc5a43513cbcae56e5e965d77726361bcb4" 1077 + integrity sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA== 1078 + dependencies: 1079 + serve-static "^1.13.1" 1080 + 1081 + "@react-native-community/cli-hermes@^6.3.0": 1082 + version "6.3.0" 1083 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-6.3.0.tgz#92b2f07d08626a60f6893c3e3d57c1538c8fb5a7" 1084 + integrity sha512-Uhbm9bubyZLZ12vFCIfWbE/Qi3SBTbYIN/TC08EudTLhv/KbPomCQnmFsnJ7AXQFuOZJs73mBxoEAYSbRbwyVA== 1085 + dependencies: 1086 + "@react-native-community/cli-platform-android" "^6.3.0" 1087 + "@react-native-community/cli-tools" "^6.2.0" 1088 + chalk "^4.1.2" 1089 + hermes-profile-transformer "^0.0.6" 1090 + ip "^1.1.5" 1091 + 1092 + "@react-native-community/cli-platform-android@^6.3.0": 1093 + version "6.3.0" 1094 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-6.3.0.tgz#ab7d156bd69a392493323eeaba839a874c0e201f" 1095 + integrity sha512-d5ufyYcvrZoHznYm5bjBXaiHIJv552t5gYtQpnUsxBhHSQ8QlaNmlLUyeSPRDfOw4ND9b0tPHqs4ufwx6vp/fQ== 1096 + dependencies: 1097 + "@react-native-community/cli-tools" "^6.2.0" 1098 + chalk "^4.1.2" 1099 + execa "^1.0.0" 1100 + fs-extra "^8.1.0" 1101 + glob "^7.1.3" 1102 + jetifier "^1.6.2" 1103 + lodash "^4.17.15" 1104 + logkitty "^0.7.1" 1105 + slash "^3.0.0" 1106 + xmldoc "^1.1.2" 1107 + 1108 + "@react-native-community/cli-platform-android@^7.0.1": 1109 + version "7.0.1" 1110 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-7.0.1.tgz#d165897edf401f9bceff1f361ef446528133cb52" 1111 + integrity sha512-nOr0aMkxAymCnbtsQwXBlyoRN2Y+IzC7Qz5T+/zyWwEbTY8SKQI8uV+8+qttUvzSvuXa2PeXsTWluuliOS8KCw== 1112 + dependencies: 1113 + "@react-native-community/cli-tools" "^7.0.1" 1114 + chalk "^4.1.2" 1115 + execa "^1.0.0" 1116 + fs-extra "^8.1.0" 1117 + glob "^7.1.3" 1118 + jetifier "^1.6.2" 1119 + lodash "^4.17.15" 1120 + logkitty "^0.7.1" 1121 + slash "^3.0.0" 1122 + xmldoc "^1.1.2" 1123 + 1124 + "@react-native-community/cli-platform-ios@^7.0.1": 1125 + version "7.0.1" 1126 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-7.0.1.tgz#1c27af85229246b7a528e97f093e38859896cc93" 1127 + integrity sha512-PLRIbzrCzSedmpjuFtQqcqUD45G8q7sEciI1lf5zUbVMXqjIBwJWS7iz8235PyWwj8J4MNHohLC+oyRueFtbGg== 1128 + dependencies: 1129 + "@react-native-community/cli-tools" "^7.0.1" 1130 + chalk "^4.1.2" 1131 + execa "^1.0.0" 1132 + glob "^7.1.3" 1133 + js-yaml "^3.13.1" 1134 + lodash "^4.17.15" 1135 + ora "^5.4.1" 1136 + plist "^3.0.2" 1137 + xcode "^3.0.0" 1138 + 1139 + "@react-native-community/cli-plugin-metro@^7.0.3": 1140 + version "7.0.3" 1141 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-7.0.3.tgz#b381ed2f68a0b126e4fa238f1956a44846e1ef8a" 1142 + integrity sha512-HJrEkFbxv9DNixsGwO+Q0zCcZMghDltyzeB9yQ//D5ZR4ZUEuAIPrRDdEp9xVw0WkBxAIZs6KXLux2/yPMwLhA== 1143 + dependencies: 1144 + "@react-native-community/cli-server-api" "^7.0.3" 1145 + "@react-native-community/cli-tools" "^6.2.0" 1146 + chalk "^4.1.2" 1147 + metro "^0.67.0" 1148 + metro-config "^0.67.0" 1149 + metro-core "^0.67.0" 1150 + metro-react-native-babel-transformer "^0.67.0" 1151 + metro-resolver "^0.67.0" 1152 + metro-runtime "^0.67.0" 1153 + readline "^1.3.0" 1154 + 1155 + "@react-native-community/cli-server-api@^7.0.3": 1156 + version "7.0.3" 1157 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-7.0.3.tgz#ba9695a2fdfef22750d141153efd94baf641129b" 1158 + integrity sha512-JDrLsrkBgNxbG2u3fouoVGL9tKrXUrTsaNwr+oCV+3XyMwbVe42r/OaQ681/iW/7mHXjuVkDnMcp7BMg7e2yJg== 1159 + dependencies: 1160 + "@react-native-community/cli-debugger-ui" "^7.0.3" 1161 + "@react-native-community/cli-tools" "^6.2.0" 1162 + compression "^1.7.1" 1163 + connect "^3.6.5" 1164 + errorhandler "^1.5.0" 1165 + nocache "^2.1.0" 1166 + pretty-format "^26.6.2" 1167 + serve-static "^1.13.1" 1168 + ws "^7.5.1" 1169 + 1170 + "@react-native-community/cli-tools@^6.2.0": 1171 + version "6.2.0" 1172 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-6.2.0.tgz#8f4adc2d83ab96e5654348533c8fa602742c4fce" 1173 + integrity sha512-08ssz4GMEnRxC/1FgTTN/Ud7mExQi5xMphItPjfHiTxpZPhrFn+IMx6mya0ncFEhhxQ207wYlJMRLPRRdBZ8oA== 1174 + dependencies: 1175 + appdirsjs "^1.2.4" 1176 + chalk "^4.1.2" 1177 + lodash "^4.17.15" 1178 + mime "^2.4.1" 1179 + node-fetch "^2.6.0" 1180 + open "^6.2.0" 1181 + semver "^6.3.0" 1182 + shell-quote "1.6.1" 1183 + 1184 + "@react-native-community/cli-tools@^7.0.1": 1185 + version "7.0.1" 1186 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-7.0.1.tgz#73790d6ca2825e42a70a770c1b403a6777e690d6" 1187 + integrity sha512-0xra4hKNA5PR2zYVXsDMNiXMGaDNoNRYMY6eTP2aVIxQbqIcVMDWSyCA8wMWX5iOpMWg0cZGaQ6a77f3Rlb34g== 1188 + dependencies: 1189 + appdirsjs "^1.2.4" 1190 + chalk "^4.1.2" 1191 + lodash "^4.17.15" 1192 + mime "^2.4.1" 1193 + node-fetch "^2.6.0" 1194 + open "^6.2.0" 1195 + ora "^5.4.1" 1196 + semver "^6.3.0" 1197 + shell-quote "^1.7.3" 1198 + 1199 + "@react-native-community/cli-types@^6.0.0": 1200 + version "6.0.0" 1201 + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-6.0.0.tgz#90269fbdc7229d5e3b8f2f3e029a94083551040d" 1202 + integrity sha512-K493Fk2DMJC0ZM8s8gnfseKxGasIhuDaCUDeLZcoCSFlrjKEuEs1BKKEJiev0CARhKEXKOyyp/uqYM9nWhisNw== 1203 + dependencies: 1204 + ora "^3.4.0" 1205 + 1206 + "@react-native-community/cli@^7.0.3": 1207 + version "7.0.3" 1208 + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-7.0.3.tgz#1addb462d71786fcbbd266fbceb41819b8cf7839" 1209 + integrity sha512-WyJOA829KAhU1pw2MDQt0YhOS9kyR2KqyqgJyTuQhzFVCBPX4F5aDEkZYYn4jdldaDHCPrLJ3ho3gxYTXy+x7w== 1210 + dependencies: 1211 + "@react-native-community/cli-debugger-ui" "^7.0.3" 1212 + "@react-native-community/cli-hermes" "^6.3.0" 1213 + "@react-native-community/cli-plugin-metro" "^7.0.3" 1214 + "@react-native-community/cli-server-api" "^7.0.3" 1215 + "@react-native-community/cli-tools" "^6.2.0" 1216 + "@react-native-community/cli-types" "^6.0.0" 1217 + appdirsjs "^1.2.4" 1218 + chalk "^4.1.2" 1219 + command-exists "^1.2.8" 1220 + commander "^2.19.0" 1221 + cosmiconfig "^5.1.0" 1222 + deepmerge "^3.2.0" 1223 + envinfo "^7.7.2" 1224 + execa "^1.0.0" 1225 + find-up "^4.1.0" 1226 + fs-extra "^8.1.0" 1227 + glob "^7.1.3" 1228 + graceful-fs "^4.1.3" 1229 + joi "^17.2.1" 1230 + leven "^3.1.0" 1231 + lodash "^4.17.15" 1232 + minimist "^1.2.0" 1233 + node-stream-zip "^1.9.1" 1234 + ora "^3.4.0" 1235 + pretty-format "^26.6.2" 1236 + prompts "^2.4.0" 1237 + semver "^6.3.0" 1238 + serve-static "^1.13.1" 1239 + strip-ansi "^5.2.0" 1240 + sudo-prompt "^9.0.0" 1241 + wcwidth "^1.0.1" 1242 + 1243 + "@react-native-community/eslint-config@^2.0.0": 1244 + version "2.0.0" 1245 + resolved "https://registry.yarnpkg.com/@react-native-community/eslint-config/-/eslint-config-2.0.0.tgz#35dcc529a274803fc4e0a6b3d6c274551fb91774" 1246 + integrity sha512-vHaMMfvMp9BWCQQ0lNIXibOJTcXIbYUQ8dSUsMOsrXgVkeVQJj88OwrKS00rQyqwMaC4/a6HuDiFzYUkGKOpVg== 1247 + dependencies: 1248 + "@react-native-community/eslint-plugin" "^1.1.0" 1249 + "@typescript-eslint/eslint-plugin" "^3.1.0" 1250 + "@typescript-eslint/parser" "^3.1.0" 1251 + babel-eslint "^10.1.0" 1252 + eslint-config-prettier "^6.10.1" 1253 + eslint-plugin-eslint-comments "^3.1.2" 1254 + eslint-plugin-flowtype "2.50.3" 1255 + eslint-plugin-jest "22.4.1" 1256 + eslint-plugin-prettier "3.1.2" 1257 + eslint-plugin-react "^7.20.0" 1258 + eslint-plugin-react-hooks "^4.0.4" 1259 + eslint-plugin-react-native "^3.8.1" 1260 + prettier "^2.0.2" 1261 + 1262 + "@react-native-community/eslint-plugin@^1.1.0": 1263 + version "1.2.0" 1264 + resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.2.0.tgz#7d6d789ae8edf73dc9bed1246cd48277edea8066" 1265 + integrity sha512-o6aam+0Ug1xGK3ABYmBm0B1YuEKfM/5kaoZO0eHbZwSpw9UzDX4G5y4Nx/K20FHqUmJHkZmLvOUFYwN4N+HqKA== 1266 + 1267 + "@react-native/assets@1.0.0": 1268 + version "1.0.0" 1269 + resolved "https://registry.yarnpkg.com/@react-native/assets/-/assets-1.0.0.tgz#c6f9bf63d274bafc8e970628de24986b30a55c8e" 1270 + integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ== 1271 + 1272 + "@react-native/normalize-color@*", "@react-native/normalize-color@2.0.0": 1273 + version "2.0.0" 1274 + resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.0.0.tgz#da955909432474a9a0fe1cbffc66576a0447f567" 1275 + integrity sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw== 1276 + 1277 + "@react-native/polyfills@2.0.0": 1278 + version "2.0.0" 1279 + resolved "https://registry.yarnpkg.com/@react-native/polyfills/-/polyfills-2.0.0.tgz#4c40b74655c83982c8cf47530ee7dc13d957b6aa" 1280 + integrity sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ== 1281 + 1282 + "@sideway/address@^4.1.3": 1283 + version "4.1.4" 1284 + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" 1285 + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== 1286 + dependencies: 1287 + "@hapi/hoek" "^9.0.0" 1288 + 1289 + "@sideway/formula@^3.0.0": 1290 + version "3.0.0" 1291 + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" 1292 + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== 1293 + 1294 + "@sideway/pinpoint@^2.0.0": 1295 + version "2.0.0" 1296 + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" 1297 + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== 1298 + 1299 + "@sinonjs/commons@^1.7.0": 1300 + version "1.8.3" 1301 + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 1302 + integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 1303 + dependencies: 1304 + type-detect "4.0.8" 1305 + 1306 + "@sinonjs/fake-timers@^6.0.1": 1307 + version "6.0.1" 1308 + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" 1309 + integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== 1310 + dependencies: 1311 + "@sinonjs/commons" "^1.7.0" 1312 + 1313 + "@tootallnate/once@1": 1314 + version "1.1.2" 1315 + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 1316 + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 1317 + 1318 + "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": 1319 + version "7.1.19" 1320 + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" 1321 + integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== 1322 + dependencies: 1323 + "@babel/parser" "^7.1.0" 1324 + "@babel/types" "^7.0.0" 1325 + "@types/babel__generator" "*" 1326 + "@types/babel__template" "*" 1327 + "@types/babel__traverse" "*" 1328 + 1329 + "@types/babel__generator@*": 1330 + version "7.6.4" 1331 + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" 1332 + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 1333 + dependencies: 1334 + "@babel/types" "^7.0.0" 1335 + 1336 + "@types/babel__template@*": 1337 + version "7.4.1" 1338 + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 1339 + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 1340 + dependencies: 1341 + "@babel/parser" "^7.1.0" 1342 + "@babel/types" "^7.0.0" 1343 + 1344 + "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 1345 + version "7.17.1" 1346 + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314" 1347 + integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA== 1348 + dependencies: 1349 + "@babel/types" "^7.3.0" 1350 + 1351 + "@types/eslint-visitor-keys@^1.0.0": 1352 + version "1.0.0" 1353 + resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" 1354 + integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== 1355 + 1356 + "@types/graceful-fs@^4.1.2": 1357 + version "4.1.5" 1358 + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 1359 + integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 1360 + dependencies: 1361 + "@types/node" "*" 1362 + 1363 + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 1364 + version "2.0.4" 1365 + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" 1366 + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 1367 + 1368 + "@types/istanbul-lib-report@*": 1369 + version "3.0.0" 1370 + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 1371 + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 1372 + dependencies: 1373 + "@types/istanbul-lib-coverage" "*" 1374 + 1375 + "@types/istanbul-reports@^3.0.0": 1376 + version "3.0.1" 1377 + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 1378 + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 1379 + dependencies: 1380 + "@types/istanbul-lib-report" "*" 1381 + 1382 + "@types/jest@^26.0.23": 1383 + version "26.0.24" 1384 + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" 1385 + integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== 1386 + dependencies: 1387 + jest-diff "^26.0.0" 1388 + pretty-format "^26.0.0" 1389 + 1390 + "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.9": 1391 + version "7.0.11" 1392 + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" 1393 + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== 1394 + 1395 + "@types/node@*": 1396 + version "17.0.41" 1397 + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.41.tgz#1607b2fd3da014ae5d4d1b31bc792a39348dfb9b" 1398 + integrity sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw== 1399 + 1400 + "@types/normalize-package-data@^2.4.0": 1401 + version "2.4.1" 1402 + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" 1403 + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 1404 + 1405 + "@types/prettier@^2.0.0": 1406 + version "2.6.3" 1407 + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.3.tgz#68ada76827b0010d0db071f739314fa429943d0a" 1408 + integrity sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg== 1409 + 1410 + "@types/prop-types@*": 1411 + version "15.7.5" 1412 + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 1413 + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 1414 + 1415 + "@types/react-native@^0.67.3": 1416 + version "0.67.8" 1417 + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.67.8.tgz#edaaa0527b835fffbfc34c09874722b6e4a4d1f3" 1418 + integrity sha512-xA8rYiTHvO6RoZv/LFnmEeqRuhA2y34mGB8zX3bGHe/pCt9jEStUPyUO4q1KcDc9GiGIOBD8ArfRtThprAjSfQ== 1419 + dependencies: 1420 + "@types/react" "*" 1421 + 1422 + "@types/react-test-renderer@^17.0.1": 1423 + version "17.0.2" 1424 + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.2.tgz#5f800a39b12ac8d2a2149e7e1885215bcf4edbbf" 1425 + integrity sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg== 1426 + dependencies: 1427 + "@types/react" "^17" 1428 + 1429 + "@types/react@*", "@types/react@^17": 1430 + version "17.0.45" 1431 + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.45.tgz#9b3d5b661fd26365fefef0e766a1c6c30ccf7b3f" 1432 + integrity sha512-YfhQ22Lah2e3CHPsb93tRwIGNiSwkuz1/blk4e6QrWS0jQzCSNbGLtOEYhPg02W0yGTTmpajp7dCTbBAMN3qsg== 1433 + dependencies: 1434 + "@types/prop-types" "*" 1435 + "@types/scheduler" "*" 1436 + csstype "^3.0.2" 1437 + 1438 + "@types/scheduler@*": 1439 + version "0.16.2" 1440 + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 1441 + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 1442 + 1443 + "@types/stack-utils@^2.0.0": 1444 + version "2.0.1" 1445 + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 1446 + integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 1447 + 1448 + "@types/yargs-parser@*": 1449 + version "21.0.0" 1450 + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" 1451 + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 1452 + 1453 + "@types/yargs@^15.0.0": 1454 + version "15.0.14" 1455 + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06" 1456 + integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ== 1457 + dependencies: 1458 + "@types/yargs-parser" "*" 1459 + 1460 + "@types/yargs@^16.0.0": 1461 + version "16.0.4" 1462 + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" 1463 + integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== 1464 + dependencies: 1465 + "@types/yargs-parser" "*" 1466 + 1467 + "@typescript-eslint/eslint-plugin@^3.1.0": 1468 + version "3.10.1" 1469 + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.10.1.tgz#7e061338a1383f59edc204c605899f93dc2e2c8f" 1470 + integrity sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ== 1471 + dependencies: 1472 + "@typescript-eslint/experimental-utils" "3.10.1" 1473 + debug "^4.1.1" 1474 + functional-red-black-tree "^1.0.1" 1475 + regexpp "^3.0.0" 1476 + semver "^7.3.2" 1477 + tsutils "^3.17.1" 1478 + 1479 + "@typescript-eslint/eslint-plugin@^5.17.0": 1480 + version "5.27.1" 1481 + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz#fdf59c905354139046b41b3ed95d1609913d0758" 1482 + integrity sha512-6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw== 1483 + dependencies: 1484 + "@typescript-eslint/scope-manager" "5.27.1" 1485 + "@typescript-eslint/type-utils" "5.27.1" 1486 + "@typescript-eslint/utils" "5.27.1" 1487 + debug "^4.3.4" 1488 + functional-red-black-tree "^1.0.1" 1489 + ignore "^5.2.0" 1490 + regexpp "^3.2.0" 1491 + semver "^7.3.7" 1492 + tsutils "^3.21.0" 1493 + 1494 + "@typescript-eslint/experimental-utils@3.10.1": 1495 + version "3.10.1" 1496 + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz#e179ffc81a80ebcae2ea04e0332f8b251345a686" 1497 + integrity sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw== 1498 + dependencies: 1499 + "@types/json-schema" "^7.0.3" 1500 + "@typescript-eslint/types" "3.10.1" 1501 + "@typescript-eslint/typescript-estree" "3.10.1" 1502 + eslint-scope "^5.0.0" 1503 + eslint-utils "^2.0.0" 1504 + 1505 + "@typescript-eslint/parser@^3.1.0": 1506 + version "3.10.1" 1507 + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.10.1.tgz#1883858e83e8b442627e1ac6f408925211155467" 1508 + integrity sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw== 1509 + dependencies: 1510 + "@types/eslint-visitor-keys" "^1.0.0" 1511 + "@typescript-eslint/experimental-utils" "3.10.1" 1512 + "@typescript-eslint/types" "3.10.1" 1513 + "@typescript-eslint/typescript-estree" "3.10.1" 1514 + eslint-visitor-keys "^1.1.0" 1515 + 1516 + "@typescript-eslint/parser@^5.17.0": 1517 + version "5.27.1" 1518 + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.27.1.tgz#3a4dcaa67e45e0427b6ca7bb7165122c8b569639" 1519 + integrity sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ== 1520 + dependencies: 1521 + "@typescript-eslint/scope-manager" "5.27.1" 1522 + "@typescript-eslint/types" "5.27.1" 1523 + "@typescript-eslint/typescript-estree" "5.27.1" 1524 + debug "^4.3.4" 1525 + 1526 + "@typescript-eslint/scope-manager@5.27.1": 1527 + version "5.27.1" 1528 + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz#4d1504392d01fe5f76f4a5825991ec78b7b7894d" 1529 + integrity sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg== 1530 + dependencies: 1531 + "@typescript-eslint/types" "5.27.1" 1532 + "@typescript-eslint/visitor-keys" "5.27.1" 1533 + 1534 + "@typescript-eslint/type-utils@5.27.1": 1535 + version "5.27.1" 1536 + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz#369f695199f74c1876e395ebea202582eb1d4166" 1537 + integrity sha512-+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw== 1538 + dependencies: 1539 + "@typescript-eslint/utils" "5.27.1" 1540 + debug "^4.3.4" 1541 + tsutils "^3.21.0" 1542 + 1543 + "@typescript-eslint/types@3.10.1": 1544 + version "3.10.1" 1545 + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727" 1546 + integrity sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ== 1547 + 1548 + "@typescript-eslint/types@5.27.1": 1549 + version "5.27.1" 1550 + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.27.1.tgz#34e3e629501349d38be6ae97841298c03a6ffbf1" 1551 + integrity sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg== 1552 + 1553 + "@typescript-eslint/typescript-estree@3.10.1": 1554 + version "3.10.1" 1555 + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz#fd0061cc38add4fad45136d654408569f365b853" 1556 + integrity sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w== 1557 + dependencies: 1558 + "@typescript-eslint/types" "3.10.1" 1559 + "@typescript-eslint/visitor-keys" "3.10.1" 1560 + debug "^4.1.1" 1561 + glob "^7.1.6" 1562 + is-glob "^4.0.1" 1563 + lodash "^4.17.15" 1564 + semver "^7.3.2" 1565 + tsutils "^3.17.1" 1566 + 1567 + "@typescript-eslint/typescript-estree@5.27.1": 1568 + version "5.27.1" 1569 + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz#7621ee78607331821c16fffc21fc7a452d7bc808" 1570 + integrity sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw== 1571 + dependencies: 1572 + "@typescript-eslint/types" "5.27.1" 1573 + "@typescript-eslint/visitor-keys" "5.27.1" 1574 + debug "^4.3.4" 1575 + globby "^11.1.0" 1576 + is-glob "^4.0.3" 1577 + semver "^7.3.7" 1578 + tsutils "^3.21.0" 1579 + 1580 + "@typescript-eslint/utils@5.27.1": 1581 + version "5.27.1" 1582 + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.27.1.tgz#b4678b68a94bc3b85bf08f243812a6868ac5128f" 1583 + integrity sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w== 1584 + dependencies: 1585 + "@types/json-schema" "^7.0.9" 1586 + "@typescript-eslint/scope-manager" "5.27.1" 1587 + "@typescript-eslint/types" "5.27.1" 1588 + "@typescript-eslint/typescript-estree" "5.27.1" 1589 + eslint-scope "^5.1.1" 1590 + eslint-utils "^3.0.0" 1591 + 1592 + "@typescript-eslint/visitor-keys@3.10.1": 1593 + version "3.10.1" 1594 + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz#cd4274773e3eb63b2e870ac602274487ecd1e931" 1595 + integrity sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ== 1596 + dependencies: 1597 + eslint-visitor-keys "^1.1.0" 1598 + 1599 + "@typescript-eslint/visitor-keys@5.27.1": 1600 + version "5.27.1" 1601 + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz#05a62666f2a89769dac2e6baa48f74e8472983af" 1602 + integrity sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ== 1603 + dependencies: 1604 + "@typescript-eslint/types" "5.27.1" 1605 + eslint-visitor-keys "^3.3.0" 1606 + 1607 + abab@^2.0.3, abab@^2.0.5: 1608 + version "2.0.6" 1609 + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" 1610 + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== 1611 + 1612 + abort-controller@^3.0.0: 1613 + version "3.0.0" 1614 + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" 1615 + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== 1616 + dependencies: 1617 + event-target-shim "^5.0.0" 1618 + 1619 + absolute-path@^0.0.0: 1620 + version "0.0.0" 1621 + resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" 1622 + integrity sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA== 1623 + 1624 + accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.7: 1625 + version "1.3.8" 1626 + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" 1627 + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== 1628 + dependencies: 1629 + mime-types "~2.1.34" 1630 + negotiator "0.6.3" 1631 + 1632 + acorn-globals@^6.0.0: 1633 + version "6.0.0" 1634 + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 1635 + integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 1636 + dependencies: 1637 + acorn "^7.1.1" 1638 + acorn-walk "^7.1.1" 1639 + 1640 + acorn-jsx@^5.3.1: 1641 + version "5.3.2" 1642 + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 1643 + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 1644 + 1645 + acorn-walk@^7.1.1: 1646 + version "7.2.0" 1647 + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 1648 + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 1649 + 1650 + acorn@^7.1.1, acorn@^7.4.0: 1651 + version "7.4.1" 1652 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 1653 + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 1654 + 1655 + acorn@^8.2.4: 1656 + version "8.7.1" 1657 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" 1658 + integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== 1659 + 1660 + agent-base@6: 1661 + version "6.0.2" 1662 + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 1663 + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 1664 + dependencies: 1665 + debug "4" 1666 + 1667 + ajv@^6.10.0, ajv@^6.12.4: 1668 + version "6.12.6" 1669 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 1670 + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 1671 + dependencies: 1672 + fast-deep-equal "^3.1.1" 1673 + fast-json-stable-stringify "^2.0.0" 1674 + json-schema-traverse "^0.4.1" 1675 + uri-js "^4.2.2" 1676 + 1677 + ajv@^8.0.1: 1678 + version "8.11.0" 1679 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" 1680 + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== 1681 + dependencies: 1682 + fast-deep-equal "^3.1.1" 1683 + json-schema-traverse "^1.0.0" 1684 + require-from-string "^2.0.2" 1685 + uri-js "^4.2.2" 1686 + 1687 + anser@^1.4.9: 1688 + version "1.4.10" 1689 + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" 1690 + integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== 1691 + 1692 + ansi-colors@^4.1.1: 1693 + version "4.1.3" 1694 + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" 1695 + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== 1696 + 1697 + ansi-escapes@^4.2.1: 1698 + version "4.3.2" 1699 + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 1700 + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 1701 + dependencies: 1702 + type-fest "^0.21.3" 1703 + 1704 + ansi-fragments@^0.2.1: 1705 + version "0.2.1" 1706 + resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" 1707 + integrity sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w== 1708 + dependencies: 1709 + colorette "^1.0.7" 1710 + slice-ansi "^2.0.0" 1711 + strip-ansi "^5.0.0" 1712 + 1713 + ansi-regex@^4.1.0: 1714 + version "4.1.1" 1715 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" 1716 + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== 1717 + 1718 + ansi-regex@^5.0.0, ansi-regex@^5.0.1: 1719 + version "5.0.1" 1720 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 1721 + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 1722 + 1723 + ansi-styles@^3.2.0, ansi-styles@^3.2.1: 1724 + version "3.2.1" 1725 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1726 + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1727 + dependencies: 1728 + color-convert "^1.9.0" 1729 + 1730 + ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1731 + version "4.3.0" 1732 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1733 + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1734 + dependencies: 1735 + color-convert "^2.0.1" 1736 + 1737 + anymatch@^2.0.0: 1738 + version "2.0.0" 1739 + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 1740 + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 1741 + dependencies: 1742 + micromatch "^3.1.4" 1743 + normalize-path "^2.1.1" 1744 + 1745 + anymatch@^3.0.3: 1746 + version "3.1.2" 1747 + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 1748 + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 1749 + dependencies: 1750 + normalize-path "^3.0.0" 1751 + picomatch "^2.0.4" 1752 + 1753 + appdirsjs@^1.2.4: 1754 + version "1.2.6" 1755 + resolved "https://registry.yarnpkg.com/appdirsjs/-/appdirsjs-1.2.6.tgz#fccf9ee543315492867cacfcfd4a2b32257d30ac" 1756 + integrity sha512-D8wJNkqMCeQs3kLasatELsddox/Xqkhp+J07iXGyL54fVN7oc+nmNfYzGuCs1IEP6uBw+TfpuO3JKwc+lECy4w== 1757 + 1758 + argparse@^1.0.7: 1759 + version "1.0.10" 1760 + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 1761 + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1762 + dependencies: 1763 + sprintf-js "~1.0.2" 1764 + 1765 + arr-diff@^4.0.0: 1766 + version "4.0.0" 1767 + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 1768 + integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== 1769 + 1770 + arr-flatten@^1.1.0: 1771 + version "1.1.0" 1772 + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 1773 + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 1774 + 1775 + arr-union@^3.1.0: 1776 + version "3.1.0" 1777 + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 1778 + integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== 1779 + 1780 + array-filter@~0.0.0: 1781 + version "0.0.1" 1782 + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 1783 + integrity sha512-VW0FpCIhjZdarWjIz8Vpva7U95fl2Jn+b+mmFFMLn8PIVscOQcAgEznwUzTEuUHuqZqIxwzRlcaN/urTFFQoiw== 1784 + 1785 + array-includes@^3.1.4, array-includes@^3.1.5: 1786 + version "3.1.5" 1787 + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" 1788 + integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== 1789 + dependencies: 1790 + call-bind "^1.0.2" 1791 + define-properties "^1.1.4" 1792 + es-abstract "^1.19.5" 1793 + get-intrinsic "^1.1.1" 1794 + is-string "^1.0.7" 1795 + 1796 + array-map@~0.0.0: 1797 + version "0.0.0" 1798 + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 1799 + integrity sha512-123XMszMB01QKVptpDQ7x1m1pP5NmJIG1kbl0JSPPRezvwQChxAN0Gvzo7rvR1IZ2tOL2tmiy7kY/KKgnpVVpg== 1800 + 1801 + array-reduce@~0.0.0: 1802 + version "0.0.0" 1803 + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 1804 + integrity sha512-8jR+StqaC636u7h3ye1co3lQRefgVVUQUhuAmRbDqIMeR2yuXzRvkCNQiQ5J/wbREmoBLNtp13dhaaVpZQDRUw== 1805 + 1806 + array-union@^2.1.0: 1807 + version "2.1.0" 1808 + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 1809 + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 1810 + 1811 + array-unique@^0.3.2: 1812 + version "0.3.2" 1813 + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 1814 + integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== 1815 + 1816 + array.prototype.flatmap@^1.3.0: 1817 + version "1.3.0" 1818 + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" 1819 + integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== 1820 + dependencies: 1821 + call-bind "^1.0.2" 1822 + define-properties "^1.1.3" 1823 + es-abstract "^1.19.2" 1824 + es-shim-unscopables "^1.0.0" 1825 + 1826 + asap@~2.0.6: 1827 + version "2.0.6" 1828 + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 1829 + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== 1830 + 1831 + assign-symbols@^1.0.0: 1832 + version "1.0.0" 1833 + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 1834 + integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== 1835 + 1836 + ast-types@0.14.2: 1837 + version "0.14.2" 1838 + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd" 1839 + integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA== 1840 + dependencies: 1841 + tslib "^2.0.1" 1842 + 1843 + astral-regex@^1.0.0: 1844 + version "1.0.0" 1845 + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 1846 + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 1847 + 1848 + astral-regex@^2.0.0: 1849 + version "2.0.0" 1850 + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 1851 + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 1852 + 1853 + async-limiter@~1.0.0: 1854 + version "1.0.1" 1855 + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" 1856 + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== 1857 + 1858 + async@^2.4.0: 1859 + version "2.6.4" 1860 + resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" 1861 + integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== 1862 + dependencies: 1863 + lodash "^4.17.14" 1864 + 1865 + asynckit@^0.4.0: 1866 + version "0.4.0" 1867 + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 1868 + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== 1869 + 1870 + atob@^2.1.2: 1871 + version "2.1.2" 1872 + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 1873 + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 1874 + 1875 + babel-core@^7.0.0-bridge.0: 1876 + version "7.0.0-bridge.0" 1877 + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" 1878 + integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== 1879 + 1880 + babel-eslint@^10.1.0: 1881 + version "10.1.0" 1882 + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 1883 + integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 1884 + dependencies: 1885 + "@babel/code-frame" "^7.0.0" 1886 + "@babel/parser" "^7.7.0" 1887 + "@babel/traverse" "^7.7.0" 1888 + "@babel/types" "^7.7.0" 1889 + eslint-visitor-keys "^1.0.0" 1890 + resolve "^1.12.0" 1891 + 1892 + babel-jest@^26.6.3: 1893 + version "26.6.3" 1894 + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" 1895 + integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA== 1896 + dependencies: 1897 + "@jest/transform" "^26.6.2" 1898 + "@jest/types" "^26.6.2" 1899 + "@types/babel__core" "^7.1.7" 1900 + babel-plugin-istanbul "^6.0.0" 1901 + babel-preset-jest "^26.6.2" 1902 + chalk "^4.0.0" 1903 + graceful-fs "^4.2.4" 1904 + slash "^3.0.0" 1905 + 1906 + babel-plugin-dynamic-import-node@^2.3.3: 1907 + version "2.3.3" 1908 + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1909 + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1910 + dependencies: 1911 + object.assign "^4.1.0" 1912 + 1913 + babel-plugin-istanbul@^6.0.0: 1914 + version "6.1.1" 1915 + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 1916 + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 1917 + dependencies: 1918 + "@babel/helper-plugin-utils" "^7.0.0" 1919 + "@istanbuljs/load-nyc-config" "^1.0.0" 1920 + "@istanbuljs/schema" "^0.1.2" 1921 + istanbul-lib-instrument "^5.0.4" 1922 + test-exclude "^6.0.0" 1923 + 1924 + babel-plugin-jest-hoist@^26.6.2: 1925 + version "26.6.2" 1926 + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d" 1927 + integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw== 1928 + dependencies: 1929 + "@babel/template" "^7.3.3" 1930 + "@babel/types" "^7.3.3" 1931 + "@types/babel__core" "^7.0.0" 1932 + "@types/babel__traverse" "^7.0.6" 1933 + 1934 + babel-plugin-polyfill-corejs2@^0.3.0: 1935 + version "0.3.1" 1936 + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz#440f1b70ccfaabc6b676d196239b138f8a2cfba5" 1937 + integrity sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w== 1938 + dependencies: 1939 + "@babel/compat-data" "^7.13.11" 1940 + "@babel/helper-define-polyfill-provider" "^0.3.1" 1941 + semver "^6.1.1" 1942 + 1943 + babel-plugin-polyfill-corejs3@^0.5.0: 1944 + version "0.5.2" 1945 + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz#aabe4b2fa04a6e038b688c5e55d44e78cd3a5f72" 1946 + integrity sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ== 1947 + dependencies: 1948 + "@babel/helper-define-polyfill-provider" "^0.3.1" 1949 + core-js-compat "^3.21.0" 1950 + 1951 + babel-plugin-polyfill-regenerator@^0.3.0: 1952 + version "0.3.1" 1953 + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz#2c0678ea47c75c8cc2fbb1852278d8fb68233990" 1954 + integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A== 1955 + dependencies: 1956 + "@babel/helper-define-polyfill-provider" "^0.3.1" 1957 + 1958 + babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: 1959 + version "7.0.0-beta.0" 1960 + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" 1961 + integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ== 1962 + 1963 + babel-preset-current-node-syntax@^1.0.0: 1964 + version "1.0.1" 1965 + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 1966 + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 1967 + dependencies: 1968 + "@babel/plugin-syntax-async-generators" "^7.8.4" 1969 + "@babel/plugin-syntax-bigint" "^7.8.3" 1970 + "@babel/plugin-syntax-class-properties" "^7.8.3" 1971 + "@babel/plugin-syntax-import-meta" "^7.8.3" 1972 + "@babel/plugin-syntax-json-strings" "^7.8.3" 1973 + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 1974 + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 1975 + "@babel/plugin-syntax-numeric-separator" "^7.8.3" 1976 + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 1977 + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 1978 + "@babel/plugin-syntax-optional-chaining" "^7.8.3" 1979 + "@babel/plugin-syntax-top-level-await" "^7.8.3" 1980 + 1981 + babel-preset-fbjs@^3.4.0: 1982 + version "3.4.0" 1983 + resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c" 1984 + integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow== 1985 + dependencies: 1986 + "@babel/plugin-proposal-class-properties" "^7.0.0" 1987 + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" 1988 + "@babel/plugin-syntax-class-properties" "^7.0.0" 1989 + "@babel/plugin-syntax-flow" "^7.0.0" 1990 + "@babel/plugin-syntax-jsx" "^7.0.0" 1991 + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" 1992 + "@babel/plugin-transform-arrow-functions" "^7.0.0" 1993 + "@babel/plugin-transform-block-scoped-functions" "^7.0.0" 1994 + "@babel/plugin-transform-block-scoping" "^7.0.0" 1995 + "@babel/plugin-transform-classes" "^7.0.0" 1996 + "@babel/plugin-transform-computed-properties" "^7.0.0" 1997 + "@babel/plugin-transform-destructuring" "^7.0.0" 1998 + "@babel/plugin-transform-flow-strip-types" "^7.0.0" 1999 + "@babel/plugin-transform-for-of" "^7.0.0" 2000 + "@babel/plugin-transform-function-name" "^7.0.0" 2001 + "@babel/plugin-transform-literals" "^7.0.0" 2002 + "@babel/plugin-transform-member-expression-literals" "^7.0.0" 2003 + "@babel/plugin-transform-modules-commonjs" "^7.0.0" 2004 + "@babel/plugin-transform-object-super" "^7.0.0" 2005 + "@babel/plugin-transform-parameters" "^7.0.0" 2006 + "@babel/plugin-transform-property-literals" "^7.0.0" 2007 + "@babel/plugin-transform-react-display-name" "^7.0.0" 2008 + "@babel/plugin-transform-react-jsx" "^7.0.0" 2009 + "@babel/plugin-transform-shorthand-properties" "^7.0.0" 2010 + "@babel/plugin-transform-spread" "^7.0.0" 2011 + "@babel/plugin-transform-template-literals" "^7.0.0" 2012 + babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" 2013 + 2014 + babel-preset-jest@^26.6.2: 2015 + version "26.6.2" 2016 + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee" 2017 + integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ== 2018 + dependencies: 2019 + babel-plugin-jest-hoist "^26.6.2" 2020 + babel-preset-current-node-syntax "^1.0.0" 2021 + 2022 + balanced-match@^1.0.0: 2023 + version "1.0.2" 2024 + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 2025 + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 2026 + 2027 + base64-js@^1.1.2, base64-js@^1.3.1, base64-js@^1.5.1: 2028 + version "1.5.1" 2029 + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 2030 + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 2031 + 2032 + base@^0.11.1: 2033 + version "0.11.2" 2034 + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 2035 + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 2036 + dependencies: 2037 + cache-base "^1.0.1" 2038 + class-utils "^0.3.5" 2039 + component-emitter "^1.2.1" 2040 + define-property "^1.0.0" 2041 + isobject "^3.0.1" 2042 + mixin-deep "^1.2.0" 2043 + pascalcase "^0.1.1" 2044 + 2045 + big-integer@1.6.x: 2046 + version "1.6.51" 2047 + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" 2048 + integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== 2049 + 2050 + bl@^4.1.0: 2051 + version "4.1.0" 2052 + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" 2053 + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== 2054 + dependencies: 2055 + buffer "^5.5.0" 2056 + inherits "^2.0.4" 2057 + readable-stream "^3.4.0" 2058 + 2059 + bplist-creator@0.1.0: 2060 + version "0.1.0" 2061 + resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.1.0.tgz#018a2d1b587f769e379ef5519103730f8963ba1e" 2062 + integrity sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg== 2063 + dependencies: 2064 + stream-buffers "2.2.x" 2065 + 2066 + bplist-parser@0.3.1: 2067 + version "0.3.1" 2068 + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.1.tgz#e1c90b2ca2a9f9474cc72f6862bbf3fee8341fd1" 2069 + integrity sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA== 2070 + dependencies: 2071 + big-integer "1.6.x" 2072 + 2073 + brace-expansion@^1.1.7: 2074 + version "1.1.11" 2075 + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 2076 + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 2077 + dependencies: 2078 + balanced-match "^1.0.0" 2079 + concat-map "0.0.1" 2080 + 2081 + braces@^2.3.1: 2082 + version "2.3.2" 2083 + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 2084 + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 2085 + dependencies: 2086 + arr-flatten "^1.1.0" 2087 + array-unique "^0.3.2" 2088 + extend-shallow "^2.0.1" 2089 + fill-range "^4.0.0" 2090 + isobject "^3.0.1" 2091 + repeat-element "^1.1.2" 2092 + snapdragon "^0.8.1" 2093 + snapdragon-node "^2.0.1" 2094 + split-string "^3.0.2" 2095 + to-regex "^3.0.1" 2096 + 2097 + braces@^3.0.2: 2098 + version "3.0.2" 2099 + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 2100 + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 2101 + dependencies: 2102 + fill-range "^7.0.1" 2103 + 2104 + browser-process-hrtime@^1.0.0: 2105 + version "1.0.0" 2106 + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 2107 + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 2108 + 2109 + browserslist@^4.20.2, browserslist@^4.20.3: 2110 + version "4.20.4" 2111 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.4.tgz#98096c9042af689ee1e0271333dbc564b8ce4477" 2112 + integrity sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw== 2113 + dependencies: 2114 + caniuse-lite "^1.0.30001349" 2115 + electron-to-chromium "^1.4.147" 2116 + escalade "^3.1.1" 2117 + node-releases "^2.0.5" 2118 + picocolors "^1.0.0" 2119 + 2120 + bser@2.1.1: 2121 + version "2.1.1" 2122 + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 2123 + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 2124 + dependencies: 2125 + node-int64 "^0.4.0" 2126 + 2127 + buffer-from@^1.0.0: 2128 + version "1.1.2" 2129 + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 2130 + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 2131 + 2132 + buffer@^5.5.0: 2133 + version "5.7.1" 2134 + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" 2135 + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 2136 + dependencies: 2137 + base64-js "^1.3.1" 2138 + ieee754 "^1.1.13" 2139 + 2140 + bytes@3.0.0: 2141 + version "3.0.0" 2142 + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 2143 + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== 2144 + 2145 + cache-base@^1.0.1: 2146 + version "1.0.1" 2147 + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 2148 + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 2149 + dependencies: 2150 + collection-visit "^1.0.0" 2151 + component-emitter "^1.2.1" 2152 + get-value "^2.0.6" 2153 + has-value "^1.0.0" 2154 + isobject "^3.0.1" 2155 + set-value "^2.0.0" 2156 + to-object-path "^0.3.0" 2157 + union-value "^1.0.0" 2158 + unset-value "^1.0.0" 2159 + 2160 + call-bind@^1.0.0, call-bind@^1.0.2: 2161 + version "1.0.2" 2162 + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 2163 + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 2164 + dependencies: 2165 + function-bind "^1.1.1" 2166 + get-intrinsic "^1.0.2" 2167 + 2168 + caller-callsite@^2.0.0: 2169 + version "2.0.0" 2170 + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 2171 + integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== 2172 + dependencies: 2173 + callsites "^2.0.0" 2174 + 2175 + caller-path@^2.0.0: 2176 + version "2.0.0" 2177 + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 2178 + integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== 2179 + dependencies: 2180 + caller-callsite "^2.0.0" 2181 + 2182 + callsites@^2.0.0: 2183 + version "2.0.0" 2184 + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 2185 + integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== 2186 + 2187 + callsites@^3.0.0: 2188 + version "3.1.0" 2189 + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 2190 + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 2191 + 2192 + camelcase@^5.0.0, camelcase@^5.3.1: 2193 + version "5.3.1" 2194 + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 2195 + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 2196 + 2197 + camelcase@^6.0.0: 2198 + version "6.3.0" 2199 + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 2200 + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 2201 + 2202 + caniuse-lite@^1.0.30001349: 2203 + version "1.0.30001349" 2204 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001349.tgz#90740086a2eb2e825084944169d313c9793aeba4" 2205 + integrity sha512-VFaWW3jeo6DLU5rwdiasosxhYSduJgSGil4cSyX3/85fbctlE58pXAkWyuRmVA0r2RxsOSVYUTZcySJ8WpbTxw== 2206 + 2207 + capture-exit@^2.0.0: 2208 + version "2.0.0" 2209 + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" 2210 + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== 2211 + dependencies: 2212 + rsvp "^4.8.4" 2213 + 2214 + chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: 2215 + version "2.4.2" 2216 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 2217 + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 2218 + dependencies: 2219 + ansi-styles "^3.2.1" 2220 + escape-string-regexp "^1.0.5" 2221 + supports-color "^5.3.0" 2222 + 2223 + chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: 2224 + version "4.1.2" 2225 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 2226 + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 2227 + dependencies: 2228 + ansi-styles "^4.1.0" 2229 + supports-color "^7.1.0" 2230 + 2231 + char-regex@^1.0.2: 2232 + version "1.0.2" 2233 + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 2234 + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 2235 + 2236 + ci-info@^2.0.0: 2237 + version "2.0.0" 2238 + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 2239 + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 2240 + 2241 + ci-info@^3.2.0: 2242 + version "3.3.1" 2243 + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.1.tgz#58331f6f472a25fe3a50a351ae3052936c2c7f32" 2244 + integrity sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg== 2245 + 2246 + cjs-module-lexer@^0.6.0: 2247 + version "0.6.0" 2248 + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f" 2249 + integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw== 2250 + 2251 + class-utils@^0.3.5: 2252 + version "0.3.6" 2253 + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 2254 + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 2255 + dependencies: 2256 + arr-union "^3.1.0" 2257 + define-property "^0.2.5" 2258 + isobject "^3.0.0" 2259 + static-extend "^0.1.1" 2260 + 2261 + cli-cursor@^2.1.0: 2262 + version "2.1.0" 2263 + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 2264 + integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== 2265 + dependencies: 2266 + restore-cursor "^2.0.0" 2267 + 2268 + cli-cursor@^3.1.0: 2269 + version "3.1.0" 2270 + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 2271 + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 2272 + dependencies: 2273 + restore-cursor "^3.1.0" 2274 + 2275 + cli-spinners@^2.0.0, cli-spinners@^2.5.0: 2276 + version "2.6.1" 2277 + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" 2278 + integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== 2279 + 2280 + cliui@^6.0.0: 2281 + version "6.0.0" 2282 + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 2283 + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 2284 + dependencies: 2285 + string-width "^4.2.0" 2286 + strip-ansi "^6.0.0" 2287 + wrap-ansi "^6.2.0" 2288 + 2289 + clone-deep@^4.0.1: 2290 + version "4.0.1" 2291 + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" 2292 + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== 2293 + dependencies: 2294 + is-plain-object "^2.0.4" 2295 + kind-of "^6.0.2" 2296 + shallow-clone "^3.0.0" 2297 + 2298 + clone@^1.0.2: 2299 + version "1.0.4" 2300 + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 2301 + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== 2302 + 2303 + co@^4.6.0: 2304 + version "4.6.0" 2305 + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 2306 + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== 2307 + 2308 + collect-v8-coverage@^1.0.0: 2309 + version "1.0.1" 2310 + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 2311 + integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 2312 + 2313 + collection-visit@^1.0.0: 2314 + version "1.0.0" 2315 + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 2316 + integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== 2317 + dependencies: 2318 + map-visit "^1.0.0" 2319 + object-visit "^1.0.0" 2320 + 2321 + color-convert@^1.9.0: 2322 + version "1.9.3" 2323 + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 2324 + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 2325 + dependencies: 2326 + color-name "1.1.3" 2327 + 2328 + color-convert@^2.0.1: 2329 + version "2.0.1" 2330 + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 2331 + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 2332 + dependencies: 2333 + color-name "~1.1.4" 2334 + 2335 + color-name@1.1.3: 2336 + version "1.1.3" 2337 + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 2338 + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 2339 + 2340 + color-name@~1.1.4: 2341 + version "1.1.4" 2342 + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 2343 + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 2344 + 2345 + colorette@^1.0.7: 2346 + version "1.4.0" 2347 + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" 2348 + integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== 2349 + 2350 + combined-stream@^1.0.8: 2351 + version "1.0.8" 2352 + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 2353 + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 2354 + dependencies: 2355 + delayed-stream "~1.0.0" 2356 + 2357 + command-exists@^1.2.8: 2358 + version "1.2.9" 2359 + resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69" 2360 + integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w== 2361 + 2362 + commander@^2.19.0: 2363 + version "2.20.3" 2364 + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 2365 + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 2366 + 2367 + commander@~2.13.0: 2368 + version "2.13.0" 2369 + resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 2370 + integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA== 2371 + 2372 + commondir@^1.0.1: 2373 + version "1.0.1" 2374 + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 2375 + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== 2376 + 2377 + component-emitter@^1.2.1: 2378 + version "1.3.0" 2379 + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 2380 + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 2381 + 2382 + compressible@~2.0.16: 2383 + version "2.0.18" 2384 + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" 2385 + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== 2386 + dependencies: 2387 + mime-db ">= 1.43.0 < 2" 2388 + 2389 + compression@^1.7.1: 2390 + version "1.7.4" 2391 + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" 2392 + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== 2393 + dependencies: 2394 + accepts "~1.3.5" 2395 + bytes "3.0.0" 2396 + compressible "~2.0.16" 2397 + debug "2.6.9" 2398 + on-headers "~1.0.2" 2399 + safe-buffer "5.1.2" 2400 + vary "~1.1.2" 2401 + 2402 + concat-map@0.0.1: 2403 + version "0.0.1" 2404 + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 2405 + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 2406 + 2407 + connect@^3.6.5: 2408 + version "3.7.0" 2409 + resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" 2410 + integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== 2411 + dependencies: 2412 + debug "2.6.9" 2413 + finalhandler "1.1.2" 2414 + parseurl "~1.3.3" 2415 + utils-merge "1.0.1" 2416 + 2417 + convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 2418 + version "1.8.0" 2419 + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 2420 + integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 2421 + dependencies: 2422 + safe-buffer "~5.1.1" 2423 + 2424 + copy-descriptor@^0.1.0: 2425 + version "0.1.1" 2426 + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 2427 + integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== 2428 + 2429 + core-js-compat@^3.21.0: 2430 + version "3.22.8" 2431 + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.22.8.tgz#46fa34ce1ddf742acd7f95f575f66bbb21e05d62" 2432 + integrity sha512-pQnwg4xtuvc2Bs/5zYQPaEYYSuTxsF7LBWF0SvnVhthZo/Qe+rJpcEekrdNK5DWwDJ0gv0oI9NNX5Mppdy0ctg== 2433 + dependencies: 2434 + browserslist "^4.20.3" 2435 + semver "7.0.0" 2436 + 2437 + core-util-is@~1.0.0: 2438 + version "1.0.3" 2439 + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 2440 + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 2441 + 2442 + cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: 2443 + version "5.2.1" 2444 + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" 2445 + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== 2446 + dependencies: 2447 + import-fresh "^2.0.0" 2448 + is-directory "^0.3.1" 2449 + js-yaml "^3.13.1" 2450 + parse-json "^4.0.0" 2451 + 2452 + cross-spawn@^6.0.0: 2453 + version "6.0.5" 2454 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 2455 + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 2456 + dependencies: 2457 + nice-try "^1.0.4" 2458 + path-key "^2.0.1" 2459 + semver "^5.5.0" 2460 + shebang-command "^1.2.0" 2461 + which "^1.2.9" 2462 + 2463 + cross-spawn@^7.0.0, cross-spawn@^7.0.2: 2464 + version "7.0.3" 2465 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 2466 + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 2467 + dependencies: 2468 + path-key "^3.1.0" 2469 + shebang-command "^2.0.0" 2470 + which "^2.0.1" 2471 + 2472 + cssom@^0.4.4: 2473 + version "0.4.4" 2474 + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 2475 + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 2476 + 2477 + cssom@~0.3.6: 2478 + version "0.3.8" 2479 + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 2480 + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 2481 + 2482 + cssstyle@^2.3.0: 2483 + version "2.3.0" 2484 + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 2485 + integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 2486 + dependencies: 2487 + cssom "~0.3.6" 2488 + 2489 + csstype@^3.0.2: 2490 + version "3.1.0" 2491 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" 2492 + integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== 2493 + 2494 + data-urls@^2.0.0: 2495 + version "2.0.0" 2496 + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 2497 + integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 2498 + dependencies: 2499 + abab "^2.0.3" 2500 + whatwg-mimetype "^2.3.0" 2501 + whatwg-url "^8.0.0" 2502 + 2503 + dayjs@^1.8.15: 2504 + version "1.11.3" 2505 + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.3.tgz#4754eb694a624057b9ad2224b67b15d552589258" 2506 + integrity sha512-xxwlswWOlGhzgQ4TKzASQkUhqERI3egRNqgV4ScR8wlANA/A9tZ7miXa44vTTKEq5l7vWoL5G57bG3zA+Kow0A== 2507 + 2508 + debug@2.6.9, debug@^2.2.0, debug@^2.3.3: 2509 + version "2.6.9" 2510 + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 2511 + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 2512 + dependencies: 2513 + ms "2.0.0" 2514 + 2515 + debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: 2516 + version "4.3.4" 2517 + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 2518 + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 2519 + dependencies: 2520 + ms "2.1.2" 2521 + 2522 + decamelize@^1.2.0: 2523 + version "1.2.0" 2524 + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 2525 + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== 2526 + 2527 + decimal.js@^10.2.1: 2528 + version "10.3.1" 2529 + resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 2530 + integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 2531 + 2532 + decode-uri-component@^0.2.0: 2533 + version "0.2.0" 2534 + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 2535 + integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== 2536 + 2537 + deep-is@^0.1.3, deep-is@~0.1.3: 2538 + version "0.1.4" 2539 + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 2540 + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 2541 + 2542 + deepmerge@^3.2.0: 2543 + version "3.3.0" 2544 + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7" 2545 + integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA== 2546 + 2547 + deepmerge@^4.2.2: 2548 + version "4.2.2" 2549 + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 2550 + integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 2551 + 2552 + defaults@^1.0.3: 2553 + version "1.0.3" 2554 + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 2555 + integrity sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA== 2556 + dependencies: 2557 + clone "^1.0.2" 2558 + 2559 + define-properties@^1.1.3, define-properties@^1.1.4: 2560 + version "1.1.4" 2561 + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 2562 + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 2563 + dependencies: 2564 + has-property-descriptors "^1.0.0" 2565 + object-keys "^1.1.1" 2566 + 2567 + define-property@^0.2.5: 2568 + version "0.2.5" 2569 + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 2570 + integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== 2571 + dependencies: 2572 + is-descriptor "^0.1.0" 2573 + 2574 + define-property@^1.0.0: 2575 + version "1.0.0" 2576 + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 2577 + integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== 2578 + dependencies: 2579 + is-descriptor "^1.0.0" 2580 + 2581 + define-property@^2.0.2: 2582 + version "2.0.2" 2583 + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 2584 + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 2585 + dependencies: 2586 + is-descriptor "^1.0.2" 2587 + isobject "^3.0.1" 2588 + 2589 + delayed-stream@~1.0.0: 2590 + version "1.0.0" 2591 + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 2592 + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 2593 + 2594 + denodeify@^1.2.1: 2595 + version "1.2.1" 2596 + resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 2597 + integrity sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg== 2598 + 2599 + depd@2.0.0: 2600 + version "2.0.0" 2601 + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 2602 + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== 2603 + 2604 + deprecated-react-native-prop-types@^2.3.0: 2605 + version "2.3.0" 2606 + resolved "https://registry.yarnpkg.com/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-2.3.0.tgz#c10c6ee75ff2b6de94bb127f142b814e6e08d9ab" 2607 + integrity sha512-pWD0voFtNYxrVqvBMYf5gq3NA2GCpfodS1yNynTPc93AYA/KEMGeWDqqeUB6R2Z9ZofVhks2aeJXiuQqKNpesA== 2608 + dependencies: 2609 + "@react-native/normalize-color" "*" 2610 + invariant "*" 2611 + prop-types "*" 2612 + 2613 + destroy@1.2.0: 2614 + version "1.2.0" 2615 + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" 2616 + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== 2617 + 2618 + detect-newline@^3.0.0: 2619 + version "3.1.0" 2620 + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 2621 + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 2622 + 2623 + diff-sequences@^26.6.2: 2624 + version "26.6.2" 2625 + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" 2626 + integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== 2627 + 2628 + dir-glob@^3.0.1: 2629 + version "3.0.1" 2630 + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 2631 + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 2632 + dependencies: 2633 + path-type "^4.0.0" 2634 + 2635 + doctrine@^2.1.0: 2636 + version "2.1.0" 2637 + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 2638 + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 2639 + dependencies: 2640 + esutils "^2.0.2" 2641 + 2642 + doctrine@^3.0.0: 2643 + version "3.0.0" 2644 + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 2645 + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 2646 + dependencies: 2647 + esutils "^2.0.2" 2648 + 2649 + domexception@^2.0.1: 2650 + version "2.0.1" 2651 + resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 2652 + integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 2653 + dependencies: 2654 + webidl-conversions "^5.0.0" 2655 + 2656 + ee-first@1.1.1: 2657 + version "1.1.1" 2658 + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 2659 + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== 2660 + 2661 + electron-to-chromium@^1.4.147: 2662 + version "1.4.147" 2663 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.147.tgz#1ecf318737b21ba1e5b53319eb1edf8143892270" 2664 + integrity sha512-czclPqxLMPqPMkahKcske4TaS5lcznsc26ByBlEFDU8grTBVK9C5W6K9I6oEEhm4Ai4jTihGnys90xY1yjXcRg== 2665 + 2666 + emittery@^0.7.1: 2667 + version "0.7.2" 2668 + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82" 2669 + integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ== 2670 + 2671 + emoji-regex@^8.0.0: 2672 + version "8.0.0" 2673 + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 2674 + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 2675 + 2676 + encodeurl@~1.0.2: 2677 + version "1.0.2" 2678 + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 2679 + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== 2680 + 2681 + end-of-stream@^1.1.0: 2682 + version "1.4.4" 2683 + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 2684 + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 2685 + dependencies: 2686 + once "^1.4.0" 2687 + 2688 + enquirer@^2.3.5: 2689 + version "2.3.6" 2690 + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 2691 + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 2692 + dependencies: 2693 + ansi-colors "^4.1.1" 2694 + 2695 + envinfo@^7.7.2: 2696 + version "7.8.1" 2697 + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" 2698 + integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== 2699 + 2700 + error-ex@^1.3.1: 2701 + version "1.3.2" 2702 + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 2703 + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 2704 + dependencies: 2705 + is-arrayish "^0.2.1" 2706 + 2707 + error-stack-parser@^2.0.6: 2708 + version "2.1.4" 2709 + resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" 2710 + integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== 2711 + dependencies: 2712 + stackframe "^1.3.4" 2713 + 2714 + errorhandler@^1.5.0: 2715 + version "1.5.1" 2716 + resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" 2717 + integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== 2718 + dependencies: 2719 + accepts "~1.3.7" 2720 + escape-html "~1.0.3" 2721 + 2722 + es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: 2723 + version "1.20.1" 2724 + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814" 2725 + integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA== 2726 + dependencies: 2727 + call-bind "^1.0.2" 2728 + es-to-primitive "^1.2.1" 2729 + function-bind "^1.1.1" 2730 + function.prototype.name "^1.1.5" 2731 + get-intrinsic "^1.1.1" 2732 + get-symbol-description "^1.0.0" 2733 + has "^1.0.3" 2734 + has-property-descriptors "^1.0.0" 2735 + has-symbols "^1.0.3" 2736 + internal-slot "^1.0.3" 2737 + is-callable "^1.2.4" 2738 + is-negative-zero "^2.0.2" 2739 + is-regex "^1.1.4" 2740 + is-shared-array-buffer "^1.0.2" 2741 + is-string "^1.0.7" 2742 + is-weakref "^1.0.2" 2743 + object-inspect "^1.12.0" 2744 + object-keys "^1.1.1" 2745 + object.assign "^4.1.2" 2746 + regexp.prototype.flags "^1.4.3" 2747 + string.prototype.trimend "^1.0.5" 2748 + string.prototype.trimstart "^1.0.5" 2749 + unbox-primitive "^1.0.2" 2750 + 2751 + es-shim-unscopables@^1.0.0: 2752 + version "1.0.0" 2753 + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 2754 + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 2755 + dependencies: 2756 + has "^1.0.3" 2757 + 2758 + es-to-primitive@^1.2.1: 2759 + version "1.2.1" 2760 + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 2761 + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 2762 + dependencies: 2763 + is-callable "^1.1.4" 2764 + is-date-object "^1.0.1" 2765 + is-symbol "^1.0.2" 2766 + 2767 + escalade@^3.1.1: 2768 + version "3.1.1" 2769 + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 2770 + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 2771 + 2772 + escape-html@~1.0.3: 2773 + version "1.0.3" 2774 + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 2775 + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== 2776 + 2777 + escape-string-regexp@^1.0.5: 2778 + version "1.0.5" 2779 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 2780 + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 2781 + 2782 + escape-string-regexp@^2.0.0: 2783 + version "2.0.0" 2784 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 2785 + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 2786 + 2787 + escape-string-regexp@^4.0.0: 2788 + version "4.0.0" 2789 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 2790 + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 2791 + 2792 + escodegen@^2.0.0: 2793 + version "2.0.0" 2794 + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 2795 + integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 2796 + dependencies: 2797 + esprima "^4.0.1" 2798 + estraverse "^5.2.0" 2799 + esutils "^2.0.2" 2800 + optionator "^0.8.1" 2801 + optionalDependencies: 2802 + source-map "~0.6.1" 2803 + 2804 + eslint-config-prettier@^6.10.1: 2805 + version "6.15.0" 2806 + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz#7f93f6cb7d45a92f1537a70ecc06366e1ac6fed9" 2807 + integrity sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw== 2808 + dependencies: 2809 + get-stdin "^6.0.0" 2810 + 2811 + eslint-plugin-eslint-comments@^3.1.2: 2812 + version "3.2.0" 2813 + resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz#9e1cd7b4413526abb313933071d7aba05ca12ffa" 2814 + integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== 2815 + dependencies: 2816 + escape-string-regexp "^1.0.5" 2817 + ignore "^5.0.5" 2818 + 2819 + eslint-plugin-flowtype@2.50.3: 2820 + version "2.50.3" 2821 + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz#61379d6dce1d010370acd6681740fd913d68175f" 2822 + integrity sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ== 2823 + dependencies: 2824 + lodash "^4.17.10" 2825 + 2826 + eslint-plugin-jest@22.4.1: 2827 + version "22.4.1" 2828 + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz#a5fd6f7a2a41388d16f527073b778013c5189a9c" 2829 + integrity sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg== 2830 + 2831 + eslint-plugin-prettier@3.1.2: 2832 + version "3.1.2" 2833 + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz#432e5a667666ab84ce72f945c72f77d996a5c9ba" 2834 + integrity sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA== 2835 + dependencies: 2836 + prettier-linter-helpers "^1.0.0" 2837 + 2838 + eslint-plugin-react-hooks@^4.0.4: 2839 + version "4.5.0" 2840 + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.5.0.tgz#5f762dfedf8b2cf431c689f533c9d3fa5dcf25ad" 2841 + integrity sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw== 2842 + 2843 + eslint-plugin-react-native-globals@^0.1.1: 2844 + version "0.1.2" 2845 + resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2" 2846 + integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g== 2847 + 2848 + eslint-plugin-react-native@^3.8.1: 2849 + version "3.11.0" 2850 + resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.11.0.tgz#c73b0886abb397867e5e6689d3a6a418682e6bac" 2851 + integrity sha512-7F3OTwrtQPfPFd+VygqKA2VZ0f2fz0M4gJmry/TRE18JBb94/OtMxwbL7Oqwu7FGyrdeIOWnXQbBAveMcSTZIA== 2852 + dependencies: 2853 + "@babel/traverse" "^7.7.4" 2854 + eslint-plugin-react-native-globals "^0.1.1" 2855 + 2856 + eslint-plugin-react@^7.20.0: 2857 + version "7.30.0" 2858 + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.0.tgz#8e7b1b2934b8426ac067a0febade1b13bd7064e3" 2859 + integrity sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A== 2860 + dependencies: 2861 + array-includes "^3.1.5" 2862 + array.prototype.flatmap "^1.3.0" 2863 + doctrine "^2.1.0" 2864 + estraverse "^5.3.0" 2865 + jsx-ast-utils "^2.4.1 || ^3.0.0" 2866 + minimatch "^3.1.2" 2867 + object.entries "^1.1.5" 2868 + object.fromentries "^2.0.5" 2869 + object.hasown "^1.1.1" 2870 + object.values "^1.1.5" 2871 + prop-types "^15.8.1" 2872 + resolve "^2.0.0-next.3" 2873 + semver "^6.3.0" 2874 + string.prototype.matchall "^4.0.7" 2875 + 2876 + eslint-scope@^5.0.0, eslint-scope@^5.1.1: 2877 + version "5.1.1" 2878 + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 2879 + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 2880 + dependencies: 2881 + esrecurse "^4.3.0" 2882 + estraverse "^4.1.1" 2883 + 2884 + eslint-utils@^2.0.0, eslint-utils@^2.1.0: 2885 + version "2.1.0" 2886 + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 2887 + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 2888 + dependencies: 2889 + eslint-visitor-keys "^1.1.0" 2890 + 2891 + eslint-utils@^3.0.0: 2892 + version "3.0.0" 2893 + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 2894 + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 2895 + dependencies: 2896 + eslint-visitor-keys "^2.0.0" 2897 + 2898 + eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 2899 + version "1.3.0" 2900 + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 2901 + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 2902 + 2903 + eslint-visitor-keys@^2.0.0: 2904 + version "2.1.0" 2905 + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 2906 + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 2907 + 2908 + eslint-visitor-keys@^3.3.0: 2909 + version "3.3.0" 2910 + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 2911 + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 2912 + 2913 + eslint@^7.32.0: 2914 + version "7.32.0" 2915 + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" 2916 + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== 2917 + dependencies: 2918 + "@babel/code-frame" "7.12.11" 2919 + "@eslint/eslintrc" "^0.4.3" 2920 + "@humanwhocodes/config-array" "^0.5.0" 2921 + ajv "^6.10.0" 2922 + chalk "^4.0.0" 2923 + cross-spawn "^7.0.2" 2924 + debug "^4.0.1" 2925 + doctrine "^3.0.0" 2926 + enquirer "^2.3.5" 2927 + escape-string-regexp "^4.0.0" 2928 + eslint-scope "^5.1.1" 2929 + eslint-utils "^2.1.0" 2930 + eslint-visitor-keys "^2.0.0" 2931 + espree "^7.3.1" 2932 + esquery "^1.4.0" 2933 + esutils "^2.0.2" 2934 + fast-deep-equal "^3.1.3" 2935 + file-entry-cache "^6.0.1" 2936 + functional-red-black-tree "^1.0.1" 2937 + glob-parent "^5.1.2" 2938 + globals "^13.6.0" 2939 + ignore "^4.0.6" 2940 + import-fresh "^3.0.0" 2941 + imurmurhash "^0.1.4" 2942 + is-glob "^4.0.0" 2943 + js-yaml "^3.13.1" 2944 + json-stable-stringify-without-jsonify "^1.0.1" 2945 + levn "^0.4.1" 2946 + lodash.merge "^4.6.2" 2947 + minimatch "^3.0.4" 2948 + natural-compare "^1.4.0" 2949 + optionator "^0.9.1" 2950 + progress "^2.0.0" 2951 + regexpp "^3.1.0" 2952 + semver "^7.2.1" 2953 + strip-ansi "^6.0.0" 2954 + strip-json-comments "^3.1.0" 2955 + table "^6.0.9" 2956 + text-table "^0.2.0" 2957 + v8-compile-cache "^2.0.3" 2958 + 2959 + espree@^7.3.0, espree@^7.3.1: 2960 + version "7.3.1" 2961 + resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" 2962 + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== 2963 + dependencies: 2964 + acorn "^7.4.0" 2965 + acorn-jsx "^5.3.1" 2966 + eslint-visitor-keys "^1.3.0" 2967 + 2968 + esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: 2969 + version "4.0.1" 2970 + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 2971 + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 2972 + 2973 + esquery@^1.4.0: 2974 + version "1.4.0" 2975 + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 2976 + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 2977 + dependencies: 2978 + estraverse "^5.1.0" 2979 + 2980 + esrecurse@^4.3.0: 2981 + version "4.3.0" 2982 + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 2983 + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 2984 + dependencies: 2985 + estraverse "^5.2.0" 2986 + 2987 + estraverse@^4.1.1: 2988 + version "4.3.0" 2989 + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 2990 + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 2991 + 2992 + estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 2993 + version "5.3.0" 2994 + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 2995 + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 2996 + 2997 + esutils@^2.0.2: 2998 + version "2.0.3" 2999 + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 3000 + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 3001 + 3002 + etag@~1.8.1: 3003 + version "1.8.1" 3004 + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 3005 + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== 3006 + 3007 + event-target-shim@^5.0.0, event-target-shim@^5.0.1: 3008 + version "5.0.1" 3009 + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" 3010 + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== 3011 + 3012 + exec-sh@^0.3.2: 3013 + version "0.3.6" 3014 + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" 3015 + integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== 3016 + 3017 + execa@^1.0.0: 3018 + version "1.0.0" 3019 + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 3020 + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 3021 + dependencies: 3022 + cross-spawn "^6.0.0" 3023 + get-stream "^4.0.0" 3024 + is-stream "^1.1.0" 3025 + npm-run-path "^2.0.0" 3026 + p-finally "^1.0.0" 3027 + signal-exit "^3.0.0" 3028 + strip-eof "^1.0.0" 3029 + 3030 + execa@^4.0.0: 3031 + version "4.1.0" 3032 + resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" 3033 + integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 3034 + dependencies: 3035 + cross-spawn "^7.0.0" 3036 + get-stream "^5.0.0" 3037 + human-signals "^1.1.1" 3038 + is-stream "^2.0.0" 3039 + merge-stream "^2.0.0" 3040 + npm-run-path "^4.0.0" 3041 + onetime "^5.1.0" 3042 + signal-exit "^3.0.2" 3043 + strip-final-newline "^2.0.0" 3044 + 3045 + exit@^0.1.2: 3046 + version "0.1.2" 3047 + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 3048 + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== 3049 + 3050 + expand-brackets@^2.1.4: 3051 + version "2.1.4" 3052 + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 3053 + integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== 3054 + dependencies: 3055 + debug "^2.3.3" 3056 + define-property "^0.2.5" 3057 + extend-shallow "^2.0.1" 3058 + posix-character-classes "^0.1.0" 3059 + regex-not "^1.0.0" 3060 + snapdragon "^0.8.1" 3061 + to-regex "^3.0.1" 3062 + 3063 + expect@^26.6.2: 3064 + version "26.6.2" 3065 + resolved "https://registry.yarnpkg.com/expect/-/expect-26.6.2.tgz#c6b996bf26bf3fe18b67b2d0f51fc981ba934417" 3066 + integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA== 3067 + dependencies: 3068 + "@jest/types" "^26.6.2" 3069 + ansi-styles "^4.0.0" 3070 + jest-get-type "^26.3.0" 3071 + jest-matcher-utils "^26.6.2" 3072 + jest-message-util "^26.6.2" 3073 + jest-regex-util "^26.0.0" 3074 + 3075 + extend-shallow@^2.0.1: 3076 + version "2.0.1" 3077 + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 3078 + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== 3079 + dependencies: 3080 + is-extendable "^0.1.0" 3081 + 3082 + extend-shallow@^3.0.0, extend-shallow@^3.0.2: 3083 + version "3.0.2" 3084 + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 3085 + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== 3086 + dependencies: 3087 + assign-symbols "^1.0.0" 3088 + is-extendable "^1.0.1" 3089 + 3090 + extglob@^2.0.4: 3091 + version "2.0.4" 3092 + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 3093 + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 3094 + dependencies: 3095 + array-unique "^0.3.2" 3096 + define-property "^1.0.0" 3097 + expand-brackets "^2.1.4" 3098 + extend-shallow "^2.0.1" 3099 + fragment-cache "^0.2.1" 3100 + regex-not "^1.0.0" 3101 + snapdragon "^0.8.1" 3102 + to-regex "^3.0.1" 3103 + 3104 + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 3105 + version "3.1.3" 3106 + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 3107 + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 3108 + 3109 + fast-diff@^1.1.2: 3110 + version "1.2.0" 3111 + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 3112 + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 3113 + 3114 + fast-glob@^3.2.9: 3115 + version "3.2.11" 3116 + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 3117 + integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 3118 + dependencies: 3119 + "@nodelib/fs.stat" "^2.0.2" 3120 + "@nodelib/fs.walk" "^1.2.3" 3121 + glob-parent "^5.1.2" 3122 + merge2 "^1.3.0" 3123 + micromatch "^4.0.4" 3124 + 3125 + fast-json-stable-stringify@^2.0.0: 3126 + version "2.1.0" 3127 + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 3128 + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 3129 + 3130 + fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: 3131 + version "2.0.6" 3132 + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 3133 + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 3134 + 3135 + fastq@^1.6.0: 3136 + version "1.13.0" 3137 + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 3138 + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 3139 + dependencies: 3140 + reusify "^1.0.4" 3141 + 3142 + fb-watchman@^2.0.0: 3143 + version "2.0.1" 3144 + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 3145 + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 3146 + dependencies: 3147 + bser "2.1.1" 3148 + 3149 + file-entry-cache@^6.0.1: 3150 + version "6.0.1" 3151 + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 3152 + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 3153 + dependencies: 3154 + flat-cache "^3.0.4" 3155 + 3156 + fill-range@^4.0.0: 3157 + version "4.0.0" 3158 + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 3159 + integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== 3160 + dependencies: 3161 + extend-shallow "^2.0.1" 3162 + is-number "^3.0.0" 3163 + repeat-string "^1.6.1" 3164 + to-regex-range "^2.1.0" 3165 + 3166 + fill-range@^7.0.1: 3167 + version "7.0.1" 3168 + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 3169 + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 3170 + dependencies: 3171 + to-regex-range "^5.0.1" 3172 + 3173 + finalhandler@1.1.2: 3174 + version "1.1.2" 3175 + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 3176 + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 3177 + dependencies: 3178 + debug "2.6.9" 3179 + encodeurl "~1.0.2" 3180 + escape-html "~1.0.3" 3181 + on-finished "~2.3.0" 3182 + parseurl "~1.3.3" 3183 + statuses "~1.5.0" 3184 + unpipe "~1.0.0" 3185 + 3186 + find-cache-dir@^2.0.0: 3187 + version "2.1.0" 3188 + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 3189 + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== 3190 + dependencies: 3191 + commondir "^1.0.1" 3192 + make-dir "^2.0.0" 3193 + pkg-dir "^3.0.0" 3194 + 3195 + find-up@^3.0.0: 3196 + version "3.0.0" 3197 + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 3198 + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 3199 + dependencies: 3200 + locate-path "^3.0.0" 3201 + 3202 + find-up@^4.0.0, find-up@^4.1.0: 3203 + version "4.1.0" 3204 + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 3205 + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 3206 + dependencies: 3207 + locate-path "^5.0.0" 3208 + path-exists "^4.0.0" 3209 + 3210 + flat-cache@^3.0.4: 3211 + version "3.0.4" 3212 + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 3213 + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 3214 + dependencies: 3215 + flatted "^3.1.0" 3216 + rimraf "^3.0.2" 3217 + 3218 + flatted@^3.1.0: 3219 + version "3.2.5" 3220 + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" 3221 + integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== 3222 + 3223 + flow-parser@0.*: 3224 + version "0.179.0" 3225 + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.179.0.tgz#595caab8b082b4d424735c97a53216a91c9eb19a" 3226 + integrity sha512-M4dEgnvsGFa1lUTK05RFW+cwle8tkTHioFm6gGWdeGpDJjjhmvyaN8vLIqb8sAHI05TQxARsnUC3U2chzQP1Dw== 3227 + 3228 + flow-parser@^0.121.0: 3229 + version "0.121.0" 3230 + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.121.0.tgz#9f9898eaec91a9f7c323e9e992d81ab5c58e618f" 3231 + integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg== 3232 + 3233 + for-in@^1.0.2: 3234 + version "1.0.2" 3235 + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 3236 + integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== 3237 + 3238 + form-data@^3.0.0: 3239 + version "3.0.1" 3240 + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 3241 + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 3242 + dependencies: 3243 + asynckit "^0.4.0" 3244 + combined-stream "^1.0.8" 3245 + mime-types "^2.1.12" 3246 + 3247 + fragment-cache@^0.2.1: 3248 + version "0.2.1" 3249 + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 3250 + integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== 3251 + dependencies: 3252 + map-cache "^0.2.2" 3253 + 3254 + fresh@0.5.2: 3255 + version "0.5.2" 3256 + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 3257 + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== 3258 + 3259 + fs-extra@^1.0.0: 3260 + version "1.0.0" 3261 + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 3262 + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== 3263 + dependencies: 3264 + graceful-fs "^4.1.2" 3265 + jsonfile "^2.1.0" 3266 + klaw "^1.0.0" 3267 + 3268 + fs-extra@^8.1.0: 3269 + version "8.1.0" 3270 + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 3271 + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 3272 + dependencies: 3273 + graceful-fs "^4.2.0" 3274 + jsonfile "^4.0.0" 3275 + universalify "^0.1.0" 3276 + 3277 + fs.realpath@^1.0.0: 3278 + version "1.0.0" 3279 + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 3280 + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 3281 + 3282 + fsevents@^2.1.2, fsevents@^2.3.2: 3283 + version "2.3.2" 3284 + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 3285 + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 3286 + 3287 + function-bind@^1.1.1: 3288 + version "1.1.1" 3289 + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 3290 + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 3291 + 3292 + function.prototype.name@^1.1.5: 3293 + version "1.1.5" 3294 + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 3295 + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 3296 + dependencies: 3297 + call-bind "^1.0.2" 3298 + define-properties "^1.1.3" 3299 + es-abstract "^1.19.0" 3300 + functions-have-names "^1.2.2" 3301 + 3302 + functional-red-black-tree@^1.0.1: 3303 + version "1.0.1" 3304 + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 3305 + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== 3306 + 3307 + functions-have-names@^1.2.2: 3308 + version "1.2.3" 3309 + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 3310 + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 3311 + 3312 + gensync@^1.0.0-beta.2: 3313 + version "1.0.0-beta.2" 3314 + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 3315 + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 3316 + 3317 + get-caller-file@^2.0.1: 3318 + version "2.0.5" 3319 + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 3320 + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 3321 + 3322 + get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 3323 + version "1.1.1" 3324 + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 3325 + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 3326 + dependencies: 3327 + function-bind "^1.1.1" 3328 + has "^1.0.3" 3329 + has-symbols "^1.0.1" 3330 + 3331 + get-package-type@^0.1.0: 3332 + version "0.1.0" 3333 + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 3334 + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 3335 + 3336 + get-stdin@^6.0.0: 3337 + version "6.0.0" 3338 + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 3339 + integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 3340 + 3341 + get-stream@^4.0.0: 3342 + version "4.1.0" 3343 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 3344 + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 3345 + dependencies: 3346 + pump "^3.0.0" 3347 + 3348 + get-stream@^5.0.0: 3349 + version "5.2.0" 3350 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 3351 + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 3352 + dependencies: 3353 + pump "^3.0.0" 3354 + 3355 + get-symbol-description@^1.0.0: 3356 + version "1.0.0" 3357 + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 3358 + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 3359 + dependencies: 3360 + call-bind "^1.0.2" 3361 + get-intrinsic "^1.1.1" 3362 + 3363 + get-value@^2.0.3, get-value@^2.0.6: 3364 + version "2.0.6" 3365 + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 3366 + integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== 3367 + 3368 + glob-parent@^5.1.2: 3369 + version "5.1.2" 3370 + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 3371 + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 3372 + dependencies: 3373 + is-glob "^4.0.1" 3374 + 3375 + glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: 3376 + version "7.2.3" 3377 + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 3378 + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 3379 + dependencies: 3380 + fs.realpath "^1.0.0" 3381 + inflight "^1.0.4" 3382 + inherits "2" 3383 + minimatch "^3.1.1" 3384 + once "^1.3.0" 3385 + path-is-absolute "^1.0.0" 3386 + 3387 + globals@^11.1.0: 3388 + version "11.12.0" 3389 + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 3390 + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 3391 + 3392 + globals@^13.6.0, globals@^13.9.0: 3393 + version "13.15.0" 3394 + resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac" 3395 + integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog== 3396 + dependencies: 3397 + type-fest "^0.20.2" 3398 + 3399 + globby@^11.1.0: 3400 + version "11.1.0" 3401 + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 3402 + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 3403 + dependencies: 3404 + array-union "^2.1.0" 3405 + dir-glob "^3.0.1" 3406 + fast-glob "^3.2.9" 3407 + ignore "^5.2.0" 3408 + merge2 "^1.4.1" 3409 + slash "^3.0.0" 3410 + 3411 + graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: 3412 + version "4.2.10" 3413 + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 3414 + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 3415 + 3416 + growly@^1.3.0: 3417 + version "1.3.0" 3418 + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 3419 + integrity sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw== 3420 + 3421 + has-bigints@^1.0.1, has-bigints@^1.0.2: 3422 + version "1.0.2" 3423 + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 3424 + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 3425 + 3426 + has-flag@^3.0.0: 3427 + version "3.0.0" 3428 + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 3429 + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 3430 + 3431 + has-flag@^4.0.0: 3432 + version "4.0.0" 3433 + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 3434 + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 3435 + 3436 + has-property-descriptors@^1.0.0: 3437 + version "1.0.0" 3438 + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 3439 + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 3440 + dependencies: 3441 + get-intrinsic "^1.1.1" 3442 + 3443 + has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: 3444 + version "1.0.3" 3445 + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 3446 + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 3447 + 3448 + has-tostringtag@^1.0.0: 3449 + version "1.0.0" 3450 + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 3451 + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 3452 + dependencies: 3453 + has-symbols "^1.0.2" 3454 + 3455 + has-value@^0.3.1: 3456 + version "0.3.1" 3457 + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 3458 + integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== 3459 + dependencies: 3460 + get-value "^2.0.3" 3461 + has-values "^0.1.4" 3462 + isobject "^2.0.0" 3463 + 3464 + has-value@^1.0.0: 3465 + version "1.0.0" 3466 + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 3467 + integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== 3468 + dependencies: 3469 + get-value "^2.0.6" 3470 + has-values "^1.0.0" 3471 + isobject "^3.0.0" 3472 + 3473 + has-values@^0.1.4: 3474 + version "0.1.4" 3475 + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 3476 + integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== 3477 + 3478 + has-values@^1.0.0: 3479 + version "1.0.0" 3480 + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 3481 + integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== 3482 + dependencies: 3483 + is-number "^3.0.0" 3484 + kind-of "^4.0.0" 3485 + 3486 + has@^1.0.3: 3487 + version "1.0.3" 3488 + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 3489 + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 3490 + dependencies: 3491 + function-bind "^1.1.1" 3492 + 3493 + hermes-engine@~0.11.0: 3494 + version "0.11.0" 3495 + resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.11.0.tgz#bb224730d230a02a5af02c4e090d1f52d57dd3db" 3496 + integrity sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw== 3497 + 3498 + hermes-estree@0.5.0: 3499 + version "0.5.0" 3500 + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.5.0.tgz#36432a2b12f01b217244da098924efdfdfc12327" 3501 + integrity sha512-1h8rvG23HhIR5K6Kt0e5C7BC72J1Ath/8MmSta49vxXp/j6wl7IMHvIRFYBQr35tWnQY97dSGR2uoAJ5pHUQkg== 3502 + 3503 + hermes-parser@0.5.0: 3504 + version "0.5.0" 3505 + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.5.0.tgz#8b678dd8b29a08b57cbaf60adba4896494c59a53" 3506 + integrity sha512-ARnJBScKAkkq8j3BHrNGBUv/4cSpZNbKDsVizEtzmsFeqC67Dopa5s4XRe+e3wN52Dh5Mj2kDB5wJvhcxwDkPg== 3507 + dependencies: 3508 + hermes-estree "0.5.0" 3509 + 3510 + hermes-profile-transformer@^0.0.6: 3511 + version "0.0.6" 3512 + resolved "https://registry.yarnpkg.com/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz#bd0f5ecceda80dd0ddaae443469ab26fb38fc27b" 3513 + integrity sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ== 3514 + dependencies: 3515 + source-map "^0.7.3" 3516 + 3517 + hosted-git-info@^2.1.4: 3518 + version "2.8.9" 3519 + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 3520 + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 3521 + 3522 + html-encoding-sniffer@^2.0.1: 3523 + version "2.0.1" 3524 + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 3525 + integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 3526 + dependencies: 3527 + whatwg-encoding "^1.0.5" 3528 + 3529 + html-escaper@^2.0.0: 3530 + version "2.0.2" 3531 + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 3532 + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 3533 + 3534 + http-errors@2.0.0: 3535 + version "2.0.0" 3536 + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" 3537 + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== 3538 + dependencies: 3539 + depd "2.0.0" 3540 + inherits "2.0.4" 3541 + setprototypeof "1.2.0" 3542 + statuses "2.0.1" 3543 + toidentifier "1.0.1" 3544 + 3545 + http-proxy-agent@^4.0.1: 3546 + version "4.0.1" 3547 + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 3548 + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 3549 + dependencies: 3550 + "@tootallnate/once" "1" 3551 + agent-base "6" 3552 + debug "4" 3553 + 3554 + https-proxy-agent@^5.0.0: 3555 + version "5.0.1" 3556 + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" 3557 + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== 3558 + dependencies: 3559 + agent-base "6" 3560 + debug "4" 3561 + 3562 + human-signals@^1.1.1: 3563 + version "1.1.1" 3564 + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 3565 + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 3566 + 3567 + iconv-lite@0.4.24: 3568 + version "0.4.24" 3569 + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 3570 + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 3571 + dependencies: 3572 + safer-buffer ">= 2.1.2 < 3" 3573 + 3574 + ieee754@^1.1.13: 3575 + version "1.2.1" 3576 + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 3577 + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 3578 + 3579 + ignore@^4.0.6: 3580 + version "4.0.6" 3581 + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 3582 + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 3583 + 3584 + ignore@^5.0.5, ignore@^5.2.0: 3585 + version "5.2.0" 3586 + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 3587 + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 3588 + 3589 + image-size@^0.6.0: 3590 + version "0.6.3" 3591 + resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2" 3592 + integrity sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA== 3593 + 3594 + import-fresh@^2.0.0: 3595 + version "2.0.0" 3596 + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 3597 + integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== 3598 + dependencies: 3599 + caller-path "^2.0.0" 3600 + resolve-from "^3.0.0" 3601 + 3602 + import-fresh@^3.0.0, import-fresh@^3.2.1: 3603 + version "3.3.0" 3604 + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 3605 + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 3606 + dependencies: 3607 + parent-module "^1.0.0" 3608 + resolve-from "^4.0.0" 3609 + 3610 + import-local@^3.0.2: 3611 + version "3.1.0" 3612 + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" 3613 + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 3614 + dependencies: 3615 + pkg-dir "^4.2.0" 3616 + resolve-cwd "^3.0.0" 3617 + 3618 + imurmurhash@^0.1.4: 3619 + version "0.1.4" 3620 + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 3621 + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 3622 + 3623 + inflight@^1.0.4: 3624 + version "1.0.6" 3625 + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 3626 + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 3627 + dependencies: 3628 + once "^1.3.0" 3629 + wrappy "1" 3630 + 3631 + inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: 3632 + version "2.0.4" 3633 + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 3634 + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 3635 + 3636 + internal-slot@^1.0.3: 3637 + version "1.0.3" 3638 + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 3639 + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 3640 + dependencies: 3641 + get-intrinsic "^1.1.0" 3642 + has "^1.0.3" 3643 + side-channel "^1.0.4" 3644 + 3645 + invariant@*, invariant@^2.2.4: 3646 + version "2.2.4" 3647 + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 3648 + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 3649 + dependencies: 3650 + loose-envify "^1.0.0" 3651 + 3652 + ip@^1.1.5: 3653 + version "1.1.8" 3654 + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" 3655 + integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== 3656 + 3657 + is-accessor-descriptor@^0.1.6: 3658 + version "0.1.6" 3659 + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 3660 + integrity sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A== 3661 + dependencies: 3662 + kind-of "^3.0.2" 3663 + 3664 + is-accessor-descriptor@^1.0.0: 3665 + version "1.0.0" 3666 + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 3667 + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 3668 + dependencies: 3669 + kind-of "^6.0.0" 3670 + 3671 + is-arrayish@^0.2.1: 3672 + version "0.2.1" 3673 + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 3674 + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 3675 + 3676 + is-bigint@^1.0.1: 3677 + version "1.0.4" 3678 + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 3679 + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 3680 + dependencies: 3681 + has-bigints "^1.0.1" 3682 + 3683 + is-boolean-object@^1.1.0: 3684 + version "1.1.2" 3685 + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 3686 + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 3687 + dependencies: 3688 + call-bind "^1.0.2" 3689 + has-tostringtag "^1.0.0" 3690 + 3691 + is-buffer@^1.1.5: 3692 + version "1.1.6" 3693 + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 3694 + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 3695 + 3696 + is-callable@^1.1.4, is-callable@^1.2.4: 3697 + version "1.2.4" 3698 + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 3699 + integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 3700 + 3701 + is-ci@^2.0.0: 3702 + version "2.0.0" 3703 + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 3704 + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 3705 + dependencies: 3706 + ci-info "^2.0.0" 3707 + 3708 + is-core-module@^2.2.0, is-core-module@^2.8.1: 3709 + version "2.9.0" 3710 + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" 3711 + integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== 3712 + dependencies: 3713 + has "^1.0.3" 3714 + 3715 + is-data-descriptor@^0.1.4: 3716 + version "0.1.4" 3717 + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 3718 + integrity sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg== 3719 + dependencies: 3720 + kind-of "^3.0.2" 3721 + 3722 + is-data-descriptor@^1.0.0: 3723 + version "1.0.0" 3724 + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 3725 + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 3726 + dependencies: 3727 + kind-of "^6.0.0" 3728 + 3729 + is-date-object@^1.0.1: 3730 + version "1.0.5" 3731 + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 3732 + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 3733 + dependencies: 3734 + has-tostringtag "^1.0.0" 3735 + 3736 + is-descriptor@^0.1.0: 3737 + version "0.1.6" 3738 + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 3739 + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 3740 + dependencies: 3741 + is-accessor-descriptor "^0.1.6" 3742 + is-data-descriptor "^0.1.4" 3743 + kind-of "^5.0.0" 3744 + 3745 + is-descriptor@^1.0.0, is-descriptor@^1.0.2: 3746 + version "1.0.2" 3747 + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 3748 + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 3749 + dependencies: 3750 + is-accessor-descriptor "^1.0.0" 3751 + is-data-descriptor "^1.0.0" 3752 + kind-of "^6.0.2" 3753 + 3754 + is-directory@^0.3.1: 3755 + version "0.3.1" 3756 + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 3757 + integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== 3758 + 3759 + is-docker@^2.0.0: 3760 + version "2.2.1" 3761 + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 3762 + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 3763 + 3764 + is-extendable@^0.1.0, is-extendable@^0.1.1: 3765 + version "0.1.1" 3766 + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 3767 + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== 3768 + 3769 + is-extendable@^1.0.1: 3770 + version "1.0.1" 3771 + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 3772 + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 3773 + dependencies: 3774 + is-plain-object "^2.0.4" 3775 + 3776 + is-extglob@^2.1.1: 3777 + version "2.1.1" 3778 + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 3779 + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 3780 + 3781 + is-fullwidth-code-point@^2.0.0: 3782 + version "2.0.0" 3783 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 3784 + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== 3785 + 3786 + is-fullwidth-code-point@^3.0.0: 3787 + version "3.0.0" 3788 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 3789 + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 3790 + 3791 + is-generator-fn@^2.0.0: 3792 + version "2.1.0" 3793 + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 3794 + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 3795 + 3796 + is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 3797 + version "4.0.3" 3798 + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 3799 + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 3800 + dependencies: 3801 + is-extglob "^2.1.1" 3802 + 3803 + is-interactive@^1.0.0: 3804 + version "1.0.0" 3805 + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" 3806 + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== 3807 + 3808 + is-negative-zero@^2.0.2: 3809 + version "2.0.2" 3810 + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 3811 + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 3812 + 3813 + is-number-object@^1.0.4: 3814 + version "1.0.7" 3815 + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 3816 + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 3817 + dependencies: 3818 + has-tostringtag "^1.0.0" 3819 + 3820 + is-number@^3.0.0: 3821 + version "3.0.0" 3822 + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 3823 + integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== 3824 + dependencies: 3825 + kind-of "^3.0.2" 3826 + 3827 + is-number@^7.0.0: 3828 + version "7.0.0" 3829 + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 3830 + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 3831 + 3832 + is-plain-object@^2.0.3, is-plain-object@^2.0.4: 3833 + version "2.0.4" 3834 + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 3835 + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 3836 + dependencies: 3837 + isobject "^3.0.1" 3838 + 3839 + is-potential-custom-element-name@^1.0.1: 3840 + version "1.0.1" 3841 + resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 3842 + integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 3843 + 3844 + is-regex@^1.1.4: 3845 + version "1.1.4" 3846 + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 3847 + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 3848 + dependencies: 3849 + call-bind "^1.0.2" 3850 + has-tostringtag "^1.0.0" 3851 + 3852 + is-shared-array-buffer@^1.0.2: 3853 + version "1.0.2" 3854 + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 3855 + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 3856 + dependencies: 3857 + call-bind "^1.0.2" 3858 + 3859 + is-stream@^1.1.0: 3860 + version "1.1.0" 3861 + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 3862 + integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== 3863 + 3864 + is-stream@^2.0.0: 3865 + version "2.0.1" 3866 + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 3867 + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 3868 + 3869 + is-string@^1.0.5, is-string@^1.0.7: 3870 + version "1.0.7" 3871 + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 3872 + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 3873 + dependencies: 3874 + has-tostringtag "^1.0.0" 3875 + 3876 + is-symbol@^1.0.2, is-symbol@^1.0.3: 3877 + version "1.0.4" 3878 + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 3879 + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 3880 + dependencies: 3881 + has-symbols "^1.0.2" 3882 + 3883 + is-typedarray@^1.0.0: 3884 + version "1.0.0" 3885 + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 3886 + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== 3887 + 3888 + is-unicode-supported@^0.1.0: 3889 + version "0.1.0" 3890 + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" 3891 + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== 3892 + 3893 + is-weakref@^1.0.2: 3894 + version "1.0.2" 3895 + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 3896 + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 3897 + dependencies: 3898 + call-bind "^1.0.2" 3899 + 3900 + is-windows@^1.0.2: 3901 + version "1.0.2" 3902 + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 3903 + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 3904 + 3905 + is-wsl@^1.1.0: 3906 + version "1.1.0" 3907 + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 3908 + integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== 3909 + 3910 + is-wsl@^2.2.0: 3911 + version "2.2.0" 3912 + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 3913 + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 3914 + dependencies: 3915 + is-docker "^2.0.0" 3916 + 3917 + isarray@1.0.0, isarray@~1.0.0: 3918 + version "1.0.0" 3919 + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 3920 + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 3921 + 3922 + isexe@^2.0.0: 3923 + version "2.0.0" 3924 + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 3925 + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 3926 + 3927 + isobject@^2.0.0: 3928 + version "2.1.0" 3929 + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 3930 + integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== 3931 + dependencies: 3932 + isarray "1.0.0" 3933 + 3934 + isobject@^3.0.0, isobject@^3.0.1: 3935 + version "3.0.1" 3936 + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 3937 + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== 3938 + 3939 + istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 3940 + version "3.2.0" 3941 + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" 3942 + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 3943 + 3944 + istanbul-lib-instrument@^4.0.3: 3945 + version "4.0.3" 3946 + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 3947 + integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== 3948 + dependencies: 3949 + "@babel/core" "^7.7.5" 3950 + "@istanbuljs/schema" "^0.1.2" 3951 + istanbul-lib-coverage "^3.0.0" 3952 + semver "^6.3.0" 3953 + 3954 + istanbul-lib-instrument@^5.0.4: 3955 + version "5.2.0" 3956 + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f" 3957 + integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== 3958 + dependencies: 3959 + "@babel/core" "^7.12.3" 3960 + "@babel/parser" "^7.14.7" 3961 + "@istanbuljs/schema" "^0.1.2" 3962 + istanbul-lib-coverage "^3.2.0" 3963 + semver "^6.3.0" 3964 + 3965 + istanbul-lib-report@^3.0.0: 3966 + version "3.0.0" 3967 + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 3968 + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 3969 + dependencies: 3970 + istanbul-lib-coverage "^3.0.0" 3971 + make-dir "^3.0.0" 3972 + supports-color "^7.1.0" 3973 + 3974 + istanbul-lib-source-maps@^4.0.0: 3975 + version "4.0.1" 3976 + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 3977 + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 3978 + dependencies: 3979 + debug "^4.1.1" 3980 + istanbul-lib-coverage "^3.0.0" 3981 + source-map "^0.6.1" 3982 + 3983 + istanbul-reports@^3.0.2: 3984 + version "3.1.4" 3985 + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" 3986 + integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== 3987 + dependencies: 3988 + html-escaper "^2.0.0" 3989 + istanbul-lib-report "^3.0.0" 3990 + 3991 + jest-changed-files@^26.6.2: 3992 + version "26.6.2" 3993 + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0" 3994 + integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ== 3995 + dependencies: 3996 + "@jest/types" "^26.6.2" 3997 + execa "^4.0.0" 3998 + throat "^5.0.0" 3999 + 4000 + jest-cli@^26.6.3: 4001 + version "26.6.3" 4002 + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a" 4003 + integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg== 4004 + dependencies: 4005 + "@jest/core" "^26.6.3" 4006 + "@jest/test-result" "^26.6.2" 4007 + "@jest/types" "^26.6.2" 4008 + chalk "^4.0.0" 4009 + exit "^0.1.2" 4010 + graceful-fs "^4.2.4" 4011 + import-local "^3.0.2" 4012 + is-ci "^2.0.0" 4013 + jest-config "^26.6.3" 4014 + jest-util "^26.6.2" 4015 + jest-validate "^26.6.2" 4016 + prompts "^2.0.1" 4017 + yargs "^15.4.1" 4018 + 4019 + jest-config@^26.6.3: 4020 + version "26.6.3" 4021 + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349" 4022 + integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg== 4023 + dependencies: 4024 + "@babel/core" "^7.1.0" 4025 + "@jest/test-sequencer" "^26.6.3" 4026 + "@jest/types" "^26.6.2" 4027 + babel-jest "^26.6.3" 4028 + chalk "^4.0.0" 4029 + deepmerge "^4.2.2" 4030 + glob "^7.1.1" 4031 + graceful-fs "^4.2.4" 4032 + jest-environment-jsdom "^26.6.2" 4033 + jest-environment-node "^26.6.2" 4034 + jest-get-type "^26.3.0" 4035 + jest-jasmine2 "^26.6.3" 4036 + jest-regex-util "^26.0.0" 4037 + jest-resolve "^26.6.2" 4038 + jest-util "^26.6.2" 4039 + jest-validate "^26.6.2" 4040 + micromatch "^4.0.2" 4041 + pretty-format "^26.6.2" 4042 + 4043 + jest-diff@^26.0.0, jest-diff@^26.6.2: 4044 + version "26.6.2" 4045 + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" 4046 + integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== 4047 + dependencies: 4048 + chalk "^4.0.0" 4049 + diff-sequences "^26.6.2" 4050 + jest-get-type "^26.3.0" 4051 + pretty-format "^26.6.2" 4052 + 4053 + jest-docblock@^26.0.0: 4054 + version "26.0.0" 4055 + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" 4056 + integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w== 4057 + dependencies: 4058 + detect-newline "^3.0.0" 4059 + 4060 + jest-each@^26.6.2: 4061 + version "26.6.2" 4062 + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb" 4063 + integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A== 4064 + dependencies: 4065 + "@jest/types" "^26.6.2" 4066 + chalk "^4.0.0" 4067 + jest-get-type "^26.3.0" 4068 + jest-util "^26.6.2" 4069 + pretty-format "^26.6.2" 4070 + 4071 + jest-environment-jsdom@^26.6.2: 4072 + version "26.6.2" 4073 + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e" 4074 + integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q== 4075 + dependencies: 4076 + "@jest/environment" "^26.6.2" 4077 + "@jest/fake-timers" "^26.6.2" 4078 + "@jest/types" "^26.6.2" 4079 + "@types/node" "*" 4080 + jest-mock "^26.6.2" 4081 + jest-util "^26.6.2" 4082 + jsdom "^16.4.0" 4083 + 4084 + jest-environment-node@^26.6.2: 4085 + version "26.6.2" 4086 + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c" 4087 + integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag== 4088 + dependencies: 4089 + "@jest/environment" "^26.6.2" 4090 + "@jest/fake-timers" "^26.6.2" 4091 + "@jest/types" "^26.6.2" 4092 + "@types/node" "*" 4093 + jest-mock "^26.6.2" 4094 + jest-util "^26.6.2" 4095 + 4096 + jest-get-type@^26.3.0: 4097 + version "26.3.0" 4098 + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" 4099 + integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== 4100 + 4101 + jest-haste-map@^26.6.2: 4102 + version "26.6.2" 4103 + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa" 4104 + integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== 4105 + dependencies: 4106 + "@jest/types" "^26.6.2" 4107 + "@types/graceful-fs" "^4.1.2" 4108 + "@types/node" "*" 4109 + anymatch "^3.0.3" 4110 + fb-watchman "^2.0.0" 4111 + graceful-fs "^4.2.4" 4112 + jest-regex-util "^26.0.0" 4113 + jest-serializer "^26.6.2" 4114 + jest-util "^26.6.2" 4115 + jest-worker "^26.6.2" 4116 + micromatch "^4.0.2" 4117 + sane "^4.0.3" 4118 + walker "^1.0.7" 4119 + optionalDependencies: 4120 + fsevents "^2.1.2" 4121 + 4122 + jest-haste-map@^27.3.1: 4123 + version "27.5.1" 4124 + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz#9fd8bd7e7b4fa502d9c6164c5640512b4e811e7f" 4125 + integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== 4126 + dependencies: 4127 + "@jest/types" "^27.5.1" 4128 + "@types/graceful-fs" "^4.1.2" 4129 + "@types/node" "*" 4130 + anymatch "^3.0.3" 4131 + fb-watchman "^2.0.0" 4132 + graceful-fs "^4.2.9" 4133 + jest-regex-util "^27.5.1" 4134 + jest-serializer "^27.5.1" 4135 + jest-util "^27.5.1" 4136 + jest-worker "^27.5.1" 4137 + micromatch "^4.0.4" 4138 + walker "^1.0.7" 4139 + optionalDependencies: 4140 + fsevents "^2.3.2" 4141 + 4142 + jest-jasmine2@^26.6.3: 4143 + version "26.6.3" 4144 + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd" 4145 + integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg== 4146 + dependencies: 4147 + "@babel/traverse" "^7.1.0" 4148 + "@jest/environment" "^26.6.2" 4149 + "@jest/source-map" "^26.6.2" 4150 + "@jest/test-result" "^26.6.2" 4151 + "@jest/types" "^26.6.2" 4152 + "@types/node" "*" 4153 + chalk "^4.0.0" 4154 + co "^4.6.0" 4155 + expect "^26.6.2" 4156 + is-generator-fn "^2.0.0" 4157 + jest-each "^26.6.2" 4158 + jest-matcher-utils "^26.6.2" 4159 + jest-message-util "^26.6.2" 4160 + jest-runtime "^26.6.3" 4161 + jest-snapshot "^26.6.2" 4162 + jest-util "^26.6.2" 4163 + pretty-format "^26.6.2" 4164 + throat "^5.0.0" 4165 + 4166 + jest-leak-detector@^26.6.2: 4167 + version "26.6.2" 4168 + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af" 4169 + integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg== 4170 + dependencies: 4171 + jest-get-type "^26.3.0" 4172 + pretty-format "^26.6.2" 4173 + 4174 + jest-matcher-utils@^26.6.2: 4175 + version "26.6.2" 4176 + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz#8e6fd6e863c8b2d31ac6472eeb237bc595e53e7a" 4177 + integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw== 4178 + dependencies: 4179 + chalk "^4.0.0" 4180 + jest-diff "^26.6.2" 4181 + jest-get-type "^26.3.0" 4182 + pretty-format "^26.6.2" 4183 + 4184 + jest-message-util@^26.6.2: 4185 + version "26.6.2" 4186 + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07" 4187 + integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA== 4188 + dependencies: 4189 + "@babel/code-frame" "^7.0.0" 4190 + "@jest/types" "^26.6.2" 4191 + "@types/stack-utils" "^2.0.0" 4192 + chalk "^4.0.0" 4193 + graceful-fs "^4.2.4" 4194 + micromatch "^4.0.2" 4195 + pretty-format "^26.6.2" 4196 + slash "^3.0.0" 4197 + stack-utils "^2.0.2" 4198 + 4199 + jest-mock@^26.6.2: 4200 + version "26.6.2" 4201 + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302" 4202 + integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew== 4203 + dependencies: 4204 + "@jest/types" "^26.6.2" 4205 + "@types/node" "*" 4206 + 4207 + jest-pnp-resolver@^1.2.2: 4208 + version "1.2.2" 4209 + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 4210 + integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 4211 + 4212 + jest-regex-util@^26.0.0: 4213 + version "26.0.0" 4214 + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" 4215 + integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== 4216 + 4217 + jest-regex-util@^27.5.1: 4218 + version "27.5.1" 4219 + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95" 4220 + integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== 4221 + 4222 + jest-resolve-dependencies@^26.6.3: 4223 + version "26.6.3" 4224 + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6" 4225 + integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg== 4226 + dependencies: 4227 + "@jest/types" "^26.6.2" 4228 + jest-regex-util "^26.0.0" 4229 + jest-snapshot "^26.6.2" 4230 + 4231 + jest-resolve@^26.6.2: 4232 + version "26.6.2" 4233 + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.2.tgz#a3ab1517217f469b504f1b56603c5bb541fbb507" 4234 + integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ== 4235 + dependencies: 4236 + "@jest/types" "^26.6.2" 4237 + chalk "^4.0.0" 4238 + graceful-fs "^4.2.4" 4239 + jest-pnp-resolver "^1.2.2" 4240 + jest-util "^26.6.2" 4241 + read-pkg-up "^7.0.1" 4242 + resolve "^1.18.1" 4243 + slash "^3.0.0" 4244 + 4245 + jest-runner@^26.6.3: 4246 + version "26.6.3" 4247 + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159" 4248 + integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ== 4249 + dependencies: 4250 + "@jest/console" "^26.6.2" 4251 + "@jest/environment" "^26.6.2" 4252 + "@jest/test-result" "^26.6.2" 4253 + "@jest/types" "^26.6.2" 4254 + "@types/node" "*" 4255 + chalk "^4.0.0" 4256 + emittery "^0.7.1" 4257 + exit "^0.1.2" 4258 + graceful-fs "^4.2.4" 4259 + jest-config "^26.6.3" 4260 + jest-docblock "^26.0.0" 4261 + jest-haste-map "^26.6.2" 4262 + jest-leak-detector "^26.6.2" 4263 + jest-message-util "^26.6.2" 4264 + jest-resolve "^26.6.2" 4265 + jest-runtime "^26.6.3" 4266 + jest-util "^26.6.2" 4267 + jest-worker "^26.6.2" 4268 + source-map-support "^0.5.6" 4269 + throat "^5.0.0" 4270 + 4271 + jest-runtime@^26.6.3: 4272 + version "26.6.3" 4273 + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b" 4274 + integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw== 4275 + dependencies: 4276 + "@jest/console" "^26.6.2" 4277 + "@jest/environment" "^26.6.2" 4278 + "@jest/fake-timers" "^26.6.2" 4279 + "@jest/globals" "^26.6.2" 4280 + "@jest/source-map" "^26.6.2" 4281 + "@jest/test-result" "^26.6.2" 4282 + "@jest/transform" "^26.6.2" 4283 + "@jest/types" "^26.6.2" 4284 + "@types/yargs" "^15.0.0" 4285 + chalk "^4.0.0" 4286 + cjs-module-lexer "^0.6.0" 4287 + collect-v8-coverage "^1.0.0" 4288 + exit "^0.1.2" 4289 + glob "^7.1.3" 4290 + graceful-fs "^4.2.4" 4291 + jest-config "^26.6.3" 4292 + jest-haste-map "^26.6.2" 4293 + jest-message-util "^26.6.2" 4294 + jest-mock "^26.6.2" 4295 + jest-regex-util "^26.0.0" 4296 + jest-resolve "^26.6.2" 4297 + jest-snapshot "^26.6.2" 4298 + jest-util "^26.6.2" 4299 + jest-validate "^26.6.2" 4300 + slash "^3.0.0" 4301 + strip-bom "^4.0.0" 4302 + yargs "^15.4.1" 4303 + 4304 + jest-serializer@^26.6.2: 4305 + version "26.6.2" 4306 + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1" 4307 + integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== 4308 + dependencies: 4309 + "@types/node" "*" 4310 + graceful-fs "^4.2.4" 4311 + 4312 + jest-serializer@^27.5.1: 4313 + version "27.5.1" 4314 + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.5.1.tgz#81438410a30ea66fd57ff730835123dea1fb1f64" 4315 + integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== 4316 + dependencies: 4317 + "@types/node" "*" 4318 + graceful-fs "^4.2.9" 4319 + 4320 + jest-snapshot@^26.6.2: 4321 + version "26.6.2" 4322 + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84" 4323 + integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og== 4324 + dependencies: 4325 + "@babel/types" "^7.0.0" 4326 + "@jest/types" "^26.6.2" 4327 + "@types/babel__traverse" "^7.0.4" 4328 + "@types/prettier" "^2.0.0" 4329 + chalk "^4.0.0" 4330 + expect "^26.6.2" 4331 + graceful-fs "^4.2.4" 4332 + jest-diff "^26.6.2" 4333 + jest-get-type "^26.3.0" 4334 + jest-haste-map "^26.6.2" 4335 + jest-matcher-utils "^26.6.2" 4336 + jest-message-util "^26.6.2" 4337 + jest-resolve "^26.6.2" 4338 + natural-compare "^1.4.0" 4339 + pretty-format "^26.6.2" 4340 + semver "^7.3.2" 4341 + 4342 + jest-util@^26.6.2: 4343 + version "26.6.2" 4344 + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1" 4345 + integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q== 4346 + dependencies: 4347 + "@jest/types" "^26.6.2" 4348 + "@types/node" "*" 4349 + chalk "^4.0.0" 4350 + graceful-fs "^4.2.4" 4351 + is-ci "^2.0.0" 4352 + micromatch "^4.0.2" 4353 + 4354 + jest-util@^27.5.1: 4355 + version "27.5.1" 4356 + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9" 4357 + integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== 4358 + dependencies: 4359 + "@jest/types" "^27.5.1" 4360 + "@types/node" "*" 4361 + chalk "^4.0.0" 4362 + ci-info "^3.2.0" 4363 + graceful-fs "^4.2.9" 4364 + picomatch "^2.2.3" 4365 + 4366 + jest-validate@^26.5.2, jest-validate@^26.6.2: 4367 + version "26.6.2" 4368 + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec" 4369 + integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ== 4370 + dependencies: 4371 + "@jest/types" "^26.6.2" 4372 + camelcase "^6.0.0" 4373 + chalk "^4.0.0" 4374 + jest-get-type "^26.3.0" 4375 + leven "^3.1.0" 4376 + pretty-format "^26.6.2" 4377 + 4378 + jest-watcher@^26.6.2: 4379 + version "26.6.2" 4380 + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975" 4381 + integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ== 4382 + dependencies: 4383 + "@jest/test-result" "^26.6.2" 4384 + "@jest/types" "^26.6.2" 4385 + "@types/node" "*" 4386 + ansi-escapes "^4.2.1" 4387 + chalk "^4.0.0" 4388 + jest-util "^26.6.2" 4389 + string-length "^4.0.1" 4390 + 4391 + jest-worker@^26.0.0, jest-worker@^26.6.2: 4392 + version "26.6.2" 4393 + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 4394 + integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 4395 + dependencies: 4396 + "@types/node" "*" 4397 + merge-stream "^2.0.0" 4398 + supports-color "^7.0.0" 4399 + 4400 + jest-worker@^27.5.1: 4401 + version "27.5.1" 4402 + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" 4403 + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== 4404 + dependencies: 4405 + "@types/node" "*" 4406 + merge-stream "^2.0.0" 4407 + supports-color "^8.0.0" 4408 + 4409 + jest@^26.6.3: 4410 + version "26.6.3" 4411 + resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef" 4412 + integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q== 4413 + dependencies: 4414 + "@jest/core" "^26.6.3" 4415 + import-local "^3.0.2" 4416 + jest-cli "^26.6.3" 4417 + 4418 + jetifier@^1.6.2: 4419 + version "1.6.8" 4420 + resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.8.tgz#e88068697875cbda98c32472902c4d3756247798" 4421 + integrity sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw== 4422 + 4423 + joi@^17.2.1: 4424 + version "17.6.0" 4425 + resolved "https://registry.yarnpkg.com/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" 4426 + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== 4427 + dependencies: 4428 + "@hapi/hoek" "^9.0.0" 4429 + "@hapi/topo" "^5.0.0" 4430 + "@sideway/address" "^4.1.3" 4431 + "@sideway/formula" "^3.0.0" 4432 + "@sideway/pinpoint" "^2.0.0" 4433 + 4434 + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 4435 + version "4.0.0" 4436 + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 4437 + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 4438 + 4439 + js-yaml@^3.13.1: 4440 + version "3.14.1" 4441 + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 4442 + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 4443 + dependencies: 4444 + argparse "^1.0.7" 4445 + esprima "^4.0.0" 4446 + 4447 + jsc-android@^250230.2.1: 4448 + version "250230.2.1" 4449 + resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250230.2.1.tgz#3790313a970586a03ab0ad47defbc84df54f1b83" 4450 + integrity sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q== 4451 + 4452 + jscodeshift@^0.13.1: 4453 + version "0.13.1" 4454 + resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.13.1.tgz#69bfe51e54c831296380585c6d9e733512aecdef" 4455 + integrity sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ== 4456 + dependencies: 4457 + "@babel/core" "^7.13.16" 4458 + "@babel/parser" "^7.13.16" 4459 + "@babel/plugin-proposal-class-properties" "^7.13.0" 4460 + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" 4461 + "@babel/plugin-proposal-optional-chaining" "^7.13.12" 4462 + "@babel/plugin-transform-modules-commonjs" "^7.13.8" 4463 + "@babel/preset-flow" "^7.13.13" 4464 + "@babel/preset-typescript" "^7.13.0" 4465 + "@babel/register" "^7.13.16" 4466 + babel-core "^7.0.0-bridge.0" 4467 + chalk "^4.1.2" 4468 + flow-parser "0.*" 4469 + graceful-fs "^4.2.4" 4470 + micromatch "^3.1.10" 4471 + neo-async "^2.5.0" 4472 + node-dir "^0.1.17" 4473 + recast "^0.20.4" 4474 + temp "^0.8.4" 4475 + write-file-atomic "^2.3.0" 4476 + 4477 + jsdom@^16.4.0: 4478 + version "16.7.0" 4479 + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 4480 + integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 4481 + dependencies: 4482 + abab "^2.0.5" 4483 + acorn "^8.2.4" 4484 + acorn-globals "^6.0.0" 4485 + cssom "^0.4.4" 4486 + cssstyle "^2.3.0" 4487 + data-urls "^2.0.0" 4488 + decimal.js "^10.2.1" 4489 + domexception "^2.0.1" 4490 + escodegen "^2.0.0" 4491 + form-data "^3.0.0" 4492 + html-encoding-sniffer "^2.0.1" 4493 + http-proxy-agent "^4.0.1" 4494 + https-proxy-agent "^5.0.0" 4495 + is-potential-custom-element-name "^1.0.1" 4496 + nwsapi "^2.2.0" 4497 + parse5 "6.0.1" 4498 + saxes "^5.0.1" 4499 + symbol-tree "^3.2.4" 4500 + tough-cookie "^4.0.0" 4501 + w3c-hr-time "^1.0.2" 4502 + w3c-xmlserializer "^2.0.0" 4503 + webidl-conversions "^6.1.0" 4504 + whatwg-encoding "^1.0.5" 4505 + whatwg-mimetype "^2.3.0" 4506 + whatwg-url "^8.5.0" 4507 + ws "^7.4.6" 4508 + xml-name-validator "^3.0.0" 4509 + 4510 + jsesc@^2.5.1: 4511 + version "2.5.2" 4512 + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 4513 + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 4514 + 4515 + jsesc@~0.5.0: 4516 + version "0.5.0" 4517 + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 4518 + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== 4519 + 4520 + json-parse-better-errors@^1.0.1: 4521 + version "1.0.2" 4522 + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 4523 + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 4524 + 4525 + json-parse-even-better-errors@^2.3.0: 4526 + version "2.3.1" 4527 + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 4528 + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 4529 + 4530 + json-schema-traverse@^0.4.1: 4531 + version "0.4.1" 4532 + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 4533 + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 4534 + 4535 + json-schema-traverse@^1.0.0: 4536 + version "1.0.0" 4537 + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 4538 + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 4539 + 4540 + json-stable-stringify-without-jsonify@^1.0.1: 4541 + version "1.0.1" 4542 + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 4543 + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 4544 + 4545 + json5@^2.2.1: 4546 + version "2.2.1" 4547 + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" 4548 + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== 4549 + 4550 + jsonfile@^2.1.0: 4551 + version "2.4.0" 4552 + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 4553 + integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== 4554 + optionalDependencies: 4555 + graceful-fs "^4.1.6" 4556 + 4557 + jsonfile@^4.0.0: 4558 + version "4.0.0" 4559 + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 4560 + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== 4561 + optionalDependencies: 4562 + graceful-fs "^4.1.6" 4563 + 4564 + jsonify@~0.0.0: 4565 + version "0.0.0" 4566 + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 4567 + integrity sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA== 4568 + 4569 + "jsx-ast-utils@^2.4.1 || ^3.0.0": 4570 + version "3.3.0" 4571 + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz#e624f259143b9062c92b6413ff92a164c80d3ccb" 4572 + integrity sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q== 4573 + dependencies: 4574 + array-includes "^3.1.4" 4575 + object.assign "^4.1.2" 4576 + 4577 + kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 4578 + version "3.2.2" 4579 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 4580 + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== 4581 + dependencies: 4582 + is-buffer "^1.1.5" 4583 + 4584 + kind-of@^4.0.0: 4585 + version "4.0.0" 4586 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 4587 + integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== 4588 + dependencies: 4589 + is-buffer "^1.1.5" 4590 + 4591 + kind-of@^5.0.0: 4592 + version "5.1.0" 4593 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 4594 + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 4595 + 4596 + kind-of@^6.0.0, kind-of@^6.0.2: 4597 + version "6.0.3" 4598 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 4599 + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 4600 + 4601 + klaw@^1.0.0: 4602 + version "1.3.1" 4603 + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 4604 + integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== 4605 + optionalDependencies: 4606 + graceful-fs "^4.1.9" 4607 + 4608 + kleur@^3.0.3: 4609 + version "3.0.3" 4610 + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 4611 + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 4612 + 4613 + leven@^3.1.0: 4614 + version "3.1.0" 4615 + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 4616 + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 4617 + 4618 + levn@^0.4.1: 4619 + version "0.4.1" 4620 + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 4621 + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 4622 + dependencies: 4623 + prelude-ls "^1.2.1" 4624 + type-check "~0.4.0" 4625 + 4626 + levn@~0.3.0: 4627 + version "0.3.0" 4628 + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 4629 + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== 4630 + dependencies: 4631 + prelude-ls "~1.1.2" 4632 + type-check "~0.3.2" 4633 + 4634 + lines-and-columns@^1.1.6: 4635 + version "1.2.4" 4636 + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 4637 + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 4638 + 4639 + locate-path@^3.0.0: 4640 + version "3.0.0" 4641 + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 4642 + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 4643 + dependencies: 4644 + p-locate "^3.0.0" 4645 + path-exists "^3.0.0" 4646 + 4647 + locate-path@^5.0.0: 4648 + version "5.0.0" 4649 + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 4650 + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 4651 + dependencies: 4652 + p-locate "^4.1.0" 4653 + 4654 + lodash.debounce@^4.0.8: 4655 + version "4.0.8" 4656 + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 4657 + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== 4658 + 4659 + lodash.merge@^4.6.2: 4660 + version "4.6.2" 4661 + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 4662 + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 4663 + 4664 + lodash.throttle@^4.1.1: 4665 + version "4.1.1" 4666 + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" 4667 + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== 4668 + 4669 + lodash.truncate@^4.4.2: 4670 + version "4.4.2" 4671 + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" 4672 + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== 4673 + 4674 + lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.7.0: 4675 + version "4.17.21" 4676 + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 4677 + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 4678 + 4679 + log-symbols@^2.2.0: 4680 + version "2.2.0" 4681 + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 4682 + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 4683 + dependencies: 4684 + chalk "^2.0.1" 4685 + 4686 + log-symbols@^4.1.0: 4687 + version "4.1.0" 4688 + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" 4689 + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== 4690 + dependencies: 4691 + chalk "^4.1.0" 4692 + is-unicode-supported "^0.1.0" 4693 + 4694 + logkitty@^0.7.1: 4695 + version "0.7.1" 4696 + resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" 4697 + integrity sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ== 4698 + dependencies: 4699 + ansi-fragments "^0.2.1" 4700 + dayjs "^1.8.15" 4701 + yargs "^15.1.0" 4702 + 4703 + loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: 4704 + version "1.4.0" 4705 + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 4706 + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 4707 + dependencies: 4708 + js-tokens "^3.0.0 || ^4.0.0" 4709 + 4710 + lru-cache@^6.0.0: 4711 + version "6.0.0" 4712 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 4713 + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 4714 + dependencies: 4715 + yallist "^4.0.0" 4716 + 4717 + make-dir@^2.0.0, make-dir@^2.1.0: 4718 + version "2.1.0" 4719 + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 4720 + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== 4721 + dependencies: 4722 + pify "^4.0.1" 4723 + semver "^5.6.0" 4724 + 4725 + make-dir@^3.0.0: 4726 + version "3.1.0" 4727 + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 4728 + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 4729 + dependencies: 4730 + semver "^6.0.0" 4731 + 4732 + makeerror@1.0.12: 4733 + version "1.0.12" 4734 + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" 4735 + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 4736 + dependencies: 4737 + tmpl "1.0.5" 4738 + 4739 + map-cache@^0.2.2: 4740 + version "0.2.2" 4741 + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 4742 + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== 4743 + 4744 + map-visit@^1.0.0: 4745 + version "1.0.0" 4746 + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 4747 + integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== 4748 + dependencies: 4749 + object-visit "^1.0.0" 4750 + 4751 + merge-stream@^2.0.0: 4752 + version "2.0.0" 4753 + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 4754 + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 4755 + 4756 + merge2@^1.3.0, merge2@^1.4.1: 4757 + version "1.4.1" 4758 + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 4759 + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 4760 + 4761 + metro-babel-transformer@0.67.0: 4762 + version "0.67.0" 4763 + resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.67.0.tgz#42fe82af9953e5c62d9a8d7d544eb7be9020dd18" 4764 + integrity sha512-SBqc4nq/dgsPNFm+mpWcQQzJaXnh0nrfz2pSnZC4i6zMtIakrTWb8SQ78jOU1FZVEZ3nu9xCYVHS9Tbr/LoEuw== 4765 + dependencies: 4766 + "@babel/core" "^7.14.0" 4767 + hermes-parser "0.5.0" 4768 + metro-source-map "0.67.0" 4769 + nullthrows "^1.1.1" 4770 + 4771 + metro-cache-key@0.67.0: 4772 + version "0.67.0" 4773 + resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.67.0.tgz#4df6a73cced199e1bddd0f3454bb931a27141eeb" 4774 + integrity sha512-FNJe5Rcb2uzY6G6tsqCf0RV4t2rCeX6vSHBxmP7k+4aI4NqX4evtPI0K82r221nBzm5DqNWCURZ0RYUT6jZMGA== 4775 + 4776 + metro-cache@0.67.0: 4777 + version "0.67.0" 4778 + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.67.0.tgz#928db5742542719677468c4d22ea29b71c7ec8fc" 4779 + integrity sha512-IY5dXiR76L75b2ue/mv+9vW8g5hdQJU6YEe81lj6gTSoUrhcONT0rzY+Gh5QOS2Kk6z9utZQMvd9PRKL9/635A== 4780 + dependencies: 4781 + metro-core "0.67.0" 4782 + mkdirp "^0.5.1" 4783 + rimraf "^2.5.4" 4784 + 4785 + metro-config@0.67.0, metro-config@^0.67.0: 4786 + version "0.67.0" 4787 + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.67.0.tgz#5507d3b295bd10c87bd13dbe5a3033a357418786" 4788 + integrity sha512-ThAwUmzZwTbKyyrIn2bKIcJDPDBS0LKAbqJZQioflvBGfcgA21h3fdL3IxRmvCEl6OnkEWI0Tn1Z9w2GLAjf2g== 4789 + dependencies: 4790 + cosmiconfig "^5.0.5" 4791 + jest-validate "^26.5.2" 4792 + metro "0.67.0" 4793 + metro-cache "0.67.0" 4794 + metro-core "0.67.0" 4795 + metro-runtime "0.67.0" 4796 + 4797 + metro-core@0.67.0, metro-core@^0.67.0: 4798 + version "0.67.0" 4799 + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.67.0.tgz#75066e11b4df220992abf9cd6200279dd87876c8" 4800 + integrity sha512-TOa/ShE1bUq83fGNfV6rFwyfZ288M8ydmWN3g9C2OW8emOHLhJslYD/SIU4DhDkP/99yaJluIALdZ2g0+pCrvQ== 4801 + dependencies: 4802 + jest-haste-map "^27.3.1" 4803 + lodash.throttle "^4.1.1" 4804 + metro-resolver "0.67.0" 4805 + 4806 + metro-hermes-compiler@0.67.0: 4807 + version "0.67.0" 4808 + resolved "https://registry.yarnpkg.com/metro-hermes-compiler/-/metro-hermes-compiler-0.67.0.tgz#9c1340f1882fbf535145868d0d28211ca15b0477" 4809 + integrity sha512-X5Pr1jC8/kO6d1EBDJ6yhtuc5euHX89UDNv8qdPJHAET03xfFnlojRPwOw6il2udAH20WLBv+F5M9VY+58zspQ== 4810 + 4811 + metro-inspector-proxy@0.67.0: 4812 + version "0.67.0" 4813 + resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.67.0.tgz#22b360a837b07e9e2bc87a71af6154dd8fcc02a5" 4814 + integrity sha512-5Ubjk94qpNaU3OT2IZa4/dec09bauic1hzWms4czorBzDenkp4kYXG9/aWTmgQLtCk92H3Q8jKl1PQRxUSkrOQ== 4815 + dependencies: 4816 + connect "^3.6.5" 4817 + debug "^2.2.0" 4818 + ws "^7.5.1" 4819 + yargs "^15.3.1" 4820 + 4821 + metro-minify-uglify@0.67.0: 4822 + version "0.67.0" 4823 + resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.67.0.tgz#28a77dbd78d9e558dba8c2f31c2b9c6f939df966" 4824 + integrity sha512-4CmM5b3MTAmQ/yFEfsHOhD2SuBObB2YF6PKzXZc4agUsQVVtkrrNElaiWa8w26vrTzA9emwcyurxMf4Nl3lYPQ== 4825 + dependencies: 4826 + uglify-es "^3.1.9" 4827 + 4828 + metro-react-native-babel-preset@0.67.0, metro-react-native-babel-preset@^0.67.0: 4829 + version "0.67.0" 4830 + resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.67.0.tgz#53aec093f53a09b56236a9bb534d76658efcbec7" 4831 + integrity sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig== 4832 + dependencies: 4833 + "@babel/core" "^7.14.0" 4834 + "@babel/plugin-proposal-class-properties" "^7.0.0" 4835 + "@babel/plugin-proposal-export-default-from" "^7.0.0" 4836 + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" 4837 + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" 4838 + "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" 4839 + "@babel/plugin-proposal-optional-chaining" "^7.0.0" 4840 + "@babel/plugin-syntax-dynamic-import" "^7.0.0" 4841 + "@babel/plugin-syntax-export-default-from" "^7.0.0" 4842 + "@babel/plugin-syntax-flow" "^7.2.0" 4843 + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0" 4844 + "@babel/plugin-syntax-optional-chaining" "^7.0.0" 4845 + "@babel/plugin-transform-arrow-functions" "^7.0.0" 4846 + "@babel/plugin-transform-async-to-generator" "^7.0.0" 4847 + "@babel/plugin-transform-block-scoping" "^7.0.0" 4848 + "@babel/plugin-transform-classes" "^7.0.0" 4849 + "@babel/plugin-transform-computed-properties" "^7.0.0" 4850 + "@babel/plugin-transform-destructuring" "^7.0.0" 4851 + "@babel/plugin-transform-exponentiation-operator" "^7.0.0" 4852 + "@babel/plugin-transform-flow-strip-types" "^7.0.0" 4853 + "@babel/plugin-transform-for-of" "^7.0.0" 4854 + "@babel/plugin-transform-function-name" "^7.0.0" 4855 + "@babel/plugin-transform-literals" "^7.0.0" 4856 + "@babel/plugin-transform-modules-commonjs" "^7.0.0" 4857 + "@babel/plugin-transform-object-assign" "^7.0.0" 4858 + "@babel/plugin-transform-parameters" "^7.0.0" 4859 + "@babel/plugin-transform-react-display-name" "^7.0.0" 4860 + "@babel/plugin-transform-react-jsx" "^7.0.0" 4861 + "@babel/plugin-transform-react-jsx-self" "^7.0.0" 4862 + "@babel/plugin-transform-react-jsx-source" "^7.0.0" 4863 + "@babel/plugin-transform-regenerator" "^7.0.0" 4864 + "@babel/plugin-transform-runtime" "^7.0.0" 4865 + "@babel/plugin-transform-shorthand-properties" "^7.0.0" 4866 + "@babel/plugin-transform-spread" "^7.0.0" 4867 + "@babel/plugin-transform-sticky-regex" "^7.0.0" 4868 + "@babel/plugin-transform-template-literals" "^7.0.0" 4869 + "@babel/plugin-transform-typescript" "^7.5.0" 4870 + "@babel/plugin-transform-unicode-regex" "^7.0.0" 4871 + "@babel/template" "^7.0.0" 4872 + react-refresh "^0.4.0" 4873 + 4874 + metro-react-native-babel-transformer@0.67.0, metro-react-native-babel-transformer@^0.67.0: 4875 + version "0.67.0" 4876 + resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.67.0.tgz#756d32eb3c05cab3d72fcb1700f8fd09322bb07f" 4877 + integrity sha512-P0JT09n7T01epUtgL9mH6BPat3xn4JjBakl4lWHdL61cvEGcrxuIom1eoFFKkgU/K5AVLU4aCAttHS7nSFCcEQ== 4878 + dependencies: 4879 + "@babel/core" "^7.14.0" 4880 + babel-preset-fbjs "^3.4.0" 4881 + hermes-parser "0.5.0" 4882 + metro-babel-transformer "0.67.0" 4883 + metro-react-native-babel-preset "0.67.0" 4884 + metro-source-map "0.67.0" 4885 + nullthrows "^1.1.1" 4886 + 4887 + metro-resolver@0.67.0, metro-resolver@^0.67.0: 4888 + version "0.67.0" 4889 + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.67.0.tgz#8143c716f77e468d1d42eca805243706eb349959" 4890 + integrity sha512-d2KS/zAyOA/z/q4/ff41rAp+1txF4H6qItwpsls/RHStV2j6PqgRHUzq/3ga+VIeoUJntYJ8nGW3+3qSrhFlig== 4891 + dependencies: 4892 + absolute-path "^0.0.0" 4893 + 4894 + metro-runtime@0.67.0, metro-runtime@^0.67.0: 4895 + version "0.67.0" 4896 + resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.67.0.tgz#a8888dfd06bcebbac3c99dcac7cd622510dd8ee0" 4897 + integrity sha512-IFtSL0JUt1xK3t9IoLflTDft82bjieSzdIJWLzrRzBMlesz8ox5bVmnpQbVQEwfYUpEOxbM3VOZauVbdCmXA7g== 4898 + 4899 + metro-source-map@0.67.0: 4900 + version "0.67.0" 4901 + resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.67.0.tgz#e28db7253b9ca688e60d5710ebdccba60b45b2df" 4902 + integrity sha512-yxypInsRo3SfS00IgTuL6a2W2tfwLY//vA2E+GeqGBF5zTbJZAhwNGIEl8S87XXZhwzJcxf5/8LjJC1YDzabww== 4903 + dependencies: 4904 + "@babel/traverse" "^7.14.0" 4905 + "@babel/types" "^7.0.0" 4906 + invariant "^2.2.4" 4907 + metro-symbolicate "0.67.0" 4908 + nullthrows "^1.1.1" 4909 + ob1 "0.67.0" 4910 + source-map "^0.5.6" 4911 + vlq "^1.0.0" 4912 + 4913 + metro-symbolicate@0.67.0: 4914 + version "0.67.0" 4915 + resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.67.0.tgz#16729d05663d28176895244b3d932a898fca2b45" 4916 + integrity sha512-ZqVVcfa0xSz40eFzA5P8pCF3V6Tna9RU1prFzAJTa3j9dCGqwh0HTXC8AIkMtgX7hNdZrCJI1YipzUBlwkT0/A== 4917 + dependencies: 4918 + invariant "^2.2.4" 4919 + metro-source-map "0.67.0" 4920 + nullthrows "^1.1.1" 4921 + source-map "^0.5.6" 4922 + through2 "^2.0.1" 4923 + vlq "^1.0.0" 4924 + 4925 + metro-transform-plugins@0.67.0: 4926 + version "0.67.0" 4927 + resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.67.0.tgz#6122aa4e5e5f9a767cebcc5af6fd1695666683ce" 4928 + integrity sha512-DQFoSDIJdTMPDTUlKaCNJjEXiHGwFNneAF9wDSJ3luO5gigM7t7MuSaPzF4hpjmfmcfPnRhP6AEn9jcza2Sh8Q== 4929 + dependencies: 4930 + "@babel/core" "^7.14.0" 4931 + "@babel/generator" "^7.14.0" 4932 + "@babel/template" "^7.0.0" 4933 + "@babel/traverse" "^7.14.0" 4934 + nullthrows "^1.1.1" 4935 + 4936 + metro-transform-worker@0.67.0: 4937 + version "0.67.0" 4938 + resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.67.0.tgz#5689553c25b0657aadefdf4ea2cd8dd06e18882a" 4939 + integrity sha512-29n+JdTb80ROiv/wDiBVlY/xRAF/nrjhp/Udv/XJl1DZb+x7JEiPxpbpthPhwwl+AYxVrostGB0W06WJ61hfiw== 4940 + dependencies: 4941 + "@babel/core" "^7.14.0" 4942 + "@babel/generator" "^7.14.0" 4943 + "@babel/parser" "^7.14.0" 4944 + "@babel/types" "^7.0.0" 4945 + babel-preset-fbjs "^3.4.0" 4946 + metro "0.67.0" 4947 + metro-babel-transformer "0.67.0" 4948 + metro-cache "0.67.0" 4949 + metro-cache-key "0.67.0" 4950 + metro-hermes-compiler "0.67.0" 4951 + metro-source-map "0.67.0" 4952 + metro-transform-plugins "0.67.0" 4953 + nullthrows "^1.1.1" 4954 + 4955 + metro@0.67.0, metro@^0.67.0: 4956 + version "0.67.0" 4957 + resolved "https://registry.yarnpkg.com/metro/-/metro-0.67.0.tgz#8007a041d22de1cdb05184431c67eb7989eef6e0" 4958 + integrity sha512-DwuBGAFcAivoac/swz8Lp7Y5Bcge1tzT7T6K0nf1ubqJP8YzBUtyR4pkjEYVUzVu/NZf7O54kHSPVu1ibYzOBQ== 4959 + dependencies: 4960 + "@babel/code-frame" "^7.0.0" 4961 + "@babel/core" "^7.14.0" 4962 + "@babel/generator" "^7.14.0" 4963 + "@babel/parser" "^7.14.0" 4964 + "@babel/template" "^7.0.0" 4965 + "@babel/traverse" "^7.14.0" 4966 + "@babel/types" "^7.0.0" 4967 + absolute-path "^0.0.0" 4968 + accepts "^1.3.7" 4969 + async "^2.4.0" 4970 + chalk "^4.0.0" 4971 + ci-info "^2.0.0" 4972 + connect "^3.6.5" 4973 + debug "^2.2.0" 4974 + denodeify "^1.2.1" 4975 + error-stack-parser "^2.0.6" 4976 + fs-extra "^1.0.0" 4977 + graceful-fs "^4.1.3" 4978 + hermes-parser "0.5.0" 4979 + image-size "^0.6.0" 4980 + invariant "^2.2.4" 4981 + jest-haste-map "^27.3.1" 4982 + jest-worker "^26.0.0" 4983 + lodash.throttle "^4.1.1" 4984 + metro-babel-transformer "0.67.0" 4985 + metro-cache "0.67.0" 4986 + metro-cache-key "0.67.0" 4987 + metro-config "0.67.0" 4988 + metro-core "0.67.0" 4989 + metro-hermes-compiler "0.67.0" 4990 + metro-inspector-proxy "0.67.0" 4991 + metro-minify-uglify "0.67.0" 4992 + metro-react-native-babel-preset "0.67.0" 4993 + metro-resolver "0.67.0" 4994 + metro-runtime "0.67.0" 4995 + metro-source-map "0.67.0" 4996 + metro-symbolicate "0.67.0" 4997 + metro-transform-plugins "0.67.0" 4998 + metro-transform-worker "0.67.0" 4999 + mime-types "^2.1.27" 5000 + mkdirp "^0.5.1" 5001 + node-fetch "^2.2.0" 5002 + nullthrows "^1.1.1" 5003 + rimraf "^2.5.4" 5004 + serialize-error "^2.1.0" 5005 + source-map "^0.5.6" 5006 + strip-ansi "^6.0.0" 5007 + temp "0.8.3" 5008 + throat "^5.0.0" 5009 + ws "^7.5.1" 5010 + yargs "^15.3.1" 5011 + 5012 + micromatch@^3.1.10, micromatch@^3.1.4: 5013 + version "3.1.10" 5014 + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 5015 + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 5016 + dependencies: 5017 + arr-diff "^4.0.0" 5018 + array-unique "^0.3.2" 5019 + braces "^2.3.1" 5020 + define-property "^2.0.2" 5021 + extend-shallow "^3.0.2" 5022 + extglob "^2.0.4" 5023 + fragment-cache "^0.2.1" 5024 + kind-of "^6.0.2" 5025 + nanomatch "^1.2.9" 5026 + object.pick "^1.3.0" 5027 + regex-not "^1.0.0" 5028 + snapdragon "^0.8.1" 5029 + to-regex "^3.0.2" 5030 + 5031 + micromatch@^4.0.2, micromatch@^4.0.4: 5032 + version "4.0.5" 5033 + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 5034 + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 5035 + dependencies: 5036 + braces "^3.0.2" 5037 + picomatch "^2.3.1" 5038 + 5039 + mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": 5040 + version "1.52.0" 5041 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 5042 + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 5043 + 5044 + mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.34: 5045 + version "2.1.35" 5046 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 5047 + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 5048 + dependencies: 5049 + mime-db "1.52.0" 5050 + 5051 + mime@1.6.0: 5052 + version "1.6.0" 5053 + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 5054 + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 5055 + 5056 + mime@^2.4.1: 5057 + version "2.6.0" 5058 + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" 5059 + integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== 5060 + 5061 + mimic-fn@^1.0.0: 5062 + version "1.2.0" 5063 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 5064 + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 5065 + 5066 + mimic-fn@^2.1.0: 5067 + version "2.1.0" 5068 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 5069 + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 5070 + 5071 + minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 5072 + version "3.1.2" 5073 + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 5074 + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 5075 + dependencies: 5076 + brace-expansion "^1.1.7" 5077 + 5078 + minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.6: 5079 + version "1.2.6" 5080 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 5081 + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 5082 + 5083 + mixin-deep@^1.2.0: 5084 + version "1.3.2" 5085 + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 5086 + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 5087 + dependencies: 5088 + for-in "^1.0.2" 5089 + is-extendable "^1.0.1" 5090 + 5091 + mkdirp@^0.5.1: 5092 + version "0.5.6" 5093 + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" 5094 + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== 5095 + dependencies: 5096 + minimist "^1.2.6" 5097 + 5098 + ms@2.0.0: 5099 + version "2.0.0" 5100 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 5101 + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 5102 + 5103 + ms@2.1.2: 5104 + version "2.1.2" 5105 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 5106 + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 5107 + 5108 + ms@2.1.3: 5109 + version "2.1.3" 5110 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 5111 + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 5112 + 5113 + nanomatch@^1.2.9: 5114 + version "1.2.13" 5115 + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 5116 + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 5117 + dependencies: 5118 + arr-diff "^4.0.0" 5119 + array-unique "^0.3.2" 5120 + define-property "^2.0.2" 5121 + extend-shallow "^3.0.2" 5122 + fragment-cache "^0.2.1" 5123 + is-windows "^1.0.2" 5124 + kind-of "^6.0.2" 5125 + object.pick "^1.3.0" 5126 + regex-not "^1.0.0" 5127 + snapdragon "^0.8.1" 5128 + to-regex "^3.0.1" 5129 + 5130 + natural-compare@^1.4.0: 5131 + version "1.4.0" 5132 + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 5133 + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 5134 + 5135 + negotiator@0.6.3: 5136 + version "0.6.3" 5137 + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" 5138 + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== 5139 + 5140 + neo-async@^2.5.0: 5141 + version "2.6.2" 5142 + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 5143 + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 5144 + 5145 + nice-try@^1.0.4: 5146 + version "1.0.5" 5147 + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 5148 + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 5149 + 5150 + nocache@^2.1.0: 5151 + version "2.1.0" 5152 + resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" 5153 + integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== 5154 + 5155 + node-dir@^0.1.17: 5156 + version "0.1.17" 5157 + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" 5158 + integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== 5159 + dependencies: 5160 + minimatch "^3.0.2" 5161 + 5162 + node-fetch@^2.2.0, node-fetch@^2.6.0: 5163 + version "2.6.7" 5164 + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 5165 + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 5166 + dependencies: 5167 + whatwg-url "^5.0.0" 5168 + 5169 + node-int64@^0.4.0: 5170 + version "0.4.0" 5171 + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 5172 + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== 5173 + 5174 + node-notifier@^8.0.0: 5175 + version "8.0.2" 5176 + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5" 5177 + integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg== 5178 + dependencies: 5179 + growly "^1.3.0" 5180 + is-wsl "^2.2.0" 5181 + semver "^7.3.2" 5182 + shellwords "^0.1.1" 5183 + uuid "^8.3.0" 5184 + which "^2.0.2" 5185 + 5186 + node-releases@^2.0.5: 5187 + version "2.0.5" 5188 + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666" 5189 + integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q== 5190 + 5191 + node-stream-zip@^1.9.1: 5192 + version "1.15.0" 5193 + resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.15.0.tgz#158adb88ed8004c6c49a396b50a6a5de3bca33ea" 5194 + integrity sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw== 5195 + 5196 + normalize-package-data@^2.5.0: 5197 + version "2.5.0" 5198 + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 5199 + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 5200 + dependencies: 5201 + hosted-git-info "^2.1.4" 5202 + resolve "^1.10.0" 5203 + semver "2 || 3 || 4 || 5" 5204 + validate-npm-package-license "^3.0.1" 5205 + 5206 + normalize-path@^2.1.1: 5207 + version "2.1.1" 5208 + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 5209 + integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== 5210 + dependencies: 5211 + remove-trailing-separator "^1.0.1" 5212 + 5213 + normalize-path@^3.0.0: 5214 + version "3.0.0" 5215 + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 5216 + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 5217 + 5218 + npm-run-path@^2.0.0: 5219 + version "2.0.2" 5220 + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 5221 + integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== 5222 + dependencies: 5223 + path-key "^2.0.0" 5224 + 5225 + npm-run-path@^4.0.0: 5226 + version "4.0.1" 5227 + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 5228 + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 5229 + dependencies: 5230 + path-key "^3.0.0" 5231 + 5232 + nullthrows@^1.1.1: 5233 + version "1.1.1" 5234 + resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" 5235 + integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== 5236 + 5237 + nwsapi@^2.2.0: 5238 + version "2.2.0" 5239 + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 5240 + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 5241 + 5242 + ob1@0.67.0: 5243 + version "0.67.0" 5244 + resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.67.0.tgz#91f104c90641b1af8c364fc82a4b2c7d0801072d" 5245 + integrity sha512-YvZtX8HKYackQ5PwdFIuuNFVsMChRPHvnARRRT0Vk59xsBvL5t9U1Ock3M1sYrKj+Gp73+0q9xcHLAxI+xLi5g== 5246 + 5247 + object-assign@^4.1.1: 5248 + version "4.1.1" 5249 + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 5250 + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 5251 + 5252 + object-copy@^0.1.0: 5253 + version "0.1.0" 5254 + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 5255 + integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== 5256 + dependencies: 5257 + copy-descriptor "^0.1.0" 5258 + define-property "^0.2.5" 5259 + kind-of "^3.0.3" 5260 + 5261 + object-inspect@^1.12.0, object-inspect@^1.9.0: 5262 + version "1.12.2" 5263 + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 5264 + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 5265 + 5266 + object-keys@^1.1.1: 5267 + version "1.1.1" 5268 + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 5269 + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 5270 + 5271 + object-visit@^1.0.0: 5272 + version "1.0.1" 5273 + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 5274 + integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== 5275 + dependencies: 5276 + isobject "^3.0.0" 5277 + 5278 + object.assign@^4.1.0, object.assign@^4.1.2: 5279 + version "4.1.2" 5280 + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 5281 + integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 5282 + dependencies: 5283 + call-bind "^1.0.0" 5284 + define-properties "^1.1.3" 5285 + has-symbols "^1.0.1" 5286 + object-keys "^1.1.1" 5287 + 5288 + object.entries@^1.1.5: 5289 + version "1.1.5" 5290 + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 5291 + integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 5292 + dependencies: 5293 + call-bind "^1.0.2" 5294 + define-properties "^1.1.3" 5295 + es-abstract "^1.19.1" 5296 + 5297 + object.fromentries@^2.0.5: 5298 + version "2.0.5" 5299 + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 5300 + integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 5301 + dependencies: 5302 + call-bind "^1.0.2" 5303 + define-properties "^1.1.3" 5304 + es-abstract "^1.19.1" 5305 + 5306 + object.hasown@^1.1.1: 5307 + version "1.1.1" 5308 + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" 5309 + integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== 5310 + dependencies: 5311 + define-properties "^1.1.4" 5312 + es-abstract "^1.19.5" 5313 + 5314 + object.pick@^1.3.0: 5315 + version "1.3.0" 5316 + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 5317 + integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== 5318 + dependencies: 5319 + isobject "^3.0.1" 5320 + 5321 + object.values@^1.1.5: 5322 + version "1.1.5" 5323 + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 5324 + integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 5325 + dependencies: 5326 + call-bind "^1.0.2" 5327 + define-properties "^1.1.3" 5328 + es-abstract "^1.19.1" 5329 + 5330 + on-finished@2.4.1: 5331 + version "2.4.1" 5332 + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" 5333 + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== 5334 + dependencies: 5335 + ee-first "1.1.1" 5336 + 5337 + on-finished@~2.3.0: 5338 + version "2.3.0" 5339 + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 5340 + integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== 5341 + dependencies: 5342 + ee-first "1.1.1" 5343 + 5344 + on-headers@~1.0.2: 5345 + version "1.0.2" 5346 + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" 5347 + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== 5348 + 5349 + once@^1.3.0, once@^1.3.1, once@^1.4.0: 5350 + version "1.4.0" 5351 + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 5352 + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 5353 + dependencies: 5354 + wrappy "1" 5355 + 5356 + onetime@^2.0.0: 5357 + version "2.0.1" 5358 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 5359 + integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== 5360 + dependencies: 5361 + mimic-fn "^1.0.0" 5362 + 5363 + onetime@^5.1.0: 5364 + version "5.1.2" 5365 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 5366 + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 5367 + dependencies: 5368 + mimic-fn "^2.1.0" 5369 + 5370 + open@^6.2.0: 5371 + version "6.4.0" 5372 + resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" 5373 + integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== 5374 + dependencies: 5375 + is-wsl "^1.1.0" 5376 + 5377 + optionator@^0.8.1: 5378 + version "0.8.3" 5379 + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 5380 + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 5381 + dependencies: 5382 + deep-is "~0.1.3" 5383 + fast-levenshtein "~2.0.6" 5384 + levn "~0.3.0" 5385 + prelude-ls "~1.1.2" 5386 + type-check "~0.3.2" 5387 + word-wrap "~1.2.3" 5388 + 5389 + optionator@^0.9.1: 5390 + version "0.9.1" 5391 + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 5392 + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 5393 + dependencies: 5394 + deep-is "^0.1.3" 5395 + fast-levenshtein "^2.0.6" 5396 + levn "^0.4.1" 5397 + prelude-ls "^1.2.1" 5398 + type-check "^0.4.0" 5399 + word-wrap "^1.2.3" 5400 + 5401 + ora@^3.4.0: 5402 + version "3.4.0" 5403 + resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" 5404 + integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== 5405 + dependencies: 5406 + chalk "^2.4.2" 5407 + cli-cursor "^2.1.0" 5408 + cli-spinners "^2.0.0" 5409 + log-symbols "^2.2.0" 5410 + strip-ansi "^5.2.0" 5411 + wcwidth "^1.0.1" 5412 + 5413 + ora@^5.4.1: 5414 + version "5.4.1" 5415 + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" 5416 + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== 5417 + dependencies: 5418 + bl "^4.1.0" 5419 + chalk "^4.1.0" 5420 + cli-cursor "^3.1.0" 5421 + cli-spinners "^2.5.0" 5422 + is-interactive "^1.0.0" 5423 + is-unicode-supported "^0.1.0" 5424 + log-symbols "^4.1.0" 5425 + strip-ansi "^6.0.0" 5426 + wcwidth "^1.0.1" 5427 + 5428 + os-tmpdir@^1.0.0: 5429 + version "1.0.2" 5430 + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 5431 + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== 5432 + 5433 + p-each-series@^2.1.0: 5434 + version "2.2.0" 5435 + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" 5436 + integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== 5437 + 5438 + p-finally@^1.0.0: 5439 + version "1.0.0" 5440 + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 5441 + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== 5442 + 5443 + p-limit@^2.0.0, p-limit@^2.2.0: 5444 + version "2.3.0" 5445 + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 5446 + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 5447 + dependencies: 5448 + p-try "^2.0.0" 5449 + 5450 + p-locate@^3.0.0: 5451 + version "3.0.0" 5452 + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 5453 + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 5454 + dependencies: 5455 + p-limit "^2.0.0" 5456 + 5457 + p-locate@^4.1.0: 5458 + version "4.1.0" 5459 + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 5460 + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 5461 + dependencies: 5462 + p-limit "^2.2.0" 5463 + 5464 + p-try@^2.0.0: 5465 + version "2.2.0" 5466 + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 5467 + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 5468 + 5469 + parent-module@^1.0.0: 5470 + version "1.0.1" 5471 + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 5472 + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 5473 + dependencies: 5474 + callsites "^3.0.0" 5475 + 5476 + parse-json@^4.0.0: 5477 + version "4.0.0" 5478 + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 5479 + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== 5480 + dependencies: 5481 + error-ex "^1.3.1" 5482 + json-parse-better-errors "^1.0.1" 5483 + 5484 + parse-json@^5.0.0: 5485 + version "5.2.0" 5486 + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 5487 + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 5488 + dependencies: 5489 + "@babel/code-frame" "^7.0.0" 5490 + error-ex "^1.3.1" 5491 + json-parse-even-better-errors "^2.3.0" 5492 + lines-and-columns "^1.1.6" 5493 + 5494 + parse5@6.0.1: 5495 + version "6.0.1" 5496 + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 5497 + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 5498 + 5499 + parseurl@~1.3.3: 5500 + version "1.3.3" 5501 + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 5502 + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 5503 + 5504 + pascalcase@^0.1.1: 5505 + version "0.1.1" 5506 + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 5507 + integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== 5508 + 5509 + path-exists@^3.0.0: 5510 + version "3.0.0" 5511 + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 5512 + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== 5513 + 5514 + path-exists@^4.0.0: 5515 + version "4.0.0" 5516 + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 5517 + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 5518 + 5519 + path-is-absolute@^1.0.0: 5520 + version "1.0.1" 5521 + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 5522 + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 5523 + 5524 + path-key@^2.0.0, path-key@^2.0.1: 5525 + version "2.0.1" 5526 + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 5527 + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== 5528 + 5529 + path-key@^3.0.0, path-key@^3.1.0: 5530 + version "3.1.1" 5531 + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 5532 + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 5533 + 5534 + path-parse@^1.0.6, path-parse@^1.0.7: 5535 + version "1.0.7" 5536 + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 5537 + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 5538 + 5539 + path-type@^4.0.0: 5540 + version "4.0.0" 5541 + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 5542 + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 5543 + 5544 + picocolors@^1.0.0: 5545 + version "1.0.0" 5546 + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 5547 + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 5548 + 5549 + picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: 5550 + version "2.3.1" 5551 + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 5552 + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 5553 + 5554 + pify@^4.0.1: 5555 + version "4.0.1" 5556 + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 5557 + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 5558 + 5559 + pirates@^4.0.1, pirates@^4.0.5: 5560 + version "4.0.5" 5561 + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" 5562 + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== 5563 + 5564 + pkg-dir@^3.0.0: 5565 + version "3.0.0" 5566 + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 5567 + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== 5568 + dependencies: 5569 + find-up "^3.0.0" 5570 + 5571 + pkg-dir@^4.2.0: 5572 + version "4.2.0" 5573 + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 5574 + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 5575 + dependencies: 5576 + find-up "^4.0.0" 5577 + 5578 + plist@^3.0.2, plist@^3.0.5: 5579 + version "3.0.5" 5580 + resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz#2cbeb52d10e3cdccccf0c11a63a85d830970a987" 5581 + integrity sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA== 5582 + dependencies: 5583 + base64-js "^1.5.1" 5584 + xmlbuilder "^9.0.7" 5585 + 5586 + posix-character-classes@^0.1.0: 5587 + version "0.1.1" 5588 + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 5589 + integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== 5590 + 5591 + prelude-ls@^1.2.1: 5592 + version "1.2.1" 5593 + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 5594 + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 5595 + 5596 + prelude-ls@~1.1.2: 5597 + version "1.1.2" 5598 + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 5599 + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== 5600 + 5601 + prettier-linter-helpers@^1.0.0: 5602 + version "1.0.0" 5603 + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 5604 + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 5605 + dependencies: 5606 + fast-diff "^1.1.2" 5607 + 5608 + prettier@^2.0.2: 5609 + version "2.6.2" 5610 + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032" 5611 + integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew== 5612 + 5613 + pretty-format@^26.0.0, pretty-format@^26.5.2, pretty-format@^26.6.2: 5614 + version "26.6.2" 5615 + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" 5616 + integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== 5617 + dependencies: 5618 + "@jest/types" "^26.6.2" 5619 + ansi-regex "^5.0.0" 5620 + ansi-styles "^4.0.0" 5621 + react-is "^17.0.1" 5622 + 5623 + process-nextick-args@~2.0.0: 5624 + version "2.0.1" 5625 + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 5626 + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 5627 + 5628 + progress@^2.0.0: 5629 + version "2.0.3" 5630 + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 5631 + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 5632 + 5633 + promise@^8.0.3: 5634 + version "8.1.0" 5635 + resolved "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e" 5636 + integrity sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q== 5637 + dependencies: 5638 + asap "~2.0.6" 5639 + 5640 + prompts@^2.0.1, prompts@^2.4.0: 5641 + version "2.4.2" 5642 + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 5643 + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 5644 + dependencies: 5645 + kleur "^3.0.3" 5646 + sisteransi "^1.0.5" 5647 + 5648 + prop-types@*, prop-types@^15.8.1: 5649 + version "15.8.1" 5650 + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 5651 + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 5652 + dependencies: 5653 + loose-envify "^1.4.0" 5654 + object-assign "^4.1.1" 5655 + react-is "^16.13.1" 5656 + 5657 + psl@^1.1.33: 5658 + version "1.8.0" 5659 + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 5660 + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 5661 + 5662 + pump@^3.0.0: 5663 + version "3.0.0" 5664 + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 5665 + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 5666 + dependencies: 5667 + end-of-stream "^1.1.0" 5668 + once "^1.3.1" 5669 + 5670 + punycode@^2.1.0, punycode@^2.1.1: 5671 + version "2.1.1" 5672 + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 5673 + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 5674 + 5675 + queue-microtask@^1.2.2: 5676 + version "1.2.3" 5677 + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 5678 + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 5679 + 5680 + range-parser@~1.2.1: 5681 + version "1.2.1" 5682 + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 5683 + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 5684 + 5685 + react-devtools-core@^4.23.0: 5686 + version "4.24.7" 5687 + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.24.7.tgz#43df22e6d244ed8286fd3ff16a80813998fe82a0" 5688 + integrity sha512-OFB1cp8bsh5Kc6oOJ3ZzH++zMBtydwD53yBYa50FKEGyOOdgdbJ4VsCsZhN/6F5T4gJfrZraU6EKda8P+tMLtg== 5689 + dependencies: 5690 + shell-quote "^1.6.1" 5691 + ws "^7" 5692 + 5693 + "react-is@^16.12.0 || ^17.0.0", react-is@^17.0.1, react-is@^17.0.2: 5694 + version "17.0.2" 5695 + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 5696 + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 5697 + 5698 + "react-is@^16.12.0 || ^17.0.0 || ^18.0.0": 5699 + version "18.1.0" 5700 + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.1.0.tgz#61aaed3096d30eacf2a2127118b5b41387d32a67" 5701 + integrity sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg== 5702 + 5703 + react-is@^16.13.1: 5704 + version "16.13.1" 5705 + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 5706 + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 5707 + 5708 + react-native-codegen@^0.0.17: 5709 + version "0.0.17" 5710 + resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.0.17.tgz#83fb814d94061cbd46667f510d2ddba35ffb50ac" 5711 + integrity sha512-7GIEUmAemH9uWwB6iYXNNsPoPgH06pxzGRmdBzK98TgFBdYJZ7CBuZFPMe4jmHQTPOkQazKZ/w5O6/71JBixmw== 5712 + dependencies: 5713 + "@babel/parser" "^7.14.0" 5714 + flow-parser "^0.121.0" 5715 + jscodeshift "^0.13.1" 5716 + nullthrows "^1.1.1" 5717 + 5718 + react-native-gradle-plugin@^0.0.6: 5719 + version "0.0.6" 5720 + resolved "https://registry.yarnpkg.com/react-native-gradle-plugin/-/react-native-gradle-plugin-0.0.6.tgz#b61a9234ad2f61430937911003cddd7e15c72b45" 5721 + integrity sha512-eIlgtsmDp1jLC24dRn43hB3kEcZVqx6DUQbR0N1ABXGnMEafm9I3V3dUUeD1vh+Dy5WqijSoEwLNUPLgu5zDMg== 5722 + 5723 + react-native@0.68.2: 5724 + version "0.68.2" 5725 + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.68.2.tgz#07547cd31bb9335a7fa4135cfbdc24e067142585" 5726 + integrity sha512-qNMz+mdIirCEmlrhapAtAG+SWVx6MAiSfCbFNhfHqiqu1xw1OKXdzIrjaBEPihRC2pcORCoCHduHGQe/Pz9Yuw== 5727 + dependencies: 5728 + "@jest/create-cache-key-function" "^27.0.1" 5729 + "@react-native-community/cli" "^7.0.3" 5730 + "@react-native-community/cli-platform-android" "^7.0.1" 5731 + "@react-native-community/cli-platform-ios" "^7.0.1" 5732 + "@react-native/assets" "1.0.0" 5733 + "@react-native/normalize-color" "2.0.0" 5734 + "@react-native/polyfills" "2.0.0" 5735 + abort-controller "^3.0.0" 5736 + anser "^1.4.9" 5737 + base64-js "^1.1.2" 5738 + deprecated-react-native-prop-types "^2.3.0" 5739 + event-target-shim "^5.0.1" 5740 + hermes-engine "~0.11.0" 5741 + invariant "^2.2.4" 5742 + jsc-android "^250230.2.1" 5743 + metro-react-native-babel-transformer "0.67.0" 5744 + metro-runtime "0.67.0" 5745 + metro-source-map "0.67.0" 5746 + nullthrows "^1.1.1" 5747 + pretty-format "^26.5.2" 5748 + promise "^8.0.3" 5749 + react-devtools-core "^4.23.0" 5750 + react-native-codegen "^0.0.17" 5751 + react-native-gradle-plugin "^0.0.6" 5752 + react-refresh "^0.4.0" 5753 + react-shallow-renderer "16.14.1" 5754 + regenerator-runtime "^0.13.2" 5755 + scheduler "^0.20.2" 5756 + stacktrace-parser "^0.1.3" 5757 + use-subscription ">=1.0.0 <1.6.0" 5758 + whatwg-fetch "^3.0.0" 5759 + ws "^6.1.4" 5760 + 5761 + react-refresh@^0.4.0: 5762 + version "0.4.3" 5763 + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53" 5764 + integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA== 5765 + 5766 + react-shallow-renderer@16.14.1: 5767 + version "16.14.1" 5768 + resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.14.1.tgz#bf0d02df8a519a558fd9b8215442efa5c840e124" 5769 + integrity sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg== 5770 + dependencies: 5771 + object-assign "^4.1.1" 5772 + react-is "^16.12.0 || ^17.0.0" 5773 + 5774 + react-shallow-renderer@^16.13.1: 5775 + version "16.15.0" 5776 + resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz#48fb2cf9b23d23cde96708fe5273a7d3446f4457" 5777 + integrity sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA== 5778 + dependencies: 5779 + object-assign "^4.1.1" 5780 + react-is "^16.12.0 || ^17.0.0 || ^18.0.0" 5781 + 5782 + react-test-renderer@17.0.2: 5783 + version "17.0.2" 5784 + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-17.0.2.tgz#4cd4ae5ef1ad5670fc0ef776e8cc7e1231d9866c" 5785 + integrity sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ== 5786 + dependencies: 5787 + object-assign "^4.1.1" 5788 + react-is "^17.0.2" 5789 + react-shallow-renderer "^16.13.1" 5790 + scheduler "^0.20.2" 5791 + 5792 + react@17.0.2: 5793 + version "17.0.2" 5794 + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 5795 + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 5796 + dependencies: 5797 + loose-envify "^1.1.0" 5798 + object-assign "^4.1.1" 5799 + 5800 + read-pkg-up@^7.0.1: 5801 + version "7.0.1" 5802 + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 5803 + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 5804 + dependencies: 5805 + find-up "^4.1.0" 5806 + read-pkg "^5.2.0" 5807 + type-fest "^0.8.1" 5808 + 5809 + read-pkg@^5.2.0: 5810 + version "5.2.0" 5811 + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 5812 + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 5813 + dependencies: 5814 + "@types/normalize-package-data" "^2.4.0" 5815 + normalize-package-data "^2.5.0" 5816 + parse-json "^5.0.0" 5817 + type-fest "^0.6.0" 5818 + 5819 + readable-stream@^3.4.0: 5820 + version "3.6.0" 5821 + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 5822 + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 5823 + dependencies: 5824 + inherits "^2.0.3" 5825 + string_decoder "^1.1.1" 5826 + util-deprecate "^1.0.1" 5827 + 5828 + readable-stream@~2.3.6: 5829 + version "2.3.7" 5830 + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 5831 + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 5832 + dependencies: 5833 + core-util-is "~1.0.0" 5834 + inherits "~2.0.3" 5835 + isarray "~1.0.0" 5836 + process-nextick-args "~2.0.0" 5837 + safe-buffer "~5.1.1" 5838 + string_decoder "~1.1.1" 5839 + util-deprecate "~1.0.1" 5840 + 5841 + readline@^1.3.0: 5842 + version "1.3.0" 5843 + resolved "https://registry.yarnpkg.com/readline/-/readline-1.3.0.tgz#c580d77ef2cfc8752b132498060dc9793a7ac01c" 5844 + integrity sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg== 5845 + 5846 + recast@^0.20.4: 5847 + version "0.20.5" 5848 + resolved "https://registry.yarnpkg.com/recast/-/recast-0.20.5.tgz#8e2c6c96827a1b339c634dd232957d230553ceae" 5849 + integrity sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ== 5850 + dependencies: 5851 + ast-types "0.14.2" 5852 + esprima "~4.0.0" 5853 + source-map "~0.6.1" 5854 + tslib "^2.0.1" 5855 + 5856 + regenerate-unicode-properties@^10.0.1: 5857 + version "10.0.1" 5858 + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz#7f442732aa7934a3740c779bb9b3340dccc1fb56" 5859 + integrity sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw== 5860 + dependencies: 5861 + regenerate "^1.4.2" 5862 + 5863 + regenerate@^1.4.2: 5864 + version "1.4.2" 5865 + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 5866 + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 5867 + 5868 + regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.4: 5869 + version "0.13.9" 5870 + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 5871 + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 5872 + 5873 + regenerator-transform@^0.15.0: 5874 + version "0.15.0" 5875 + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537" 5876 + integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg== 5877 + dependencies: 5878 + "@babel/runtime" "^7.8.4" 5879 + 5880 + regex-not@^1.0.0, regex-not@^1.0.2: 5881 + version "1.0.2" 5882 + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 5883 + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 5884 + dependencies: 5885 + extend-shallow "^3.0.2" 5886 + safe-regex "^1.1.0" 5887 + 5888 + regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: 5889 + version "1.4.3" 5890 + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 5891 + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 5892 + dependencies: 5893 + call-bind "^1.0.2" 5894 + define-properties "^1.1.3" 5895 + functions-have-names "^1.2.2" 5896 + 5897 + regexpp@^3.0.0, regexpp@^3.1.0, regexpp@^3.2.0: 5898 + version "3.2.0" 5899 + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 5900 + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 5901 + 5902 + regexpu-core@^5.0.1: 5903 + version "5.0.1" 5904 + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.0.1.tgz#c531122a7840de743dcf9c83e923b5560323ced3" 5905 + integrity sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw== 5906 + dependencies: 5907 + regenerate "^1.4.2" 5908 + regenerate-unicode-properties "^10.0.1" 5909 + regjsgen "^0.6.0" 5910 + regjsparser "^0.8.2" 5911 + unicode-match-property-ecmascript "^2.0.0" 5912 + unicode-match-property-value-ecmascript "^2.0.0" 5913 + 5914 + regjsgen@^0.6.0: 5915 + version "0.6.0" 5916 + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz#83414c5354afd7d6627b16af5f10f41c4e71808d" 5917 + integrity sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA== 5918 + 5919 + regjsparser@^0.8.2: 5920 + version "0.8.4" 5921 + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz#8a14285ffcc5de78c5b95d62bbf413b6bc132d5f" 5922 + integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA== 5923 + dependencies: 5924 + jsesc "~0.5.0" 5925 + 5926 + remove-trailing-separator@^1.0.1: 5927 + version "1.1.0" 5928 + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 5929 + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== 5930 + 5931 + repeat-element@^1.1.2: 5932 + version "1.1.4" 5933 + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" 5934 + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== 5935 + 5936 + repeat-string@^1.6.1: 5937 + version "1.6.1" 5938 + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 5939 + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== 5940 + 5941 + require-directory@^2.1.1: 5942 + version "2.1.1" 5943 + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 5944 + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 5945 + 5946 + require-from-string@^2.0.2: 5947 + version "2.0.2" 5948 + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 5949 + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 5950 + 5951 + require-main-filename@^2.0.0: 5952 + version "2.0.0" 5953 + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 5954 + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 5955 + 5956 + resolve-cwd@^3.0.0: 5957 + version "3.0.0" 5958 + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 5959 + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 5960 + dependencies: 5961 + resolve-from "^5.0.0" 5962 + 5963 + resolve-from@^3.0.0: 5964 + version "3.0.0" 5965 + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 5966 + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== 5967 + 5968 + resolve-from@^4.0.0: 5969 + version "4.0.0" 5970 + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 5971 + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 5972 + 5973 + resolve-from@^5.0.0: 5974 + version "5.0.0" 5975 + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 5976 + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 5977 + 5978 + resolve-url@^0.2.1: 5979 + version "0.2.1" 5980 + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 5981 + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== 5982 + 5983 + resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.18.1: 5984 + version "1.22.0" 5985 + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 5986 + integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 5987 + dependencies: 5988 + is-core-module "^2.8.1" 5989 + path-parse "^1.0.7" 5990 + supports-preserve-symlinks-flag "^1.0.0" 5991 + 5992 + resolve@^2.0.0-next.3: 5993 + version "2.0.0-next.3" 5994 + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" 5995 + integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== 5996 + dependencies: 5997 + is-core-module "^2.2.0" 5998 + path-parse "^1.0.6" 5999 + 6000 + restore-cursor@^2.0.0: 6001 + version "2.0.0" 6002 + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 6003 + integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== 6004 + dependencies: 6005 + onetime "^2.0.0" 6006 + signal-exit "^3.0.2" 6007 + 6008 + restore-cursor@^3.1.0: 6009 + version "3.1.0" 6010 + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 6011 + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 6012 + dependencies: 6013 + onetime "^5.1.0" 6014 + signal-exit "^3.0.2" 6015 + 6016 + ret@~0.1.10: 6017 + version "0.1.15" 6018 + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 6019 + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 6020 + 6021 + reusify@^1.0.4: 6022 + version "1.0.4" 6023 + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 6024 + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 6025 + 6026 + rimraf@^2.5.4: 6027 + version "2.7.1" 6028 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 6029 + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 6030 + dependencies: 6031 + glob "^7.1.3" 6032 + 6033 + rimraf@^3.0.0, rimraf@^3.0.2: 6034 + version "3.0.2" 6035 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 6036 + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 6037 + dependencies: 6038 + glob "^7.1.3" 6039 + 6040 + rimraf@~2.2.6: 6041 + version "2.2.8" 6042 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 6043 + integrity sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg== 6044 + 6045 + rimraf@~2.6.2: 6046 + version "2.6.3" 6047 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 6048 + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 6049 + dependencies: 6050 + glob "^7.1.3" 6051 + 6052 + rsvp@^4.8.4: 6053 + version "4.8.5" 6054 + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" 6055 + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== 6056 + 6057 + run-parallel@^1.1.9: 6058 + version "1.2.0" 6059 + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 6060 + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 6061 + dependencies: 6062 + queue-microtask "^1.2.2" 6063 + 6064 + safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 6065 + version "5.1.2" 6066 + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 6067 + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 6068 + 6069 + safe-buffer@~5.2.0: 6070 + version "5.2.1" 6071 + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 6072 + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 6073 + 6074 + safe-regex@^1.1.0: 6075 + version "1.1.0" 6076 + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 6077 + integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== 6078 + dependencies: 6079 + ret "~0.1.10" 6080 + 6081 + "safer-buffer@>= 2.1.2 < 3": 6082 + version "2.1.2" 6083 + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 6084 + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 6085 + 6086 + sane@^4.0.3: 6087 + version "4.1.0" 6088 + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" 6089 + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== 6090 + dependencies: 6091 + "@cnakazawa/watch" "^1.0.3" 6092 + anymatch "^2.0.0" 6093 + capture-exit "^2.0.0" 6094 + exec-sh "^0.3.2" 6095 + execa "^1.0.0" 6096 + fb-watchman "^2.0.0" 6097 + micromatch "^3.1.4" 6098 + minimist "^1.1.1" 6099 + walker "~1.0.5" 6100 + 6101 + sax@^1.2.1: 6102 + version "1.2.4" 6103 + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 6104 + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 6105 + 6106 + saxes@^5.0.1: 6107 + version "5.0.1" 6108 + resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 6109 + integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 6110 + dependencies: 6111 + xmlchars "^2.2.0" 6112 + 6113 + scheduler@^0.20.2: 6114 + version "0.20.2" 6115 + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" 6116 + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== 6117 + dependencies: 6118 + loose-envify "^1.1.0" 6119 + object-assign "^4.1.1" 6120 + 6121 + "semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: 6122 + version "5.7.1" 6123 + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 6124 + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 6125 + 6126 + semver@7.0.0: 6127 + version "7.0.0" 6128 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 6129 + integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 6130 + 6131 + semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: 6132 + version "6.3.0" 6133 + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 6134 + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 6135 + 6136 + semver@^7.2.1, semver@^7.3.2, semver@^7.3.7: 6137 + version "7.3.7" 6138 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" 6139 + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== 6140 + dependencies: 6141 + lru-cache "^6.0.0" 6142 + 6143 + send@0.18.0: 6144 + version "0.18.0" 6145 + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" 6146 + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== 6147 + dependencies: 6148 + debug "2.6.9" 6149 + depd "2.0.0" 6150 + destroy "1.2.0" 6151 + encodeurl "~1.0.2" 6152 + escape-html "~1.0.3" 6153 + etag "~1.8.1" 6154 + fresh "0.5.2" 6155 + http-errors "2.0.0" 6156 + mime "1.6.0" 6157 + ms "2.1.3" 6158 + on-finished "2.4.1" 6159 + range-parser "~1.2.1" 6160 + statuses "2.0.1" 6161 + 6162 + serialize-error@^2.1.0: 6163 + version "2.1.0" 6164 + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" 6165 + integrity sha1-ULZ51WNc34Rme9yOWa9OW4HV9go= 6166 + 6167 + serve-static@^1.13.1: 6168 + version "1.15.0" 6169 + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" 6170 + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== 6171 + dependencies: 6172 + encodeurl "~1.0.2" 6173 + escape-html "~1.0.3" 6174 + parseurl "~1.3.3" 6175 + send "0.18.0" 6176 + 6177 + set-blocking@^2.0.0: 6178 + version "2.0.0" 6179 + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 6180 + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 6181 + 6182 + set-value@^2.0.0, set-value@^2.0.1: 6183 + version "2.0.1" 6184 + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 6185 + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 6186 + dependencies: 6187 + extend-shallow "^2.0.1" 6188 + is-extendable "^0.1.1" 6189 + is-plain-object "^2.0.3" 6190 + split-string "^3.0.1" 6191 + 6192 + setprototypeof@1.2.0: 6193 + version "1.2.0" 6194 + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" 6195 + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== 6196 + 6197 + shallow-clone@^3.0.0: 6198 + version "3.0.1" 6199 + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" 6200 + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== 6201 + dependencies: 6202 + kind-of "^6.0.2" 6203 + 6204 + shebang-command@^1.2.0: 6205 + version "1.2.0" 6206 + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 6207 + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 6208 + dependencies: 6209 + shebang-regex "^1.0.0" 6210 + 6211 + shebang-command@^2.0.0: 6212 + version "2.0.0" 6213 + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 6214 + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 6215 + dependencies: 6216 + shebang-regex "^3.0.0" 6217 + 6218 + shebang-regex@^1.0.0: 6219 + version "1.0.0" 6220 + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 6221 + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 6222 + 6223 + shebang-regex@^3.0.0: 6224 + version "3.0.0" 6225 + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 6226 + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 6227 + 6228 + shell-quote@1.6.1: 6229 + version "1.6.1" 6230 + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 6231 + integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c= 6232 + dependencies: 6233 + array-filter "~0.0.0" 6234 + array-map "~0.0.0" 6235 + array-reduce "~0.0.0" 6236 + jsonify "~0.0.0" 6237 + 6238 + shell-quote@^1.6.1, shell-quote@^1.7.3: 6239 + version "1.7.3" 6240 + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" 6241 + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== 6242 + 6243 + shellwords@^0.1.1: 6244 + version "0.1.1" 6245 + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 6246 + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== 6247 + 6248 + side-channel@^1.0.4: 6249 + version "1.0.4" 6250 + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 6251 + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 6252 + dependencies: 6253 + call-bind "^1.0.0" 6254 + get-intrinsic "^1.0.2" 6255 + object-inspect "^1.9.0" 6256 + 6257 + signal-exit@^3.0.0, signal-exit@^3.0.2: 6258 + version "3.0.7" 6259 + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 6260 + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 6261 + 6262 + simple-plist@^1.1.0: 6263 + version "1.3.1" 6264 + resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.3.1.tgz#16e1d8f62c6c9b691b8383127663d834112fb017" 6265 + integrity sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw== 6266 + dependencies: 6267 + bplist-creator "0.1.0" 6268 + bplist-parser "0.3.1" 6269 + plist "^3.0.5" 6270 + 6271 + sisteransi@^1.0.5: 6272 + version "1.0.5" 6273 + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 6274 + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 6275 + 6276 + slash@^3.0.0: 6277 + version "3.0.0" 6278 + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 6279 + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 6280 + 6281 + slice-ansi@^2.0.0: 6282 + version "2.1.0" 6283 + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 6284 + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 6285 + dependencies: 6286 + ansi-styles "^3.2.0" 6287 + astral-regex "^1.0.0" 6288 + is-fullwidth-code-point "^2.0.0" 6289 + 6290 + slice-ansi@^4.0.0: 6291 + version "4.0.0" 6292 + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 6293 + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 6294 + dependencies: 6295 + ansi-styles "^4.0.0" 6296 + astral-regex "^2.0.0" 6297 + is-fullwidth-code-point "^3.0.0" 6298 + 6299 + snapdragon-node@^2.0.1: 6300 + version "2.1.1" 6301 + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 6302 + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 6303 + dependencies: 6304 + define-property "^1.0.0" 6305 + isobject "^3.0.0" 6306 + snapdragon-util "^3.0.1" 6307 + 6308 + snapdragon-util@^3.0.1: 6309 + version "3.0.1" 6310 + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 6311 + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 6312 + dependencies: 6313 + kind-of "^3.2.0" 6314 + 6315 + snapdragon@^0.8.1: 6316 + version "0.8.2" 6317 + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 6318 + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 6319 + dependencies: 6320 + base "^0.11.1" 6321 + debug "^2.2.0" 6322 + define-property "^0.2.5" 6323 + extend-shallow "^2.0.1" 6324 + map-cache "^0.2.2" 6325 + source-map "^0.5.6" 6326 + source-map-resolve "^0.5.0" 6327 + use "^3.1.0" 6328 + 6329 + source-map-resolve@^0.5.0: 6330 + version "0.5.3" 6331 + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 6332 + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== 6333 + dependencies: 6334 + atob "^2.1.2" 6335 + decode-uri-component "^0.2.0" 6336 + resolve-url "^0.2.1" 6337 + source-map-url "^0.4.0" 6338 + urix "^0.1.0" 6339 + 6340 + source-map-support@^0.5.16, source-map-support@^0.5.6: 6341 + version "0.5.21" 6342 + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 6343 + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 6344 + dependencies: 6345 + buffer-from "^1.0.0" 6346 + source-map "^0.6.0" 6347 + 6348 + source-map-url@^0.4.0: 6349 + version "0.4.1" 6350 + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" 6351 + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== 6352 + 6353 + source-map@^0.5.6: 6354 + version "0.5.7" 6355 + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 6356 + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 6357 + 6358 + source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 6359 + version "0.6.1" 6360 + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 6361 + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 6362 + 6363 + source-map@^0.7.3: 6364 + version "0.7.4" 6365 + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" 6366 + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== 6367 + 6368 + spdx-correct@^3.0.0: 6369 + version "3.1.1" 6370 + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 6371 + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 6372 + dependencies: 6373 + spdx-expression-parse "^3.0.0" 6374 + spdx-license-ids "^3.0.0" 6375 + 6376 + spdx-exceptions@^2.1.0: 6377 + version "2.3.0" 6378 + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 6379 + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 6380 + 6381 + spdx-expression-parse@^3.0.0: 6382 + version "3.0.1" 6383 + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 6384 + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 6385 + dependencies: 6386 + spdx-exceptions "^2.1.0" 6387 + spdx-license-ids "^3.0.0" 6388 + 6389 + spdx-license-ids@^3.0.0: 6390 + version "3.0.11" 6391 + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz#50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95" 6392 + integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== 6393 + 6394 + split-string@^3.0.1, split-string@^3.0.2: 6395 + version "3.1.0" 6396 + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 6397 + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 6398 + dependencies: 6399 + extend-shallow "^3.0.0" 6400 + 6401 + sprintf-js@~1.0.2: 6402 + version "1.0.3" 6403 + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 6404 + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 6405 + 6406 + stack-utils@^2.0.2: 6407 + version "2.0.5" 6408 + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 6409 + integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 6410 + dependencies: 6411 + escape-string-regexp "^2.0.0" 6412 + 6413 + stackframe@^1.3.4: 6414 + version "1.3.4" 6415 + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" 6416 + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== 6417 + 6418 + stacktrace-parser@^0.1.3: 6419 + version "0.1.10" 6420 + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" 6421 + integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== 6422 + dependencies: 6423 + type-fest "^0.7.1" 6424 + 6425 + static-extend@^0.1.1: 6426 + version "0.1.2" 6427 + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 6428 + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 6429 + dependencies: 6430 + define-property "^0.2.5" 6431 + object-copy "^0.1.0" 6432 + 6433 + statuses@2.0.1: 6434 + version "2.0.1" 6435 + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" 6436 + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== 6437 + 6438 + statuses@~1.5.0: 6439 + version "1.5.0" 6440 + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 6441 + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 6442 + 6443 + stream-buffers@2.2.x: 6444 + version "2.2.0" 6445 + resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" 6446 + integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ= 6447 + 6448 + string-length@^4.0.1: 6449 + version "4.0.2" 6450 + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 6451 + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 6452 + dependencies: 6453 + char-regex "^1.0.2" 6454 + strip-ansi "^6.0.0" 6455 + 6456 + string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 6457 + version "4.2.3" 6458 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 6459 + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 6460 + dependencies: 6461 + emoji-regex "^8.0.0" 6462 + is-fullwidth-code-point "^3.0.0" 6463 + strip-ansi "^6.0.1" 6464 + 6465 + string.prototype.matchall@^4.0.7: 6466 + version "4.0.7" 6467 + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 6468 + integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 6469 + dependencies: 6470 + call-bind "^1.0.2" 6471 + define-properties "^1.1.3" 6472 + es-abstract "^1.19.1" 6473 + get-intrinsic "^1.1.1" 6474 + has-symbols "^1.0.3" 6475 + internal-slot "^1.0.3" 6476 + regexp.prototype.flags "^1.4.1" 6477 + side-channel "^1.0.4" 6478 + 6479 + string.prototype.trimend@^1.0.5: 6480 + version "1.0.5" 6481 + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 6482 + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 6483 + dependencies: 6484 + call-bind "^1.0.2" 6485 + define-properties "^1.1.4" 6486 + es-abstract "^1.19.5" 6487 + 6488 + string.prototype.trimstart@^1.0.5: 6489 + version "1.0.5" 6490 + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 6491 + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 6492 + dependencies: 6493 + call-bind "^1.0.2" 6494 + define-properties "^1.1.4" 6495 + es-abstract "^1.19.5" 6496 + 6497 + string_decoder@^1.1.1: 6498 + version "1.3.0" 6499 + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 6500 + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 6501 + dependencies: 6502 + safe-buffer "~5.2.0" 6503 + 6504 + string_decoder@~1.1.1: 6505 + version "1.1.1" 6506 + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 6507 + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 6508 + dependencies: 6509 + safe-buffer "~5.1.0" 6510 + 6511 + strip-ansi@^5.0.0, strip-ansi@^5.2.0: 6512 + version "5.2.0" 6513 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 6514 + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 6515 + dependencies: 6516 + ansi-regex "^4.1.0" 6517 + 6518 + strip-ansi@^6.0.0, strip-ansi@^6.0.1: 6519 + version "6.0.1" 6520 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 6521 + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 6522 + dependencies: 6523 + ansi-regex "^5.0.1" 6524 + 6525 + strip-bom@^4.0.0: 6526 + version "4.0.0" 6527 + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 6528 + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 6529 + 6530 + strip-eof@^1.0.0: 6531 + version "1.0.0" 6532 + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 6533 + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 6534 + 6535 + strip-final-newline@^2.0.0: 6536 + version "2.0.0" 6537 + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 6538 + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 6539 + 6540 + strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 6541 + version "3.1.1" 6542 + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 6543 + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 6544 + 6545 + sudo-prompt@^9.0.0: 6546 + version "9.2.1" 6547 + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd" 6548 + integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw== 6549 + 6550 + supports-color@^5.3.0: 6551 + version "5.5.0" 6552 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 6553 + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 6554 + dependencies: 6555 + has-flag "^3.0.0" 6556 + 6557 + supports-color@^7.0.0, supports-color@^7.1.0: 6558 + version "7.2.0" 6559 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 6560 + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 6561 + dependencies: 6562 + has-flag "^4.0.0" 6563 + 6564 + supports-color@^8.0.0: 6565 + version "8.1.1" 6566 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 6567 + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 6568 + dependencies: 6569 + has-flag "^4.0.0" 6570 + 6571 + supports-hyperlinks@^2.0.0: 6572 + version "2.2.0" 6573 + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 6574 + integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 6575 + dependencies: 6576 + has-flag "^4.0.0" 6577 + supports-color "^7.0.0" 6578 + 6579 + supports-preserve-symlinks-flag@^1.0.0: 6580 + version "1.0.0" 6581 + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 6582 + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 6583 + 6584 + symbol-tree@^3.2.4: 6585 + version "3.2.4" 6586 + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 6587 + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 6588 + 6589 + table@^6.0.9: 6590 + version "6.8.0" 6591 + resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" 6592 + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== 6593 + dependencies: 6594 + ajv "^8.0.1" 6595 + lodash.truncate "^4.4.2" 6596 + slice-ansi "^4.0.0" 6597 + string-width "^4.2.3" 6598 + strip-ansi "^6.0.1" 6599 + 6600 + temp@0.8.3: 6601 + version "0.8.3" 6602 + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 6603 + integrity sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k= 6604 + dependencies: 6605 + os-tmpdir "^1.0.0" 6606 + rimraf "~2.2.6" 6607 + 6608 + temp@^0.8.4: 6609 + version "0.8.4" 6610 + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" 6611 + integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== 6612 + dependencies: 6613 + rimraf "~2.6.2" 6614 + 6615 + terminal-link@^2.0.0: 6616 + version "2.1.1" 6617 + resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 6618 + integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 6619 + dependencies: 6620 + ansi-escapes "^4.2.1" 6621 + supports-hyperlinks "^2.0.0" 6622 + 6623 + test-exclude@^6.0.0: 6624 + version "6.0.0" 6625 + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 6626 + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 6627 + dependencies: 6628 + "@istanbuljs/schema" "^0.1.2" 6629 + glob "^7.1.4" 6630 + minimatch "^3.0.4" 6631 + 6632 + text-table@^0.2.0: 6633 + version "0.2.0" 6634 + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 6635 + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 6636 + 6637 + throat@^5.0.0: 6638 + version "5.0.0" 6639 + resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" 6640 + integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== 6641 + 6642 + through2@^2.0.1: 6643 + version "2.0.5" 6644 + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 6645 + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 6646 + dependencies: 6647 + readable-stream "~2.3.6" 6648 + xtend "~4.0.1" 6649 + 6650 + tmpl@1.0.5: 6651 + version "1.0.5" 6652 + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 6653 + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 6654 + 6655 + to-fast-properties@^2.0.0: 6656 + version "2.0.0" 6657 + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 6658 + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 6659 + 6660 + to-object-path@^0.3.0: 6661 + version "0.3.0" 6662 + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 6663 + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 6664 + dependencies: 6665 + kind-of "^3.0.2" 6666 + 6667 + to-regex-range@^2.1.0: 6668 + version "2.1.1" 6669 + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 6670 + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 6671 + dependencies: 6672 + is-number "^3.0.0" 6673 + repeat-string "^1.6.1" 6674 + 6675 + to-regex-range@^5.0.1: 6676 + version "5.0.1" 6677 + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 6678 + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 6679 + dependencies: 6680 + is-number "^7.0.0" 6681 + 6682 + to-regex@^3.0.1, to-regex@^3.0.2: 6683 + version "3.0.2" 6684 + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 6685 + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 6686 + dependencies: 6687 + define-property "^2.0.2" 6688 + extend-shallow "^3.0.2" 6689 + regex-not "^1.0.2" 6690 + safe-regex "^1.1.0" 6691 + 6692 + toidentifier@1.0.1: 6693 + version "1.0.1" 6694 + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" 6695 + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== 6696 + 6697 + tough-cookie@^4.0.0: 6698 + version "4.0.0" 6699 + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 6700 + integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 6701 + dependencies: 6702 + psl "^1.1.33" 6703 + punycode "^2.1.1" 6704 + universalify "^0.1.2" 6705 + 6706 + tr46@^2.1.0: 6707 + version "2.1.0" 6708 + resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 6709 + integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 6710 + dependencies: 6711 + punycode "^2.1.1" 6712 + 6713 + tr46@~0.0.3: 6714 + version "0.0.3" 6715 + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 6716 + integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 6717 + 6718 + tslib@^1.8.1: 6719 + version "1.14.1" 6720 + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 6721 + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 6722 + 6723 + tslib@^2.0.1: 6724 + version "2.4.0" 6725 + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" 6726 + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== 6727 + 6728 + tsutils@^3.17.1, tsutils@^3.21.0: 6729 + version "3.21.0" 6730 + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 6731 + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 6732 + dependencies: 6733 + tslib "^1.8.1" 6734 + 6735 + type-check@^0.4.0, type-check@~0.4.0: 6736 + version "0.4.0" 6737 + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 6738 + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 6739 + dependencies: 6740 + prelude-ls "^1.2.1" 6741 + 6742 + type-check@~0.3.2: 6743 + version "0.3.2" 6744 + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 6745 + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 6746 + dependencies: 6747 + prelude-ls "~1.1.2" 6748 + 6749 + type-detect@4.0.8: 6750 + version "4.0.8" 6751 + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 6752 + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 6753 + 6754 + type-fest@^0.20.2: 6755 + version "0.20.2" 6756 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 6757 + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 6758 + 6759 + type-fest@^0.21.3: 6760 + version "0.21.3" 6761 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 6762 + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 6763 + 6764 + type-fest@^0.6.0: 6765 + version "0.6.0" 6766 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 6767 + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 6768 + 6769 + type-fest@^0.7.1: 6770 + version "0.7.1" 6771 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" 6772 + integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== 6773 + 6774 + type-fest@^0.8.1: 6775 + version "0.8.1" 6776 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 6777 + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 6778 + 6779 + typedarray-to-buffer@^3.1.5: 6780 + version "3.1.5" 6781 + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 6782 + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 6783 + dependencies: 6784 + is-typedarray "^1.0.0" 6785 + 6786 + typescript@^4.4.4: 6787 + version "4.7.3" 6788 + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.3.tgz#8364b502d5257b540f9de4c40be84c98e23a129d" 6789 + integrity sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA== 6790 + 6791 + uglify-es@^3.1.9: 6792 + version "3.3.9" 6793 + resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" 6794 + integrity sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ== 6795 + dependencies: 6796 + commander "~2.13.0" 6797 + source-map "~0.6.1" 6798 + 6799 + unbox-primitive@^1.0.2: 6800 + version "1.0.2" 6801 + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 6802 + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 6803 + dependencies: 6804 + call-bind "^1.0.2" 6805 + has-bigints "^1.0.2" 6806 + has-symbols "^1.0.3" 6807 + which-boxed-primitive "^1.0.2" 6808 + 6809 + unicode-canonical-property-names-ecmascript@^2.0.0: 6810 + version "2.0.0" 6811 + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" 6812 + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== 6813 + 6814 + unicode-match-property-ecmascript@^2.0.0: 6815 + version "2.0.0" 6816 + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" 6817 + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== 6818 + dependencies: 6819 + unicode-canonical-property-names-ecmascript "^2.0.0" 6820 + unicode-property-aliases-ecmascript "^2.0.0" 6821 + 6822 + unicode-match-property-value-ecmascript@^2.0.0: 6823 + version "2.0.0" 6824 + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" 6825 + integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== 6826 + 6827 + unicode-property-aliases-ecmascript@^2.0.0: 6828 + version "2.0.0" 6829 + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8" 6830 + integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== 6831 + 6832 + union-value@^1.0.0: 6833 + version "1.0.1" 6834 + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 6835 + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 6836 + dependencies: 6837 + arr-union "^3.1.0" 6838 + get-value "^2.0.6" 6839 + is-extendable "^0.1.1" 6840 + set-value "^2.0.1" 6841 + 6842 + universalify@^0.1.0, universalify@^0.1.2: 6843 + version "0.1.2" 6844 + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 6845 + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 6846 + 6847 + unpipe@~1.0.0: 6848 + version "1.0.0" 6849 + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 6850 + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 6851 + 6852 + unset-value@^1.0.0: 6853 + version "1.0.0" 6854 + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 6855 + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 6856 + dependencies: 6857 + has-value "^0.3.1" 6858 + isobject "^3.0.0" 6859 + 6860 + uri-js@^4.2.2: 6861 + version "4.4.1" 6862 + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 6863 + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 6864 + dependencies: 6865 + punycode "^2.1.0" 6866 + 6867 + urix@^0.1.0: 6868 + version "0.1.0" 6869 + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 6870 + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 6871 + 6872 + "use-subscription@>=1.0.0 <1.6.0": 6873 + version "1.5.1" 6874 + resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1" 6875 + integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA== 6876 + dependencies: 6877 + object-assign "^4.1.1" 6878 + 6879 + use@^3.1.0: 6880 + version "3.1.1" 6881 + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 6882 + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 6883 + 6884 + util-deprecate@^1.0.1, util-deprecate@~1.0.1: 6885 + version "1.0.2" 6886 + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 6887 + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 6888 + 6889 + utils-merge@1.0.1: 6890 + version "1.0.1" 6891 + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 6892 + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 6893 + 6894 + uuid@^7.0.3: 6895 + version "7.0.3" 6896 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" 6897 + integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== 6898 + 6899 + uuid@^8.3.0: 6900 + version "8.3.2" 6901 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 6902 + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 6903 + 6904 + v8-compile-cache@^2.0.3: 6905 + version "2.3.0" 6906 + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 6907 + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 6908 + 6909 + v8-to-istanbul@^7.0.0: 6910 + version "7.1.2" 6911 + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1" 6912 + integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow== 6913 + dependencies: 6914 + "@types/istanbul-lib-coverage" "^2.0.1" 6915 + convert-source-map "^1.6.0" 6916 + source-map "^0.7.3" 6917 + 6918 + validate-npm-package-license@^3.0.1: 6919 + version "3.0.4" 6920 + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 6921 + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 6922 + dependencies: 6923 + spdx-correct "^3.0.0" 6924 + spdx-expression-parse "^3.0.0" 6925 + 6926 + vary@~1.1.2: 6927 + version "1.1.2" 6928 + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 6929 + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 6930 + 6931 + vlq@^1.0.0: 6932 + version "1.0.1" 6933 + resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468" 6934 + integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w== 6935 + 6936 + w3c-hr-time@^1.0.2: 6937 + version "1.0.2" 6938 + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 6939 + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 6940 + dependencies: 6941 + browser-process-hrtime "^1.0.0" 6942 + 6943 + w3c-xmlserializer@^2.0.0: 6944 + version "2.0.0" 6945 + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 6946 + integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 6947 + dependencies: 6948 + xml-name-validator "^3.0.0" 6949 + 6950 + walker@^1.0.7, walker@~1.0.5: 6951 + version "1.0.8" 6952 + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" 6953 + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 6954 + dependencies: 6955 + makeerror "1.0.12" 6956 + 6957 + wcwidth@^1.0.1: 6958 + version "1.0.1" 6959 + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 6960 + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= 6961 + dependencies: 6962 + defaults "^1.0.3" 6963 + 6964 + webidl-conversions@^3.0.0: 6965 + version "3.0.1" 6966 + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 6967 + integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 6968 + 6969 + webidl-conversions@^5.0.0: 6970 + version "5.0.0" 6971 + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 6972 + integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 6973 + 6974 + webidl-conversions@^6.1.0: 6975 + version "6.1.0" 6976 + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 6977 + integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 6978 + 6979 + whatwg-encoding@^1.0.5: 6980 + version "1.0.5" 6981 + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 6982 + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 6983 + dependencies: 6984 + iconv-lite "0.4.24" 6985 + 6986 + whatwg-fetch@^3.0.0: 6987 + version "3.6.2" 6988 + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c" 6989 + integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA== 6990 + 6991 + whatwg-mimetype@^2.3.0: 6992 + version "2.3.0" 6993 + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 6994 + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 6995 + 6996 + whatwg-url@^5.0.0: 6997 + version "5.0.0" 6998 + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 6999 + integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 7000 + dependencies: 7001 + tr46 "~0.0.3" 7002 + webidl-conversions "^3.0.0" 7003 + 7004 + whatwg-url@^8.0.0, whatwg-url@^8.5.0: 7005 + version "8.7.0" 7006 + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 7007 + integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 7008 + dependencies: 7009 + lodash "^4.7.0" 7010 + tr46 "^2.1.0" 7011 + webidl-conversions "^6.1.0" 7012 + 7013 + which-boxed-primitive@^1.0.2: 7014 + version "1.0.2" 7015 + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 7016 + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 7017 + dependencies: 7018 + is-bigint "^1.0.1" 7019 + is-boolean-object "^1.1.0" 7020 + is-number-object "^1.0.4" 7021 + is-string "^1.0.5" 7022 + is-symbol "^1.0.3" 7023 + 7024 + which-module@^2.0.0: 7025 + version "2.0.0" 7026 + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 7027 + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 7028 + 7029 + which@^1.2.9: 7030 + version "1.3.1" 7031 + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 7032 + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 7033 + dependencies: 7034 + isexe "^2.0.0" 7035 + 7036 + which@^2.0.1, which@^2.0.2: 7037 + version "2.0.2" 7038 + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 7039 + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 7040 + dependencies: 7041 + isexe "^2.0.0" 7042 + 7043 + word-wrap@^1.2.3, word-wrap@~1.2.3: 7044 + version "1.2.3" 7045 + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 7046 + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 7047 + 7048 + wrap-ansi@^6.2.0: 7049 + version "6.2.0" 7050 + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 7051 + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 7052 + dependencies: 7053 + ansi-styles "^4.0.0" 7054 + string-width "^4.1.0" 7055 + strip-ansi "^6.0.0" 7056 + 7057 + wrappy@1: 7058 + version "1.0.2" 7059 + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 7060 + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 7061 + 7062 + write-file-atomic@^2.3.0: 7063 + version "2.4.3" 7064 + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" 7065 + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== 7066 + dependencies: 7067 + graceful-fs "^4.1.11" 7068 + imurmurhash "^0.1.4" 7069 + signal-exit "^3.0.2" 7070 + 7071 + write-file-atomic@^3.0.0: 7072 + version "3.0.3" 7073 + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 7074 + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 7075 + dependencies: 7076 + imurmurhash "^0.1.4" 7077 + is-typedarray "^1.0.0" 7078 + signal-exit "^3.0.2" 7079 + typedarray-to-buffer "^3.1.5" 7080 + 7081 + ws@^6.1.4: 7082 + version "6.2.2" 7083 + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" 7084 + integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== 7085 + dependencies: 7086 + async-limiter "~1.0.0" 7087 + 7088 + ws@^7, ws@^7.4.6, ws@^7.5.1: 7089 + version "7.5.8" 7090 + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.8.tgz#ac2729881ab9e7cbaf8787fe3469a48c5c7f636a" 7091 + integrity sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw== 7092 + 7093 + xcode@^3.0.0: 7094 + version "3.0.1" 7095 + resolved "https://registry.yarnpkg.com/xcode/-/xcode-3.0.1.tgz#3efb62aac641ab2c702458f9a0302696146aa53c" 7096 + integrity sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA== 7097 + dependencies: 7098 + simple-plist "^1.1.0" 7099 + uuid "^7.0.3" 7100 + 7101 + xml-name-validator@^3.0.0: 7102 + version "3.0.0" 7103 + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 7104 + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 7105 + 7106 + xmlbuilder@^9.0.7: 7107 + version "9.0.7" 7108 + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 7109 + integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= 7110 + 7111 + xmlchars@^2.2.0: 7112 + version "2.2.0" 7113 + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 7114 + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 7115 + 7116 + xmldoc@^1.1.2: 7117 + version "1.1.2" 7118 + resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.1.2.tgz#6666e029fe25470d599cd30e23ff0d1ed50466d7" 7119 + integrity sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ== 7120 + dependencies: 7121 + sax "^1.2.1" 7122 + 7123 + xtend@~4.0.1: 7124 + version "4.0.2" 7125 + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 7126 + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 7127 + 7128 + y18n@^4.0.0: 7129 + version "4.0.3" 7130 + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" 7131 + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 7132 + 7133 + yallist@^4.0.0: 7134 + version "4.0.0" 7135 + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 7136 + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 7137 + 7138 + yargs-parser@^18.1.2: 7139 + version "18.1.3" 7140 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 7141 + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 7142 + dependencies: 7143 + camelcase "^5.0.0" 7144 + decamelize "^1.2.0" 7145 + 7146 + yargs@^15.1.0, yargs@^15.3.1, yargs@^15.4.1: 7147 + version "15.4.1" 7148 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 7149 + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 7150 + dependencies: 7151 + cliui "^6.0.0" 7152 + decamelize "^1.2.0" 7153 + find-up "^4.1.0" 7154 + get-caller-file "^2.0.1" 7155 + require-directory "^2.1.1" 7156 + require-main-filename "^2.0.0" 7157 + set-blocking "^2.0.0" 7158 + string-width "^4.2.0" 7159 + which-module "^2.0.0" 7160 + y18n "^4.0.0" 7161 + yargs-parser "^18.1.2"